[Xmonad] named workspaces ?
Donald Bruce Stewart
dons at cse.unsw.edu.au
Mon Jun 11 00:32:54 EDT 2007
dave:
> Hi all,
>
> Is there an extension that supports tagging (naming) workspaces with a
> string for use with extensions like DynamicLog ?
Sure, a custom hook that uses a table to associate workspace tags with
strings.
pprTag = name . fromIntegral . S.tag
where
name 0 = "dev"
name 1 = "tmp"
name 2 = "web"
name n = " " ++ show (1 + n) ++ " "
Something like that. Should even be possible to renme these things on the fly.
-- Don
More information about the Xmonad
mailing list