Add polybar configuration

This commit is contained in:
2025-01-03 17:16:11 +01:00
parent 9fa0b3af78
commit a4d4154321
3 changed files with 434 additions and 0 deletions

17
.config/polybar/launch.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# Terminate already running bar instances
killall -q polybar
# If all your bars have ipc enabled, you can also use
# polybar-msg cmd quit
# Launch Polybar on each monitor, using default config location (~/.config/polybar/config)
for m in $(polybar --list-monitors | cut -d: -f1)
do
MONITOR=$m polybar felix 2>&1 >> /tmp/polybar-$m.log &
done
# detach all running polybar-jobs from the current shell
disown -a
echo "Polybar launched..."