1
0
Fork 0
forked from lthn/blockchain

Fixed linux app config generating script

This commit is contained in:
cryptozoidberg 2021-11-24 20:14:32 +01:00
parent 247ff33a53
commit b7b54526a2
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC

View file

@ -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