Last active
February 12, 2018 04:43
-
-
Save juliancoleman/d38974fd28583e2d3c269f81e7753d26 to your computer and use it in GitHub Desktop.
A concise install instruction for YakYak on Ubuntu GNOME 16.04
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
#!/usr/bin/env xdg-open | |
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=YakYak | |
Comment=Desktop client for Google Hangouts | |
GenericName=Hangouts Client | |
Exec=/opt/yakyak-linux-x64/yakyak | |
Icon=/opt/yakyak-linux-x64/resources/app/icons/[email protected] | |
Terminal=false | |
StartupWMClass=YakYak | |
Type=Application | |
Categories=Network; |
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
cd ~/Downloads | |
wget https://github.com/yakyak/yakyak/releases/download/v1.4.3/yakyak-1.4.3-linux-x64.tar.gz | |
tar -xvzf yakyak-1.4.3-linux-x64.tar.gz | |
rm yakyak-1.4.3-linux-x64.tar.gz | |
sudo mv yakyak-linux-x64/ /opt | |
# [sudo] password for $(whoami) | |
cd /opt | |
sudo chown -R root:root yakyak-linux-x64/ | |
sudo chmod +x yakyak-linux-x64/yakyak | |
cd /usr/share/applications | |
sudo touch yakyak.desktop | |
sudo nano yakyak.desktop # paste the contents of YakYak.desktop | |
sudo chown root:root yakyak.desktop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You may need to logout and log back in to let GNOME reflect these changes.