livesplithk and livesplitandbind put in /usr/bin/ with chmod +x
Livesplit global hotkeys workaround
This file contains 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
# Livesplit hotkeys | |
# | |
"livesplithk Page_Up" | |
Page_Up | |
"livesplithk Page_Down" | |
Page_Down | |
"livesplithk Insert" | |
Insert | |
"livesplithk Delete" | |
Delete |
This file contains 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/bash | |
cd PATH_TO_LIVESPLIT | |
xbindkeys -n & | |
pid=$! | |
wine LiveSplit.exe | |
kill $pid |
This file contains 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/bash | |
xdotool key --window $( xdotool search --limit 1 --all --pid $( pgrep LiveSplit ) --name LiveSplit ) "$1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment