From a4f644e3c7d4e86a5164099bfc9050b4b164ae0e Mon Sep 17 00:00:00 2001 From: kurumushi Date: Sun, 20 May 2018 16:49:43 +0900 Subject: 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. --- src/SMAPI.Installer/unix-launcher.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit