-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathM4.sh
More file actions
91 lines (91 loc) · 1.76 KB
/
M4.sh
File metadata and controls
91 lines (91 loc) · 1.76 KB
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
#!/bin/bash
# (c) J~NET 2021
# jnet.sytes.net
#
#
#
#
#clear
echo -en "\e[92mOS List (Menu 4)"
echo ""
echo ""
echo "1. https://github.com/sakaki-/gentoo-on-rpi-64bit"
echo "2. https://www.kali.org/docs/arm/raspberry-pi-4/"
echo "3. https://rpi4-uefi.dev/win10-arm64-on-pi-4b/"
echo "4. https://retropie.org.uk/download/"
echo "5. https://sourceforge.net/projects/openmediavault/files/"
echo "6. https://en.opensuse.org/HCL:Raspberry_Pi4"
echo "7. Manjaro:Via: https://manjaro.org/download/"
echo "8. Ubuntu MATE:Via: https://ubuntu-mate.org/download/"
echo "9. OpenSUSE:https://en.opensuse.org/HCL:Raspberry_Pi4"
echo "10. Ubuntu 20.04:Via: https://www.raspberrypi.org/downloads/"
echo "11. Exit Menu"
echo "Enter your choice: (Anything else to exit)"
read n
case $n in
1)
clear
# op 1
firefox https://github.com/sakaki-/gentoo-on-rpi-64bit &
exit ;;
# returning to menu
2)
clear
# op 2
firefox https://www.kali.org/docs/arm/raspberry-pi-4/ &
exit ;;
# returning to menu
3)
clear
# op 3
firefox https://rpi4-uefi.dev/win10-arm64-on-pi-4b/ &
exit ;;
# returning to menu
4)
clear
# op 4
firefox https://retropie.org.uk/download/ &
exit ;;
# returning to menu
5)
clear
# op 5
firefox https://sourceforge.net/projects/openmediavault/files/ &
exit ;;
# returning to menu
# send arg here
6)
clear
# op 6
firefox https://en.opensuse.org/HCL:Raspberry_Pi4 &
exit ;;
# returning to menu
7)
clear
# op 6
firefox https://manjaro.org/download/ &
exit ;;
# returning to menu
8)
clear
# op 6
firefox https://ubuntu-mate.org/download/ &
exit ;;
# returning to menu
9)
clear
# op 6
firefox https://en.opensuse.org/HCL:Raspberry_Pi4 &
exit ;;
# returning to menu
10)
clear
# op 6
firefox https://www.raspberrypi.org/downloads/ &
exit ;;
# returning to menu
11)
clear
# op 7
bash menu.sh;;
esac