dotfiles/Makefile
2024-07-03 15:37:56 +03:00

25 lines
878 B
Makefile

DOTFILES_DIR := /home/osbm/Documents/dotfiles/src
clone:
git clone https://github.com/osbm/rerouting.git ~/Documents/rerouting
git clone https://github.com/osbm/wallpapers.git ~/Pictures/wallpapers
install-programs-pacman:
sudo pacman -S tmux alacritty trash-cli git git-lfs spectacle unzip docker docker-compose pyenv libreoffice-still obsidian
link:
# delete directories if they exist
rm -rf ~/.config/alacritty
rm -rf ~/.config/fish
ln -sf $(DOTFILES_DIR)/.gitconfig ~/.gitconfig
ln -sf $(DOTFILES_DIR)/.config/alacritty/ ~/.config/alacritty
ln -sf $(DOTFILES_DIR)/.config/fish/ ~/.config/fish
ln -sf $(DOTFILES_DIR)/.config/tmux/tmux.conf ~/.config/tmux/tmux.conf
ln -sf $(DOTFILES_DIR)/.ssh/config ~/.ssh/config
install-tpm:
git clone https://github.com/tmux-plugins/tpm ~/.config/tmux/plugins/tpm
echo "Dont forget to install tmux plugins by `C-s I`"