Fix polybar
This commit is contained in:
@@ -57,6 +57,11 @@ in {
|
|||||||
|
|
||||||
bars = [ ];
|
bars = [ ];
|
||||||
|
|
||||||
|
startup = [
|
||||||
|
{ command = "i3-msg workspace 1"; }
|
||||||
|
{ command = "systemctl --user restart polybar"; always = true; notification = false; }
|
||||||
|
];
|
||||||
|
|
||||||
keybindings = {
|
keybindings = {
|
||||||
"${mod}+q" = "kill";
|
"${mod}+q" = "kill";
|
||||||
|
|
||||||
|
|||||||
@@ -202,21 +202,21 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
script = ''
|
script = "polybar --reload mainbar-i3 &";
|
||||||
#!/usr/bin/env bash
|
# #!/usr/bin/env bash
|
||||||
|
|
||||||
# Terminate already running bar instances
|
# # Terminate already running bar instances
|
||||||
killall -q polybar
|
# killall -q polybar
|
||||||
|
#
|
||||||
# Wait until the processes have been shut down
|
# # Wait until the processes have been shut down
|
||||||
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
|
# while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
|
||||||
|
#
|
||||||
for m in $(polybar --list-monitors | cut -d":" -f1); do
|
# 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 &
|
# WIRELESS=$(ls /sys/class/net/ | grep ^wl | awk 'NR==1{print $1}') MONITOR=$m polybar --reload mainbar-i3 &
|
||||||
done
|
# done
|
||||||
|
#
|
||||||
echo "Bars launched..."
|
# echo "Bars launched..."
|
||||||
'';
|
# '';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user