Skip to content

Instantly share code, notes, and snippets.

@Cabeda
Last active October 20, 2020 22:28
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 Cabeda/27b680a094c58fb412aad8376252e1de to your computer and use it in GitHub Desktop.
Save Cabeda/27b680a094c58fb412aad8376252e1de to your computer and use it in GitHub Desktop.
Setup linux manjaro
#!/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