This commit is contained in:
Daniel Bauer
2018-09-14 11:56:02 +02:00
parent e0b529b91a
commit a807f5eb1e
45 changed files with 53 additions and 14 deletions

12
.config/i3/scripts/exit_menu Executable file
View File

@@ -0,0 +1,12 @@
#!/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