Created
September 7, 2016 17:55
-
-
Save ruebenramirez/22234da93f08be65125cc45fc386c1cd to your computer and use it in GitHub Desktop.
setup franz on ubuntu
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 | |
sudo rm -fr /opt/franz | |
sudo rm -fr /usr/share/applications/franz.desktop | |
# create installation dir | |
sudo mkdir -p /opt/franz | |
#install franz | |
wget -qO- https://github.com/meetfranz/franz-app/releases/download/4.0.4/Franz-linux-x64-4.0.4.tgz | sudo tar xvz -C /opt/franz/ | |
# add app icon | |
sudo wget "https://cdn-images-1.medium.com/max/360/1*v86tTomtFZIdqzMNpvwIZw.png" -O /opt/franz/franz-icon.png | |
# configure app for desktop use | |
sudo bash -c "cat <<EOF > /usr/share/applications/franz.desktop | |
[Desktop Entry] | |
Name=Franz | |
Comment= | |
Exec=/opt/franz/Franz | |
Icon=/opt/franz/franz-icon.png | |
Terminal=false | |
Type=Application | |
Categories=Messaging,Internet | |
EOF" |
Ya anyone know how to uninstall Franz ?
Yo thanks man!
coming from ubuntu gnome user,
+10000000000000000000000000
Thanks guy. It works.
great. thanks a lot.
Thanks Mate!
thanks, your script help me
Gracias
Thank you for this bash script
Thx a million times!!!!!!!!!!!!!!!!!!!!
Looks like we can now directly download the deb and just click to install: https://meetfranz.com/#download
@mdeggies I seem to be having issues with that install option and the icon appearing properly in Kubuntu 17.04. I know I can wire up the desktop entry, etc., but it just seems like it should be unnecessary
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How do I uninstall it?