aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2021-03-09 10:15:38 +0100
committerPatrick Spek <p.spek@tyil.nl>2021-08-14 12:01:15 +0200
commit08f9f559e462659130797f2e6dd170af609b026c (patch)
tree21e0a878ab33ffc0f8dd21c79fe8ba6a2706a61b
parentd3fc91ea2d5c99f4635a748332426165e5cdc4c5 (diff)
Also update tag to look for
-rwxr-xr-x.config/herbstluftwm/panel-bot.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/.config/herbstluftwm/panel-bot.sh b/.config/herbstluftwm/panel-bot.sh
index 4a3bc18..a42ea1e 100755
--- a/.config/herbstluftwm/panel-bot.sh
+++ b/.config/herbstluftwm/panel-bot.sh
@@ -8,7 +8,6 @@ monitor=${1:-0}
hc attr "monitors.$monitor" > /dev/null || { printf "Invalid monitor $monitor" && exit 1 ; }
-monitor_tag="$(herbstclient attr "monitors.$monitor.tag")"
monitor_offset_x=$(hc monitor_rect "$monitor" | awk '{print $1 }')
monitor_offset_y=$(hc monitor_rect "$monitor" | awk '{print $2 }')
monitor_width=$(hc monitor_rect "$monitor" | awk '{ print $3 }')
@@ -32,6 +31,9 @@ panel_offset_y=$(( monitor_offset_y + monitor_height - panel_height ))
# Declare clients as an array
declare -a clients
+ # Check which tag the monitor is on now
+ monitor_tag="$(herbstclient attr "monitors.$monitor.tag")"
+
# Collect all clients on the monitor
for client in $(hc attr clients | grep '0x')
do