Skip to content

Instantly share code, notes, and snippets.

@joaquinicolas
Last active March 16, 2024 14:10
Show Gist options
  • Save joaquinicolas/7ae8efffd2555d2c7018c70de6dffb7a to your computer and use it in GitHub Desktop.
Save joaquinicolas/7ae8efffd2555d2c7018c70de6dffb7a to your computer and use it in GitHub Desktop.
Things to do after installing Manjaro
sudo pacman -S base-devel
sudo pacman -S git go
git clone https://aur.archlinux.org/yay.git
cd yay && makepkg -si
cd .. && rm -rf yay/
yay -S terminator
yay -S visual-studio-code-bin
yay -S brave
yay -S docker
sudo systemctl start docker.service
sudo systemctl enable docker.service
sudo usermod -aG docker ${USER}
su - ${USER}
yay -S docker-compose
ssh-keygen -t rsa -b 4096 -C "<your_email>"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
yay -S xclip
xclip -sel clip < ~/.ssh/id_rsa.pub
*(maybe you will need to restart terminal for this command)
Paste the copied pub-ssh to your github account
# Add github-cli:
yay -S github-cli
yay -S jdk
yay -s nodejs
~/.profile
PATH="$HOME/.node_modules/bin:$PATH"
export npm_config_prefix=~/.node_modules
npm install -g n
Query installed packages:
yay -Qe {package_name}
Update installed packages:
yay -S {package_name}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment