-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.sh
executable file
·37 lines (30 loc) · 1003 Bytes
/
config.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
#!/bin/bash
# Cleaning / moving downloaded /miab-themes folder to /root/ path.
mv /root/custom-dark/miab-themes /root/
wait
sleep 5
# Making sh files executable.
chmod +x /root/miab-themes/custom-dark/custom-dark.sh
chmod +x /root/miab-themes/custom-dark/default-light.sh
wait
echo
echo =================================================
echo
echo Done! Post download config. settings have been applied as follows:
echo
echo - Moved /root/custom-dark/miad-themes folder to /root/
echo - Made sure scripts are CHMOD=+x [executables]
echo - Deleted the now useless /root/custom-dark folder
echo
echo To apply the CUSTOM-DARK theme run:
echo
echo sudo /bin/bash /root/miab-themes/custom-dark/custom-dark.sh
echo
echo Or to apply/ restore the DEFAULT-LIGHT theme run:
echo
echo sudo /bin/bash /root/miab-themes/custom-dark/default-light.sh
echo
echo =================================================
echo
# Cleanup after downloading theme from github and applied this config.
rm -rf /root/custom-dark