XFCE's Launcher wants the .desktop file to be +x as well

-- add a --mode 755 for it
This commit is contained in:
R P Herrold 2017-07-26 18:28:19 -04:00
parent 101677bba2
commit 89ff576419
1 changed files with 3 additions and 2 deletions

View File

@ -44,10 +44,11 @@ xdg_install_f() {
xdg-icon-resource install --context apps --size 256 "${SCRIPT_PATH}/lib/icons/256x256/apps/arduino.png" $RESOURCE_NAME
# Install the created *.desktop file
xdg-desktop-menu install "${TMP_DIR}/${RESOURCE_NAME}.desktop"
## XFCE's Launcher wants the .desktop file to be +x as well
xdg-desktop-menu install --mode 755 "${TMP_DIR}/${RESOURCE_NAME}.desktop"
# Create icon on the desktop
xdg-desktop-icon install "${TMP_DIR}/${RESOURCE_NAME}.desktop"
xdg-desktop-icon install --mode 755 "${TMP_DIR}/${RESOURCE_NAME}.desktop"
# Install Arduino mime type
xdg-mime install "${SCRIPT_PATH}/lib/${RESOURCE_NAME}.xml"