Last active
November 4, 2017 02:56
-
-
Save douglasmiranda/812d426d941bf26fb3d385c032089dbd to your computer and use it in GitHub Desktop.
Debian Stretch Dektop
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
# Starts Here: | |
- https://gist.github.com/douglasmiranda/0b5b98d9f40b635692e948653ac68a26 | |
- https://gist.github.com/douglasmiranda/710c5125bc4c51953fc8b01a323bccf7 | |
sudo apt-get install -y ack httpie gparted | |
su | |
echo 'deb http://download.opensuse.org/repositories/shells:/fish:/release:/2/Debian_9.0/ /' > /etc/apt/sources.list.d/fish.list | |
wget -nv http://download.opensuse.org/repositories/shells:fish:release:2/Debian_9.0/Release.key -O Release.key | |
apt-key add - < Release.key | |
apt-get update | |
apt-get install -y fish | |
# make as default shell | |
sudo chsh -s /usr/bin/fish | |
# restart | |
# No title bar extension | |
https://extensions.gnome.org/extension/1267/no-title-bar/ | |
# pip install | |
curl https://bootstrap.pypa.io/get-pip.py | sudo python2 | |
sudo pip install virtualenv | |
# pipsi | |
touch ~/.config/fish/config.fish | |
echo "set -gx PATH $HOME/.local/bin \$PATH" >> ~/.config/fish/config.fish | |
curl https://raw.githubusercontent.com/mitsuhiko/pipsi/master/get-pipsi.py | python2 | |
# restart the terminal | |
pipsi install pew | |
pipsi install pipenv | |
pipsi install fabric | |
pipsi install stormssh | |
pipsi install docker-compose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment