Add bookmark finder scripts, fix a few incorrect uses of IFS and read

This commit is contained in:
2026-01-19 17:42:40 -06:00
parent 6ca8fb0c33
commit 4517dfa9cd
7 changed files with 78 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ non_primary_monitors_off() {
grep -v "^Screen" |
grep -v "^\s" |
grep -v "primary" |
while IFS="\n " read -r target_mon_id remaining_text; do
while read -r target_mon_id remaining_text; do
xrandr --output "$target_mon_id" --off
done
}