2020-03-12 11:44:07 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
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)
|
|
|
|
cd $HOME
|
|
|
|
|
|
|
|
#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-05-16 11:58:49 +02:00
|
|
|
#delete previous backups
|
|
|
|
rm -rf ~/old_dat
|
2020-05-16 12:05:47 +02:00
|
|
|
#make new directory
|
|
|
|
mkdir ~/old_dat
|
2020-05-16 11:58:49 +02:00
|
|
|
#back stuff up
|
2020-06-12 16:43:13 +02:00
|
|
|
rsync -ah --progress ~/.config ~/old_dat/.config &&
|
|
|
|
rsync -ah --progress ~/Dokumente ~/old_dat/Dokumente &&
|
|
|
|
rsync -ah --progress ~/scripts ~/old_dat/scripts &&
|
|
|
|
rsync -ah --progress ~/.mozilla ~/old_dat/.mozilla &&
|
2020-06-17 10:03:17 +02:00
|
|
|
rsync -ah --progress ~/.easystroke ~/old_dat/.easystroke &&
|
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 11:46:34 +02:00
|
|
|
#rsync -ah --progress ~/config/.config/ ~/ &&
|
|
|
|
#rsync -ah --progress ~/config/Dokumente ~/ &&
|
|
|
|
#rsync -ah --progress ~/config/.mozilla ~/ &&
|
|
|
|
#rsync -ah --progress ~config/.easystroke ~/ &&
|
|
|
|
|
|
|
|
rsync -ah ~/config/.config/ ~/ &&
|
|
|
|
rsync -ah ~/config/Dokumente ~/ &&
|
|
|
|
rsync -ah ~/config/.mozilla ~/ &&
|
|
|
|
rsync -ah ~config/.easystroke ~/ &&
|
2020-05-18 08:09:49 +02:00
|
|
|
echo Copied folders
|
|
|
|
#copy single files
|
2020-07-30 11:46:34 +02:00
|
|
|
#rsync -ah --progress ~/config/.bashrc ~/ &&
|
|
|
|
#rsync -ah --progress ~/config/.face ~/ &&
|
|
|
|
#rsync -ah --progress ~/config/.gtkrc-2.0 ~/ &&
|
|
|
|
|
|
|
|
rsync -ah ~/config/.bashrc ~/ &&
|
|
|
|
rsync -ah ~/config/.face ~/ &&
|
|
|
|
rsync -ah ~/config/.gtkrc-2.0 ~/ &&
|
2020-05-18 08:09:49 +02:00
|
|
|
echo Copied files
|
2020-03-12 11:44:07 +01:00
|
|
|
#copy scripts
|
2020-07-30 11:46:34 +02:00
|
|
|
#rsync -ah --progress ~/config/scripts/ ~/
|
|
|
|
|
|
|
|
rsync -ah ~/config/scripts/ ~/
|
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-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-04-15 11:18:39 +02:00
|
|
|
#gimp plugins
|
2020-07-30 11:02:01 +02:00
|
|
|
mkdir ~/.config/GIMP/
|
|
|
|
mkdir ~/.config/GIMP/2.10/
|
2020-07-17 23:51:08 +02:00
|
|
|
mkdir ~/.config/GIMP/2.10/plug-ins/
|
2020-07-30 11:46:34 +02:00
|
|
|
#rsync -ah --progress ~/config/gimp-plugins/* ~/.config/GIMP/2.10/plug-ins/
|
|
|
|
|
|
|
|
rsync -ah ~/config/gimp-plugins/* ~/.config/GIMP/2.10/plug-ins/
|
2020-04-15 11:21:46 +02:00
|
|
|
#unzip gimp plugins
|
2020-04-15 11:27:07 +02:00
|
|
|
echo Unzipping gimp plugins
|
2020-04-15 11:28:19 +02:00
|
|
|
unzip -o ~/.config/GIMP/2.10/plug-ins/export_layers-3.3.1.zip -d ~/.config/GIMP/2.10/plug-ins/
|
2020-04-15 11:27:07 +02:00
|
|
|
rm ~/.config/GIMP/2.10/plug-ins/export_layers-3.3.1.zip
|
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
|
|
|
|
chmod +x ~/.config/polybar/launch.sh
|
|
|
|
chmod +x ~/.config/i3/scripts/i3exit.sh
|
2020-03-12 12:11:28 +01:00
|
|
|
chmod +x ~/scripts/arcolinux-config.sh
|
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
|
|
|
|
|
|
|
#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
|