2020-03-12 11:44:07 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-10-12 07:15:20 +02:00
|
|
|
set -euo pipefail
|
|
|
|
|
2020-04-10 13:12:35 +02:00
|
|
|
#ANY CHANGES TO THE INSTALLATION PROCEDURE SHOULD BE MADE HERE
|
|
|
|
|
2020-03-12 11:44:07 +01:00
|
|
|
#change to home (does not show in terminal)
|
2020-10-12 07:18:24 +02:00
|
|
|
cd "$HOME"
|
2020-03-12 11:44:07 +01:00
|
|
|
|
|
|
|
#remove old installs
|
2020-04-18 23:36:24 +02:00
|
|
|
rm -rf ~/config
|
2020-03-12 11:44:07 +01:00
|
|
|
|
|
|
|
#clone this repo
|
2020-04-18 23:36:24 +02:00
|
|
|
git clone https://gitlab.com/RealStickman-arcolinux/config.git &&
|
2020-03-12 11:44:07 +01:00
|
|
|
|
2020-11-10 08:29:29 +01:00
|
|
|
# check if the install scripts are the same
|
|
|
|
if ! cmp --silent "$HOME/scripts/arcolinux-config.sh" "$HOME/config/scripts/arcolinux-config.sh" ; then
|
2020-11-10 08:31:35 +01:00
|
|
|
echo Removed old config file and launched new one.
|
2020-11-10 08:33:35 +01:00
|
|
|
rm "$HOME/scripts/arcolinux-config.sh" && cp "$HOME/config/scripts/arcolinux-config.sh" "$HOME/scripts/" && bash ~/scripts/arcolinux-config.sh
|
2020-11-10 08:29:29 +01:00
|
|
|
fi
|
|
|
|
|
2020-05-16 11:58:49 +02:00
|
|
|
#delete previous backups
|
2020-11-10 08:29:29 +01:00
|
|
|
echo Removing old backup
|
2020-05-16 11:58:49 +02:00
|
|
|
rm -rf ~/old_dat
|
2020-09-09 20:56:53 +02:00
|
|
|
|
2020-05-16 12:05:47 +02:00
|
|
|
#make new directory
|
2020-11-10 08:29:29 +01:00
|
|
|
echo Creating backup
|
2020-05-16 12:05:47 +02:00
|
|
|
mkdir ~/old_dat
|
2020-09-09 20:56:53 +02:00
|
|
|
|
2020-11-10 07:58:07 +01:00
|
|
|
# make subdirectories
|
2020-11-10 08:29:29 +01:00
|
|
|
mkdir ~/old_dat/.config || echo Directory already exists
|
|
|
|
mkdir ~/old_dat/.doom.d || echo Directory already exists
|
|
|
|
mkdir ~/old_dat/.easystroke || echo Directory already exists
|
2020-11-10 08:00:09 +01:00
|
|
|
mkdir ~/old_dat/.local || echo Directory already exists
|
2020-11-10 08:29:29 +01:00
|
|
|
mkdir ~/old_dat/.mozilla || echo Directory already exists
|
|
|
|
mkdir ~/old_dat/scripts || echo Directory already exists
|
2020-11-10 08:00:09 +01:00
|
|
|
|
|
|
|
# make subsubdirectories
|
2020-11-10 07:58:07 +01:00
|
|
|
mkdir ~/old_dat/.local/share || echo Directory already exists
|
|
|
|
|
2020-11-10 08:29:29 +01:00
|
|
|
##############################
|
|
|
|
# back stuff up
|
|
|
|
##############################
|
2020-09-14 10:41:53 +02:00
|
|
|
#config folders
|
2020-11-10 07:58:07 +01:00
|
|
|
rsync -ah ~/.config/MangoHud ~/old_dat/.config/ || echo Directory does not exist
|
2020-11-10 08:29:29 +01:00
|
|
|
rsync -ah ~/.config/fish ~/old_dat/.config/ || echo Directory does not exist
|
|
|
|
rsync -ah ~/.config/gtk-3.0 ~/old_dat/.config/ || echo Directory does not exist
|
|
|
|
rsync -ah ~/.config/i3 ~/old_dat/.config/ || echo Directory does not exist
|
|
|
|
rsync -ah ~/.config/neofetch ~/old_dat/.config/ || echo Directory does not exist
|
|
|
|
rsync -ah ~/.config/openbox ~/old_dat/.config/ || echo Directory does not exist
|
|
|
|
rsync -ah ~/.config/polybar ~/old_dat/.config/ || echo Directory does not exist
|
|
|
|
rsync -ah ~/.config/termite ~/old_dat/.config/ || echo Directory does not exist
|
|
|
|
rsync -ah ~/.config/variety ~/old_dat/.config/ || echo Directory does not exist
|
|
|
|
|
|
|
|
# doom.d folder
|
|
|
|
rsync -ah ~/.doom.d ~/old_dat/ || echo Directory does not exist
|
|
|
|
|
|
|
|
# easystroke
|
|
|
|
rsync -ah ~/.easystroke ~/old_dat/ || echo Directory does not exist
|
|
|
|
|
|
|
|
# local folder
|
|
|
|
rsync -ah ~/.local/share/applications/ ~/old_dat/.local/share/ || echo Directory does not exist
|
|
|
|
|
|
|
|
# mozilla
|
|
|
|
rsync -ah ~/.mozilla ~/old_dat/ || echo Directory does not exist
|
|
|
|
|
|
|
|
# scripts
|
|
|
|
rsync -ah ~/scripts ~/old_dat/ || echo Directory does not exist
|
2020-05-18 08:09:49 +02:00
|
|
|
echo Made backups
|
2020-05-16 11:58:49 +02:00
|
|
|
|
2020-05-18 08:09:49 +02:00
|
|
|
#copy folders
|
2020-07-30 12:58:38 +02:00
|
|
|
cp -r ~/config/.config/ ~/ &&
|
2020-11-09 19:52:31 +01:00
|
|
|
cp -r ~/config/.local/ ~/ &&
|
2020-07-30 12:58:38 +02:00
|
|
|
cp -r ~/config/Dokumente ~/ &&
|
|
|
|
cp -r ~/config/.mozilla ~/ &&
|
|
|
|
cp -r ~/config/.easystroke ~/ &&
|
2020-09-09 20:56:53 +02:00
|
|
|
cp -r ~/config/.doom.d ~/ &&
|
2020-05-18 08:09:49 +02:00
|
|
|
echo Copied folders
|
2020-07-30 11:46:34 +02:00
|
|
|
|
2020-09-09 20:56:53 +02:00
|
|
|
#copy single files
|
2020-07-30 12:58:38 +02:00
|
|
|
cp -r ~/config/.bashrc ~/ &&
|
|
|
|
cp -r ~/config/.face ~/ &&
|
|
|
|
cp -r ~/config/.gtkrc-2.0 ~/ &&
|
2020-08-28 21:51:25 +02:00
|
|
|
cp -r ~/config/.gitconfig ~/ &&
|
2020-05-18 08:09:49 +02:00
|
|
|
echo Copied files
|
2020-07-30 11:46:34 +02:00
|
|
|
|
2020-09-09 20:56:53 +02:00
|
|
|
#copy scripts
|
2020-07-30 12:58:38 +02:00
|
|
|
cp -r ~/config/scripts/ ~/
|
2020-09-09 20:56:53 +02:00
|
|
|
|
2020-04-10 13:03:58 +02:00
|
|
|
#copy stuff to /etc
|
2020-04-18 23:36:24 +02:00
|
|
|
sudo cp -r ~/config/etc /
|
2020-09-09 20:56:53 +02:00
|
|
|
|
2020-11-05 20:30:08 +01:00
|
|
|
# NOTE Distro specific stuff
|
2020-11-05 14:39:17 +01:00
|
|
|
distro=$(cat /etc/*-release | grep "^ID=")
|
|
|
|
if [ "$distro" == "ID=arcolinux" ]; then
|
2020-11-05 13:37:34 +01:00
|
|
|
sudo mv /etc/arco-pacman.conf /etc/pacman.conf
|
|
|
|
fi
|
2020-11-05 14:39:17 +01:00
|
|
|
if [ "$distro" == "ID=arch" ]; then
|
2020-11-05 13:37:34 +01:00
|
|
|
sudo mv /etc/arch-pacman.conf /etc/pacman.conf
|
|
|
|
fi
|
|
|
|
|
2020-04-16 21:05:43 +02:00
|
|
|
#copy old lightdm themes (and maybe other stuff, idk)
|
2020-04-18 23:36:24 +02:00
|
|
|
sudo cp -r ~/config/var /
|
2020-03-12 11:44:07 +01:00
|
|
|
|
2020-10-10 12:40:51 +02:00
|
|
|
#copy usr stuff
|
|
|
|
sudo cp -r ~/config/usr /
|
|
|
|
|
2020-10-27 16:32:26 +01:00
|
|
|
# copy xresources
|
|
|
|
cp ~/config/.Xresources ~/
|
|
|
|
|
2020-04-15 11:18:39 +02:00
|
|
|
#gimp plugins
|
2020-10-12 20:12:33 +02:00
|
|
|
mkdir ~/.config/GIMP/ || echo Not creating directory
|
|
|
|
mkdir ~/.config/GIMP/2.10/ || echo Not creating directory
|
|
|
|
mkdir ~/.config/GIMP/2.10/plug-ins/ || echo Not creating directory
|
2020-09-09 20:56:53 +02:00
|
|
|
rsync -ah ~/config/gimp-plugins/* ~/.config/GIMP/2.10/plug-ins/
|
2020-07-30 11:46:34 +02:00
|
|
|
|
2020-04-15 11:21:46 +02:00
|
|
|
#unzip gimp plugins
|
2020-04-15 11:27:07 +02:00
|
|
|
echo Unzipping gimp plugins
|
2020-10-12 20:09:57 +02:00
|
|
|
unzip -o ~/.config/GIMP/2.10/plug-ins/export_layers-3.3.1.zip -d ~/.config/GIMP/2.10/plug-ins/ > /dev/null
|
|
|
|
rm ~/.config/GIMP/2.10/plug-ins/export_layers-3.3.1.zip > /dev/null
|
2020-04-15 11:21:46 +02:00
|
|
|
echo Unzipped gimp plugins
|
2020-04-15 11:18:39 +02:00
|
|
|
|
2020-03-12 11:44:07 +01:00
|
|
|
#make bash scripts executable
|
2020-11-09 20:10:03 +01:00
|
|
|
chmod +x -R ~/.config/polybar/
|
|
|
|
chmod +x -R ~/.config/i3/scripts
|
|
|
|
chmod +x -R ~/scripts
|
|
|
|
|
|
|
|
# make applications executable
|
|
|
|
chmod +x -R ~/.local/share/applications
|
2020-03-12 11:44:07 +01:00
|
|
|
|
|
|
|
#remove downloaded folder
|
2020-04-18 23:36:24 +02:00
|
|
|
rm -rf ~/config
|
2020-03-12 11:44:07 +01:00
|
|
|
|
2020-11-09 20:12:32 +01:00
|
|
|
# reload applications
|
|
|
|
update-desktop-database ~/.local/share/applications/
|
|
|
|
|
2020-09-09 20:56:53 +02:00
|
|
|
#sync doom-emacs
|
|
|
|
~/.emacs.d/bin/doom sync
|
|
|
|
|
2020-10-27 16:34:16 +01:00
|
|
|
# reload .Xresources
|
|
|
|
xrdb ~/.Xresources
|
|
|
|
|
2020-03-12 11:44:07 +01:00
|
|
|
#restart i3 in place
|
|
|
|
i3 restart
|
|
|
|
|
|
|
|
#output
|
|
|
|
echo Finished updating everything!
|
|
|
|
echo Launching new shell!
|
|
|
|
|
|
|
|
#new shell to reload .bashrc and fish config
|
|
|
|
exec bash
|