blob: f5fd6a56484028fbfb4990a650aedfd0b10dc269 (
plain)
1
2
3
4
5
6
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
done
|