forked from PhalanxHead/i3-gaps_MintInstaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AutoInstaller.sh
executable file
·75 lines (59 loc) · 2.07 KB
/
AutoInstaller.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/bin/bash
################################################################################
#
# Name: AutoInstaller.sh
# Parent: i3-gaps_MintInstaller
# Author: PhalanxHead (https://github.com/PhalanxHead/)
# Date: 25/Jun/2017
#
# Purpose: Installs all of the i3-gaps setup
#
# NOTE: Comment the parts that you don't want, but remember to
# leave the `cd` into the i3-gaps_MintInstaller directory for each script!
# As always, read the code before you run it!
#
################################################################################
cd ~/.i3/i3-gaps_MintInstaller/
# Make all scripts executable
cd ./core/
sudo chmod +x 000_i3_plain.sh 010_i3-gaps_dependencies.sh 020_i3-gaps_install.sh
cd ../UItweakApps/
sudo chmod +x 100_i3_Tweaks.sh 110_i3_Tweaks_conf.sh 120_Fonts_Install.sh
cd ../MyApps/
sudo chmod +x 200_Install_Personal_Apps.sh
cd ../MyConfigs/
sudo chmod +x 300_Install_PersonalConfigs_No_Shortcuts.sh 300_Install_PersonalConfigs_Shortcuts.sh
# Install the core!! (Required)
cd ~/.i3/i3-gaps_MintInstaller/
./core/000_i3_plain.sh
#cd ~/.i3/i3-gaps_MintInstaller/
./core/010_i3-gaps_dependencies.sh
#cd ~/.i3/i3-gaps_MintInstaller/
./core/020_i3-gaps_install.sh
# Install the UI Tweak Apps
cd ~/.i3/i3-gaps_MintInstaller/
./UItweakApps/100_i3_Tweaks.sh
cd ~/.i3/i3-gaps_MintInstaller/
sudo ./UItweakApps/110_i3_Tweaks_conf.sh
cd ~/.i3/i3-gaps_MintInstaller/
./UItweakApps/120_Fonts_Install.sh
# Install My Apps
cd ~/.i3/i3-gaps_MintInstaller/
./MyApps/200_Install_Personal_Apps.sh
# Install My Configs No Shortcuts!
cd ~/.i3/i3-gaps_MintInstaller/
./MyConfigs/300_Install_PersonalConfigs_No_Shortcuts.sh
# Install My Configs with Shortcuts!
#cd ~/.i3/i3-gaps_MintInstaller/
#./MyConfigs/300_Install_PersonalConfigs_Shortcuts.sh
cd ~/.i3
rm -rf ./i3-gaps_MintInstaller
cd $HOME
# Print Success!!
echo
echo
echo "________________________________________________________________________"
echo
echo " Complete!! Restart your computer and log into i3 now!"
echo
echo "________________________________________________________________________"