Update easy-arch.sh

This commit is contained in:
Tommaso Chiti 2022-05-08 10:47:47 +02:00 committed by GitHub
parent 2666b24d10
commit 2fff020e4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,14 +3,13 @@
# Cleaning the TTY. # Cleaning the TTY.
clear clear
# Colors/formatting for echo # Cosmetics (colours for text).
BOLD='\e[1m' BOLD='\e[1m'
RESET='\e[0m' # Reset text to default appearance
# High intensity colors:
BRED='\e[91m' BRED='\e[91m'
BGREEN='\e[92m' BGREEN='\e[92m'
BYELLOW='\e[93m' BYELLOW='\e[93m'
BPURPLE='\e[95m' BPURPLE='\e[95m'
RESET='\e[0m'
# Pretty print (function). # Pretty print (function).
print () { print () {
@ -80,7 +79,7 @@ kernel_selector () {
network_selector () { network_selector () {
print "Network utilities:" print "Network utilities:"
print "1) IWD: iNet wireless daemon is a wireless daemon for Linux written by Intel (WiFi-only)" print "1) IWD: iNet wireless daemon is a wireless daemon for Linux written by Intel (WiFi-only)"
print "2) NetworkManager: Universal network utility to automatically connect to networks (both WiFi and Ethernet)" print "2) NetworkManager: Universal network utility to automatically connect to networks (both WiFi and Ethernet, highly recommended)"
print "3) wpa_supplicant: Cross-platform supplicant with support for WEP, WPA and WPA2 (WiFi-only, a DHCP client will be automatically installed as well)" print "3) wpa_supplicant: Cross-platform supplicant with support for WEP, WPA and WPA2 (WiFi-only, a DHCP client will be automatically installed as well)"
print "4) dhcpcd: Basic DHCP client (Ethernet only or VMs)" print "4) dhcpcd: Basic DHCP client (Ethernet only or VMs)"
print "5) I will do this on my own (only advanced users)" print "5) I will do this on my own (only advanced users)"