-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxbpsman
executable file
·141 lines (123 loc) · 3.97 KB
/
xbpsman
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#!/usr/bin/env bash
# Quit is for the main menu. If Quit is 0, we will not exit the menu. When the user selects Quit,
# This value is changed to 1 and we will exit the main menu.
QUIT=0
XBPSMAN_VER=v0.18
# Saves screen so we can return to the previous screen later.
savescreen() {
printf '\e[?1049h'
}
# Restores previous screen
restorescreen() {
printf '\e[?1049l'
}
mainmenu() {
clear
COLS=$(tput cols)
COLS=$((COLS-2))
ROWS=$(tput lines)
ROWS=$((ROWS-10))
gum style --border "rounded" --padding "1" --width="$COLS" --align="center" "xbpsman $XBPSMAN_VER"
printf "\e[7;${ROWS}r"
tput cup 7 0 && tput ed
MAINCHOICE=$(gum choose "Update all packages" "Search and add packages" "Remove installed packages" "Quit" --selected.background="4" --selected.foreground="16" --cursor="=> ")
case $MAINCHOICE in
"Update all packages" )
clear
COLS=$(tput cols)
COLS=$((COLS-2))
ROWS=$(tput lines)
ROWS=$((ROWS-10))
gum style --border "rounded" --padding "1" --width="$COLS" --align="center" "Update all Packages"
printf "\e[7;${ROWS}r"
tput cup 7 0 && tput ed
sudo xbps-install -Syu
output=$(sudo xbps-install -Syu 2>&1)
# Check for common error indicators in the output
if echo "$output" | grep -q "ERROR"; then
printf "An error occurred during the update.\nPress any key to continue"
else
printf "Packages updated\nPress any key to continue"
fi
read -n1
;;
"Search and add packages" )
# Search and add packages
clear
COLS=$(tput cols)
COLS=$((COLS-2))
ROWS=$(tput lines)
ROWS=$((ROWS-10))
printf "\\e[;r"
gum style --border "rounded" --padding "1" --width="$COLS" --align="center" "Search and Add Packages"
# tput cup 10 0 && tput ed
INSTALLPKGS=$(xbps-query -Rs "" | gum filter --no-limit --no-fuzzy --height=$ROWS | awk '{print $2}')
EXITERROR=$?
if [[ $EXITERROR -ne 0 ]]; then
printf "\\e[7;${ROWS}r"
tput cup 7 0
printf "Exiting. Going back to main menu."
sleep 3
else
printf "\\e[7;${ROWS}r"
tput cup 7 0
# Directly use the selected package names
sudo xbps-install $INSTALLPKGS
EXITERROR=$?
if [[ $EXITERROR -eq 0 ]]; then
printf "Installation succeeded \\nPress any key to continue"
read -n1
clear
else
printf "Installation incomplete or completed with errors \\nPress any key to continue"
read -n1
clear
fi
fi
;;
"Remove installed packages" )
# Remove installed packages
clear
COLS=$(tput cols)
COLS=$((COLS-2))
ROWS=$(tput lines)
ROWS=$((ROWS-10))
printf "\\e[;r"
gum style --border "rounded" --padding "1" --width="$COLS" --align="center" "Remove installed packages"
# tput cup 10 0 && tput ed
# Corrected this line
RMPKGS=$(xbps-query -s "" | gum filter --no-limit --no-fuzzy --height="$ROWS" | awk '{print $2}')
EXITERROR=$?
if [[ $EXITERROR -ne 0 ]]; then
printf "\\e[7;${ROWS}r"
tput cup 7 0
printf "Exiting. Going back to main menu."
sleep 3
else
printf "\\e[7;${ROWS}r"
tput cup 7 0
# Directly use the selected package names
sudo xbps-remove $RMPKGS
EXITERROR=$?
if [[ $EXITERROR -eq 0 ]]; then
printf "Packages removed \\nPress any key to continue"
read -n1
clear
else
printf "Package removal incomplete or completed with errors \\nPress any key to continue"
read -n1
clear
fi
fi
;;
"Quit" )
QUIT=1
;;
esac
}
savescreen
while [[ $QUIT -eq 0 ]]; do
mainmenu
done
printf '\e[;r'
restorescreen