-
Notifications
You must be signed in to change notification settings - Fork 2
/
backup.sh
executable file
·48 lines (39 loc) · 1.09 KB
/
backup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash
backup_dir="/home/$USER/dotfiles"
config_folder="$HOME/.config"
declare -a HOME_FILES=(".zshrc" ".Xresources" ".conky")
declare -a CONFIG_FILES=("dunst" "gtk-2.0" "gtk-3.0" "i3" "i3status" "polybar" "rofi" "spicetify" "terminator" "betterlockscreenrc" "libinput-gestures.conf" "picom.conf" "compton.conf" "an2linux/config")
echo "Copying files from home dir"
for f in "${HOME_FILES[@]}"
do
cd ~
rsync -a --info=progress2 "$HOME/$f" "$backup_dir"
done
echo "Copying files from .config dir"
for f in "${CONFIG_FILES[@]}"
do
rsync -a --info=progress2 "$config_folder/$f" "$backup_dir/.config"
done
echo "Updating package list"
pacman -Qqe > $backup_dir/pkglist.txt
if [ $# -eq 0 ]
then
echo "No arguments supplied"
else
if [ $1 == "upload" ]
then
cd $backup_dir
pwd
git diff
git add .
if [ $# -eq 1 ]
then
echo "Uploading with default commit message"
git commit -m "update dotfiles $(date)"
else
echo $2
git commit -m "$2"
fi
git push origin arch
fi
fi