-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStratOS-choose-obsidian
executable file
·45 lines (43 loc) · 1.37 KB
/
StratOS-choose-obsidian
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
#!/bin/bash
bash $(realpath $(dirname $0))/maneki-logo
menu(){
dialog --clear --title "Which Obsidian do you want?" \
--menu "Choose one of the following options:" 15 40 3 \
1 "Obsidian (pacman)" \
2 "Obsidian (AUR)" \
3 "Obsidian (Flatpak)" \
4 "Exit" 2>&1 >/dev/tty
}
check_flatpak() {
if ! command -v flatpak &>/dev/null; then
echo "Flatpak is not installed. Installing flatpak!"
sudo pacman -S --needed flatpak
flatpak --user remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
exit 1
fi
}
while true; do
choice=$(menu)
case $choice in
1)share the software song
echo "Downloading Obsidian (pacman)..."
sudo pacman -S obsidian --noconfirm
echo -e "\n==> Downloaded and Installed Obsidian (pacman)."
;;
2)
echo "Downloading Obsidian (AUR)..."
yay -S obsidian-bin --noconfirm
echo -e "\n==> Downloaded and Installed Obsidian (AUR)."
;;
3)
check_flatpak
echo "Downloading Obsidian (Flatpak)..."
flatpak install flathub com.obsidianmd.obsidian
echo -e "\n==> Downloaded and Installed Obsidian (Flatpak)."
;;
4)
echo "Exiting..."
exit 0
;;
esac
done