diff options
author | erik <erik@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2008-10-02 16:16:14 +0000 |
---|---|---|
committer | erik <erik@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2008-10-02 16:16:14 +0000 |
commit | 1ba61643625693e011c2a159b2f5accca5d4c1f1 (patch) | |
tree | 092b6cc5263bcc6a231f61ed85c8238ecbe65bef | |
parent | 504dbe3ad1292768af1940f6d36f46f10ff6e323 (diff) |
setleds macht es umgekehrt, bernd wusste es nicht, pascal wusste es, hat es aber noch nicht korrigiert
git-svn-id: https://svn.neo-layout.org@922 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to '')
-rwxr-xr-x | linux/bin/asdf | 2 | ||||
-rwxr-xr-x | linux/bin/uiae | 4 |
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." |