diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-09-05 22:28:16 +0200 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-09-05 22:28:16 +0200 |
commit | 9e5b3a1720f4447a86be56fe2cc87a61d9d3a545 (patch) | |
tree | 1209f356b4711ba275c6d6d80925ff7546304405 | |
parent | d2d5bd55a56d779f9e06d081a72a8cd9428121f5 (diff) | |
download | metatile-9e5b3a1720f4447a86be56fe2cc87a61d9d3a545.tar metatile-9e5b3a1720f4447a86be56fe2cc87a61d9d3a545.zip |
Use show rather than string hacks
darcs-hash:20070905202816-a5988-b57e622e85cbd0ac2134416b964dd36ae65ab826
-rw-r--r-- | Config.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ import Graphics.X11.Xlib -- The number of workspaces (virtual screens, or window groups) -- workspaces :: [WorkspaceId] -workspaces = map (:"") ['1'..'9'] +workspaces = map show [1 .. 9 :: Int] -- | -- modMask lets you specify which modkey you want to use. The default is |