Skip to content

Instantly share code, notes, and snippets.

@floreo
Created January 14, 2017 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save floreo/fe96510b95a611a73de572c00e3b7aad to your computer and use it in GitHub Desktop.
Save floreo/fe96510b95a611a73de572c00e3b7aad to your computer and use it in GitHub Desktop.
Shell script wrapper for Guitar Pro 5 with timidity
#!/usr/bin/env bash
# starting timdity
timidity -iA -B2,8 -Os -EFreverb=0 &
# get timidity's PID
_PID="$!"
# start GP5
/usr/share/playonlinux/playonlinux --run "GP5"
# clean up
kill -9 ${_PID}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment