Skip to content

Instantly share code, notes, and snippets.

@iPublicis
Last active April 21, 2023 17:44
Show Gist options
  • Star 33 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save iPublicis/925c5f4b27e73ec771868be87d16ffbd to your computer and use it in GitHub Desktop.
Save iPublicis/925c5f4b27e73ec771868be87d16ffbd 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 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
@SergKekuh
Copy link

Thank and change
Exec=/user/bin/trello\n
to this
Exec=/usr/bin/trello\n

@iPublicis
Copy link
Author

Thank and change
Exec=/user/bin/trello\n
to this
Exec=/usr/bin/trello\n

Thanks. Done :)

@SergKekuh
Copy link

SergKekuh commented Jul 4, 2019 via email

@felipetavaresmelo
Copy link

Thank you all and send my review:

#!/bin/bash
## Install
sudo wget https://github.com/danielchatfield/trello-desktop/releases/download/v0.1.9/Trello-linux-0.1.9.zip -O trello.zip &&
sudo mkdir /opt/trello &&
sudo unzip trello.zip -d /opt/trello/ &&
sudo rm  trello.zip &&
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

## unistall
# sudo rm -rf /opt/trello &&
# sudo rm /usr/bin/trello &&
# sudo rm /usr/share/applications/trello.desktop

@stellardiver
Copy link

stellardiver commented Apr 7, 2020

If you have problem with launching it, just install libgconf-2-4

sudo apt-get install libgconf-2-4

@iPublicis
Copy link
Author

Updated to the last version

@saltedgecom
Copy link

Thanks!
I can't log in through google account. (Continue with Google)
Message:
Couldn't sign you in
This browser or app may not be secure. Learn more

Try using a different browser. If you’re already using a supported browser, you can refresh your screen and try again to sign in.

@sakulads
Copy link

Also had such problem with login.

Message:
Couldn't sign you in
This browser or app may not be secure. Learn more

Try using a different browser. If you’re already using a supported browser, you can refresh your screen and try again to sign in.

@rahatsantosh
Copy link

Does anyone know how I uninstall the same?

@iPublicis
Copy link
Author

Does anyone know how I uninstall the same?

In the script are now the instructions to uninstall.

@iPublicis
Copy link
Author

iPublicis commented Jan 29, 2021

sudo wget https://github.com/danielchatfield/trello-desktop/releases/download/v0.1.9/Trello-linux-0.1.9.zip -O trello.zip &&

Thanks.
Don't use Daniel's repo. The last release is from 2017 and a lot of merge requests are not added. It seems abandon-ware :\

@rahatsantosh
Copy link

Does anyone know how I uninstall the same?

In the script are now the instructions to uninstall.

Thanks, worked

@gubleo
Copy link

gubleo commented Mar 12, 2021

Nice! Thanks.

@njfamirm
Copy link

thanks, thats work!

@mikemaer1990
Copy link

mikemaer1990 commented Jul 13, 2021

Also had such problem with login.

Message:
Couldn't sign you in
This browser or app may not be secure. Learn more

Try using a different browser. If you’re already using a supported browser, you can refresh your screen and try again to sign in.

It works if you log in with your email and password, which you can still do if you signed up with Google.

If you go to Atlassian and say you forgot your password - you can reset it, and then log in as a normal non oauth user. Which works on this app.

@cheeseonamonkey
Copy link

Hey that's pretty good

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment