37 lines
667 B
Bash
Executable File
37 lines
667 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
dotfiles_root="$(dirname "$0")"
|
|
dotfiles_root="$(realpath "$dotfiles_root")"
|
|
scripts_dir="${dotfiles_root}/scripts"
|
|
config_dir="${dotfiles_root}/config"
|
|
|
|
echo "$scripts_dir"
|
|
|
|
rsync -a ~/pictures/wallpapers/* wallpapers/
|
|
cp ~/.chama "${scripts_dir}/chama"
|
|
|
|
cd "$config_dir" || exit
|
|
rsync -a --exclude 'bookmarks' ~/.config/qutebrowser .
|
|
rsync -a ~/.config/bspwm .
|
|
rsync -a ~/.config/sxhkd .
|
|
rsync -a ~/.config/tint2/tint2rc tint2/
|
|
|
|
cd ~/bin || exit
|
|
cp \
|
|
bsp-float \
|
|
bsp-smove \
|
|
bsp-toggle-visibility \
|
|
pfetch \
|
|
power \
|
|
qutesearch \
|
|
qutebrowser \
|
|
rofi-ask \
|
|
"set-desktop-theme" \
|
|
tabc-smart-detach \
|
|
sxhkd-help \
|
|
web \
|
|
git-untracked \
|
|
"$scripts_dir"
|