blob: db97b391e4999b6b690db03ff996126c6bd3711d (
plain)
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
|
#!/bin/bash
set -e
trap clear EXIT
export DIALOG_MOUSE=1
# ===== Backend location (installed by pacman) =====
BACKEND_DIR="/usr/lib/pkg-install"
PKG_INSTALL="$BACKEND_DIR/ionarch-pkg-install"
PKG_AUR_INSTALL="$BACKEND_DIR/ionarch-pkg-aur-install"
PKG_REMOVE="$BACKEND_DIR/ionarch-pkg-remove"
# ===================================================
MENU_TEXT="Choose an action:\n\nāā Navigate Enter Select ESC Back"
while true; do
CHOICE=$(dialog \
--clear \
--title "IonArch Package Manager" \
--menu "$MENU_TEXT" \
17 60 4 \
1 "Install Package" \
2 "Install AUR Package" \
3 "Remove Package" \
4 "Exit" \
2>&1 >/dev/tty)
STATUS=$?
clear
# If ESC or Cancel ā redraw menu
if [[ $STATUS -ne 0 ]]; then
continue
fi
case "$CHOICE" in
1)
sudo ionarch-pkg-install || true
;;
2)
if ! command -v yay &>/dev/null; then
dialog --title "Missing Dependency" \
--msgbox "The AUR helper 'yay' is not installed.\n\nInstall it first to use this option." \
9 55
clear
continue
fi
ionarch-pkg-aur-install || true
;;
3)
ionarch-pkg-remove || true
;;
4)
break
;;
esac
done
|