major restructuring for using snowfall

This commit is contained in:
2024-02-01 12:42:15 +01:00
parent d8e53f1f78
commit 67d23bcd9e
87 changed files with 24 additions and 164 deletions

8
non-nix/polybar/startup.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
#boot a polybar for each monitor
pkill polybar
polybar -m | sed s/:.*// | tac | while read -r monitor
do
monitor=$monitor polybar main &> /dev/null &
done