Configuration files for my GNU/Linux installation.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotfiles/copydots.sh

22 lines
504 B

#!/bin/bash
4 years ago
repoPath=$HOME/Projects/linux/dotfiles
cfgPath=$repoPath/.config
# All those things
cp -r $HOME/.config/polybar $cfgPath
cp -r $HOME/.config/neofetch $cfgPath
cp -r $HOME/.config/dunst $cfgPath
cp -r $HOME/.config/picom $cfgPath
cp -r $HOME/.config/nvim $cfgPath
rm -rf $cfgPath/nvim/plugged
cp -r $HOME/.config/alacritty $cfgPath
4 years ago
# ZSH
4 years ago
rm -r $repoPath/zsh-themes; cp -r $HOME/.oh-my-zsh/custom/themes $repoPath/zsh-themes
4 years ago
cp $HOME/.zshrc $repoPath
# Vim
cp $HOME/.vimrc $repoPath/vimrc
4 years ago