summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2007-04-09Vertical tiling doneSpencer Janssen
darcs-hash:20070409074853-a5988-3114f373d130460707e8f371d39f131101919ac1
2007-04-09Remove redundant parensSpencer Janssen
darcs-hash:20070409073836-a5988-5ab0dc0ff9723b13fe2216b937e05bc6e784008a
2007-04-09Remove unused 'screen' fieldSpencer Janssen
darcs-hash:20070409073510-a5988-b2a95e4ba83a58a7be01dc49961449fa1f817014
2007-04-09Document XState fieldsSpencer Janssen
darcs-hash:20070409073414-a5988-cad31b0c3b3272413e0f3b1721d3b6997e448f30
2007-04-09Use -funbox-strict-fields, rather than UNPACK pragmas. cleaner code.Don Stewart
darcs-hash:20070409072302-9c5c1-f55281c59754fa1fe17dbfe406f2fe2c71f7061d
2007-04-05Remove redundant setFocus, setFocus is called by refresh which is called by ↵Spencer Janssen
windows darcs-hash:20070405215832-a5988-87a975ad9fcea125d7d8ba3497d7bc0289a3f158
2007-04-05-Wall policeDon Stewart
darcs-hash:20070405000100-9c5c1-aab51f7bfb20248e9a601b7af5107591db48af8c
2007-04-04take window borders into account when resizing (requires latest X11-extras)Jason Creighton
darcs-hash:20070404021612-b9aa7-842163845e3969d9f5446065bc3fe57606501a48
2007-04-04summarise key bindings in a table in Config.hsDon Stewart
darcs-hash:20070404011441-9c5c1-7d2e61f6f51fbfa155f93512240f9caed286f6d6
2007-04-04replace multiple gets with a single get and record bindDon Stewart
darcs-hash:20070404010524-9c5c1-ae8b8c6a6e47d6676fb1fa77d800eb6485ac3424
2007-04-03Use Tall and Wide for split screen layouts. This should be less confusing.Spencer Janssen
darcs-hash:20070403050610-a5988-34a441f8eb299905ed28d415a9524121585d06d0
2007-04-03Abusing TODO as a bug tracker: note about overlappingAlec Berryman
darcs-hash:20070402222956-39448-bbd875d87a3989ee1c4f4b74365fae15756ec28d
2007-04-03Comment typo: more -> moveAlec Berryman
darcs-hash:20070402221948-39448-a27a073869e63b0e11c4cf4f3ae17d2b09d80550
2007-04-02Note the Xinerama bugs I've experienced in the TODOAlec Berryman
darcs-hash:20070402160802-39448-d72075cd1a370f2a183a11e67ae9f21c01d9f2df
2007-04-03vertical (master area on top) tilingJason Creighton
darcs-hash:20070403040658-b9aa7-4bbe82e188fd19de00f8d6f86a3e4d3b4a39bf01
2007-04-02Comment typo.Spencer Janssen
darcs-hash:20070402214605-a5988-385c975d34b98deb0609579f9ca9208cf522e2b5
2007-04-02Comment only.Spencer Janssen
darcs-hash:20070402072418-a5988-3b4db0be791c44772e0ce4ec49df25c16edaee94
2007-04-02Revert to the old layout code.Spencer Janssen
darcs-hash:20070402045114-a5988-3fa15b1c4d8d79494bf430dcad921d22cdfa8d16
2007-04-01Type error: lockMask :: KeyMask, not KeySymAlec Berryman
Error prevents compilation on 64-bit systems. darcs-hash:20070401143416-39448-7ab8c797f9590cda9576767eddda6b7ceb5bf2ea
2007-04-01Suggest an alternative modMask for emacs usersAlec Berryman
darcs-hash:20070401161027-39448-8fd61e1f1d369ebf4dd4073966833c18f535c269
2007-04-01Remove trailing spaces, no content changedAlec Berryman
darcs-hash:20070401144539-39448-1903870c5ef75cc918a8ea3153c5b154feb4e644
2007-04-01Fix type error in dimensions field of XState record for 64-bit systemsAlec Berryman
Fallout from Int->CInt conversion. darcs-hash:20070401144229-39448-a124d5c3906bbc527e04ef041d9321d871fc93b3
2007-04-01Config.hs comment formatting/typoJason Creighton
darcs-hash:20070401055711-b9aa7-1bb53891b929b1c7311bad643f946b4305983dce
2007-04-01"dmenu" operation to spawn dmenu only on the current screen (for Xinerama)Jason Creighton
This requires a dmenu that will accept -x and -w. Currently, This means applying this patch: http://www.jcreigh.com/dmenu/position-options.patch (I'm trying to see if I can get this into dmenu upstream; haven't heard anything back yet.) darcs-hash:20070401012712-b9aa7-00f28388a705814f8e542e8b25b1b41922e3cc6c
2007-04-01sanitize key bindingsDon Stewart
Changes mean: * gmrun is like the dmenu key, but with shift set. - , ((modMask .|. shiftMask, xK_F11 ), spawn "gmrun") + , ((modMask .|. shiftMask, xK_p ), spawn "gmrun") If no one actually uses both gmrun and dmenu, we should consider only using mod-p for this. * restart is like quit, but with 'ctrl' set: + , ((modMask .|. shiftMask, xK_q ), io $ exitWith ExitSuccess) + , ((modMask .|. shiftMask .|. controlMask, xK_q ), io restart) * revert to 'wer' ordering for xinerama screens: - | (key, sc) <- zip [xK_e, xK_r, xK_t] [1..] + | (key, sc) <- zip [xK_w, xK_e, xK_r] [1..] that's the only binding order that makes sense, since they're meant to refer to screens 1 2 and 3, hence 'wer' (look at the keyboard to see why) darcs-hash:20070401033522-9c5c1-612e23066ea1c2523b0b0be8d2ffdd2fe407c341
2007-04-01Cleaned up layout a little bithughes
darcs-hash:20070401023639-3a569-2b7b3e7e7b2f26ebb77590053d8360ee736cfbc3
2007-04-01restore dwm-style keybindings. mod-shift-{j,k} resize in vert modeDon Stewart
darcs-hash:20070401025433-9c5c1-79adc3fdb8db4cf7929dd6d121ec66c21f24a0e2
2007-04-01Merged things together with dons changes.hughes
darcs-hash:20070401021846-3a569-083f7d441afc41bdeef843113c1de1d3a5e40ee3
2007-04-01Config.hs avoids conflict with essential M-w Emacs shortcut.hughes
darcs-hash:20070401015135-3a569-8db7ddadad8f5d3c6b16b14dda2a143644e01898
2007-04-01Vertical/horizontal split, and resizability.hughes
darcs-hash:20070401014706-3a569-26a764b57274f67057adf0b81eb71158b58f49de
2007-03-30Remove evil gmrun shortcut.hughes
darcs-hash:20070330144558-3a569-456564e43e14fbd17ffc1491c89dfc6ae71697ee
2007-04-01formatting onlyDon Stewart
darcs-hash:20070401004726-9c5c1-ffe359da72bfe742bd6c6855e8451c0ea8a8938f
2007-04-01formatting fixes. the style is getting a bit dodgy in some places...Don Stewart
darcs-hash:20070401002803-9c5c1-e15fd397cbaf1182a13e1c55ca024ef2ef2fdbae
2007-03-31Move safeFocus from Main to OperationsSpencer Janssen
darcs-hash:20070331010024-a5988-73c72204cd204872dd7a2339c1e805e2a0578a58
2007-03-31removed refocus; moved functionality to setFocusJason Creighton
darcs-hash:20070331003442-b9aa7-98dbb2a95ac070ced1efe307317fdd4732c1e38e
2007-03-30refactored "focus changed" code into "refocus"Jason Creighton
darcs-hash:20070330035454-b9aa7-54e1b09c030cec67d02902847258a2a14dcdc409
2007-03-29Window bordersAlec Berryman
Colors taken from dwm's config.default.h and hard-coded in Operations instead of Config because of import cycle. Windows overlap slightly in the current tiling algorithm and sometimes prevent the active window from being completely surrounded by a red border. darcs-hash:20070329182159-39448-deabaeaf89d87bb71abc851b6bae1ffa356e5561
2007-03-29Add AMD64 note to the READMESpencer Janssen
darcs-hash:20070329055250-a5988-f763eb7ef1ed2e6e53d277925a650c8a744885ea
2007-03-29Type error: button1 :: Button, not :: ButtonMaskAlec Berryman
darcs-hash:20070329024330-39448-e216b34ecbe8822e90a4bf1a65ebea22a7261c49
2007-03-28Fix refreshKeyboardMapping issues. Requires the latest X11-extrasSpencer Janssen
darcs-hash:20070328215753-a5988-ee705ccb076ddccb83aa32f0c6b04247e255ed58
2007-03-28allow mouse to change current workspacedaniel
darcs-hash:20070328103435-c98ca-4d9fe6e66589e0bc9cbd79eabe41a559084ce37f
2007-03-28first shot at allowing click to focus windowsdaniel
darcs-hash:20070328101540-c98ca-92140a718ff7491aa88895c0592cd9a964e671b0
2007-03-28added a quickcheck propertydaniel
darcs-hash:20070328025337-c98ca-5ce390ce8d1d5f5a35fe1ba851cf09fc96ca7183
2007-03-28Compatibility with CInt'ified X11Spencer Janssen
darcs-hash:20070328071436-a5988-247885dd8c1711b4739921fc4082e6a4ecf2b3d6
2007-03-28one less todoDon Stewart
darcs-hash:20070327231846-9c5c1-b2053277c3db8180cdb864c06160ee6879894ff1
2007-03-27whitespaceJason Creighton
darcs-hash:20070327013350-b9aa7-7f4e73055e5b801b7f598cb62ce58a60a32d9dec
2007-03-27updated TODO (Config.hs completed)Jason Creighton
darcs-hash:20070327014124-b9aa7-3a195abfbde7099694c6b3ad70206a64925420fa
2007-03-26Config supports Ctrl+Space for gmrun again.hughes
darcs-hash:20070326151243-3a569-7dfe6def26ee1722b13c21305646ac0121166e79
2007-03-26Workspace-specific layoutshughes
darcs-hash:20070326150213-3a569-64dd38c00558d58f27c3803ab15485892c24cfaa
2007-03-26Typo: use dmenu_path instead of emenu_pathAlec Berryman
darcs-hash:20070326140335-39448-c48e4f4f7bc457c5ec99832e0febd689e9b35e32