debian-config-submenu 14.3 KB
Newer Older
Igor Pecovnik's avatar
Igor Pecovnik committed
1
2
#!/bin/bash
#
Igor Pecovnik's avatar
Igor Pecovnik committed
3
# Copyright (c) 2018 Igor Pecovnik, igor.pecovnik@gma**.com
Igor Pecovnik's avatar
Igor Pecovnik committed
4
5
6
7
8
#
# This file is licensed under the terms of the GNU General Public
# License version 2. This program is licensed "as is" without any
# warranty of any kind, whether express or implied.

9
10
11
12
13
# Functions:
# submenu_settings
# submenu_networking
# submenu_personal
# submenu_software
14

Igor Pecovnik's avatar
Igor Pecovnik committed
15
16
17
18


#
# system settings
Igor Pecovnik's avatar
Igor Pecovnik committed
19
#
Igor Pecovnik's avatar
Igor Pecovnik committed
20
function submenu_settings ()
Igor Pecovnik's avatar
Igor Pecovnik committed
21
{
22
unset main
Igor Pecovnik's avatar
Igor Pecovnik committed
23
24
25
while true; do

	LIST=()
Igor Pecovnik's avatar
Igor Pecovnik committed
26
27
	DIALOG_CANCEL=1
	DIALOG_ESC=255
Igor Pecovnik's avatar
Igor Pecovnik committed
28

29
30
31
	# detect desktop
	check_desktop

Igor Pecovnik's avatar
Igor Pecovnik committed
32
	# check update status of BSP packages
Igor Pečovnik's avatar
Igor Pečovnik committed
33
	local mark=$(apt-mark showhold | egrep "linux|armbian")
34

Igor Pečovnik's avatar
Igor Pečovnik committed
35
	# check if eMMC/SD is on the system
Igor Pecovnik's avatar
Igor Pecovnik committed
36
37
	if [[ $(sed -n 's/^DEVNAME=//p' /sys/dev/block/$(mountpoint -d /)/uevent 2> /dev/null) == mmcblk* \
	&& -f /usr/sbin/nand-sata-install ]]; then
Igor Pečovnik's avatar
Igor Pečovnik committed
38
		LIST+=( "Install" "Install to/update boot loader" )
Igor Pecovnik's avatar
Igor Pecovnik committed
39
40
41
	fi

	# armbian specific function
42
43
	if [[ -f /etc/armbian-release ]]; then
		if [[ -n "${mark}" ]]; then
44
				LIST+=( "Defreeze" "Enable Armbian kernel upgrades " )
45
			else
46
				LIST+=( "Freeze" "Disable Armbian kernel upgrades " )
47
		fi
48
	fi
Igor Pecovnik's avatar
Igor Pecovnik committed
49
50
51
52

	# armbian specific function, when upgrades are enabled
	if [[ -z ${mark} ]]; then
		[[ -f /etc/apt/sources.list.d/armbian.list ]] && [[ -n $(grep -w apt /etc/apt/sources.list.d/armbian.list) ]] \
53
		&& LIST+=( "Nightly" "Switch to nightly automated builds" )
Igor Pecovnik's avatar
Igor Pecovnik committed
54
		[[ -f /etc/apt/sources.list.d/armbian.list ]] && [[ -n $(grep -w beta /etc/apt/sources.list.d/armbian.list) ]] \
55
56
		&& LIST+=( "Stable" "Switch to stable builds" )
	fi
Igor Pecovnik's avatar
Igor Pecovnik committed
57

58
	[[ -n $(grep -w "#kernel.printk" /etc/sysctl.conf ) ]] && LIST+=( "Lowlevel" "Stop low-level messages on console" )
Igor Pecovnik's avatar
Igor Pecovnik committed
59

60
61
62
	[[ -f /boot/armbianEnv.txt ]] && LIST+=( "Bootenv" "Edit boot environment" )
	[[ -f /boot/boot.ini ]] && LIST+=( "Bootscript" "Edit boot script" )

63
64
65
66
	if [[ -f /etc/default/cpufrequtils ]]; then
		LIST+=( "CPU" "Set CPU speed and governor" )
	fi

67
68
69
70
71
72
73
	AVAHIDSTATUS=$(service avahi-daemon status 2> /dev/null | grep -w active | grep -w running)
	if [[ -n "$AVAHIDSTATUS" ]]; then
		LIST+=( "Avahi" "Disable system announce in the network" )
		else
		LIST+=( "Avahi" "Announce system in the network" )
	fi

74
	[[ -d ${OVERLAYDIR} ]] && \
75
	LIST+=( "Hardware" "Toggle hardware configuration: UART, I2C, etc." )
76
	[[ "$LINUXFAMILY" = cubox && "$BRANCH" = "next" ]] && LIST+=( "DTB" "Switch board .dtb configuration" )
77
78
79
	# this is avaliable only in kernel higher than 4.10
	testvercomp "$(uname -r | sed 's/-.*//')" "4.10.0" ">"
	[[ "$LINUXFAMILY" = odroidxu4 && $? == 0 ]] && LIST+=( "DTB" "Select optimised board configuration" )
80
	[[ -f /usr/bin/bin2fex && "$LINUXFAMILY" = sun*i && "$BRANCH" = "default" ]] && LIST+=( "Fexedit" "Board (fex) settings editor" )
81

Igor Pečovnik's avatar
Igor Pečovnik committed
82
	[[ -z ${mark} ]] && [[ -f /etc/apt/sources.list.d/armbian.list ]] && LIST+=( "Other" "Switch to other kernels" )
83

Igor Pecovnik's avatar
Igor Pecovnik committed
84
	LIST+=( "SSH" "Reconfigure SSH daemon" )
85
	LIST+=( "Firmware" "Run apt update & apt upgrade" )
86
87
88
89

	if [[ "$SHELL" != "/bin/bash" ]]; then
		LIST+=( "BASH" "Revert to stock BASH shell" )
		else
Igor Pečovnik's avatar
Igor Pečovnik committed
90
		LIST+=( "ZSH" "Install ZSH with plugins and tmux" )
91
92
93
	fi


94
	[[ "$LINUXFAMILY" = sun*i && "$BRANCH" = "default" && \
95
96
	-n $(bin2fex </boot/script.bin 2>/dev/null | grep -w "hdmi_used = 1") ]] && LIST+=( "Display" "Set the display resolution" )
	[[ "$LINUXFAMILY" = odroidc* || "$LINUXFAMILY" = odroidn2 && "$BRANCH" = "default" ]] && LIST+=( "Display" "Set the display resolution" )
Igor Pecovnik's avatar
Igor Pecovnik committed
97
	# desktop
Igor Pecovnik's avatar
Igor Pecovnik committed
98
	if [[ -n $DISPLAY_MANAGER ]]; then
Aristo Chen's avatar
Aristo Chen committed
99
		LIST+=( "Desktop" "Disable desktop or change login type" )
100
	else
Aristo Chen's avatar
Aristo Chen committed
101
102
103
104
105
		if [[ -n $DESKTOP_INSTALLED ]]; then
			LIST+=( "Desktop" "Enable desktop" )
		else
			LIST+=( "Default" "Install desktop with browser and extras" )
		fi
Igor Pecovnik's avatar
Igor Pecovnik committed
106
107
	fi

Igor Pecovnik's avatar
Igor Pecovnik committed
108
	# overlayroot
Igor Pecovnik's avatar
Igor Pecovnik committed
109
110
111
112
113
114
115
116
	if [[ "$DISTRO" == "Ubuntu" && "$(modinfo overlay > /dev/null 2>&1; echo $?)" == "0" ]]; then
		if [ -n "$(mount | grep -w tmpfs-root)" ]; then
			LIST+=( "Overlayroot" "Disable virtual read-only root filesystem" )
		else
			LIST+=( "Overlayroot" "Enable virtual read-only root filesystem" )
		fi
	fi

jeanrhum's avatar
jeanrhum committed
117
118
	LIST+=( "Dtc" "View/Edit/Compile device tree WIP" )

JC Staudt's avatar
JC Staudt committed
119
120
121
	# count number of menu items to adjust window size
	LISTLENGTH="$((6+${#LIST[@]}/2))"
	BOXLENGTH=${#LIST[@]}
Igor Pečovnik's avatar
Igor Pečovnik committed
122
123
124
125
126
127
128
129
130
131
132
	temp_rc=$(mktemp)
	if [[ -n ${mark} || -n $(grep -w beta /etc/apt/sources.list.d/armbian.list 2> /dev/null) ]]; then
			cat <<-'EOF' > $temp_rc
			dialog_color = (RED,WHITE,OFF)
			screen_color = (WHITE,RED,ON)
			tag_color = (RED,WHITE,ON)
			item_selected_color = (WHITE,RED,ON)
			tag_selected_color = (WHITE,RED,ON)
			tag_key_selected_color = (WHITE,RED,ON)
			EOF
			[[ -n ${mark} ]] && local sys_title=" Warning - firmware packages frozen"
Igor Pecovnik's avatar
Cleanup    
Igor Pecovnik committed
133
134
135
136
			[[ -n $(grep -w beta /etc/apt/sources.list.d/armbian.list 2> /dev/null) ]] && \
			local sys_title=" Warning - attached to beta repository"
			[[ -n ${mark} && -n $(grep -w beta /etc/apt/sources.list.d/armbian.list 2> /dev/null) ]] && \
			sys_title=" Warning - frozen & attached to beta repository"
Igor Pečovnik's avatar
Igor Pečovnik committed
137
138
139
140
141
		else
			local sys_title=" System settings "
			echo > $temp_rc
	fi

142
if [[ -z $selection ]]; then
Igor Pecovnik's avatar
Igor Pecovnik committed
143
	exec 3>&1
Igor Pečovnik's avatar
Igor Pečovnik committed
144
	selection=$(DIALOGRC=$temp_rc dialog --colors --backtitle "$BACKTITLE" --title " $sys_title " --clear \
145
	--cancel-label "Back" --menu "$disclaimer" $LISTLENGTH 0 $BOXLENGTH \
Igor Pecovnik's avatar
Igor Pecovnik committed
146
147
148
149
	"${LIST[@]}" 2>&1 1>&3)
	exit_status=$?
	exec 3>&-
	[[ $exit_status == $DIALOG_CANCEL || $exit_status == $DIALOG_ESC ]] && clear && break
150
fi
Igor Pecovnik's avatar
Igor Pecovnik committed
151
152

	# run main function
Igor Pecovnik's avatar
Igor Pecovnik committed
153
154
155
156
	jobs "$selection"
done
}

Igor Pecovnik's avatar
Igor Pecovnik committed
157

Igor Pecovnik's avatar
Igor Pecovnik committed
158
159
160


#
Igor Pecovnik's avatar
Igor Pecovnik committed
161
162
163
164
# menu for networking
#
function submenu_networking ()
{
Igor Pecovnik's avatar
Igor Pecovnik committed
165

166
167
# select default interface if there is more than one connected
#select_interface "default"
168
unset main
Igor Pecovnik's avatar
Igor Pecovnik committed
169
while true; do
Igor Pecovnik's avatar
Igor Pecovnik committed
170

Igor Pecovnik's avatar
Igor Pecovnik committed
171
	LIST=()
Igor Pecovnik's avatar
Igor Pecovnik committed
172
173
	DIALOG_CANCEL=1
	DIALOG_ESC=255
Igor Pecovnik's avatar
Igor Pecovnik committed
174

175
176
177
	# check if we have some LTE modems
	for i in $(lsusb | awk '{print $6}'); do lte "$i"; done;

Igor Pecovnik's avatar
Igor Pecovnik committed
178
	# edit ip
Igor Pecovnik's avatar
RC1    
Igor Pecovnik committed
179
	LIST+=( "IP" "Select dynamic or edit static IP address" )
Igor Pecovnik's avatar
Igor Pecovnik committed
180
181

	# hostapd
Igor Pecovnik's avatar
Igor Pecovnik committed
182
	HOSTAPDBRIDGE=$(cat /etc/hostapd.conf 2> /dev/null | grep -w "^bridge=br0")
Igor Pecovnik's avatar
Igor Pecovnik committed
183
	HOSTAPDSTATUS=$(service hostapd status 2> /dev/null | grep -w active | grep -w running)
Igor Pecovnik's avatar
Igor Pecovnik committed
184
185
186
187
	if [[ -n "$HOSTAPDSTATUS" ]]; then
			HOSTAPDINFO=$(hostapd_cli get_config 2> /dev/null | grep ^ssid | sed 's/ssid=//g')
			HOSTAPDCLIENTS=$(hostapd_cli all_sta 2> /dev/null | grep connected_time | wc -l)
			LIST+=( "Hotspot" "Manage active wireless access point" )
Igor Pecovnik's avatar
Igor Pecovnik committed
188
		else
Igor Pecovnik's avatar
Cleanup    
Igor Pecovnik committed
189
190
			[[ -n $(LC_ALL=C nmcli device status 2> /dev/null | grep wifi | grep -w disconnected) ]] && \
			LIST+=( "Hotspot" "Create WiFi access point" )
Igor Pecovnik's avatar
Cleanup    
Igor Pecovnik committed
191

Igor Pecovnik's avatar
Igor Pecovnik committed
192
	fi
193

JC Staudt's avatar
JC Staudt committed
194
	# toggle IPv6
Igor Pečovnik's avatar
Igor Pečovnik committed
195
	if [[ $(cat /proc/sys/net/ipv6/conf/all/disable_ipv6) == 1 ]]; then
JC Staudt's avatar
JC Staudt committed
196
			LIST+=( "IPV6" "Enable IPv6 for APT and system" )
Igor Pečovnik's avatar
Igor Pečovnik committed
197
		else
JC Staudt's avatar
JC Staudt committed
198
			LIST+=( "IPV6" "Disable IPv6 for APT and system" )
Igor Pečovnik's avatar
Igor Pečovnik committed
199
200
	fi

Igor Pecovnik's avatar
Igor Pecovnik committed
201
202
203
204
205
206
207
208
	# network throughput test
	if check_if_installed iperf3; then
		if pgrep -x "iperf3" > /dev/null
		then
			LIST+=( "Iperf3" "Disable network throughput tests daemon" )
			else
			LIST+=( "Iperf3" "Enable network throughput tests daemon" )
		fi
209
210
	fi

211
	if [[ -n $(LC_ALL=C nmcli device status 2> /dev/null | grep wifi | grep -v unavailable | grep -v unmanaged) ]]; then
212
213
214
215
		LIST+=( "WiFi" "Manage wireless networking" )
	else
		LIST+=( "Clear" "Clear possible blocked interfaces" )
	fi
216
217
218
219
220
221
222

	if [[ -n $LTE_MODEM ]]; then
		# apply udev rules
		initialize_lte
		LIST+=( "LTE" "$LTE_MODEM" )
	fi

223
224
225
226
227
228
229
230
	check_if_installed lirc && LIST+=( "Remove IR" "Remove IR support" ) || LIST+=( "IR" "Install IR support" )
	if check_if_installed bluetooth then ; then
			LIST+=( "BT remove" "Remove Bluetooth support" )
			if [[ -n $(service bluetooth status | grep -w active | grep -w running) ]]; then
				[[ $(hcitool dev | sed '1d') != "" ]] && LIST+=( "BT discover" "Discover and connect Bluetooth devices" )
			fi
		else
			LIST+=( "BT install" "Install Bluetooth support" )
Igor Pecovnik's avatar
Igor Pecovnik committed
231
232
	fi

233
234


235
236
	[[ -d /usr/local/vpnclient ]] && LIST+=( "VPN" "Manage Softether VPN client" ) && VPNSERVERIP=$(/usr/local/vpnclient/vpncmd /client localhost /cmd accountlist | grep "VPN Server" |grep -o '[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}' | head -1)

Igor Pecovnik's avatar
RC1    
Igor Pecovnik committed
237
	LIST+=( "Advanced" "Edit /etc/network/interfaces" )
Igor Pecovnik's avatar
Igor Pecovnik committed
238
239
	[[ $(ls -1 /etc/NetworkManager/system-connections 2> /dev/null) ]] && \
	LIST+=( "Forget" "Disconnect and forget all wireless connections" )
Igor Pecovnik's avatar
Igor Pecovnik committed
240

JC Staudt's avatar
JC Staudt committed
241
242
243
	# count number of menu items to adjust window size
	LISTLENGTH="$((12+${#LIST[@]}/2))"
	BOXLENGTH=${#LIST[@]}
244
	WIFICONNECTED=$(LC_ALL=C nmcli -f NAME,TYPE connection show --active 2> /dev/null | grep wireless | awk 'NF{NF-=1};1')
Igor Pecovnik's avatar
Igor Pecovnik committed
245

Igor Pecovnik's avatar
Cleanup    
Igor Pecovnik committed
246
	local disclaimer=""
247
248
249

	local ipadd=$(ip -4 addr show dev $DEFAULT_ADAPTER | awk '/inet/ {print $2}' | cut -d'/' -f1)

250

251
	if [[ -n $(LC_ALL=C nmcli device status 2> /dev/null | grep $DEFAULT_ADAPTER | grep connected) ]]; then
252
		local ifup="\nIP ($DEFAULT_ADAPTER) via Network Manager: \Z1${ipadd}\n\Z0 "
253
	else
254
255
256
257
258
		if [[ -n $(service systemd-networkd status | grep -w active | grep -w running) ]]; then
			local ifup="\nIP ($DEFAULT_ADAPTER) via systemd-networkd: \Z1${ipadd}\n\Z0 "
		else
			local ifup="\nIP ($DEFAULT_ADAPTER) via IFUPDOWN: \Z1${ipadd}\n\Z0 "
		fi
259
	fi
260

261
262
	disclaimer="$ifup"

Igor Pecovnik's avatar
Igor Pecovnik committed
263
	if [[ -n $WIFICONNECTED ]]; then
JC Staudt's avatar
JC Staudt committed
264
		LISTLENGTH=$((LISTLENGTH+2))
265
266
		local connected="\n\Z0Connected to SSID: \Z1${WIFICONNECTED}\n\Z0 "
		disclaimer=$disclaimer"$connected"
Igor Pecovnik's avatar
Cleanup    
Igor Pecovnik committed
267
268
	fi

269
270
271
	if [[ -n $VPNSERVERIP ]]; then
		local vpnserverip="\n\Z0Connected to VPN server: \Z1${VPNSERVERIP}\n\Z0 "
		disclaimer=$disclaimer"$vpnserverip"
JC Staudt's avatar
JC Staudt committed
272
		LISTLENGTH=$((LISTLENGTH+2))
273
274
	fi

Igor Pecovnik's avatar
Igor Pecovnik committed
275
	if [[ -n $HOSTAPDINFO && -n $HOSTAPDSTATUS ]]; then
JC Staudt's avatar
JC Staudt committed
276
		LISTLENGTH=$((LISTLENGTH+2))
Igor Pecovnik's avatar
Igor Pecovnik committed
277
		chpid=$(dmesg | grep $(grep ^interface /etc/hostapd.conf | sed 's/interface=//g') | head -1 | sed 's/\[.*\]//g' | awk '{print $1}')
278
		disclaimer=$disclaimer$"\n\Z0Hotspot SSID: \Z1$HOSTAPDINFO\Zn Band:";
279
		if [[ `grep ^hw_mode=a /etc/hostapd.conf` ]]; then local band="5Ghz"; else band="2.4Ghz"; fi
280
281
		if [[ `grep ^ieee80211n /etc/hostapd.conf` ]]; then local type="N"; fi
		if [[ `grep ^ieee80211ac /etc/hostapd.conf` ]]; then local type="AC"; fi
282
		disclaimer=$disclaimer$" \Z1${band} ${type}\Z0"
283
		[[ ! "$chpid" =~ .*IPv6.* ]] && disclaimer=$disclaimer$"\n\nChip: \Z1${chpid}\Z0";
Igor Pecovnik's avatar
Igor Pecovnik committed
284
		if [ "$HOSTAPDCLIENTS" -gt "0" ]; then disclaimer=$disclaimer$" Connected clients: \Z1$HOSTAPDCLIENTS\Zn"; fi
JC Staudt's avatar
JC Staudt committed
285
		if [[ ! "$chpid" =~ .*IPv6.* ]]; then LISTLENGTH=$((LISTLENGTH+2)); fi
Igor Pecovnik's avatar
Igor Pecovnik committed
286
		disclaimer=$disclaimer$"\n";
Igor Pecovnik's avatar
Igor Pecovnik committed
287
	fi
JC Staudt's avatar
JC Staudt committed
288
	disclaimer=$disclaimer"\n\Z1Note\Zn: This tool can be successful only when drivers are configured properly. If auto-detection fails, you are on your own.\n "
Igor Pecovnik's avatar
Igor Pecovnik committed
289

290
if [[ -z $selection ]]; then
Igor Pecovnik's avatar
Igor Pecovnik committed
291
	exec 3>&1
292
	selection=$(dialog --backtitle "$BACKTITLE" --colors --title " Wired, Wireless, Bluetooth, Hotspot " --clear \
JC Staudt's avatar
JC Staudt committed
293
	--cancel-label "Back" --menu "${disclaimer}" $LISTLENGTH 70 $BOXLENGTH \
Igor Pecovnik's avatar
Igor Pecovnik committed
294
295
296
297
	"${LIST[@]}" 2>&1 1>&3)
	exit_status=$?
	exec 3>&-
	[[ $exit_status == $DIALOG_CANCEL || $exit_status == $DIALOG_ESC ]] && clear && break
298
fi
Igor Pecovnik's avatar
Igor Pecovnik committed
299
	# run main function
Igor Pecovnik's avatar
Igor Pecovnik committed
300
	jobs "$selection"
301

Igor Pecovnik's avatar
Igor Pecovnik committed
302
303
304
done
}

305

Igor Pecovnik's avatar
Cleanup    
Igor Pecovnik committed
306
307
308


#
309
# personal
Igor Pecovnik's avatar
Igor Pecovnik committed
310
#
311
function submenu_personal ()
Igor Pecovnik's avatar
Igor Pecovnik committed
312
{
313
unset main
Igor Pecovnik's avatar
Igor Pecovnik committed
314
315
316
while true; do

	LIST=()
Igor Pečovnik's avatar
Igor Pečovnik committed
317
	LIST+=( "Timezone" "Change timezone \Z5($(LC_ALL=C timedatectl | grep zone | awk '{$1=$1;print}' | sed "s/Time zone: //"))\Z0" )
318
	LIST+=( "Locales" "Reconfigure language \Z5($(locale | grep LANGUAGE | cut -d= -f2 | cut -d_ -f1))\Z0 and character set" )
Igor Pecovnik's avatar
Igor Pecovnik committed
319
	LIST+=( "Keyboard" "Change console keyboard layout (\Z5$(cat /etc/default/keyboard | grep XKBLAYOUT | grep -o '".*"' | sed 's/"//g')\Z0)")
320
	LIST+=( "Hostname" "Change your hostname \Z5($(cat /etc/hostname))\Z0" )
Igor Pecovnik's avatar
Igor Pecovnik committed
321
322
323
	LIST+=( "Welcome" "Toggle welcome screen items" )

	# count number of menu items to adjust window sizee
JC Staudt's avatar
JC Staudt committed
324
325
	LISTLENGTH="$((6+${#LIST[@]}/2))"
	BOXLENGTH=${#LIST[@]}
Igor Pecovnik's avatar
Igor Pecovnik committed
326
327

	exec 3>&1
328
	selection=$(dialog --colors --backtitle "$BACKTITLE" --title "Personal settings" --clear \
JC Staudt's avatar
JC Staudt committed
329
	--cancel-label "Back" --menu "$disclaimer" $LISTLENGTH 70 $BOXLENGTH \
Igor Pecovnik's avatar
Igor Pecovnik committed
330
331
332
333
	"${LIST[@]}" 2>&1 1>&3)
	exit_status=$?
	exec 3>&-
	[[ $exit_status == $DIALOG_CANCEL || $exit_status == $DIALOG_ESC ]] && clear && break
334
335

	# run main function
Igor Pecovnik's avatar
Igor Pecovnik committed
336
	jobs "$selection"
337

Igor Pecovnik's avatar
Igor Pecovnik committed
338
done
Igor Pecovnik's avatar
Igor Pecovnik committed
339
340
341
}


Igor Pecovnik's avatar
Cleanup    
Igor Pecovnik committed
342
343
344


#
Igor Pecovnik's avatar
Igor Pecovnik committed
345
346
347
348
# software
#
function submenu_software ()
{
349
unset main
Igor Pecovnik's avatar
Igor Pecovnik committed
350
351
while true; do

352
353
354
	# detect desktop
	check_desktop

Igor Pecovnik's avatar
Igor Pecovnik committed
355
	LIST=()
356
	[[ -f /usr/bin/softy || -f softy ]] && LIST+=( "Softy" "3rd party applications installer" )
Igor Pecovnik's avatar
Igor Pecovnik committed
357
358
359
	[[ -f /usr/bin/h3consumption && "$LINUXFAMILY" = "sun8i" && "$BRANCH" = "default" ]] && \
	LIST+=( "Consumption" "Control board consumption" )
	[[ -f /usr/bin/armbianmonitor ]] && LIST+=( "Monitor" "Simple CLI board monitoring" )
Igor Pecovnik's avatar
Igor Pecovnik committed
360
	LIST+=( "Benchmarking" "sbc-bench board benchmarking" )
Igor Pecovnik's avatar
Igor Pecovnik committed
361
	[[ -f /usr/bin/armbianmonitor ]] && LIST+=( "Diagnostics" "Send diagnostics" )
362

363
364
	if [[ -n $(dpkg -l | grep linux-headers) ]]; then LIST+=( "Headers_remove" "kernel headers" ); else \
	LIST+=( "Headers_install" "kernel headers" ); fi
365

366
367
368
369
370
371
372
	SOURCE_PKG_LIST=$(apt-cache --names-only search ^linux-source-* | awk '{ print $1 }' | grep -w ${BRANCH}-${LINUXFAMILY} | tail -n 5)
	if [[ -n $SOURCE_PKG_LIST ]]; then
		LIST+=( "Source_install" "kernel source" )
	fi
	SOURCE_PKG_LIST_INSTALLED=$(find /usr/src -maxdepth 1 -name "linux-source*")
	if [[ -n $SOURCE_PKG_LIST_INSTALLED ]]; then
		LIST+=( "Source_remove" "kernel source" );
Igor Pecovnik's avatar
Igor Pecovnik committed
373
374
	fi

Igor Pecovnik's avatar
Igor Pecovnik committed
375
	if [[ -f /etc/armbian.txt ]]; then
Igor Pecovnik's avatar
Bugfix    
Igor Pecovnik committed
376
		if [[ -n $(dpkg -l | grep -w "armbian-firmware-full ") ]]; then
377
378
379
380
381
382
			LIST+=( "Mini" "Install mini firmware package" );
		else
			LIST+=( "Full" "Install full firmware package" );
		fi
	fi

383
	if [[ -n $DISPLAY_MANAGER ]]; then
Aristo Chen's avatar
Aristo Chen committed
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
		if [[ $(service xrdp status 2> /dev/null | grep -w active) ]]; then
			LIST+=( "RDP" "Disable remote desktop access from Windows" )
		else
			LIST+=( "RDP" "Enable remote desktop access from Windows" )
		fi
		if ! check_if_installed thunderbird ; then
			LIST+=( "Thunderbird" "Install full featured email client" )
		else
			LIST+=( "Thunderbird" "Remove full featured email client" )
		fi
		if ! check_if_installed gimp ; then
			LIST+=( "Gimp" "Install photo manipulation tool" )
        else
			LIST+=( "Gimp" "Remove photo manipulation tool" )
		fi
		if ! check_if_installed libreoffice-writer ; then
			LIST+=( "Writer" "Libreoffice: Writer only" )
			LIST+=( "Suite" "Libreoffice: Full suite" )
		else
			if ! check_if_installed libreoffice-base ; then
404
				LIST+=( "Suite" "Libreoffice: Full suite" )
Aristo Chen's avatar
Aristo Chen committed
405
406
407
				LIST+=( "Libre" "Remove Libre office packages" )
			else
				LIST+=( "Libre" "Remove Libre office packages" )
408
			fi
Aristo Chen's avatar
Aristo Chen committed
409
		fi
410
	fi
Igor Pecovnik's avatar
Igor Pecovnik committed
411
412

	# count number of menu items to adjust window sizee
JC Staudt's avatar
JC Staudt committed
413
414
	LISTLENGTH="$((6+${#LIST[@]}/2))"
	BOXLENGTH=${#LIST[@]}
Igor Pecovnik's avatar
Igor Pecovnik committed
415

416
417
418
419
420
421
422
423
424
	if [[ -z $selection ]]; then
		exec 3>&1
		selection=$(dialog --backtitle "$BACKTITLE" --title "System and 3rd party software" --clear \
		--cancel-label "Back" --menu "$disclaimer" $LISTLENGTH 70 $BOXLENGTH \
		"${LIST[@]}" 2>&1 1>&3)
		exit_status=$?
		exec 3>&-
		[[ $exit_status == $DIALOG_CANCEL || $exit_status == $DIALOG_ESC ]] && clear && break
	fi
Igor Pecovnik's avatar
Igor Pecovnik committed
425
426
427

	# run main function
	jobs "$selection"
428

Igor Pecovnik's avatar
Igor Pecovnik committed
429
done
430
}