mirror of
https://github.com/morrownr/8821cu-20210916.git
synced 2024-10-31 16:55:24 +00:00
63 lines
1.9 KiB
Bash
Executable File
63 lines
1.9 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# Purpose: Make it easier to edit the correct driver options file.
|
|
#
|
|
# Flexible editor support.
|
|
#
|
|
# To make this file executable:
|
|
#
|
|
# $ chmod +x edit-options.sh
|
|
#
|
|
# To execute this file:
|
|
#
|
|
# $ sudo ./edit-options.sh
|
|
#
|
|
# Copyright(c) 2023 Nick Morrow
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of version 2 of the GNU General Public License as
|
|
# published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
SCRIPT_NAME="edit-options.sh"
|
|
# SCRIPT_VERSION="20230710"
|
|
OPTIONS_FILE="8821cu.conf"
|
|
|
|
# check to ensure sudo was used to start the script
|
|
if [ "$(id -u)" -ne 0 ]; then
|
|
echo "You must run this script with superuser (root) privileges."
|
|
echo "Try: \"sudo ./${SCRIPT_NAME}\""
|
|
exit 1
|
|
fi
|
|
|
|
DEFAULT_EDITOR="$(cat default-editor.txt)"
|
|
# try to find the user's default text editor through the EDITORS_SEARCH array
|
|
for TEXT_EDITOR in "${VISUAL}" "${EDITOR}" "${DEFAULT_EDITOR}" vi; do
|
|
command -v "${TEXT_EDITOR}" >/dev/null 2>&1 && break
|
|
done
|
|
# failure message if no editor was found
|
|
if ! command -v "${TEXT_EDITOR}" >/dev/null 2>&1; then
|
|
echo "No text editor was found (default: ${DEFAULT_EDITOR})."
|
|
echo "Please install ${DEFAULT_EDITOR} or edit the file 'default-editor.txt' to specify your editor."
|
|
echo "Once complete, please run \"sudo ./${SCRIPT_NAME}\""
|
|
exit 1
|
|
fi
|
|
|
|
if [ -f "/etc/modprobe.d/${OPTIONS_FILE}" ]; then
|
|
${TEXT_EDITOR} /etc/modprobe.d/${OPTIONS_FILE}
|
|
else
|
|
cp -f ${OPTIONS_FILE} /etc/modprobe.d
|
|
${TEXT_EDITOR} /etc/modprobe.d/${OPTIONS_FILE}
|
|
fi
|
|
|
|
printf "Do you want to apply the new options by rebooting now? (recommended) [Y/n] "
|
|
read -r yn
|
|
case "$yn" in
|
|
[nN]) ;;
|
|
*) reboot ;;
|
|
esac
|