43 lines
726 B
Bash
Executable File
43 lines
726 B
Bash
Executable File
#!/bin/bash
|
|
|
|
dir=$PWD
|
|
scripts_subdir="$PWD/scripts"
|
|
|
|
# rsync -a ~/pictures/wallpapers/* wallpapers/
|
|
|
|
cd config || exit
|
|
rsync -a \
|
|
--exclude 'bookmarks' \
|
|
--exclude 'quickmarks' \
|
|
--exclude 'qsettings' \
|
|
--exclude 'autoconfig.yml' \
|
|
~/.config/qutebrowser .
|
|
rsync -a ~/.config/vesktop/settings ./vesktop
|
|
rsync -a ~/.config/bspwm .
|
|
rsync -a ~/.config/sxhkd .
|
|
rsync -a ~/.config/xfce4 \
|
|
--exclude 'desktop' .
|
|
rsync -a ~/.config/rofi .
|
|
# cp ~/.config/picom.conf .
|
|
|
|
cd ~/bin || exit
|
|
cp \
|
|
bsp-auto-monitors \
|
|
bsp-float \
|
|
bsp-key-daemon \
|
|
bsp-smove \
|
|
le-keyboard \
|
|
le-audio \
|
|
sxhkd-help \
|
|
change-scheme \
|
|
le-wallpaper \
|
|
le-wallpaper-open \
|
|
xfce4-le-wallpaper \
|
|
qutebrowser \
|
|
qutesearch \
|
|
rack \
|
|
f \
|
|
"$scripts_subdir"
|
|
|
|
cd "$dir"
|