Skip to content

Instantly share code, notes, and snippets.

@juliancoleman
Last active February 12, 2018 04:43
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save juliancoleman/d38974fd28583e2d3c269f81e7753d26 to your computer and use it in GitHub Desktop.
Save juliancoleman/d38974fd28583e2d3c269f81e7753d26 to your computer and use it in GitHub Desktop.
A concise install instruction for YakYak on Ubuntu GNOME 16.04
#!/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/icon@32.png
Terminal=false
StartupWMClass=YakYak
Type=Application
Categories=Network;
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
@juliancoleman
Copy link
Author

You may need to logout and log back in to let GNOME reflect these changes.

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