-
-
Save penbuvt/5fce7d3c85442d5b8dc4961a8fa96dbe to your computer and use it in GitHub Desktop.
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 | |
| # prevents input lag caused by fcitx | |
| unset GTK_IM_MODULE | |
| unset QT_IM_MODULE | |
| unset XMODIFIERS | |
| exec /usr/bin/wine "$@" |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While testing out WinDepth for a stream, I found out that fcitx caused input lag in Wine. Unsetting the
XMODIFIERSenvironment variable when running Wine seemed to fix it, so I made this wrapper script.