forked from adi1090x/polybar-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·63 lines (53 loc) · 1.07 KB
/
setup.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
#!/usr/bin/env bash
# Install script for polybar themes
# Dirs
DIR=`pwd`
FDIR="$HOME/.local/share/fonts"
PDIR="$HOME/.config/polybar"
# Install Fonts
install_fonts() {
echo -e "\n[*] Installing fonts..."
[[ ! -d "$FDIR" ]] && mkdir -p "$FDIR"
cp -rf $DIR/fonts/* "$FDIR"
}
# Install Themes
install_themes() {
if [[ -d "$PDIR" ]]; then
echo -e "[*] Creating a backup of your polybar configs..."
mv "$PDIR" "${PDIR}.old"
{ mkdir -p "$PDIR"; cp -rf $DIR/$STYLE/* "$PDIR"; }
else
{ mkdir -p "$PDIR"; cp -rf $DIR/$STYLE/* "$PDIR"; }
fi
if [[ -f "$PDIR/launch.sh" ]]; then
echo -e "[*] Successfully Installed.\n"
exit 0
else
echo -e "[!] Failed to install.\n"
exit 1
fi
}
# Main
main() {
clear
cat <<- EOF
[*] Installing Polybar Themes...
[*] Choose Style -
[1] Simple
[2] Bitmap
EOF
read -p "[?] Select Option : "
if [[ $REPLY == "1" ]]; then
STYLE='simple'
install_fonts
install_themes
elif [[ $REPLY == "2" ]]; then
STYLE='bitmap'
install_fonts
install_themes
else
echo -e "\n[!] Invalid Option, Exiting...\n"
exit 1
fi
}
main