2024-03-16 15:43:03 +00:00
|
|
|
# GUI scripts
|
|
|
|
## Description
|
|
|
|
GUI scripts for popular cli tools, based on dialog and fzf
|
|
|
|
|
|
|
|
## Scripts
|
2024-03-16 15:51:56 +00:00
|
|
|
- `a` - for managing apt packages
|
|
|
|
- `g` - for managing git repo
|
|
|
|
- `s` - for managing systemd services
|
|
|
|
- `r` - for running named commands from ~/.aliases.txt file
|
2024-03-16 15:43:03 +00:00
|
|
|
|
|
|
|
## Installation
|
2024-03-16 16:02:22 +00:00
|
|
|
### Ubuntu/Debian-based
|
2024-03-16 15:57:31 +00:00
|
|
|
Download .deb package from [Releases](https://git.digitalstudium.com/digitalstudium/run/releases), then install it
|
2024-03-16 15:43:03 +00:00
|
|
|
```
|
|
|
|
sudo apt install ./Downloads/gui-scripts_1.1-1.deb
|
|
|
|
```
|
2024-03-16 16:02:22 +00:00
|
|
|
### Other linux distros
|
|
|
|
Install dependencies: `fzf`, `dialog`, `xdotool`, `x11-xkb-utils`
|
2024-03-16 15:43:03 +00:00
|
|
|
|
2024-03-16 16:02:22 +00:00
|
|
|
Then clone this repo and copy all scripts to one of the PATH folder:
|
|
|
|
```
|
|
|
|
git clone https://git.digitalstudium.com/digitalstudium/gui-scripts.git
|
|
|
|
sudo cp gui-scripts/{a,g,s,r} /usr/local/bin/
|
|
|
|
```
|
2024-03-16 15:43:03 +00:00
|
|
|
|
|
|
|
|