historical/micro-gksu.git/README.md

25 lines
418 B
Markdown
Raw Normal View History

2024-01-16 11:20:27 -06:00
# micro-gksu
non-bloated gksu setup guide.
## installation
* install the ssh-askpass-gnome package (debian-based systems) or equal package in other package managers, for example:
```bash
sudo apt install ssh-askpass-gnome
```
* add this to your .bashrc
```bash
alias gksu='sudo -S'
alias gksuui='ssh-askpass Sudo Password, Please. | gksu'
```
* refresh .bashrc in current session using
```bash
. ~/.bashrc
```