diff options
Diffstat (limited to 'modules.d/90numlock/numlock.sh')
-rwxr-xr-x | modules.d/90numlock/numlock.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules.d/90numlock/numlock.sh b/modules.d/90numlock/numlock.sh new file mode 100755 index 0000000..48aa39d --- /dev/null +++ b/modules.d/90numlock/numlock.sh @@ -0,0 +1,7 @@ +#!/bin/sh +i=1 +# 6 is the default value of the NAutoVTs option of the systemd login manager +while [ "${i}" -le 6 ]; do + setleds -D +num < /dev/tty"${i}" + i=$((i + 1)) +done |