i3 config

This commit is contained in:
Jef Roosens 2025-01-28 11:10:39 +01:00
parent 84afb34cee
commit 3b8ef2383f
Signed by: Jef Roosens
GPG key ID: 21FD3D77D56BAF49
24 changed files with 1626 additions and 0 deletions

View file

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