aboutsummaryrefslogtreecommitdiffstats
path: root/Config.hs-boot (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-10-13clean up names of layout codeDon Stewart1-2/+2
darcs-hash:20071013204300-cba2c-7f8fb3244bbd918cd28679debad2129db542d7e8.gz
2007-10-03manageHook: use the curry style, better documentationSpencer Janssen1-1/+1
darcs-hash:20071003162404-a5988-0e2b858c29ae9ba45ffa28137b61f5ac671bf005.gz
2007-10-03Remove unused importSpencer Janssen1-1/+0
darcs-hash:20071003161621-a5988-3869822edd740cc9dac1e29affddb50b0cf7d16e.gz
2007-09-29some renaming of classes and data types.David Roundy1-1/+1
darcs-hash:20070929191320-72aca-63c25731f6efb2de0d786c7ebe2fed2fa288e03a.gz
2007-10-02Pass window name and class info to manageHookSpencer Janssen1-1/+1
darcs-hash:20071002174024-a5988-0402595a0c982bc7890a7054b2ca3ff5bcaf94fc.gz
2007-10-01Send ClassHints to manageHookSpencer Janssen1-1/+2
darcs-hash:20071001175246-a5988-008bb0123ca85784c32884ea5e6452747e1df0fb.gz
2007-10-01First cut at manageHookSpencer Janssen1-0/+1
darcs-hash:20071001164627-a5988-bf9560048dd0abaf2298a1eb5c0e1fc7e9654c16.gz
2007-09-28define defaultLayout in Config.hs.David Roundy1-1/+1
darcs-hash:20070928020208-72aca-ba2fa62ecf40abd9137c9632c7ee27525a62f48e.gz
2007-09-25add support for parseable layouts not in the default.David Roundy1-1/+1
darcs-hash:20070925174134-72aca-3c3520c200c097938c56f7dd7fd5c86948d52c15.gz
2007-09-24Make a String description part of each Layout.David Roundy1-1/+1
darcs-hash:20070924185753-72aca-95002aa27cfef74bf8caf1e6f243a4626f20659c.gz
2007-09-21add layout selection back into core xmonad using LayoutSelection.David Roundy1-1/+1
This is just a reimplementation of LayoutChoice. darcs-hash:20070921212159-72aca-870bb8d3e596fcb9edc48f51bec538054b4165e6.gz
2007-09-21make layouts preserved over restartDavid Roundy1-1/+2
darcs-hash:20070921204316-72aca-6f8cabc516cc87345bfa73be0e060b206aa2a207.gz
2007-08-14change workspaces to [WorkspaceId]David Roundy1-1/+1
darcs-hash:20070814003722-72aca-523faa4ad29f664dd33331c0c03d2564ecde2b89.gz
2007-07-28added workspaces to hs-boot (needed by XMonadContrib.Commands and possibly ↵Andrea Rossato1-0/+1
other modules) darcs-hash:20070728131756-32816-87cea398d893723c29025a89d876f66a0a88c707.gz
2007-06-10Move state logging into Config.hs, via logHook :: X ()Don Stewart1-1/+2
darcs-hash:20070610061932-9c5c1-9a08992ef555f086007474e64d5ae9d835e9677e.gz
2007-06-06move extraModifiers/cleanMask to Operations.hsJason Creighton1-0/+2
so XMonadContrib can use them darcs-hash:20070606005056-b9aa7-96a3bb09f8e6dabd707eed7b5f19d733e5e1778e.gz
2007-06-05Enable logging of state changes to stdoutDon Stewart1-0/+1
darcs-hash:20070605083735-9c5c1-1ab5acbd611914caa7b5cdf1f2df338c0ee616f8.gz
2007-06-02make mouse bindings configurableJason Creighton1-3/+0
darcs-hash:20070602040647-b9aa7-d7bad13c4919882368872a88f04a678308162be6.gz
2007-06-01ignore numlock/capslock on mouse bindingsJason Creighton1-0/+1
darcs-hash:20070601015137-b9aa7-51c6b9ec428c2d16d65b196384fa2ce953dda245.gz
2007-05-31first shot at a floating layerJason Creighton1-0/+2
This is a first attempting at a floating layer: mod-button1: move window mod-button2: swapMaster mod-button3: resize window mod-t: make floating window tiled again Moving or resizing a window automatically makes it floating. Known issues: Hard to manage stacking order. You can promote a window to move it to the top, (which you can do with mod-button2) but it should be easier than that. Moving a window by dragging it to a different Xinerama screen does not move it to that workspace. Code is ugly. darcs-hash:20070531044733-b9aa7-c96d5263e1d3447e91f436920f4d047050ce55d9.gz
2007-05-27mod-b, toggle on or off the status bar gapDon Stewart1-1/+0
darcs-hash:20070527125928-9c5c1-a16246810db9d4abfe81d0d5814721b64f59a14c.gz
2007-05-27Add new config value, defaultMenuGap, for specifying a gap for a status barDon Stewart1-0/+1
By default, it is 0 (set in Config.hs), but set this to a pixel count to get a permanent gap at the top of the screen. You can then at startup launch dzen, and it will run in this gap, and not be obscured by other windows. Perfect for a persistant status bar. darcs-hash:20070527122702-9c5c1-2a3ca82463b3bab21556674936b1bf8a86ba6356.gz
2007-05-20HEADS UP: Rewrite StackSet as a ZipperDon Stewart1-2/+0
In order to give a better account of how focus and master interact, and how each operation affects focus, we reimplement the StackSet type as a two level nested 'Zipper'. To quote Oleg: A Zipper is essentially an `updateable' and yet pure functional cursor into a data structure. Zipper is also a delimited continuation reified as a data structure. That is, we use the Zipper as a cursor which encodes the window which is in focus. Thus our data structure tracks focus correctly by construction! We then get simple, obvious semantics for e.g. insert, in terms of how it affects focus/master. Our transient-messes-with-focus bug evaporates. 'swap' becomes trivial. By moving focus directly into the stackset, we can toss some QC properties about focus handling: it is simply impossible now for focus to go wrong. As a benefit, we get a dozen new QC properties for free, governing how master and focus operate. The encoding of focus in the data type also simplifies the focus handling in Operations: several operations affecting focus are now simply wrappers over StackSet. For the full story, please read the StackSet module, and the QC properties. Finally, we save ~40 lines with the simplified logic in Operations.hs For more info, see the blog post on the implementation, http://cgi.cse.unsw.edu.au/~dons/blog/2007/05/17#xmonad_part1b_zipper darcs-hash:20070520070053-9c5c1-241f7ee7793f5db2b9e33d375965cdc21b26cbd7.gz
2007-05-03add support for extensible layouts.David Roundy1-2/+2
darcs-hash:20070503144750-72aca-f44bca4573837e12fc1f89333b55e04abd52787c.gz
2007-04-30Make border width configurableSpencer Janssen1-0/+2
darcs-hash:20070430163515-a5988-9dea5188c30830fd8b3135f7cb5beffd7b90dcb9.gz
2007-04-30Add Config.hs-boot, remove defaultLayoutDesc from XConfSpencer Janssen1-0/+3
darcs-hash:20070430162647-a5988-70420c2db283eb1585c96d977e5ac5ca3d0d1532.gz