summaryrefslogtreecommitdiff
path: root/scripts/dmenuquit
blob: c072e3041f5710188fddc58f6fca95ab2450a94f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
#
#    author:  marcellus 
#
#   shellcheck disable=SC2012

if [ "$1" = "--shuffle" ]; then
	SHUFFLE=yes
	shift
fi

OPTION="$(printf "no\\nyes\\nrestart" | dmenu -i -p "Exit Fluorite ")"

case $OPTION in
    "no")
	exit 0
	;;
    "yes")
	killall Fluorite
	;;
    "restart")
	killall Fluorite; startx
	;;
    *)
	exit 1
	;;
esac