new setup structure multiple fonts and various other small bug fixes

This commit is contained in:
ITmail-dk
2022-01-07 09:59:50 +01:00
parent fb1b21ff03
commit 7ca12b2e45
31 changed files with 77 additions and 77 deletions

10
config/rofi/powermenu.sh Normal file
View File

@@ -0,0 +1,10 @@
#! /bin/sh
chosen=$(printf " Power Off\n Restart\n Lock" | rofi -dmenu -i -theme-str '@import "powermenu.rasi"')
case "$chosen" in
" Power Off") systemctl poweroff ;;
" Restart") systemctl reboot ;;
" Lock") i3lock-fancy -gp -- scrot -z ;;
*) exit 1 ;;
esac