mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
I made the password prompt invisible by defining a foreground color, and removed the non working -P option and I also removed the echo because it's not needed, Here it is in action: https://imgur.com/a/A1eax2b
7 lines
168 B
Bash
Executable File
7 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This script is the SUDO_ASKPASS variable, meaning that it will be used as a
|
|
# password prompt if needed.
|
|
|
|
dmenu -nf "#222222" -fn Monospace-18 -p "$1" <&-
|