8 lines
195 B
Bash
Executable file
8 lines
195 B
Bash
Executable file
#!/bin/sh
|
|
|
|
input=$(printf "no\nyes" | dmenu -m $1 -fn "JetBrains Mono NF:style=medium:size=11" -nb $2 -nf $3 -sb "#cc241d" -sf $4 -p "Quit dwm?")
|
|
|
|
if [ "$input" = "yes" ]; then
|
|
killall dwm
|
|
fi
|
|
|