Files
xmonad-contrib/XMonad/Layout
ivanbrennan c201a9e33e export HiddenWindows type constructor
Some users like to include type signatures in their configuration. The
HiddenWindows type constructor was not exported, making it impossible to
write a type signature when using hiddenWindows.

With this change, a user can write an xmonad.hs like:

  import XMonad
  import XMonad.Layout.Hidden (HiddenWindows, hiddenWindows)
  import XMonad.Layout.LayoutModifier

  myLayout :: ModifiedLayout
              HiddenWindows
              (Choose Tall (Choose (Mirror Tall) Full))
              Window
  myLayout = hiddenWindows $ layoutHook def

  main :: IO ()
  main = xmonad def { layoutHook = myLayout }
2020-05-03 13:32:28 -04:00
..
2019-10-11 16:35:54 +02:00
2019-10-08 10:33:56 +02:00
2018-04-11 07:58:11 +02:00
2010-03-14 21:00:01 +00:00
2019-10-08 10:33:56 +02:00
2013-05-28 00:58:25 +00:00
2019-10-11 16:35:54 +02:00
2019-10-11 16:35:54 +02:00
2015-03-15 13:09:13 +00:00
2013-05-28 00:58:25 +00:00
2019-10-08 10:45:44 +02:00
2019-10-08 10:33:56 +02:00
2019-10-11 16:35:54 +02:00
2019-10-08 10:33:56 +02:00
2013-05-28 00:58:25 +00:00
2015-05-02 04:53:53 +00:00
2019-10-11 16:35:54 +02:00
2016-06-30 15:33:15 -04:00
2018-07-30 22:50:03 +12:00
2019-10-08 10:33:56 +02:00
2012-11-09 01:41:56 +00:00