debian-config-submenu 14.5 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
23
24
{
while true; do

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

28
29
30
	# detect desktop
	check_desktop

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

Igor Pečovnik's avatar
Igor Pečovnik committed
34
	# check if eMMC/SD is on the system
Igor Pecovnik's avatar
Igor Pecovnik committed
35
36
	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
37
		LIST+=( "Install" "Install to/update boot loader" )
Igor Pecovnik's avatar
Igor Pecovnik committed
38
39
40
	fi

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

	# 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) ]] \
52
		&& LIST+=( "Nightly" "Switch to nightly automated builds" )
Igor Pecovnik's avatar
Igor Pecovnik committed
53
		[[ -f /etc/apt/sources.list.d/armbian.list ]] && [[ -n $(grep -w beta /etc/apt/sources.list.d/armbian.list) ]] \
54
55
		&& LIST+=( "Stable" "Switch to stable builds" )
	fi
Igor Pecovnik's avatar
Igor Pecovnik committed
56

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

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

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

66
	[[ -d ${OVERLAYDIR} ]] && \
67
	LIST+=( "Hardware" "Toggle hardware configuration: UART, I2C, etc." )
68
	[[ "$LINUXFAMILY" = cubox && "$BRANCH" = "next" ]] && LIST+=( "DTB" "Switch board .dtb configuration" )
69
70
71
	# 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" )
72
	[[ -f /usr/bin/bin2fex && "$LINUXFAMILY" = sun*i && "$BRANCH" = "default" ]] && LIST+=( "Fexedit" "Board (fex) settings editor" )
73

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

Igor Pecovnik's avatar
Igor Pecovnik committed
76
	LIST+=( "SSH" "Reconfigure SSH daemon" )
77
	LIST+=( "Firmware" "Run apt update & apt upgrade" )
78
79
80
81

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


86
87
	[[ "$LINUXFAMILY" = sun*i && "$BRANCH" = "default" && \
	-n $(bin2fex </boot/script.bin 2>/dev/null | grep -w "hdmi_used = 1") ]] && LIST+=( "Display" "set the display resolution" )
88
	[[ "$LINUXFAMILY" = odroidc* && "$BRANCH" = "default" ]] && LIST+=( "Display" "set the display resolution" )
Igor Pecovnik's avatar
Igor Pecovnik committed
89
	# desktop
Igor Pecovnik's avatar
Igor Pecovnik committed
90
	if [[ -n $DISPLAY_MANAGER ]]; then
Igor Pečovnik's avatar
Igor Pečovnik committed
91
			LIST+=( "Desktop" "Disable desktop or change login type" )
92
93
94
			if ! check_if_installed mpv ; then
				LIST+=( "Default" "Install desktop with browser and extras" )
			fi
95
96
	else
			if [[ -n $DESKTOP_INSTALLED ]]; then
Igor Pecovnik's avatar
Igor Pecovnik committed
97
															LIST+=( "Desktop" "Enable desktop" )
98
99
100
															if ! check_if_installed mpv ; then
																LIST+=( "Default" "Install desktop with browser and extras" )
															fi
101
				else
102
103
104
105
															LIST+=( "Minimal" "Install minimal desktop" )
															if ! check_if_installed mpv ; then
																LIST+=( "Default" "Install desktop with browser and extras" )
															fi
106
			fi
Igor Pecovnik's avatar
Igor Pecovnik committed
107
108
	fi

Igor Pecovnik's avatar
Igor Pecovnik committed
109
	# overlayroot
Igor Pecovnik's avatar
Igor Pecovnik committed
110
111
112
113
114
115
116
117
	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

JC Staudt's avatar
JC Staudt committed
118
119
120
	# count number of menu items to adjust window size
	LISTLENGTH="$((6+${#LIST[@]}/2))"
	BOXLENGTH=${#LIST[@]}
Igor Pečovnik's avatar
Igor Pečovnik committed
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
	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"
			[[ -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"
		else
			local sys_title=" System settings "
			echo > $temp_rc
	fi

Igor Pecovnik's avatar
Igor Pecovnik committed
139
140

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

	# run main function
Igor Pecovnik's avatar
Igor Pecovnik committed
149
150
151
152
	jobs "$selection"
done
}

Igor Pecovnik's avatar
Igor Pecovnik committed
153

Igor Pecovnik's avatar
Igor Pecovnik committed
154
155
156


#
Igor Pecovnik's avatar
Igor Pecovnik committed
157
158
159
160
# menu for networking
#
function submenu_networking ()
{
Igor Pecovnik's avatar
Igor Pecovnik committed
161
162

# if there is more than one connected device
163
select_default_interface
Igor Pecovnik's avatar
Igor Pecovnik committed
164

Igor Pecovnik's avatar
Igor Pecovnik committed
165
while true; do
Igor Pecovnik's avatar
Igor Pecovnik committed
166

Igor Pecovnik's avatar
Igor Pecovnik committed
167
	LIST=()
Igor Pecovnik's avatar
Igor Pecovnik committed
168
169
	DIALOG_CANCEL=1
	DIALOG_ESC=255
Igor Pecovnik's avatar
Igor Pecovnik committed
170

171
172
173
	# 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
174
	# edit ip
Igor Pecovnik's avatar
RC1    
Igor Pecovnik committed
175
	LIST+=( "IP" "Select dynamic or edit static IP address" )
Igor Pecovnik's avatar
Igor Pecovnik committed
176
177

	# hostapd
Igor Pecovnik's avatar
Igor Pecovnik committed
178
	HOSTAPDBRIDGE=$(cat /etc/hostapd.conf 2> /dev/null | grep -w "^bridge=br0")
Igor Pecovnik's avatar
Igor Pecovnik committed
179
	HOSTAPDSTATUS=$(service hostapd status 2> /dev/null | grep -w active | grep -w running)
Igor Pecovnik's avatar
Igor Pecovnik committed
180
181
182
183
	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
184
		else
185
			[[ -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
186

Igor Pecovnik's avatar
Igor Pecovnik committed
187
	fi
188

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

Igor Pecovnik's avatar
Igor Pecovnik committed
196
197
198
199
200
201
202
203
	# 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
204
205
	fi

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

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

218
219
220
221
222
223
224
225
	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
226
227
	fi

228
229


230
231
	[[ -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
232
	LIST+=( "Advanced" "Edit /etc/network/interfaces" )
Igor Pecovnik's avatar
Igor Pecovnik committed
233
234
	[[ $(ls -1 /etc/NetworkManager/system-connections 2> /dev/null) ]] && \
	LIST+=( "Forget" "Disconnect and forget all wireless connections" )
Igor Pecovnik's avatar
Igor Pecovnik committed
235

JC Staudt's avatar
JC Staudt committed
236
237
238
	# count number of menu items to adjust window size
	LISTLENGTH="$((12+${#LIST[@]}/2))"
	BOXLENGTH=${#LIST[@]}
239
	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
240

Igor Pecovnik's avatar
Cleanup    
Igor Pecovnik committed
241
	local disclaimer=""
242
243
244

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

245

246
	if [[ -n $(LC_ALL=C nmcli device status 2> /dev/null | grep $DEFAULT_ADAPTER | grep connected) ]]; then
247
		local ifup="\nIP ($DEFAULT_ADAPTER) via Network Manager: \Z1${ipadd}\n\Z0 "
248
	else
249
250
251
252
253
		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
254
	fi
255

256
257
	disclaimer="$ifup"

Igor Pecovnik's avatar
Igor Pecovnik committed
258
	if [[ -n $WIFICONNECTED ]]; then
JC Staudt's avatar
JC Staudt committed
259
		LISTLENGTH=$((LISTLENGTH+2))
260
261
		local connected="\n\Z0Connected to SSID: \Z1${WIFICONNECTED}\n\Z0 "
		disclaimer=$disclaimer"$connected"
Igor Pecovnik's avatar
Cleanup    
Igor Pecovnik committed
262
263
	fi

264
265
266
	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
267
		LISTLENGTH=$((LISTLENGTH+2))
268
269
	fi

Igor Pecovnik's avatar
Igor Pecovnik committed
270
	if [[ -n $HOSTAPDINFO && -n $HOSTAPDSTATUS ]]; then
JC Staudt's avatar
JC Staudt committed
271
		LISTLENGTH=$((LISTLENGTH+2))
Igor Pecovnik's avatar
Igor Pecovnik committed
272
		chpid=$(dmesg | grep $(grep ^interface /etc/hostapd.conf | sed 's/interface=//g') | head -1 | sed 's/\[.*\]//g' | awk '{print $1}')
273
		disclaimer=$disclaimer$"\n\Z0Hotspot SSID: \Z1$HOSTAPDINFO\Zn Band:";
274
		if [[ `grep ^hw_mode=a /etc/hostapd.conf` ]]; then local band="5Ghz"; else band="2.4Ghz"; fi
275
276
		if [[ `grep ^ieee80211n /etc/hostapd.conf` ]]; then local type="N"; fi
		if [[ `grep ^ieee80211ac /etc/hostapd.conf` ]]; then local type="AC"; fi
277
		disclaimer=$disclaimer$" \Z1${band} ${type}\Z0"
278
		[[ ! "$chpid" =~ .*IPv6.* ]] && disclaimer=$disclaimer$"\n\nChip: \Z1${chpid}\Z0";
Igor Pecovnik's avatar
Igor Pecovnik committed
279
		if [ "$HOSTAPDCLIENTS" -gt "0" ]; then disclaimer=$disclaimer$" Connected clients: \Z1$HOSTAPDCLIENTS\Zn"; fi
JC Staudt's avatar
JC Staudt committed
280
		if [[ ! "$chpid" =~ .*IPv6.* ]]; then LISTLENGTH=$((LISTLENGTH+2)); fi
Igor Pecovnik's avatar
Igor Pecovnik committed
281
		disclaimer=$disclaimer$"\n";
Igor Pecovnik's avatar
Igor Pecovnik committed
282
	fi
JC Staudt's avatar
JC Staudt committed
283
	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
284
285

	exec 3>&1
286
	selection=$(dialog --backtitle "$BACKTITLE" --colors --title " Wired, Wireless, Bluetooth, Hotspot " --clear \
JC Staudt's avatar
JC Staudt committed
287
	--cancel-label "Back" --menu "${disclaimer}" $LISTLENGTH 70 $BOXLENGTH \
Igor Pecovnik's avatar
Igor Pecovnik committed
288
289
290
291
292
	"${LIST[@]}" 2>&1 1>&3)
	exit_status=$?
	exec 3>&-
	[[ $exit_status == $DIALOG_CANCEL || $exit_status == $DIALOG_ESC ]] && clear && break

Igor Pecovnik's avatar
Igor Pecovnik committed
293
	# run main function
Igor Pecovnik's avatar
Igor Pecovnik committed
294
	jobs "$selection"
295

Igor Pecovnik's avatar
Igor Pecovnik committed
296
297
298
done
}

299

Igor Pecovnik's avatar
Igor Pecovnik committed
300
#-----------------------------------------------------------------------------------------------------------------------------------------#
301
# personal
Igor Pecovnik's avatar
Igor Pecovnik committed
302
#
303
function submenu_personal ()
Igor Pecovnik's avatar
Igor Pecovnik committed
304
305
306
307
{
while true; do

	LIST=()
308
309
	LIST+=( "Timezone" "Change timezone \Z5($(date +%Z))\Z0" )
	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
310
	LIST+=( "Keyboard" "Change console keyboard layout (\Z5$(cat /etc/default/keyboard | grep XKBLAYOUT | grep -o '".*"' | sed 's/"//g')\Z0)")
311
	LIST+=( "Hostname" "Change your hostname \Z5($(cat /etc/hostname))\Z0" )
Igor Pečovnik's avatar
Igor Pečovnik committed
312
313
314
	BEFORE="$(cat /etc/apt/sources.list.d/armbian.list | sed 's/http/\nhttp/g' | grep ^http | sed 's/\(^http[^ <]*\)\(.*\)/\1/g' | sed 's/https\?:\/\///')"
	BEFORE_DESC=$(description "${BEFORE}")
	[[ -f /etc/apt/sources.list.d/armbian.list ]] && LIST+=( "Mirror" "Change repository server \Z5(${BEFORE_DESC})\Z0" )
Igor Pecovnik's avatar
Igor Pecovnik committed
315
316
317
	LIST+=( "Welcome" "Toggle welcome screen items" )

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

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

	# run main function
Igor Pecovnik's avatar
Igor Pecovnik committed
330
	jobs "$selection"
331

Igor Pecovnik's avatar
Igor Pecovnik committed
332
done
Igor Pecovnik's avatar
Igor Pecovnik committed
333
334
335
336
337
338
339
340
341
342
}


#-----------------------------------------------------------------------------------------------------------------------------------------#
# software
#
function submenu_software ()
{
while true; do

343
344
345
	# detect desktop
	check_desktop

Igor Pecovnik's avatar
Igor Pecovnik committed
346
	LIST=()
347
	[[ -f /usr/bin/softy || -f softy ]] && LIST+=( "Softy" "3rd party applications installer" )
Igor Pecovnik's avatar
Igor Pecovnik committed
348
349
350
	[[ -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
351
	LIST+=( "Benchmarking" "sbc-bench board benchmarking" )
Igor Pecovnik's avatar
Igor Pecovnik committed
352
	[[ -f /usr/bin/armbianmonitor ]] && LIST+=( "Diagnostics" "Send diagnostics" )
353

Igor Pecovnik's avatar
Igor Pecovnik committed
354
355
	if [[ -n $(dpkg -l | grep linux-headers) ]]; then LIST+=( "Headers" "Remove kernel headers" ); else \
	LIST+=( "Headers" "Install kernel headers" ); fi
356

Igor Pečovnik's avatar
Igor Pečovnik committed
357
	SOURCE_PKG=$(apt-cache --names-only search ^linux-source-* | awk '{ print $1 }' | grep ${BRANCH}-${LINUXFAMILY} | tail -1)
Igor Pecovnik's avatar
Igor Pecovnik committed
358
	if [[ -n $SOURCE_PKG ]]; then
Igor Pecovnik's avatar
Igor Pecovnik committed
359
		if ls /usr/src/linux-source* 1> /dev/null 2>&1; then LIST+=( "Source" "Remove kernel source" ); else \
Igor Pecovnik's avatar
Igor Pecovnik committed
360
361
362
	        LIST+=( "Source" "Install kernel source" ); fi
	fi

Igor Pecovnik's avatar
Igor Pecovnik committed
363
	if [[ -f /etc/armbian.txt ]]; then
Igor Pecovnik's avatar
Bugfix    
Igor Pecovnik committed
364
		if [[ -n $(dpkg -l | grep -w "armbian-firmware-full ") ]]; then
365
366
367
368
369
370
			LIST+=( "Mini" "Install mini firmware package" );
		else
			LIST+=( "Full" "Install full firmware package" );
		fi
	fi

371
372
373
374
375
376
	if [[ -n $DISPLAY_MANAGER ]]; then
			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
377
			if ! check_if_installed thunderbird ; then
378
379
380
381
				LIST+=( "Thunderbird" "Install full featured email client" )
				else
				LIST+=( "Thunderbird" "Remove full featured email client" )
			fi
382
			if ! check_if_installed libreoffice-writer ; then
383
384
385
				LIST+=( "Writer" "Libreoffice: Writer only" )
				LIST+=( "Suite" "Libreoffice: Full suite" )
				else
386
					if ! check_if_installed libreoffice-base ; then
387
388
389
390
391
392
						LIST+=( "Suite" "Libreoffice: Full suite" )
						LIST+=( "Libre" "Remove Libre office packages" )
					else
						LIST+=( "Libre" "Remove Libre office packages" )
					fi
			fi
393
	fi
Igor Pecovnik's avatar
Igor Pecovnik committed
394
395

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

	exec 3>&1
	selection=$(dialog --backtitle "$BACKTITLE" --title "System and 3rd party software" --clear \
JC Staudt's avatar
JC Staudt committed
401
	--cancel-label "Back" --menu "$disclaimer" $LISTLENGTH 70 $BOXLENGTH \
Igor Pecovnik's avatar
Igor Pecovnik committed
402
403
404
405
406
407
408
	"${LIST[@]}" 2>&1 1>&3)
	exit_status=$?
	exec 3>&-
	[[ $exit_status == $DIALOG_CANCEL || $exit_status == $DIALOG_ESC ]] && clear && break

	# run main function
	jobs "$selection"
409

Igor Pecovnik's avatar
Igor Pecovnik committed
410
done
411
}