Merge pull request #172 from jeevithakannan2/numlock

Add numlock toggle
This commit is contained in:
Chris Titus 2024-08-28 20:37:43 -05:00 committed by GitHub
commit 5379272137
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 64 additions and 0 deletions

60
src/commands/utils/numlock.sh Executable file
View File

@ -0,0 +1,60 @@
#!/bin/sh -e
# setleds can be used in all distros
# This method works by calling a script using systemd service
# Create a script to toggle numlock
create_file() {
echo "Creating script..."
sudo tee "/usr/local/bin/numlock" >/dev/null <<'EOF'
#!/bin/bash
for tty in /dev/tty{1..6}
do
/usr/bin/setleds -D +num < "$tty";
done
EOF
sudo chmod +x /usr/local/bin/numlock
}
# Create a systemd service to run the script on boot
create_service() {
echo "Creating service..."
sudo tee "/etc/systemd/system/numlock.service" >/dev/null <<'EOF'
[Unit]
Description=numlock
[Service]
ExecStart=/usr/local/bin/numlock
StandardInput=tty
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target
EOF
}
main() {
# Check if the script and service files exists
if [ ! -f "/usr/local/bin/numlock" ]; then
create_file
fi
if [ ! -f "/etc/systemd/system/numlock.service" ]; then
create_service
fi
printf "Do you want to enable Numlock on boot? (y/n): "
read -r confirm
if [ "$confirm" = "y" ] || [ "$confirm" = "Y" ]; then
sudo systemctl enable numlock.service --quiet
echo "Numlock will be enabled on boot"
else
sudo systemctl disable numlock.service --quiet
echo "Numlock will not be enabled on boot"
fi
}
main

View File

@ -8,6 +8,10 @@ script = "wifi-control.sh"
name = "Bluetooth Manager"
script = "bluetooth-control.sh"
[[data]]
name = "Numlock on Startup"
script = "numlock.sh"
[[data]]
name = "Monitor Control"