Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates #38

Merged
merged 1 commit into from
Dec 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 19 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### C-VipNX* 💻 [(Experimental Project)](#important-experimental-project)*
Shell Vip Utility written in C for *NX Systems.
### C-VipNX (Vip Shell)* 💻 [(Experimental Project)](#important-experimental-project)*
Shell Vip or Vip Shell is a Utility written in C for *NX Systems.
Simple: Vip shell to avoid usage of sudo.

🚀 Welcome to VIP Shell, where simplicity meets power in your command line experience. VIP Shell is a sleek and interactive command line shell designed for users who crave efficiency and elegance. With its user-friendly interface, VIP Shell empowers you to navigate and execute commands seamlessly, providing a personalized and enjoyable interaction with your Unix-like environment. Whether you're a seasoned developer or a command line enthusiast, VIP Shell is your gateway to a sophisticated and efficient command line journey. Elevate your terminal experience with VIP Shell – where every command feels like a VIP moment! 💻✨
Expand Down Expand Up @@ -152,41 +152,35 @@ VIP Shell invites you to redefine your terminal experience. Whether you're a dev

### Prerequisites

#### Instructions
#### Instructions (compilation)

You need to install tcsh in your Linux/Unix like flavor.
You need to install tcsh in your Linux/Unix like flavor (compilation).

| sudo gcc -o vip vip.c (compilation)


| su

| vi /etc/group (nuevo grupo, ej.: staff:x:100:user
| vim visudo
| #
```
sudo gcc -o vipshell vipshell.c
```

```
sudo vim /etc/group (nuevo grupo, ej.: staff:x:100:user
```

#### User privilege specification
```
vim visudo
```

```
root ALL=(ALL:ALL) ALL

vip ALL=(ALL:ALL) ALL

| mv vip /usr/bin/

| exit

| vip

then,
execute it as a user:
sudo vip
vipshell ALL=(ALL:ALL) ALL
```

#### File Structure

```
|-- vip.c
|-- vip
```


#### Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate. But i would prefer if you could contact me first.
Expand Down
4 changes: 2 additions & 2 deletions src/AUR/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ pkgver=1.2.5
pkgrel=1
pkgdesc="VIP Shell is a cutting-edge, open-source terminal environment that elevates your command-line experience with enhanced features and personalized interactions."
arch=('x86_64')
url="https://github.com/felipealfonsog/C-VipNX"
url="https://github.com/NymexData/C-VipNX"
license=('MIT')
depends=('gcc')
source=("https://github.com/felipealfonsog/C-VipNX/archive/refs/tags/v.${pkgver}.tar.gz")
source=("https://github.com/NymexData/C-VipNX/archive/refs/tags/v.${pkgver}.tar.gz")
sha256sums=('b342e8b04bc8915c03c6ee3e4dada27a09b1eb6749b7d74cb028903f89c1e3b7')

prepare() {
Expand Down
Loading