-
Notifications
You must be signed in to change notification settings - Fork 4
/
install.sh
executable file
·34 lines (29 loc) · 931 Bytes
/
install.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
#!/usr/bin/env sh
printf "\t\tWelcome to the installer!\n"
printf "1. Aex Nomad\n2. Aex Nomad Dark\n3. Breeze No Shadow Antu\n4. Breeze Transparent Nomad\n"
echo -n "Select theme: "
read theme
case $theme in
1)
echo "installing Aex Nomad"
cp -r Aex\ Nomad $HOME/.local/share/plasma/desktoptheme/
;;
2)
echo "installing Aex Nomad Dark"
cp -r Aex\ Nomad\ Dark $HOME/.local/share/plasma/desktoptheme/
;;
3)
echo "installing Breeze No Shadow Antu"
cp -r Breeze\ No\ Shadow\ Antu $HOME/.local/share/plasma/desktoptheme/
;;
4)
echo "installing Breeze Transparent Nomad"
cp -r Breeze\ Transparent\ Nomad $HOME/.local/share/plasma/desktoptheme/
;;
*)
echo -n "Invalid Option"
;;
esac
if [ $theme -lt 5 ]; then
printf "Installation Complete!\nGo to settings > plasma style and select the theme"
fi