9 lines
142 B
Bash
9 lines
142 B
Bash
|
#!/bin/env bash
|
||
|
|
||
|
pkill polybar >/dev/null
|
||
|
|
||
|
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
|
||
|
|
||
|
polybar primary &
|
||
|
polybar secondary &
|