31 lines
1.1 KiB
Bash
31 lines
1.1 KiB
Bash
|
#!/bin/bash
|
||
|
|
||
|
# this little script backs up all the config files that matter
|
||
|
|
||
|
dotfiles=~/utils/dotfiles
|
||
|
|
||
|
rsync -auvP /etc/X11/Xresources $dotfiles/etc/X11/Xresources
|
||
|
|
||
|
rsync -auvP /etc/default/tlp $dotfiles/etc/default/tlp
|
||
|
rsync -auvP /etc/default/tlp.rpmnew $dotfiles/etc/default/tlp.rpmnew
|
||
|
|
||
|
rsync -auvP ~/alltheconfigs.sh $dotfiles/alltheconfigs.sh
|
||
|
|
||
|
rsync -auvP ~/.zshrc $dotfiles/zsh/zshrc
|
||
|
|
||
|
rsync -auvP ~/.vim/vimrc $dotfiles/vimrc
|
||
|
|
||
|
rsync -auvP ~/.config/openbox/autostart $dotfiles/config/openbox
|
||
|
rsync -auvP ~/.config/openbox/rc.xml $dotfiles/config/openbox
|
||
|
rsync -auvP ~/.config/openbox/menu.xml $dotfiles/config/openbox
|
||
|
rsync -auvP ~/.config/openbox/helper.sh $dotfiles/config/openbox
|
||
|
rsync -auvP ~/.config/openbox/mic.sh $dotfiles/config/openbox
|
||
|
rsync -auvP ~/.config/openbox/VolumeNotify.sh $dotfiles/config/openbox
|
||
|
rsync -auvP ~/.config/openbox/locker.sh $dotfiles/config/openbox
|
||
|
rsync -auvP ~/.config/openbox/locker-suspend.sh $dotfiles/config/openbox
|
||
|
rsync -auvP ~/.config/openbox/desktop-pause.sh $dotfiles/config/openbox
|
||
|
|
||
|
#rsync -auvP ~/.conky/conkyrc $dotfiles/conky/conkyrc
|
||
|
|
||
|
rsync -auvP ~/.oh-my-zsh/themes/myowntheme* $dotfiles/zsh/oh-my-zsh/themes
|