Fix polybar

This commit is contained in:
marc
2022-11-03 23:45:44 +01:00
parent 6a5a70b06b
commit f4d6589bd1
2 changed files with 19 additions and 14 deletions

View File

@@ -202,21 +202,21 @@ in {
};
};
script = ''
#!/usr/bin/env bash
script = "polybar --reload mainbar-i3 &";
# #!/usr/bin/env bash
# Terminate already running bar instances
killall -q polybar
# Wait until the processes have been shut down
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
for m in $(polybar --list-monitors | cut -d":" -f1); do
WIRELESS=$(ls /sys/class/net/ | grep ^wl | awk 'NR==1{print $1}') MONITOR=$m polybar --reload mainbar-i3 &
done
echo "Bars launched..."
'';
# # Terminate already running bar instances
# killall -q polybar
#
# # Wait until the processes have been shut down
# while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
#
# for m in $(polybar --list-monitors | cut -d":" -f1); do
# WIRELESS=$(ls /sys/class/net/ | grep ^wl | awk 'NR==1{print $1}') MONITOR=$m polybar --reload mainbar-i3 &
# done
#
# echo "Bars launched..."
# '';
};
};
}