Last active
February 28, 2021 00:43
-
-
Save eduardomarcos/0061074acfbb1da07638d52c82f0e1df to your computer and use it in GitHub Desktop.
This file contains hidden or 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 apt-get update | |
sudo apt-get install --yes curl vim htop xclip ranger neofetch git net-tools | |
# hstr | |
# https://github.com/dvorka/hstr | |
mkdir -p source | |
cd ~/source | |
git clone https://github.com/dvorka/hstr.git | |
sudo apt-get install --yes automake gcc make libncursesw5-dev libreadline-dev pkg-config | |
cd ~/source/hstr | |
cd ./build/tarball && ./tarball-automake.sh && cd ../.. | |
./configure && make && sudo make install | |
# Oh-My-Zsh | |
# https://github.com/ohmyzsh/ohmyzsh | |
# Manual Font installation -> https://github.com/romkatv/powerlevel10k#manual-font-installation | |
sudo apt-get install --yes zsh | |
sudo apt-get install --yes fonts-powerline | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment