Update icons (#1545)

This commit is contained in:
Guillermo Vayá
2021-04-16 19:29:40 +02:00
committed by GitHub
parent 62de91b7aa
commit b00da1b053
72 changed files with 21 additions and 428 deletions

View File

@@ -0,0 +1,18 @@
#!/bin/sh
set -e
WORKING_DIR=`pwd`
THIS_PATH=`readlink -f $0`
cd `dirname ${THIS_PATH}`
FULL_PATH=`pwd`
cd ${WORKING_DIR}
cat <<EOS > Mattermost.desktop
[Desktop Entry]
Name=Mattermost
Comment=Mattermost Desktop application for Linux
Exec="${FULL_PATH}/mattermost-desktop"
Terminal=false
Type=Application
Icon=${FULL_PATH}/app_icon.png
Categories=Network;InstantMessaging;
EOS
chmod +x Mattermost.desktop