feat: i3 configs

This commit is contained in:
Elias Renman
2024-02-01 00:03:56 +01:00
parent 85814083ce
commit 0884c0cdeb
37 changed files with 425 additions and 1377 deletions

7
polybar/startup.sh Normal file
View File

@@ -0,0 +1,7 @@
killall -q polybar
# Launch bar on each monitor, tray on primary
polybar --list-monitors | while IFS=$'\n' read line; do
monitor=$(echo $line | cut -d':' -f1)
primary=$(echo $line | cut -d' ' -f3)
MONITOR=$monitor polybar --reload "example" &
done