Last active
October 20, 2020 22:28
-
-
Save Cabeda/27b680a094c58fb412aad8376252e1de to your computer and use it in GitHub Desktop.
Setup linux manjaro
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
#!/bin/bash | |
# oh my zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
#Install starship | |
curl -fsSL https://starship.rs/install.sh | bash | |
# Install pacman packages (prefered) | |
# Update package list | |
sudo pacman -Sy | |
sudo pacman -S alacritty bitwarden tldr git \ | |
fzf z vlc github-cli docker \ | |
pwgen jq yq nodejs postgresql \ | |
ripgrep steam | |
sudo pacman -U zoom_x86_64.pkg.tar.xz | |
# Install snap packages | |
sudo pacman -S snapd | |
sudo snap install code --classic | |
sudo snap install authy --beta | |
# Install Python poetry | |
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - | |
pip install pipenv | |
# Install wtih brew (secdond option) | |
brew install \ | |
zoomus notion\ | |
gpg speedtest \ | |
sudo pacman -S base-devel | |
echo | |
echo_ok "Done." | |
echo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment