diff options
author | Jertzukka <Jertzukka@gmail.com> | 2023-11-08 10:20:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-08 09:20:47 +0100 |
commit | e70aa13c5bd0e870c11596cf5d4c7dd0e343aef0 (patch) | |
tree | 4125e9c09250f6ee83b6fef7987fd440b3532dad /src/Setup/Linux | |
parent | 3f0e0b8cdd4309acd81ae9e9c47f6bf4400b89ae (diff) | |
download | VeraCrypt-e70aa13c5bd0e870c11596cf5d4c7dd0e343aef0.tar.gz VeraCrypt-e70aa13c5bd0e870c11596cf5d4c7dd0e343aef0.zip |
Linux: Fix generic installation script on Konsole in Wayland (#1244)
The x11 aliases such as --title are only available in the Qt application
if the XDG_SESSION_TYPE is x11. Instead of using an alias, we can use
--qwindowtitle directly.
Diffstat (limited to 'src/Setup/Linux')
-rw-r--r-- | src/Setup/Linux/veracrypt_install_template.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Setup/Linux/veracrypt_install_template.sh b/src/Setup/Linux/veracrypt_install_template.sh index bc84a896..e4615966 100644 --- a/src/Setup/Linux/veracrypt_install_template.sh +++ b/src/Setup/Linux/veracrypt_install_template.sh @@ -97,7 +97,7 @@ show_message() else if [ $KTERM -eq 1 ] then - konsole --title 'VeraCrypt Setup' -e sh -c "echo $*; read A" + konsole --qwindowtitle 'VeraCrypt Setup' -e sh -c "echo $*; read A" fi fi fi @@ -1078,7 +1078,7 @@ then else if [ $KTERM -eq 1 ] then - exec konsole --title 'VeraCrypt Setup' -e sh -c "echo Installing package...; $SUDO $PACKAGE_INSTALLER $PACKAGE_INSTALLER_OPTS $PACKAGE; rm -f $PACKAGE; echo; echo Press Enter to exit...; read A" + exec konsole --qwindowtitle 'VeraCrypt Setup' -e sh -c "echo Installing package...; $SUDO $PACKAGE_INSTALLER $PACKAGE_INSTALLER_OPTS $PACKAGE; rm -f $PACKAGE; echo; echo Press Enter to exit...; read A" fi fi fi |