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
| # ydotool-key-helper 'ctrl tab' | |
| ydotool-key-helper () | |
| { | |
| local RESPONSE="" | |
| local RESPONSE2="" | |
| local OK=1 | |
| for key in $*; do | |
| [ "$key" == 'ctrl' ] && key=leftctrl | |
| [ "$key" == 'shift' ] && key=leftshift | |
| [ "$key" == 'alt' ] && key=leftalt |