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.
29 lines
707 B
29 lines
707 B
#!/bin/bash
|
|
|
|
repoPath=$HOME/Projects/linux/dotfiles
|
|
cfgPath=$repoPath/.config
|
|
|
|
# All those things
|
|
cp -r $HOME/.config/rofi $cfgPath
|
|
cp -r $HOME/.config/conky $cfgPath
|
|
cp -r $HOME/.config/polybar $cfgPath
|
|
cp -r $HOME/.config/neofetch $cfgPath
|
|
cp -r $HOME/.config/ranger $cfgPath
|
|
cp -r $HOME/.config/dunst $cfgPath
|
|
cp -r $HOME/.config/picom $cfgPath
|
|
cp -r $HOME/.config/nvim $cfgPath
|
|
rm -rf $cfgPath/nvim/plugged
|
|
|
|
# Wallpaper
|
|
rm $repoPath/wallpaper.jpg; cp $HOME/.wallpaper.jpg $repoPath/wallpaper.jpg
|
|
|
|
# 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
|
|
|
|
# Vim
|
|
cp $HOME/.vimrc $repoPath/vimrc
|
|
|
|
|