27 lines
460 B
Bash
Executable File
27 lines
460 B
Bash
Executable File
#!/bin/bash
|
|
|
|
dir=$PWD
|
|
scripts_subdir=$(echo "$PWD/scripts")
|
|
|
|
rsync -a ~/pictures/wallpapers/* wallpapers/
|
|
cp ~/.chama "$scripts_subdir/chama"
|
|
|
|
cd config
|
|
rsync -a --exclude 'bookmarks' ~/.config/qutebrowser .
|
|
rsync -a ~/.config/bspwm .
|
|
rsync -a ~/.config/sxhkd .
|
|
rsync -a ~/.config/tint2/tint2rc tint2/
|
|
|
|
cd ~/bin
|
|
cp \
|
|
bsp-float \
|
|
bsp-smove \
|
|
bsp-toggle-visibility \
|
|
pfetch \
|
|
power \
|
|
qutesearch \
|
|
rofi-ask \
|
|
tabc-smart-detach \
|
|
sxhkd-help \
|
|
web \
|
|
$scripts_subdir |