3 lines
123 B
Bash
Executable file
3 lines
123 B
Bash
Executable file
#!/bin/sh
|
|
[ $(echo -e "No\nYes" | dmenu -i -p "$1" -nb darkred -sb red -sf white -nf gray -fn mono) \
|
|
== "Yes" ] && "$@:2"
|