mirror of
https://github.com/dnlbauer/dotfiles.git
synced 2026-09-10 21:45:30 +00:00
13 lines
535 B
Bash
Executable File
13 lines
535 B
Bash
Executable File
#!/bin/bash
|
|
while [ "$select" != "NO" -a "$select" != "YES" ]; do
|
|
select=$(echo -e 'NO\nYES' | dmenu -nb '#2f343f'
|
|
-nf '#f3f4f5'
|
|
-sb '#9575cd'
|
|
-sf '#f3f4f5'
|
|
-fn '-*-*-medium-r-normal-*-*-*-*-*-*-100-*-*' -
|
|
i -p "Are you sure you want to logout?")
|
|
[ -z "$select" ] && exit 0
|
|
done
|
|
[ "$select" = "NO" ] && exit 0
|
|
i3-msg exit
|