aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrun-all-x11.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/run-all-x11.sh b/run-all-x11.sh
index f5fd6a5..d08f993 100755
--- a/run-all-x11.sh
+++ b/run-all-x11.sh
@@ -1,7 +1,7 @@
#!/bin/bash
TERMAPP='x-terminal-emulator'
-for wid in $(xdotool search --onlyvisible --sync --all --class ${TERMAPP})
- do xdotool type --window $wid "$*"
- xdotool key --window $wid KP_Enter
+for wid in $(xdotool search --onlyvisible --sync --all --class ${TERMAPP}); do
+ xdotool type --window $wid "$*"
+ xdotool key --window $wid KP_Enter
done