summaryrefslogtreecommitdiff
path: root/bin/guiscripts/dmask
blob: 067e3110e7647b832d23e1421d0a144cfca2f55c (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

# requirements
which dmenu Xdialog ask > /dev/null ||
	exit 1

prompt="$(echo -n | dmenu -p "prompt:" | tr -d '\n')"
test -z "$prompt" && exit 1
Xdialog --wrap --msgbox "$(ask "$prompt")" 20 40