diff --git a/utils/Zano_appimage_wrapper.sh b/utils/Zano_appimage_wrapper.sh index 1dd26c6d..5c8183cd 100755 --- a/utils/Zano_appimage_wrapper.sh +++ b/utils/Zano_appimage_wrapper.sh @@ -4,6 +4,8 @@ script_dir=$( dirname "$(readlink -f "$0")" ) out_dir=~/.local/share/applications out_file_name="${out_dir}/Zano.desktop" +export QTWEBENGINE_DISABLE_SANDBOX=1 + call_app() { pushd $script_dir @@ -31,6 +33,7 @@ create_desktop_icon() echo Type=Application | tee -a $target_file_name > /dev/null echo "Categories=Qt;Utility;" | tee -a $target_file_name > /dev/null echo "MimeType=x-scheme-handler/zano;" | tee -a $target_file_name > /dev/null + echo "StartupWMClass=Zano" | tee -a $target_file_name > /dev/null }