summaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
Diffstat (limited to 'linux')
-rwxr-xr-xlinux/bin/asdf2
-rwxr-xr-xlinux/bin/uiae4
2 files changed, 3 insertions, 3 deletions
diff --git a/linux/bin/asdf b/linux/bin/asdf
index 314f0c9..37804d9 100755
--- a/linux/bin/asdf
+++ b/linux/bin/asdf
@@ -82,7 +82,7 @@ if [ -z ${DISPLAY} ]; then
set_keymap "${NEO_CONSOLE_KEYMAP}"
if [ -e "${PATH_SETLEDS}" ]; then
- "${PATH_SETLEDS}" -num || die "Failed to set NUM status."
+ "${PATH_SETLEDS}" +num || die "Failed to set NUM status."
else
die "setleds does not exist, cannot set NUM status."
fi
diff --git a/linux/bin/uiae b/linux/bin/uiae
index e83c315..fa492fc 100755
--- a/linux/bin/uiae
+++ b/linux/bin/uiae
@@ -83,9 +83,9 @@ if [ -z ${DISPLAY} ]; then
if [ -e "${PATH_SETLEDS}" ]; then
if [ "${NUM_LOCK_STATUS}" = "on" ]; then
- "${PATH_SETLEDS}" +num || die "Failed to set num lock status to on."
+ "${PATH_SETLEDS}" -num || die "Failed to set num lock status to on."
else
- "${PATH_SETLEDS}" -num || die "Failed to set num lock status to off."
+ "${PATH_SETLEDS}" +num || die "Failed to set num lock status to off."
fi
else
die "setleds does not exist, cannot set NUM status."