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

This commit is contained in:
2026-01-20 12:31:44 -06:00
parent 6ca8fb0c33
commit 6c154836f2
7 changed files with 87 additions and 6 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
}