diff options
-rw-r--r-- | src/Plugins/Locks.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Plugins/Locks.hs b/src/Plugins/Locks.hs index 296bcb4..3c1e0a9 100644 --- a/src/Plugins/Locks.hs +++ b/src/Plugins/Locks.hs @@ -26,8 +26,8 @@ data Locks = Locks locks :: [ ( KeySym, String )] locks = [ ( xK_Caps_Lock, "CAPS" ) - , ( xK_Num_Lock, "NUM" ) - , ( xK_Scroll_Lock, "SCROLL" ) + , ( xK_Num_Lock, "NUM" ) + , ( xK_Scroll_Lock, "SCROLL" ) ] instance Exec Locks where @@ -48,4 +48,4 @@ instance Exec Locks where ) locks closeDisplay d - return $ unwords $ map snd ls
\ No newline at end of file + return $ unwords $ map snd ls |