mirror of https://github.com/E-Almqvist/dotfiles
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.
26 lines
609 B
26 lines
609 B
#!/bin/bash
|
|
|
|
repoPath=$HOME/Projects/linux/dotfiles
|
|
|
|
# All those things
|
|
cp -r $HOME/.config/rofi $repoPath
|
|
cp -r $HOME/.config/conky $repoPath
|
|
cp -r $HOME/.config/polybar $repoPath
|
|
cp -r $HOME/.config/neofetch $repoPath
|
|
cp -r $HOME/.config/ranger $repoPath
|
|
cp -r $HOME/.config/dunst $repoPath
|
|
cp -r $HOME/.config/picom $repoPath
|
|
|
|
# ZSH
|
|
rm -r $repoPath/zsh-themes; cp -r $HOME/.oh-my-zsh/custom/themes $repoPath/zsh-themes
|
|
cp $HOME/.zshrc $repoPath
|
|
|
|
# X
|
|
cp $HOME/.Xresources $repoPath/.Xresources
|
|
|
|
# Doom Emacs
|
|
rm -r $repoPath/doom.d
|
|
cp -r $HOME/.doom.d $repoPath/doom.d
|
|
|
|
# Vim
|
|
cp $HOME/.vimrc $repoPath/vimrc
|
|
|