aboutsummaryrefslogtreecommitdiff
path: root/polybar-launch.sh
diff options
context:
space:
mode:
authorCori Barker <coribarker2@gmail.com>2026-06-29 13:26:57 +0100
committerCori Barker <coribarker2@gmail.com>2026-06-29 13:26:57 +0100
commit4aed954ef80d0196492429eb842edbc6bd175eb5 (patch)
tree6fe7cb7eb7cbc013887df590368609427b036393 /polybar-launch.sh
parent8c63780c5e6dc9fbde7bf65ea65a09b454e5bc97 (diff)
Created READMEHEADmaster
Diffstat (limited to 'polybar-launch.sh')
-rwxr-xr-xpolybar-launch.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/polybar-launch.sh b/polybar-launch.sh
deleted file mode 100755
index 6ef9fa2..0000000
--- a/polybar-launch.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env bash
-
-# Wait briefly for WM to settle
-sleep 0.5
-
-# Kill existing bars
-killall -q polybar
-while pgrep -u $UID -x polybar > /dev/null; do sleep 0.1; done
-
-# Launch on all connected monitors
-if type "xrandr" > /dev/null 2>&1; then
- for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
- MONITOR=$m polybar --reload main &
- done
-else
- polybar --reload main &
-fi