Rearrange files tree
This commit is contained in:
parent
51856517a9
commit
d9f1e481ef
|
@ -8,6 +8,7 @@ Terminal user interface scripts for popular cli tools such as apt, systemctl, gi
|
||||||
- `s` - for managing systemd services
|
- `s` - for managing systemd services
|
||||||
- `k` - for managing kubernetes (depends on kubectl)
|
- `k` - for managing kubernetes (depends on kubectl)
|
||||||
- `r` - for running named commands from ~/.aliases.txt file
|
- `r` - for running named commands from ~/.aliases.txt file
|
||||||
|
|
||||||
![Sripts in action](./images/scripts_in_action.gif)
|
![Sripts in action](./images/scripts_in_action.gif)
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
@ -22,5 +23,5 @@ Install dependencies: `fzf`, `dialog`, `xdotool`, `x11-xkb-utils`
|
||||||
Then clone this repo and copy all scripts to one of the PATH folder:
|
Then clone this repo and copy all scripts to one of the PATH folder:
|
||||||
```
|
```
|
||||||
git clone https://git.digitalstudium.com/digitalstudium/tui-scripts.git
|
git clone https://git.digitalstudium.com/digitalstudium/tui-scripts.git
|
||||||
sudo cp tui-scripts/{a,g,s,r,k} /usr/local/bin/
|
sudo cp tui-scripts/src/{a,g,s,r,k} /usr/local/bin/
|
||||||
```
|
```
|
||||||
|
|
|
@ -16,7 +16,7 @@ EOL
|
||||||
|
|
||||||
|
|
||||||
for script in a k g r s; do
|
for script in a k g r s; do
|
||||||
cp $script tui-scripts_$(cat VERSION)-1/usr/local/bin
|
cp src/$script tui-scripts_$(cat VERSION)-1/usr/local/bin
|
||||||
done
|
done
|
||||||
|
|
||||||
dpkg-deb --build tui-scripts_$(cat VERSION)-1
|
dpkg-deb --build tui-scripts_$(cat VERSION)-1
|
||||||
|
|
Loading…
Reference in New Issue