mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 21:28:48 +00:00
216f1a4836
* BIG CHANGES * core metadata * Added readme.md to the package * Moved the crate back to tui Co-authored-by: Liam <lj3954@users.noreply.github.com> --------- Co-authored-by: Liam <lj3954@users.noreply.github.com>
179 lines
5.6 KiB
Bash
Executable File
179 lines
5.6 KiB
Bash
Executable File
#!/bin/sh -e
|
|
|
|
. ../common-script.sh
|
|
|
|
# Function to check if NetworkManager is installed
|
|
setupNetworkManager() {
|
|
printf "%b\n" "${YELLOW}Installing NetworkManager...${RC}"
|
|
if ! command_exists nmcli; then
|
|
case "$PACKAGER" in
|
|
pacman)
|
|
"$ESCALATION_TOOL" "$PACKAGER" -S --noconfirm networkmanager
|
|
;;
|
|
dnf)
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y NetworkManager-1
|
|
;;
|
|
*)
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y network-manager
|
|
;;
|
|
esac
|
|
else
|
|
printf "%b\n" "${YELLOW}NetworkManager is already installed.${RC}"
|
|
fi
|
|
|
|
# Check if NetworkManager service is running
|
|
if ! systemctl is-active --quiet NetworkManager; then
|
|
printf "%b\n" "${YELLOW}NetworkManager service is not running. Starting it now...${RC}"
|
|
"$ESCALATION_TOOL" systemctl start NetworkManager
|
|
|
|
if systemctl is-active --quiet NetworkManager; then
|
|
printf "%b\n" "${GREEN}NetworkManager service started successfully.${RC}"
|
|
fi
|
|
fi
|
|
}
|
|
|
|
# Function to display the main menu
|
|
main_menu() {
|
|
while true; do
|
|
clear
|
|
printf "%b\n" "${YELLOW}WiFi Manager${RC}"
|
|
printf "%b\n" "${YELLOW}============${RC}"
|
|
printf "1. Turn WiFi On\n"
|
|
printf "2. Turn WiFi Off\n"
|
|
printf "3. Scan for WiFi networks\n"
|
|
printf "4. Connect to a WiFi network\n"
|
|
printf "5. Disconnect from a WiFi network\n"
|
|
printf "6. Remove a WiFi connection\n"
|
|
printf "0. Exit\n"
|
|
printf "Choose an option: "
|
|
read -r choice
|
|
|
|
case $choice in
|
|
1) wifi_on ;;
|
|
2) wifi_off ;;
|
|
3) scan_networks ;;
|
|
4) connect_network ;;
|
|
5) disconnect_network ;;
|
|
6) remove_network ;;
|
|
0) exit 0 ;;
|
|
*) printf "%b\n" "${RED}Invalid option. Please try again.${RC}" ;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
# Function to scan for WiFi networks
|
|
scan_networks() {
|
|
clear
|
|
printf "%b\n" "${YELLOW}Scanning for WiFi networks...${RC}"
|
|
networks=$(nmcli -t -f SSID,BSSID,SIGNAL dev wifi list | awk -F: '!seen[$1]++' | head -n 10)
|
|
if [ -z "$networks" ]; then
|
|
printf "%b\n" "${RED}No networks found.${RC}"
|
|
else
|
|
printf "%b\n" "${GREEN}Top 10 Networks found:${RC}"
|
|
echo "$networks" | awk -F: '{printf("%d. SSID: %-25s \n", NR, $1)}'
|
|
fi
|
|
printf "Press any key to return to the main menu...\n"
|
|
read -r dummy
|
|
}
|
|
|
|
# Function to turn WiFi on
|
|
wifi_on() {
|
|
clear
|
|
printf "%b\n" "${YELLOW}Turning WiFi on...${RC}"
|
|
nmcli radio wifi on && {
|
|
printf "%b\n" "${GREEN}WiFi is now turned on.${RC}"
|
|
} || {
|
|
printf "%b\n" "${RED}Failed to turn on WiFi.${RC}"
|
|
}
|
|
printf "Press any key to return to the main menu...\n"
|
|
read -r dummy
|
|
}
|
|
|
|
# Function to turn WiFi off
|
|
wifi_off() {
|
|
clear
|
|
printf "%b\n" "${YELLOW}Turning WiFi off...${RC}"
|
|
nmcli radio wifi off && {
|
|
printf "%b\n" "${GREEN}WiFi is now turned off.${RC}"
|
|
} || {
|
|
printf "%b\n" "${RED}Failed to turn off WiFi.${RC}"
|
|
}
|
|
printf "Press any key to return to the main menu...\n"
|
|
read -r dummy
|
|
}
|
|
|
|
# Function to prompt for WiFi network selection
|
|
prompt_for_network() {
|
|
action=$1
|
|
prompt_msg=$2
|
|
success_msg=$3
|
|
failure_msg=$4
|
|
temp_file=$(mktemp)
|
|
|
|
while true; do
|
|
clear
|
|
networks=$(nmcli -t -f SSID dev wifi list | awk -F: '!seen[$1]++' | grep -v '^$')
|
|
if [ -z "$networks" ]; then
|
|
printf "%b\n" "${RED}No networks available. Please scan for networks first.${RC}"
|
|
printf "Press any key to return to the main menu...\n"
|
|
read -r dummy
|
|
rm -f "$temp_file"
|
|
return
|
|
fi
|
|
|
|
echo "$networks" > "$temp_file"
|
|
|
|
i=1
|
|
while IFS= read -r network; do
|
|
ssid=$(echo "$network" | awk -F: '{print $1}')
|
|
printf "%d. SSID: %s\n" "$i" "$ssid"
|
|
i=$((i + 1))
|
|
done < "$temp_file"
|
|
|
|
printf "0. Exit to main menu\n"
|
|
printf "%s" "$prompt_msg"
|
|
read -r choice
|
|
|
|
if [ "$choice" -ge 1 ] && [ "$choice" -lt "$i" ]; then
|
|
ssid=$(sed -n "${choice}p" "$temp_file" | awk -F: '{print $1}')
|
|
if [ "$action" = "connect" ]; then
|
|
printf "Enter password for SSID %s: " "$ssid"
|
|
read -r password
|
|
printf "\n"
|
|
nmcli dev wifi connect "$ssid" password "$password" && {
|
|
printf "%b\n" "${GREEN}$success_msg${RC}"
|
|
} || {
|
|
printf "%b\n" "${RED}$failure_msg${RC}"
|
|
}
|
|
fi
|
|
else
|
|
printf "%b\n" "${RED}Invalid choice. Please try again.${RC}"
|
|
fi
|
|
|
|
printf "Press any key to return to the selection menu...\n"
|
|
read -r dummy
|
|
done
|
|
|
|
rm -f "$temp_file"
|
|
}
|
|
|
|
# Function to connect to a WiFi network
|
|
connect_network() {
|
|
prompt_for_network "connect" "Enter the number of the network to connect: " "Connected to the network successfully." "Failed to connect to the network."
|
|
}
|
|
|
|
# Function to disconnect from a WiFi network
|
|
disconnect_network() {
|
|
prompt_for_network "disconnect" "Enter the number of the network to disconnect: " "Disconnected from the network successfully." "Failed to disconnect from the network."
|
|
}
|
|
|
|
# Function to remove a WiFi connection
|
|
remove_network() {
|
|
prompt_for_network "remove" "Enter the number of the network to remove: " "Network removed successfully." "Failed to remove the network."
|
|
}
|
|
|
|
# Initialize
|
|
checkEnv
|
|
checkEscalationTool
|
|
setupNetworkManager
|
|
main_menu |