Files
dotfiles/install
2024-11-05 10:18:47 -05:00

50 lines
583 B
Bash

#!/usr/bin/env bash
# install dotfiles
dotfiles=(
bash_profile
bashrc
config
gitconfig
htoprc
screenrc
tmux.conf
vimrc
vim
xinitrc
Xresources
)
for f in "${dotfiles[@]}"; do
if [ "$f" == "pkgs" ]; then
continue
fi
cp -rv $f ~/."$f"
done
# install packages
packages=(
arandr
i3
i3lock
fzf
git
hsetroot
playerctl
ranger
redshift-gtk
rofi
rxvt-unicode
scrot
ssh
suckless-tools
thunar
x11-xserver-utils # for xrandr
xsel
vim
cmus
fish
)
sudo dpkg -i ./pkgs/*.deb
sudo apt install -y ${packages[@]}
vim '+PlugInstall --sync' +qa