31 lines
558 B
Bash
Executable File
31 lines
558 B
Bash
Executable File
#!/bin/bash
|
|
|
|
dir=$PWD
|
|
scripts_subdir=$(echo "$PWD/scripts")
|
|
|
|
rsync -a ~/pictures/wallpapers/* wallpapers/
|
|
|
|
cd config
|
|
rsync -a ~/.config/kitty .
|
|
rsync -a --exclude 'bookmarks' ~/.config/qutebrowser .
|
|
rsync -a ~/.config/bspwm .
|
|
rsync -a ~/.config/sxhkd .
|
|
rsync -a ~/.config/tint2/tint2rc tint2/
|
|
rsync -a ~/.config/lxqt .
|
|
rsync -a ~/.config/rofi .
|
|
cp ~/.config/picom.conf .
|
|
|
|
cd ~/bin
|
|
cp \
|
|
bsp-float \
|
|
bsp-floating-only \
|
|
bsp-smove \
|
|
bsp-status \
|
|
bsp-toggle-visibility \
|
|
ezmount \
|
|
pfetch \
|
|
qutesearch \
|
|
rofi-ask \
|
|
tabc-smart-detach \
|
|
sxhkd-help \
|
|
$scripts_subdir |