diff options
Diffstat (limited to 'run-all-x11.sh')
-rwxr-xr-x | run-all-x11.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run-all-x11.sh b/run-all-x11.sh index b91936c..cb9727a 100755 --- a/run-all-x11.sh +++ b/run-all-x11.sh @@ -1,7 +1,7 @@ #!/bin/bash - -for wid in $(xdotool search --onlyvisible --sync --all --class X-terminal-emulator) +TERMAPP="Terminator" +for wid in $(xdotool search --onlyvisible --sync --all --class ${TERMAPP}) do xdotool type --window $wid "$*" xdotool key --window $wid KP_Enter done |