2021-04-18 09:17:43 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-05-21 10:28:18 +00:00
|
|
|
###################### Specific to Arch based distributions ######################
|
2021-04-18 09:17:43 +00:00
|
|
|
## Install needed packages
|
|
|
|
# WM : bspwm sxhkd xorg-xinit xorg-server xorg-randr xterm alacritty
|
2021-05-25 13:01:23 +00:00
|
|
|
# Cosmetic : feh w3m
|
2021-05-21 10:28:18 +00:00
|
|
|
# Fonts : nerd-fonts-meslo
|
2021-04-18 09:17:43 +00:00
|
|
|
# Dev env : git tmux
|
|
|
|
# Yay dep : base-devel
|
2021-05-25 13:01:23 +00:00
|
|
|
# CLI bitwarden integration : bitwarden-cli jq fzf
|
|
|
|
# Rofi bitwarden integration : bitwarden-cli bitwarden-rofi
|
2021-05-21 10:28:18 +00:00
|
|
|
sudo pacman -S bspwm sxhkd xorg-xinit xorg-server xorg-xrandr xterm alacritty \
|
2021-05-25 13:01:23 +00:00
|
|
|
feh w3m \
|
2021-05-21 10:28:18 +00:00
|
|
|
nerd-fonts-meslo \
|
|
|
|
git tmux \
|
2021-05-25 13:01:23 +00:00
|
|
|
base-devel \
|
|
|
|
bitwarden-cli jq fzf \
|
|
|
|
bitwarden-rofi
|
2021-04-18 09:17:43 +00:00
|
|
|
|
|
|
|
## Install yay
|
|
|
|
git clone https://aur.archlinux.org/yay.git /tmp/yay
|
|
|
|
cd /tmp/yay
|
|
|
|
makepkg -si
|
|
|
|
|
|
|
|
## Install AUR packages
|
2021-04-26 15:31:45 +00:00
|
|
|
yay -S polybar pulseaudio-control eww-git
|
2021-04-18 09:17:43 +00:00
|
|
|
|
2021-05-21 10:28:18 +00:00
|
|
|
###################### Distribution agnostic ######################
|
|
|
|
|
2021-04-18 09:17:43 +00:00
|
|
|
## Install vim-plug
|
|
|
|
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
|
|
|
|
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
|
|
|
|
|
|
|
|
## Install tmux plugin manager
|
|
|
|
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
|
|
|
|
|
|
|
|
## Install powerlevel10k
|
|
|
|
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
|