From b7b54526a2a7fd0dde9732a3493d8073051bd3b4 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Wed, 24 Nov 2021 20:14:32 +0100 Subject: [PATCH] Fixed linux app config generating script --- utils/Zano.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/Zano.sh b/utils/Zano.sh index 33188ef3..ff08b6aa 100755 --- a/utils/Zano.sh +++ b/utils/Zano.sh @@ -25,9 +25,9 @@ create_desktop_icon() rm -f $target_file_name echo [Desktop Entry] | tee -a $target_file_name > /dev/null echo Version=1.0 | tee -a $target_file_name > /dev/null - echo Name=My Application | tee -a $target_file_name > /dev/null - echo GenericName=My Application | tee -a $target_file_name > /dev/null - echo Comment=Doing some funny stuff | tee -a $target_file_name > /dev/null + echo Name=Zano | tee -a $target_file_name > /dev/null + echo GenericName=Zano | tee -a $target_file_name > /dev/null + echo Comment=Privacy blockchain | tee -a $target_file_name > /dev/null echo Icon=$script_dir/html/files/desktop_linux_icon.png | tee -a $target_file_name > /dev/null echo Exec=$script_dir/Zano %u | tee -a $target_file_name > /dev/null echo Terminal=true | tee -a $target_file_name > /dev/null