Last active
July 16, 2024 16:40
-
-
Save iPublicis/925c5f4b27e73ec771868be87d16ffbd to your computer and use it in GitHub Desktop.
Install Trello Linux Client
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Your system should be 64 bits and check if the last version at https://github.com/danielchatfield/trello-desktop/ is 0.19 | |
# If the current version is not 0.19 change the file name below accordingly | |
wget https://github.com/Racle/trello-desktop/releases/download/v0.2.0/Trello-linux-0.2.0.zip -O trello.zip | |
sudo mkdir /opt/trello | |
sudo unzip trello.zip -d /opt/trello/ | |
sudo ln -sf /opt/trello/Trello /usr/bin/trello | |
echo -e '[Desktop Entry]\n Version=1.0\n Name=Trello Desktop\n Exec=/usr/bin/trello\n Icon=/opt/trello/resources/app/static/Icon.png\n Type=Application\n Categories=Application' | sudo tee /usr/share/applications/trello.desktop | |
sudo chmod +x /usr/share/applications/trello.desktop | |
# if having problems launching it install the following [thanks felipetavaresmelo] | |
# sudo apt-get install libgconf-2-4 | |
# Taken from https://www.edivaldobrito.com.br/cliente-desktop-do-trello-no-linux/ | |
## unistall [thanks stelardiver] | |
# sudo rm -rf /opt/trello && | |
# sudo rm /usr/bin/trello && | |
# sudo rm /usr/share/applications/trello.desktop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey that's pretty good