polybar: Added polybar

This commit is contained in:
2022-06-17 10:24:45 +00:00
parent 5b0960b26b
commit cf9c145628
2 changed files with 179 additions and 0 deletions

8
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