Skip to content

Instantly share code, notes, and snippets.

@djonko
Forked from iPublicis/trelloinstall.sh
Created January 3, 2021 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djonko/1bbc31e56cd46d9fa4b79f56df0c6b21 to your computer and use it in GitHub Desktop.
Save djonko/1bbc31e56cd46d9fa4b79f56df0c6b21 to your computer and use it in GitHub Desktop.
Install Trello Linux Client
#!/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\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
# Taken from https://www.edivaldobrito.com.br/cliente-desktop-do-trello-no-linux/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment