123456789 |
- #!/usr/bin/env bash
- # Helps to ask for sudo password in GUI with rofi and passes it to sudo.
- # It just takes input of the password and prints it.
- # Same can be done with anything else in the world.
- # License: CC0
- rofi -dmenu -i -p 'sudo password' -password -theme-str 'inputbar {children: [prompt,entry];} listview {lines: 0;}'
|