1
0
Fork 0
forked from lthn/blockchain

one more fix for launching Zano in Ubuntu: Edit AppImage wrapper (#512)

This commit is contained in:
Stёpa Dolgorukov 2025-03-20 19:02:39 +05:00 committed by GitHub
parent cd51fcc293
commit cb92f260e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,7 +33,8 @@ create_desktop_icon()
echo GenericName=Zano | tee -a $target_file_name > /dev/null
echo Comment=Privacy blockchain | tee -a $target_file_name > /dev/null
echo Icon=${out_dir}/Zano.png | tee -a $target_file_name > /dev/null
echo Exec=$APPIMAGE --deeplink-params=\\\\\"%u\\\\\" | tee -a $target_file_name > /dev/null
echo TryExec="${APPIMAGE}" | tee -a "${target_file_name}" >/dev/null
echo Exec=$APPIMAGE --deeplink-params=\\\\\\\"%u\\\\\\\" | tee -a $target_file_name > /dev/null
echo Terminal=false | tee -a $target_file_name > /dev/null
echo Type=Application | tee -a $target_file_name > /dev/null
echo "Categories=Qt;Utility;" | tee -a $target_file_name > /dev/null
@ -45,5 +46,6 @@ create_desktop_icon()
create_desktop_icon $out_file_name
xdg-mime default Zano.desktop x-scheme-handler/zano
xdg-desktop-menu install --novendor "${out_file_name}"
call_app "$@"