Our build system now produce files that are not recognized as executables though they are.
I wrote a simple script to install dash-qt from downloaded archive and to give it a nice icon.
Here is what you need to do:
1) After you extracted downloaded archive you should have dash-0.12.0 folder somewhere.
Go inside it, create a file named install_dash_qt.sh and edit it with your favorite editor:
Code:#!/bin/bash su -c 'install -m 0755 -o root -g root -t /usr/local/bin bin/dash-qt' echo "[Desktop Entry] Name=Dash-Qt Comment=Dash - Reinventing Cryptocurrency https://www.dashpay.io Type=Application Exec=dash-qt %u Terminal=false Icon=/usr/share/pixmaps/dash128.xpm MimeType=x-scheme-handler/dash Categories=Applications;Finance;" > ~/Desktop/Dash-Qt.desktop chmod u+x ~/Desktop/Dash-Qt.desktop sudo cp ~/Desktop/Dash-Qt.desktop /usr/share/applications/ sudo wget -O /usr/share/pixmaps/dash128.xpm https://github.com/dashpay/dash/raw/master/share/pixmaps/bitcoin128.xpm
2) Right click on empty space in that folder and choose "Open in Terminal". In command line issue:
to make file executable andCode:chmod u+x install_dash_qt.sh
to run it.Code:./install_dash_qt.sh
Enter your password and shortly after you should have a nice icon on your Desktop and the same icon in Applications.
Enjoy! :smile:
PS. This script reguires wget. Install it first if you don't have it already
Code:sudo apt-get install wget
Should I use that under tool on wiki for v13 ?
Is that different from
https://dashpay.atlassian.net/wiki/pages/viewpage.action?pageId=9568325