Script: Properly detach Polybar process
This commit is contained in:
@@ -2,10 +2,10 @@
|
|||||||
|
|
||||||
# Kill existing panels
|
# Kill existing panels
|
||||||
while [ "$(pgrep -cx polybar)" -gt 1 ]; do
|
while [ "$(pgrep -cx polybar)" -gt 1 ]; do
|
||||||
pkill -x -9 polybar;
|
pkill --exact --signal 9 polybar
|
||||||
done
|
done
|
||||||
|
|
||||||
# Start a panel on each monitor
|
# Start a panel on each monitor
|
||||||
for m in $(polybar --list-monitors | cut -d ":" -f1); do
|
for m in $(polybar --list-monitors | cut -d ":" -f1); do
|
||||||
MONITOR=$m polybar --reload polybar &
|
MONITOR="$m" setsid -f polybar --reload polybar
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user