aboutsummaryrefslogtreecommitdiff
path: root/dprompt
blob: 73eda475b3e1672179a20c641ee9452ecd35b41d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env sh

# Dmenu binary prompt.
# Gives a dmenu prompt labled with $1 to perform command $2.
# Example: dprompt "Suspend?" "sudo systemctl suspend"

[ "$(printf 'No\nYes' \
    | dmenu -p "$1" \
    -i -nb darkred -sb red -sf black -nf gray)" = 'Yes' ] && $2