diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2015-09-16 02:35:41 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2015-09-16 02:35:41 +0200 |
commit | 62266ec33b38614a35967dec5b49ee10893ef9c6 (patch) | |
tree | 854952e2ebca4e14fb3d0da99bfd8606ce7f818b | |
parent | 40ba0f538c11fb84c44e7d3056b6ee9958816310 (diff) | |
download | xmonad-config-62266ec33b38614a35967dec5b49ee10893ef9c6.tar.gz xmonad-config-62266ec33b38614a35967dec5b49ee10893ef9c6.tar.xz xmonad-config-62266ec33b38614a35967dec5b49ee10893ef9c6.zip |
Specify types for grid configs
Diffstat (limited to '')
-rw-r--r-- | xmonad.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -269,7 +269,7 @@ alexXPConfig = P.defaultXPConfig , P.height = 20 } -historyGridConfig :: HasColorizer a => GSConfig a +historyGridConfig :: GSConfig String historyGridConfig = defaultGSConfig { gs_cellheight = 50 , gs_cellwidth = 300 @@ -287,7 +287,7 @@ topicsGridConfig = defaultGSConfig | selected = return ("#839596", "#002b36") | otherwise = return ("#002b36", "#839496") -confirmConfig :: HasColorizer a => GSConfig a +confirmConfig :: GSConfig Bool confirmConfig = defaultGSConfig { gs_cellheight = 150 , gs_cellwidth = 300 |