diff options
author | kurumushi <kurumushi@users.noreply.github.com> | 2018-05-20 16:49:43 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-20 16:49:43 +0900 |
commit | a4f644e3c7d4e86a5164099bfc9050b4b164ae0e (patch) | |
tree | 6d5c9019d8482bd12b355afeef1f37fc7da9447e | |
parent | 3e36af75d59dbd539cfb2c304281f64f1753fc9f (diff) | |
download | SMAPI-a4f644e3c7d4e86a5164099bfc9050b4b164ae0e.tar.gz SMAPI-a4f644e3c7d4e86a5164099bfc9050b4b164ae0e.tar.bz2 SMAPI-a4f644e3c7d4e86a5164099bfc9050b4b164ae0e.zip |
Change konsole launch options for newer ncurses
This makes konsole tell mono that it is xterm, allowing it to avoid mono/mono#6752 and providing a workaround for #489.
-rw-r--r-- | src/SMAPI.Installer/unix-launcher.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Installer/unix-launcher.sh b/src/SMAPI.Installer/unix-launcher.sh index 6e796461..f16cc317 100644 --- a/src/SMAPI.Installer/unix-launcher.sh +++ b/src/SMAPI.Installer/unix-launcher.sh @@ -78,7 +78,7 @@ else elif $COMMAND gnome-terminal 2>/dev/null; then gnome-terminal -e "$LAUNCHER" elif $COMMAND konsole 2>/dev/null; then - konsole -e "$LAUNCHER" + konsole -p Environment=TERM=xterm -e "$LAUNCHER" elif $COMMAND terminal 2>/dev/null; then terminal -e "$LAUNCHER" else |