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.
18 lines
378 B
18 lines
378 B
#!/bin/bash
|
|
|
|
repoPath=$HOME/dotfiles
|
|
|
|
# All those things
|
|
cp -r $HOME/.config/i3 $repoPath
|
|
cp -r $HOME/.config/rofi $repoPath
|
|
cp -r $HOME/.config/conky $repoPath
|
|
cp -r $HOME/.config/polybar $repoPath
|
|
cp -r $HOME/.config/termite $repoPath
|
|
cp -r $HOME/.config/neofetch $repoPath
|
|
|
|
# Vim
|
|
cp $HOME/.vimrc $repoPath/vimrc
|
|
|
|
# Background
|
|
cp $HOME/.wallpaper.jpg $repoPath/wallpaper.jpg
|
|
|
|
|