add i3 and polybar conf, add new rofi logout screen

This commit is contained in:
Rene Kievits
2021-10-04 23:17:58 +02:00
parent 16508c1fae
commit 0d2a0bb8a8
124 changed files with 1525 additions and 4094 deletions

11
polybar/scripts/launch.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
killall -q polybar
if type "xrandr"; then
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
MONITOR=$m polybar --reload crylia -c $HOME/.config/polybar/config.ini &
done
else
polybar crylia -c $HOME/.config/polybar/config.ini &
fi