Skip to content

Instantly share code, notes, and snippets.

@aelkz
Forked from pythoninthegrass/gitkraken.sh
Created June 8, 2017 14:05
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 aelkz/082086ea7227143f210b1a1c65d7f29f to your computer and use it in GitHub Desktop.
Save aelkz/082086ea7227143f210b1a1c65d7f29f to your computer and use it in GitHub Desktop.
Install GitKraken on Fedora 24
#!/bin/bash
# Download GitKraken
wget https://release.gitkraken.com/linux/gitkraken-amd64.tar.gz
# Extract the Kraken
tar -xvzf gitkraken-amd64.tar.gz
# Move the Kraken
sudo rsync -va --delete-after GitKraken/ /opt/GitKraken/
# Add the Kraken to PATH
echo "export PATH=\$PATH:/opt/GitKraken" >> ~/.bashrc
source ~/.bashrc
## Cinnamon Menu
# Right click Menu > Configure... > Open the menu editor > Applications
# Programming > New Item
# Name: GitKraken
# Command: /opt/GitKraken/gitkraken %U
# Select a suitable icon (e.g., Numix-Circle under /usr/share/icons/Numix-Circle/scalable/apps)
# OK
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment