fix: Fixes window titles not always showing properly in window picker.

This commit is contained in:
2025-10-09 12:50:45 -04:00
parent 6332eafea5
commit a006539bf1

View File

@@ -61,6 +61,9 @@ generate_rows() {
for address in $addresses; do
title=$(hyprctl clients -j | jq -r ".[] | select(.address == \"$address\") | .title")
# Replace in occurrences of what we use as delimiter in the title, so they're presented
# correctly.
title=${title//|/-}
rows+=("$address|$title")
done
}