Created
November 7, 2012 15:49
-
-
Save mike-burns/4032389 to your computer and use it in GitHub Desktop.
run-in-terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
desktop=`xdotool get_desktop` | |
window=`xdotool search --onlyvisible --all --desktop $desktop --class gnome-terminal | head -1` | |
xdotool windowactivate --sync $window type "$@ | |
" | |
xdotool windowactivate --sync $window key Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment