diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2015-09-22 02:46:43 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2015-09-22 02:46:43 +0200 |
commit | 2983b5da339d8578c5f5e97dc35d154f1468946d (patch) | |
tree | 2f32e1aad1fd507797002edfd26b9890ce845976 | |
parent | 20737092d502b9d08634093465382efd7a15f98a (diff) | |
download | xmonad-config-2983b5da339d8578c5f5e97dc35d154f1468946d.tar.gz xmonad-config-2983b5da339d8578c5f5e97dc35d154f1468946d.tar.xz xmonad-config-2983b5da339d8578c5f5e97dc35d154f1468946d.zip |
Add "misc" topic with no default action
-rw-r--r-- | xmonad.hs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -130,7 +130,7 @@ main = do topics :: [Topic] topics = [ "web", "mail", "irc", "im", "video", "music" , "spline", "usdx", "partdb", "riot", "zedat" - , "emacs", "xmonad", "gimp"] + , "emacs", "xmonad", "gimp", "misc"] topicsConfig = TopicConfig { topicDirs = M.fromList $ @@ -161,6 +161,7 @@ topicsConfig = TopicConfig , ("zedat" , spawnHere $ term ++ " -e is") , ("emacs" , spawnHere "emacs") , ("gimp" , spawnHere "gimp") + , ("misc" , return ()) ] } where |