mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2025-04-05 20:47:15 +01:00
Add numlock toggle
This commit is contained in:
parent
7f15324117
commit
e1a30d944b
60
src/commands/utils/numlock.sh
Executable file
60
src/commands/utils/numlock.sh
Executable 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
|
@ -54,7 +54,7 @@ pub static TABS: LazyLock<Vec<Tab>> = LazyLock::new(|| {
|
|||||||
},
|
},
|
||||||
ListNode {
|
ListNode {
|
||||||
name: "Remove Snaps",
|
name: "Remove Snaps",
|
||||||
command: Command::LocalFile("system-setup/4-remove-snaps.sh"),
|
command: Command::LocalFile("system-setup/5-remove-snaps.sh"),
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
@ -120,6 +120,10 @@ pub static TABS: LazyLock<Vec<Tab>> = LazyLock::new(|| {
|
|||||||
name: "Bluetooth Manager",
|
name: "Bluetooth Manager",
|
||||||
command: Command::LocalFile("utils/bluetooth-control.sh"),
|
command: Command::LocalFile("utils/bluetooth-control.sh"),
|
||||||
},
|
},
|
||||||
|
ListNode {
|
||||||
|
name: "Toggle Numlock On Startup",
|
||||||
|
command: Command::LocalFile("utils/numlock.sh"),
|
||||||
|
},
|
||||||
ListNode {
|
ListNode {
|
||||||
name: "MonitorControl(xorg)",
|
name: "MonitorControl(xorg)",
|
||||||
command: Command::None,
|
command: Command::None,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user