summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
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
2007-03-26Focus follows mouse.Spencer Janssen
This change makes the window under the mouse pointer the focused window. This isn't quite what we want, but it is a step in the right direction. The next step is to somehow inhibit the CrossingEvents generated during workspace and layout switches. darcs-hash:20070326124725-a5988-825770ffc28620d16b7aba0541e3abff29b46680
2007-03-26Update todoSpencer Janssen
darcs-hash:20070326102441-a5988-d065186d5df8941009bef5170cc510efeed64b31
2007-03-26Extra config: defaultLayoutdaniel
darcs-hash:20070326074234-c98ca-624f259e215d1aad642744cae44d572d88adda60
2007-03-26updated TODOdaniel
darcs-hash:20070326073415-c98ca-4236f37ea2d2a1ea4ac03f0531a9fcf8852ee847
2007-03-26minor aesthetic changesdaniel
darcs-hash:20070326073339-c98ca-189e5a913582d8f6cf3ec6c7a01f39cf8718a222
2007-03-26fixDon Stewart
darcs-hash:20070326075812-9c5c1-98b5c177745a7576c9778b9dcb9c98e155382d16
2007-03-26Restrain leftWidthSpencer Janssen
darcs-hash:20070326095034-a5988-5f1abf81e8f5fbc9844dd62494cd1ffdd38066ed
2007-03-26Config.lhs -> Config.hsJason Creighton
darcs-hash:20070326054004-b9aa7-4654d475bc465ce76e32e01407e6765f5e1732c2
2007-03-26added Config.lhs and moved most things in Main.hs into Operations.hs to ↵Jason Creighton
enable this darcs-hash:20070326051341-b9aa7-c7743c45bfea2341d5dd98428996195fac96d67c
2007-03-25Xinerama focus bug (couldn't focus on current workspace)Jason Creighton
darcs-hash:20070325203702-b9aa7-ed927b7df5270a9dfaebbbf0105bb8f6f4b3402e
2007-03-23restart (simple exec(), no state saved)Jason Creighton
darcs-hash:20070323023738-b9aa7-7adfc53755ed749406c50da63883ee36e5a69565
2007-03-22Add promote. Makes the focused window the masterSpencer Janssen
darcs-hash:20070322222333-a5988-bd6295590c0695d7c43294fd535319e0fbde2e70
2007-03-22Add promoteSpencer Janssen
darcs-hash:20070322221547-a5988-e45624fd50539d7db13cf34d2b1e94612bdb06e9
2007-03-21I like 1%2 split. Maintainer's prerogative :)Spencer Janssen
darcs-hash:20070321070649-a5988-dd004a59dd24ac947b3df3237e29c6aa00690d20
2007-03-21Add defaultLeftWidth in the configuration sectionSpencer Janssen
darcs-hash:20070321065807-a5988-4685e61bb98bd87e006c3d0e310ef0f918151a35
2007-03-21Allow dynamic width in tiling modedaniel
darcs-hash:20070321054245-c98ca-fc10278adbcbfe61de0f7bb4d4e14c5befc565b2
2007-03-21GHC 6.4 compatibility.Spencer Janssen
darcs-hash:20070321045211-a5988-47f59be9b08177f2252f656e8435b23054ffde3d
2007-03-21add keybindings to change screens and tag windows to screensJason Creighton
darcs-hash:20070321033807-b9aa7-182a8a380ff559eb2ab3af0ec143712b38cdcb60
2007-03-20Add raiseFocus.Spencer Janssen
darcs-hash:20070320160135-a5988-01f4a5df331fac6fbf00c209a40105da74b9b88d
2007-03-20Make numlockMask configurableSpencer Janssen
darcs-hash:20070320145828-a5988-8d4e68f87e035cec9bea9705a9543850812f7b3a