update from laptop

This commit is contained in:
Daniel Bauer
2018-09-04 14:39:42 +02:00
parent 73be223cd9
commit a4643f9565
37 changed files with 825 additions and 67 deletions

12
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