aboutsummaryrefslogtreecommitdiff
path: root/prompt.sh
blob: df951960234f7101ecb3ec2829d57ba4f0d2e988 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
############################################################
# Utility for prompting user affirmation before executing a
# command.
# $1 - Prompt message
# $2 - Command to execute if affirmed
############################################################
[ $(echo "No\nYes" | dmenu -i -p "$1") = "Yes" ] && $2