
Applied! wirtwolff:
Fri Feb 13 17:36:42 MST 2009 wirtwolff@gmail.com * U.Scratchpad: add general spawn action to close issue 249 Adds scratchpadSpawnActionCustom where user specifies how to set resource to "scratchpad". This allows use of gnome-terminal, etc. Add detail to RationalRectangle documentation; strip trailing spaces.
Content-Description: A darcs patch for your repository!
New patches:
[U.Scratchpad: add general spawn action to close issue 249 wirtwolff@gmail.com**20090214003642 Ignore-this: 925ad9db4ecc934dcd86320f383ed44a Adds scratchpadSpawnActionCustom where user specifies how to set resource to "scratchpad". This allows use of gnome-terminal, etc. Add detail to RationalRectangle documentation; strip trailing spaces. ] { hunk ./XMonad/Util/Scratchpad.hs 20 -- $usage scratchpadSpawnAction ,scratchpadSpawnActionTerminal + ,scratchpadSpawnActionCustom ,scratchpadManageHookDefault ,scratchpadManageHook ,scratchpadFilterOutWorkspace hunk ./XMonad/Util/Scratchpad.hs 40 -- Bind a key to 'scratchpadSpawnAction' -- Pressing it will spawn the terminal, or bring it to the current -- workspace if it already exists. --- Pressing the key with the terminal on the current workspace will +-- Pressing the key with the terminal on the current workspace will -- send it to a hidden workspace called @SP@. -- -- If you already have a workspace called @SP@, it will use that. hunk ./XMonad/Util/Scratchpad.hs 64 -- > scratchpadSpawnAction conf -- -- Where @conf@ is the configuration. --- +-- -- And add one of the @scratchpadManageHook*@s to your ManageHook list. -- The default rectangle is half the screen wide and a quarter of the -- screen tall, centered. hunk ./XMonad/Util/Scratchpad.hs 75 -- | Action to pop up the terminal, for the user to bind to a custom key. scratchpadSpawnAction :: XConfig l -- ^ The configuration, to retrieve the terminal -> X () -scratchpadSpawnAction conf = +scratchpadSpawnAction conf = scratchpadAction $ spawn $ terminal conf ++ " -name scratchpad"
hunk ./XMonad/Util/Scratchpad.hs 82 -- | Action to pop up the terminal, with a directly specified terminal. scratchpadSpawnActionTerminal :: String -- ^ Name of the terminal program -> X () -scratchpadSpawnActionTerminal term = +scratchpadSpawnActionTerminal term = scratchpadAction $ spawn $ term ++ " -name scratchpad"
hunk ./XMonad/Util/Scratchpad.hs 86 +-- | Action to pop up any program with the user specifiying how to set +-- its resource to \"scratchpad\". For example, with gnome-terminal +-- bind the following to a key: +-- +-- > scratchpadSpawnActionCustom "gnome-terminal --name scratchpad" +scratchpadSpawnActionCustom :: String -- ^ Command to spawn a program with resource \"scratchpad\" + -> X () +scratchpadSpawnActionCustom = scratchpadAction . spawn
hunk ./XMonad/Util/Scratchpad.hs 95 - --- The heart of the new summon/banish terminal. +-- The heart of the new summon/banish terminal. -- The logic is thus: -- 1. if the scratchpad is on the current workspace, send it to the hidden one. -- - if the scratchpad workspace doesn't exist yet, create it first. hunk ./XMonad/Util/Scratchpad.hs 99 --- 2. if the scratchpad is elsewhere, bring it here. +-- 2. if the scratchpad is elsewhere, bring it here. scratchpadAction :: X () -> X () scratchpadAction action = withWindowSet $ \s -> do hunk ./XMonad/Util/Scratchpad.hs 102 - filterCurrent <- filterM (runQuery scratchpadQuery) - ( (maybe [] W.integrate - . W.stack - . W.workspace + filterCurrent <- filterM (runQuery scratchpadQuery) + ( (maybe [] W.integrate + . W.stack + . W.workspace . W.current) s) case filterCurrent of (x:_) -> do hunk ./XMonad/Util/Scratchpad.hs 136
-- | The ManageHook, with a user-specified StackSet.RationalRect, --- eg. +-- e.g., for a terminal 4/10 of the screen width from the left, half +-- the screen height from the top, and 6/10 of the screen width by +-- 3/10 the screen height, use: -- hunk ./XMonad/Util/Scratchpad.hs 140 --- > scratchpadManageHook (W.RationalRect 0.25 0.375 0.5 0.25) +-- > scratchpadManageHook (W.RationalRect 0.4 0.5 0.6 0.3) scratchpadManageHook :: W.RationalRect -- ^ User-specified screen rectangle. -> ManageHook scratchpadManageHook rect = scratchpadQuery --> doRectFloat rect }
Context:
[SpawnOn: add 'exec' to shell strings where possible Spencer Janssen
**20090212234608 Ignore-this: c7de4e05803d60b10f38004dcbda4732 ] [Fix an undefined in EwmhDesktops Daniel Schoepe **20090209152308 Ignore-this: f60a43d7ba90164ebcf700090dfb2480 ] [X.U.WindowProperties: docs (description and sections) Roman Cheplyaka **20090208231422] [X.U.WindowProperties: Add getProp32 and getProp32s, helpers to get properties from windows Ismael Carnales **20090205013031 Ignore-this: c5481fd5d97b15ca049e2da2605f65c1 ] [cleanup and make X.L.Mosaic behavior more intuitive wrt. areas Adam Vogt **20090208221629 Ignore-this: 3c3c6faa203cbb1c1db909e5bf018b6f ] [minor typo in XMonad/Util/EZConfig.hs Joachim Breitner **20090208192224 Ignore-this: 7ffee60858785c3e31fdd5383c9bb784 ] [Multimedia keys support for EZConfig Khudyakov Alexey **20090207173330 Ignore-this: 21183dd7c192682daa18e3768828f88d ] [+A.CycleWindows: bindings to cycle windows in new ways wirtwolff@gmail.com**20090207170622 Ignore-this: 51634299addf224cbbc421adb4b048f5 Provides binding actions and customizable pure stack operations to cycle through a list of permutations of the stack (recent), cycle nth into focus, cycle through focus excluding a neighbor, cycle unfocused, shift a window halfway around the stack. Esp. for Full, two or three pane layouts, but useful for any layout with many windows. ] [XMonad.Actions.CopyWindow: fmt & qualify stackset import gwern0@gmail.com**20090206171833 Ignore-this: 4d08f5a7627020b188f59fc637b53ae8 ] [XMonad.Actions.CopyWindow runOrCopy lan3ny@gmail.com**20080602205742] [ManageHelpers: reduce duplicated code in predicates Ismael Carnales **20090204021847 Ignore-this: e28a912d4f897eba68ab3edfddf9f26b ] [Remove X.U.SpawnOnWorkspace (superseded by X.A.SpawnOn) Roman Cheplyaka **20090204103635] [X.A.SpawnOn: add docs Roman Cheplyaka **20090204102424 Add more documentation, including documentation from X.U.SpawnOnWorkspace by Daniel Schoepe. ] [Remove silliness from XMonad.Doc.Configuring Spencer Janssen **20090204055626] [Adjustments to use the new event hook feature instead of Hooks.EventHook Daniel Schoepe **20090203160046 Ignore-this: f8c239bc8e301cbd6fa509ef748af542 ] [Easier Colorizers for X.A.GridSelect quentin.moser@unifr.ch**20090128001702 Ignore-this: df3e0423824e40537ffdb4bc7363655d ] [X.A.SpawOn: fix usage doc Roman Cheplyaka **20090202102042] [Added GridVariants.SplitGrid Norbert Zeh **20090129152146 GridVariants.TallGrid behaved weird when transformed using Mirror or Reflect. The new layout SplitGrid does away with the need for such transformations by taking a parameter to specify horizontal or vertical splits. ] [FixedColumn: added missing nmaster to the usage doc Ismael Carnales
**20090130195239 Ignore-this: 642aa0bc9e68e7518acc8af30324b97a ] [XMonad.Actions.Search: fix whitespace & tabs gwern0@gmail.com**20090129025246 Ignore-this: 894e479ccc46160848c4d70c2361c929 ] [xmonad-action-search-intelligent-searchengines Michal Trybus **20090128101938 Changed the XMonad.Action.Search to use a function instead of String to prepare the search URL.Added a few useful functions used to connect many search engines together and do intelligent prefixed searches (more doc in haddock)The API has not changed with the only exception of search function, which now accepts a function instead of String. ] [XMonad.Prompt autocompletion fix quentin.moser@unifr.ch**20090127184145 Ignore-this: 635cbf6420722a4edef1ae9c40b36e1b ] [X.A.SinkAll: re-add accidentally deleted usage documentation Brent Yorgey **20090127222533] [move XMonad.Actions.SinkAll functionality to more general XMonad.Actions.WithAll, and re-export sinkAll from X.A.SinkAll for backwards compatibility Brent Yorgey **20090127222355] [adds generic 'all windows on current workspace' functionality loupgaroublond@gmail.com**20081221224850] [placement patch to XMonad.Layout.LayoutHints quentin.moser@unifr.ch**20090126195950 Ignore-this: 87a5efa9c841d378a808b1a4309f18 ] [XMonad.Actions.MessageFeedback module quentin.moser@unifr.ch**20090126181059 Ignore-this: 82e58357a44f98c35ccf6ad0ef98b552 ] [submapDefault Anders Engstrom **20090118152933 Ignore-this: c8958d47eb584a7de04a81eb087f05d1 Add support for a default action to take when the entered key does not match any entry. ] [X.A.CycleWS: convert tabs to spaces (closes #266) Roman Cheplyaka **20090127185604] [Mosaic picks the middle aspect layout, unless overriden Adam Vogt **20090126032421 Ignore-this: aaa31da14720bffd478db0029563aea5 ] [Mosaic: stop preventing access to the widest layouts Adam Vogt **20090125045256 Ignore-this: c792060fe2eaf532f433cfa8eb1e8fe3 ] [X.L.Mosaic add documentation, update interface and aspect ratio behavior Adam Vogt **20090125041229 Ignore-this: e78027707fc844b3307ea87f28efed73 ] [Use currentTag, thanks asgaroth Spencer Janssen **20090125213331 Ignore-this: dd1a3d96038de6479eca3b9798d38437 ] [Support for spawning most applications on a specific workspace Daniel Schoepe **20090125191045 Ignore-this: 26076d54b131e037b42c87e4fde63200 ] [X.L.Mosaic: haddock fix Roman Cheplyaka **20090124235908] [A mosaic layout based on MosaicAlt Adam Vogt **20090124022058 Ignore-this: 92bad7498f1ac402012e3eba6cbb2693 The position of a window in the stack determines its position and layout. And the overall tendency to make wide or tall windows can be changed, though not all of the options presented by MosaicAlt can be reached, the layout changes with each aspect ratio message.
] [uninstallSignalHandlers in spawnPipe Spencer Janssen
**20090122002745 Ignore-this: e8cfe0f18f278c95d492628da8326fd7 ] [Create a new session for spawnPiped processes Spencer Janssen **20090122000441 Ignore-this: 37529c5fe8b4bf1b97fffb043bb3dfb0 ] [TAG 0.8.1 Spencer Janssen **20090118220647] [Use spawnOn in my config Spencer Janssen **20090117041026 Ignore-this: 3f92e4bbe4f2874b86a6c7ad66a31bbb ] [Add XMonad.Actions.SpawnOn Spencer Janssen **20090117040432 Ignore-this: 63869d1ab11f2ed5aab1690763065800 ] [Bump version to 0.8.1 Spencer Janssen **20090116223607 Ignore-this: 1c201e87080e4404f51cadc108b228a1 ] [Compile without optimizations on x86_64 and GHC 6.10 Spencer Janssen **20090108231650 Ignore-this: a803235b8022793f648e8953d9f05e0c This is a workaround for http://xmonad.org/bugs/226 ] [Update all uses of doubleFork/waitForProcess Spencer Janssen **20090116210315 Ignore-this: 4e15b7f3fd6af3b7317449608f5246b0 ] [Update to my config Spencer Janssen **20090116204553 Ignore-this: 81017fa5b99855fc8ed1fe8892929f53 ] [Adjustments to new userCode function Daniel Schoepe **20090110221310] [X.U.EZConfig: expand documentation Brent Yorgey **20090116153143] [add a bit of documentation to HintedTile Brent Yorgey **20090114065126] [ManageHelpers: add isDialog johanngiwer@web.de**20090108232505] [CenteredMaster portnov84@rambler.ru**20090111134513 centerMaster layout modifier places master window at top of other, at center of screen. Other windows are managed by base layout. topRightMaster is similar, but places master window at top right corner. ] [XMonad.Util.XSelection: update maintainer information gwern0@gmail.com**20090110213000 Ignore-this: 1592ba07f2ed5d2258c215c2d175190a ] [X.U.XSelection: get rid of warning about missing newline, add Haddock link Brent Yorgey
**20090102194357] [adds haddock documentation for transformPromptSelection loupgaroublond@gmail.com**20090102190954 also renames the function per mailing list recommendation ] [adds a weird function to XSelection loupgaroublond@gmail.com**20081222020730
This enables you to pass a function of (String -> String) to a selection function to modify the string before executing it. This way, you can input your own escape routines to make it shell command line safe, and/or do other fancier things. ] [ThreeColumnsMiddle xmonad@c-otto.de**20090102091019] [fix-fromJust-errors rupa@lrrr.us**20081224045509
bogner wrote all this stuff and i just tested it.
I had:
myLogHook = ewmhDesktopLogHookCustom ScratchpadFilterOutWorkspace >> updatePointer Nearest
Everytime I invoked or hid Scratchpad, it would leave a 'Maybe.fromJust: Nothing' line in .xsession-errors, and updatePointer would stop working.
] [ Prompt: Change Filemode to 600 for history-file (fixes bug 244) Dominik Bruhn
**20081218001601] [X.L.Monitor: changes in message passing Roman Cheplyaka **20081226220851 - transform mbName (Maybe String) to name (String) - slghtly change semantics of messages, document it ] [X.L.Monitor: change interface Roman Cheplyaka **20081226213118 - remove add*Monitor - add manageMonitor, monitor template ] [X.U.WindowProperties: propertyToQuery+docs Roman Cheplyaka **20081225080702] [X.L.Monitor: docs Roman Cheplyaka **20081225073904] [hlintify XUtils, XSelection, Search, WindowGo gwern0@gmail.com**20081220153302 Ignore-this: 7e877484e3cd8954b74232ea83180fa9 ] [fix focus issue for XMonad.Actions.Warp.banishScreen Norbert Zeh **20081212203532 This patch ensures that the focus (or in fact the whose windowset) does not change as a result of a banishScreen. The way this is implemented will become problematic if xmonad ever goes multithreaded. ] [addition of XMonad.Actions.Warp.banishScreen Norbert Zeh
**20081212192621 This works on top of warpToScreen and, thus, suffers from the same issue: focus change. ] [fixed documentation for banish Norbert Zeh
**20081212191819 banish actually warps to the specified corner of the current window, not the screen. ] [addition of combined TallGrid layout Norbert Zeh
**20081212184836 Added a module XMonad.Layouts.GridVariants, which defines layouts Grid and TallGrid. The former is a customizable version of Grid. The latter is a combination of Grid and Tall (see doc of the module). ] [Add FixedColumn, a layout like Tall but based on the resize hints of windows Justin Bogner
**20081213073054] [XMonad.Actions.WindowGo: fix a floating-related focus bug gwern0@gmail.com**20081205150755 Ignore-this: c8b6625aa2bd4136937acbd2ad64ffd3 If a floating window was focused, a cross-workspace 'raise' would cause a loop of shifting windows. Apparently the problem was 'focus' and its mouse-handling. Spencer suggested that the calls to focus be replaced with 'focusWindow', which resolved it. ] [Prompt.hs: +greenXPConfig and amberXPConfig gwern0@gmail.com**20081119213122 Ignore-this: 95ac7dbe9c8fe3618135966f251f4fc6 ] [Prompt.hs: increase font size to 12 from niggardly 10 gwern0@gmail.com**20081119212523 Ignore-this: 74a6e1ac5e1774da4ffc7c6667c034c ] [Prompt.hs: replace magic numbers with understandable names gwern0@gmail.com**20081119212502 Ignore-this: 8401c0213be9a32c925e1bd0ba5e01f1 ] [X.L.Monitor: recommend doHideIgnore (docs) Roman Cheplyaka **20081215190710] [X.L.Monitor: docs Roman Cheplyaka **20081215184423] [X.L.Monitor: export Monitor datatype Roman Cheplyaka **20081215184318] [X.H.ManageHelpers: add doHideIgnore Roman Cheplyaka **20081215182758] [Add KDE 4 config, thanks to Shirakawasuna on IRC Spencer Janssen **20081211071141 Ignore-this: 51698961ab5b6e569c294d174f2804a9 ] [I use the deleteConsecutive history filter Spencer Janssen **20081025070438] [Remove XMonad.Config.PlainConfig, it has been turned into the separate xmonad-light project. Braden Shepherdson **20081203161534] [XMonad.Prompt: swap up and down per bug #243 gwern0@gmail.com**20081203013323 Ignore-this: 8ab0481a0da7a983f501ac2fec4a68e8 ] [Fix boolean operator precedence in GridSelect keybindings Aleksandar Dimitrov **20081201120928 The vim-like hjkl keys were ORed to the key event AND arrow keys. ] [GridSelect.hs: navigate grid with h,j,k,l as well as arrow keys sean.escriva@gmail.com**20081122084725] [Export setOpacity from FadeInactive. Document how to make monitor transparent (X.L.Monitor) Roman Cheplyaka **20081117153027] [Monitor: use broadcastMessage instead of sendMessage; this solves several issues Roman Cheplyaka **20081117133957] [FadeInactive: fade all inactive windows (including focused windows on visible screens) Roman Cheplyaka **20081117130115] [Monitor: documented one more issue Roman Cheplyaka **20081117113807] [Monitor: improved the docs Roman Cheplyaka **20081117073709] [added XMonad.Layout.Monitor Roman Cheplyaka **20081115104735] [WindowProperties: added allWithProperty Roman Cheplyaka **20081115104525] [ManageHelpers: added doSideFloat (generalization of doCenterFloat) Roman Cheplyaka **20081114113015] [GridSelect: Export default_colorizer Dominik Bruhn **20081112140005] [Simplify code for restriction-calculation and remove compiletime warnings Dominik Bruhn **20081112134630] [Simplify handle/eventLoop, introduce findInWindowMap, partial updates for key movements (less flickering) Clemens Fruhwirth **20081111100405 * handle/eventLoop carried the display and the drawing window as parameters. The display is available from the embedded X monad, the drawing windows was added.
* updateWindows now takes a list of windows to update. updateAllWindows updates all windows.
* only the windows that are modified by key movements are redrawn now. This means less flickering.
] [GridSelect: force cursor stay in visible area Roman Cheplyaka
**20081111063348] [GridSelect: fix infiniteness problem with diamondRestrict Roman Cheplyaka **20081111055350] [GridSelect: remove tabs Roman Cheplyaka **20081111053647] [Exported shrinkWhile from Decoration to use in GridSelect Roman Cheplyaka **20081110191534] [GridSelect: added link to a screenshot Roman Cheplyaka **20081110190617] [GridSelect: various improvements Roman Cheplyaka **20081110184644 Added documentation Restricted export list for the sake of haddock Added functions: withSelectedWindow bringSelected (by Clemens Fruhwirth) goToSelected (by Dominik Bruhn) ] [Initial version of GridSelect.hs with a lot room for improvement/cleanups Clemens Fruhwirth **20081107115114] [documentation: XMonad.Util.Search.hs, add EZConfig keybindings example sean.escriva@gmail.com**20081106171707] [typo Don Stewart **20081104043044 Ignore-this: bdac0ff3316c821bce321b51c62f6e89 ] [place an upper bound on the version of base we support Don Stewart **20081104035857 Ignore-this: 29139cc4f0ecb299b56ae99f7d20b854 ] [explicit import list for things in the process library Don Stewart **20081104035319 Ignore-this: 91b7f96421828788760e8bcff7dec317 ] [Work around ghc 6.10 bug #2738 Don Stewart **20081104034819 Ignore-this: c75da9693fa642025eac0d074869423d ] [windowPromptBringCopy deadguysfrom@gmail.com**20081023173019] [generic menu and window bringer Travis B. Hartwell **20081027005523] [Search.hs: +hackage search, courtesy of byorgey gwern0@gmail.com**20081031214937 Ignore-this: 24db0ceed49f8bd37ce98ccf8f8ca2ab ] [Prompt.hs rename deleteConsecutiveDuplicates gwern0@gmail.com**20081008205131 That name is really unwieldy and long. ] [Prompt.hs: have historyCompletion filter dupes gwern0@gmail.com**20081008204710 Specifically, it calls deleteConsecutiveDuplicates on the end product. uniqSort reverses order in an unfortunate way, so we don't use that. The use-case is when a user has added the same input many times - as it stands, if the history records 30 'top's or whatever, the completion will show 30 'top' entries! This fixes that. ] [Prompt.hs: tweak haddocks gwern0@gmail.com**20081008204649] [Prompt.hs: mv uniqSort to next to its confreres, and mention the trade-off gwern0@gmail.com**20081008192645] [Do not consider XMONAD_TIMER unknown Joachim Breitner **20081008195643] [Kill window without focusing it first Joachim Breitner **20081005002533 This patch requires the patch "add killWindow function" in xmonad. Before this patch, people would experience âworkspace flickerâ when closing a window via EWMH that is not on the current workspace, for example when quitting pidgin via the panel icon. ] [let MagnifyLess actually magnify less daniel@wagner-home.com**20081015153911] [Actions.Search: add a few search engines intrigeri@boum.org**20081008104033 Add Debian {package, bug, tracking system} search engines, as well as Google Images and isohunt.
] [Implement HiddenNonEmptyWS with HiddenWS and NonEmptyWS Joachim Breitner
**20081006211027 (Just to reduce code duplication) ] [Add straightforward HiddenWS to WSType Joachim Breitner **20081006210548 With NonEmptyWS and HiddenNonEmptyWS present, HiddenWS is obviously missing. ] [Merge emptyLayoutMod into redoLayout Joachim Breitner **20081005190220 This removes the emptyLayoutMod method from the LayoutModifier class, and change the Stack parameter to redoLayout to a Maybe Stack one. It also changes all affected code. This should should be a refactoring without any change in program behaviour. ] [SmartBorders even for empty layouts Joachim Breitner **20081005184426 Fixes: http://code.google.com/p/xmonad/issues/detail?id=223 ] [Paste.hs: improve haddocks gwern0@gmail.com**20080927150158] [Paste.hs: fix haddock gwern0@gmail.com**20080927145238] [minor explanatory comment daniel@wagner-home.com**20081003015919] [XMonad.Layout.HintedGrid: add GridRatio (--no-test because of haddock breakage) Lukas Mai **20080930141715] [XMonad.Util.Font: UTF8 -> USE_UTF8 Lukas Mai **20080930140056] [Paste.hs: implement noModMask suggestion gwern0@gmail.com**20080926232056] [fix a divide by zero error in Grid daniel@wagner-home.com**20080926204148] [-DUTF8 flag with -DUSE_UTF8 gwern0@gmail.com**20080921154014] [XSelection.hs: use CPP to compile against utf8-string gwern0@gmail.com**20080920151615] [add XMonad.Config.Azerty Devin Mullins **20080924044946] [flip GridRatio to match convention (x/y) Devin Mullins **20080922033354] [let Grid have a configurable aspect ratio goal daniel@wagner-home.com**20080922010950] [Paste.hs: +warning about ASCII limitations gwern0@gmail.com**20080921155038] [Paste.hs: shorten comment lines to under 80 columns per sjanssen gwern0@gmail.com**20080921154950] [Forgot to enable historyFilter :( Spencer Janssen **20080921094254] [Prompt: add configurable history filters Spencer Janssen **20080921093453] [Update my config to use 'statusBar' Spencer Janssen **20080921063513] [Rename pasteKey functions to sendKey Spencer Janssen **20080921062016] [DynamicLog: doc fixes Spencer Janssen **20080921061314] [Move XMonad.Util.XPaste to XMonad.Util.Paste Spencer Janssen **20080921060947] [Depend on X11 >= 1.4.3 Spencer Janssen **20080921055456] [statusBar now supplies the action to toggle struts Spencer Janssen **20080918013858] [cleanup - use currentTag Devin Mullins **20080921011159] [XPaste.hs: improve author info gwern0@gmail.com**20080920152342] [+XMonad.Util.XPaste: a module for pasting strings to windows gwern0@gmail.com**20080920152106] [UrgencyHook bug fix: cleanupUrgents should clean up reminders, too Devin Mullins **20080920062117] [Sketch of XMonad.Config.Monad Spencer Janssen **20080917081838] [raiseMaster seanmce33@gmail.com**20080912184830] [Add missing space between dzen command and flags Daniel Neri **20080915131009] [Big DynamicLog refactor. Added statusBar, improved compositionality for dzen and xmobar Spencer Janssen **20080913205931 Compatibility notes: - dzen type change - xmobar type change - dynamicLogDzen removed - dynamicLogXmobar removed ] [Take maintainership of XMonad.Prompt Spencer Janssen **20080911230442] [Overhaul Prompt to use a zipper for history navigation. Fixes issue #216 Spencer Janssen **20080911225940] [Use the new completion on tab setting Spencer Janssen **20080911085940] [Only start to show the completion window with more than one match Joachim Breitner **20080908110129] [XPrompt: Add showCompletionOnTab option Joachim Breitner **20080908105758 This patch partially implements http://code.google.com/p/xmonad/issues/detail?id=215 It adds a XPConfig option that, if enabled, hides the completion window until the user presses Tab once. Default behaviour is preserved. TODO: If Tab causes a unique completion, continue to hide the completion window. ] [XMonad.Actions.Plane.planeKeys: function to make easier to configure Marco Túlio Gontijo e Silva **20080714153601] [XMonad.Actions.Plane: removed unneeded hiding Marco Túlio Gontijo e Silva **20080714152631] [Improvements in documentation Marco Túlio Gontijo e Silva **20080709002425] [Fix haddock typos in XMonad.Config.{Desktop,Gnome,Kde} Spencer Janssen **20080911040808] [add clearUrgents for your keys Devin Mullins **20080909055425] [add reminder functionality to UrgencyHook Devin Mullins **20080824200548 I'm considering rewriting remindWhen and suppressWhen as UrgencyHookModifiers, so to speak. Bleh. ] [TAG 0.8 Spencer Janssen **20080905195420] [Bump version to 0.8 Spencer Janssen **20080905194415] [Take maintainership of X.L.WindowNavigation Devin Mullins **20080902070247 Since I've been working on a rewrite, it seems only fair that I be forced to better understand the existing code / issues. ] [Take maintainership of NoBorders Spencer Janssen **20080829201325] [Only move pointers over managed windows Joachim Breitner **20080610195916] [Fix window region checking in UpdatePointer robreim@bobturf.org**20080511094056] [remove myself as maintainer from modules I don't maintain or use. David Roundy **20080828151830] [change withUrgencyHookC api Devin Mullins **20080821052046 Now it takes an UrgencyConfig record type. ] [Accept a range of xmonad versions Spencer Janssen **20080820214056] [StackTile_fix acura@allyourbase.se**20080820061918] [X.H.UrgencyHook: haddock fixes Devin Mullins **20080816195220] [Improve documentation for XMonad.Hooks.EwmhDesktops Spencer Janssen **20080813191857] [simplify WindowBringer code, and change greedyView to focusWindow Devin Mullins **20080811033137] [Updates to my config Spencer Janssen **20080812050124] [Added XMonad.Hooks.DynamicHooks Braden Shepherdson **20080724222054 Allows runtime creation and modification of ManageHooks. Also allows one-shot ManageHooks that are removed after the fire. Note that if several transient hooks fire at once, only the most recently defined is executed, and all are removed. ] [XMonad.Hooks.UrgencyHook: +FocusHook gwern0@gmail.com**20080716224745 This is a hook for simply traveling to whatever window has just set an urgent flag, instead of doing something more involved like printing to a status bar and letting the user do something manually. ] [Grid/HintedGrid: prefer wider windows Lukas Mai **20080717205138] [I prefer the spencerjanssen@gmail.com address Spencer Janssen **20080714204005] [callUrgencyHook after adjustUrgents Devin Mullins **20080714043020 So folks can readUrgents inside their urgencyHook, should they so desire. ] [XMonad/Doc/Developing.hs: update haddock ln, cpedit gwern0@gmail.com**20080708205058] [XMonad/Doc.hs: why link to a specific version instead of the latest? gwern0@gmail.com**20080708202236] [XMonad.Actions.Plane.Linear leoserra@minaslivre.org**20080706175303] [XMonad.Actions.Plane: Improvements in code quality Marco Túlio Gontijo e Silva **20080706172829] [XMonad.Actions.Plane: Treat error in read Marco Túlio Gontijo e Silva **20080710135342] [XMonad.Actions.Plane: GConf support Marco Túlio Gontijo e Silva **20080709001900 Thanks to Johan Dahlin. ] [X.A.WindowNavigation: comments Devin Mullins **20080710041028] [add autoComplete option to XMonad.Prompt Devin Mullins **20080704073415 Maybe this will get Gwern one step closer to a complete Ratpoison binding. ] [XMonad.Actions.Plane: Copyright update Marco Túlio Gontijo e Silva **20080709001548] [XMonad.Actions.Plane: removed missing haddock chunck Marco Túlio Gontijo e Silva **20080709010530] [Added function to filter out scratchpad workspace for use with ewmhLogHookCustom. Braden Shepherdson **20080706161027] [Added ewmhLogHookCustom, which allows arbitrary transformation of the workspace list. Braden Shepherdson **20080706160847] [adding thesaurus.reference.com and Google Labs Code Search searches brian@lorf.org**20080701090142] [fillout banish example in Warp.hs gwern0@gmail.com**20080629202047 We also include a nice little type to avoid specifying 0 0 stuff. ] [fix Actions.Wap doc gwern0@gmail.com**20080629115504 warp 1 1 has a comment claiming that this moves the cursor to the lower *left*, but if you look at the warpToWindow haddock, it says that 1 1 is actually lower *right* - as indeed it proved to do. This was annoying as it led me astray for a minute or so. ] [allow function keys up to F24 brian@lorf.org**20080626040516] [Now using -name instead of -title as the term app argument, and correspondingly resource for the ManageHook. Braden Shepherdson **20080608180748] [Actions/Search.hs: export SearchEngine constructor Brent Yorgey **20080620212016] [Export PerWorkspace to allow type signatures Malebria **20080620015046] [XMonad.Util.EZConfig: add keypad bindings Lukas Mai **20080615143702] [XMonad.Util.EZConfig: minor cleanups Lukas Mai **20080528165450] [make default highlighting a bit dimmer for neighbors in WindowNavigation. David Roundy **20080610174200] [keep drag panes on the bottom of the window stack. David Roundy **20080610174044] [add support to Magnifier for vertical zooming. David Roundy **20080610173747] [XMonad.Hooks.EwmhDesktops export EwmHDesktopsHook Malebria **20080610130614 Any function that a user may write in his configuration file that is related to ewmhDesktopsLayout cannot have it's type signature if this type is not exported. ] [XMonad.Config.Desktop type problem (monomorphism?) Malebria **20080610182856 With main = xmonad defaultConfig {layoutHook = desktopLayoutModifiers Full} I got a type error, that's not present with the patch. ] [Make prompt keybindings work when numLock or capsLock are active Justin Bogner **20080608172057] [Replaced old "spawn on mod+s" semantics with "spawn/summon or banish on mod+s". Braden Shepherdson **20080608045457 Originally the key binding just spawned a new floating terminal on every keypress. Now it spawns if it doesn't exist, summons from another workspace if it does but isn't visible, or banishes it to a dynamically created workspace if it is on the current workspace. ] [Exporting addHiddenWorkspace, it's needed by the new Scratchpad Braden Shepherdson **20080608045318] [Added scratchpadSpawnActionTerminal to specify the terminal program directly as a String. Braden Shepherdson **20080608032619] [Removed odd scratchpadSpawnDefault, improved documentation. Braden Shepherdson **20080608032439] [Actions.Search.hs: switch inappropriate use of getShellCompl for a historyCompletion gwern0@gmail.com**20080607071331 It's inappropriate because if I am searching Wikipedia, say, why on earth do I want completion of files and executables on my PC? A previous search query is much more likely to be what I want. ] [Prompt.hs: +a historyCompletion function for use in XPrompts gwern0@gmail.com**20080607071225] [Add C-w to XMonad.Prompt Trevor Elliott **20080605220656 * Bind C-w to kill the previous word
] [Add missing xfce module to .cabal Don Stewart
**20080602174219] [Use lines instead of columns in configuration (similar to GNOME and KDE) Malebria **20080526225337] [Bug correction when areasColumn > 1 Malebria **20080526223220] [more documentation for WindowNavigation and UrgencyHook Devin Mullins **20080525050231] [X.A.WindowNavigation: add logHook for better state tracking Devin Mullins **20080525032325] [doco tweaks Devin Mullins **20080524211849] [made fadeInactiveLogHook take an argument amount to fade Justin Bogner **20080523213937] [add FadeInactive to fade out inactive windows using xcompmgr Justin Bogner **20080523205838] [add close window functionality to EwmhDesktops Justin Bogner **20080523185908] [Add XMonad.Actions.Plane Malebria **20080523004357] [Default Xfce config, this time with me holding the copyright, maintainership, etc. Ivan.Miljenovic@gmail.com**20080522105316] [StackTile: minor documentation fix Joachim Fasting **20080521182637 That '[]' in the example seems incorrect ] [StackTile acura@allyourbase.se**20080520195559 A simple patch to get a dishes like stacking, but with the ability to resize master pane. ] [revamp Search.hs to export a replacement for simpleEngine gwern0@gmail.com**20080519190912 It's called searchEngine now, and is a wrapper around the SearchEngine type. Different type as well ] [sp ShowWName.hs gwern0@gmail.com**20080519190520] [remove ScratchWorkspace. David Roundy
**20080516185729 It's ugly code, and I'd be surprised if anyone actually uses it. I see no reason to continue to maintain it. ] [Fixed location of xmonad.conf Roman Cheplyaka **20080518204602] [add site name in search prompt dialog zhen.sydow@gmail.com**20080518101357] [add youtube to search engines zhen.sydow@gmail.com**20080513212508] [SwapWorkspaces: swapTo Next|Prev Devin Mullins **20080518024121] [UrgencyHook: removeVisiblesFromUrgents -> cleanupUrgents Devin Mullins **20080515164436 Now only removes windows based on SuppressWhen setting. ] [Added XMonad.Config.PlainConfig: proof-of-concept GHC-less plain text configuration file parser Braden Shepherdson **20080517222916 An example of the config file format can be found in the Haddock. Notably missing features are docks and more layouts than just the standard three. ] [XMonad.Hooks.SetWMName: Update documentation to reflect the addition of startupHook. lithis
**20080516221011] [I no longer use ScratchWorkspace. David Roundy **20080516185715] [fix bug in smartBorders when combined with decorated windows. David Roundy **20080516184855] [decent documentation for UrgencyHook Devin Mullins **20080515082222 Blame it on lack of sleep. Or perhaps the causation is the reverse. ] [X.A.WindowNavigation: currentPosition and setPosition share the same `inside` logic, now Devin Mullins **20080515062211 Aside from documentation, this is pretty much usable, now. ] [X.A.WindowNavigation: have currentPosition handle axes independently Devin Mullins **20080515053330 This improves some subtle interactions between mod-j/k and mod-w/a/s/d, though that might not become very apparent until I fix setPosition. ] [fix compile warnings in BoringWindows Devin Mullins **20080515051728] [add BoringWindows module to make certain windows skipped when rotating focus. David Roundy **20080514162846] [UrgencyHook: some documentation (more is needed) Devin Mullins **20080514080104] [UrgencyHook: got rid of the need for instances to know about suppressWhen Devin Mullins **20080514072217 This changes the API a little bit, but that's what you get for using a day-old feature from darcs. ] [move AppLauncher from Actions module to Prompt module zhen.sydow@gmail.com**20080513201252] [X.A.WindowNavigation: comment cleanup Devin Mullins **20080513091313] [windowRect now compensates for border width Devin Mullins **20080513090151 Odd that I have to do (Rectangle x y (w + 2 * bw) (h + 2 * bw)) -- you'd think the window would be centered within the bordered area. ] [X.A.WindowNavigation: update TODO Devin Mullins **20080513044229] [X.A.WindowNavigation: minor cleanup Devin Mullins **20080512170410] [X.A.WindowNavigation: simplify inr somewhat Devin Mullins **20080512090647] [X.A.WindowNavigation: clarity Devin Mullins **20080512085338] [X.A.WindowNavigation: ugh, typo Devin Mullins **20080512082228] [X.A.WindowNavigation: implement swap, extract withTargetWindow commonality Devin Mullins **20080512064715 Why doesn't mapWindows exist already? ] [add more flexible withWindowNavigationKeys Devin Mullins **20080512050637 Names aren't permanent yet, so don't cry if they change. ] [X.A.WindowNavigation: TODO Devin Mullins **20080511222116] [X.A.WindowNavigation: add withWindowNavigation, for easy setup Devin Mullins **20080511220458 This should be more flexible than it is -- I've got an idea, but am interested to hear others. ] [X.A.WindowNavigation: fix currentPosition Devin Mullins **20080511212128 Now properly deals with an unitialized state (e.g. from a restart) or an inconsistent state (e.g. from using mod-j/k). Deserves cleanup. ] [X.A.WindowNavigation: add TODOs Devin Mullins **20080511211326] [X.A.WindowNavigation state is now workspace-specific Devin Mullins **20080511071656 racking up some code debt, here... ] [X.A.WindowNavigation: minor doco changes Devin Mullins **20080506074235] [add draft XMonad.Actions.WindowNavigation Devin Mullins **20080504050022 This is an experiment with replacing the WindowNavigation LayoutModifier with one that simply adds keybindings and stores state in an IORef. Credit to droundy for the original code -- hopefully I'm not butchering it. The end intent is to add Xinerama support, but it'll be a little while before I get there. ] [new contrib module to launch apps with command line parameters zhen.sydow@gmail.com**20080513134754] [pull suppressWhen logic into main WithUrgencyHook handler Devin Mullins **20080513075247 In order for this to work, I added a new UrgencyHook method to communicate the SuppressWhen value. I'm not sure if this is actually better than just providing a convenience function, but it's an easy switch. ] [add suppressWhen option to dzenUrgencyHook Devin Mullins **20080513054615] [WindowNavigation: extract navigable function Devin Mullins **20080422045248] [UrgencyHook: doc typo Devin Mullins **20080512052137] [UrgencyHook: extract whenNotVisible Devin Mullins **20080512041852] [SpawnUrgencyHook, FWIW Devin Mullins **20080512040449] [make UrgencyHook an EventHook Devin Mullins **20080512024822 This gets rid of the stupid bug that led to a need for the clearBit hack, and allowed me to simplify the types (since EventHooks aren't required to parameterize on the window type). Config files need not change, unless they declare instances of UrgencyHook, in which case, they should remove "Window" as is seen in this patch. ] ['xmobar' function added to DynamicLog for running xmobar with some defaults Ivan N. Veselov
**20080508194918] [HintedTile: Fix mistake in documentation. lithis **20080508003552] [Use gnome-session-save for the mod-shift-q binding Spencer Janssen **20080507082205] [Use the named constant 'none' rather than 0 Spencer Janssen **20080507081854] [HintedTile: Improve documentation. lithis **20080508000245] [Whitespace only Spencer Janssen **20080507031306] [Add a binding for Gnome's "Run Application" dialog Spencer Janssen **20080507031127] [Add some keybindings to the Kde config Spencer Janssen **20080507022658] [Indentation Spencer Janssen **20080507022553] [Add ToggleStruts to the desktop config Spencer Janssen **20080507022516] [Refactor my config Spencer Janssen **20080507021504] [Add XMonad.Config.Kde Spencer Janssen **20080507020833] [Don't move the pointer if the user is moving the mouse Klaus Weidner **20080417022234 This patch depends on the following xmonad core patch:
Remember if focus changes were caused by mouse actions or by key commands
If the user was moving the mouse, it's not appropriate to move the pointer around in resonse to focus changes. Do that only in response to keyboard commands. ] [Missing pragmas Don Stewart
**20080506053402] [Add full documentation Don Stewart **20080505210546] [minor cleanup on getName Devin Mullins **20080504054923] [bug doco for UrgencyHook Devin Mullins **20080426203638] [NamedWindows: when converting the text property, handle the empty list. Spencer Janssen **20080502104249 This fixes a "Prelude.head" exception observed with windows that have no title. Reproduce by placing several windows in the tabbed layout, then starting 'xterm -name ""'. Thanks to Andrea for pointing out the issue. ] [Fix issue #179 by handling events correctly Andrea Rossato **20080501062357] [My monitor is larger now :) Spencer Janssen **20080430083026] [manageHooks for my config Spencer Janssen **20080430082536] [Remove redundant type signature Spencer Janssen **20080430082447] [Add XMonad.Config.Desktop and XMonad.Config.Gnome Spencer Janssen **20080430082253] [Alphabetize exposed-modules Spencer Janssen **20080430035453] [new contrib layout: XMonad.Layout.SimplestFloat - A floating layout like SimpleFloat, but without decoration joamaki@gmail.com**20080424220957] [stricitfy some gap fields Don Stewart **20080427191247] [XMonad.Hooks.ManageHelpers: quick&dirty support for _NET_WM_STATE_FULLSCREEN Lukas Mai **20080426132745] [XMonad.Hooks.Script: haddock fixes Lukas Mai **20080426132629] [Error fix for Tabbed when tabbar always shown Ivan.Miljenovic@gmail.com**20080424063135] [remove my config file -- the wiki is where its at. Don Stewart **20080419195650] [tweaks to docs for SimpleDecoration Don Stewart **20080418215155] [Allow tabbar to always be shown. Ivan.Miljenovic@gmail.com**20080415043728 Patch take 4, hopefully the final version. Includes droundy's suggestions. ] [polish Don Stewart **20080418033133] [Script-based hooks Trevor Elliott **20080416213024] [Don't strictify the Display component, this triggers a bug in GHC 6.6 Spencer Janssen **20080416185733] [Fix to IM modifier. Roman Cheplyaka **20080414232437 Avoid differentiating integrated stack by using StackSet.filter. ] [IM layout converted to LayoutModifier, which can be applied to any layout Ivan N. Veselov **20080413205824] [stictify some fields Don Stewart **20080413070117] [strictify some fields Don Stewart **20080413065958] [Fix window order in EWMH Joachim Breitner **20080411134411 For pagers to draw the stacking order correctly, the focused window has to be the last in the list. Thus put an appropriate implementation of allWindows into the Module. This does not work perfectly with floating windows. ] [remove myself as maintainer of CopyWindow. David Roundy **20080409144333 I'm not sure who's maintaining this, but it's not me. ] [XMonad.Util.WindowProperties: add WM_WINDOW_ROLE as Role Roman Cheplyaka **20080409174935] [Generalize copyWindow, minor style change Spencer Janssen **20080408210050] [XMonad.Actions.CopyWindow: added copyToAll and killAllOtherCopies functions Ivan N. Veselov **20080408195111] [XMonad.Actions.UpdatePointer: doc fix Lukas Mai **20080407152741] [XMonad.Util.Font: minor reformatting Lukas Mai **20080406020935] [DynamicLog: resolve merge conflict Lukas Mai **20080406020527] [Encode the entire DynamicLog output, instead of just window title. lithis **20080329031537] [DynamicLog: add support for UTF-8 locales when compiled with XFT or UFT-8 support Andrea Rossato **20080313102643] [XMonad.Util.Font: don't call setlocale; core does it for us Lukas Mai **20080406013123] [XMonad.Util.NamedWindows: fix imports Lukas Mai **20080326172745] [Changed getName to use locale-aware functions Mats Jansborg **20070819132104 Rewrote getName using getTextProperty and wcTextPropertyToTextList. ] [Added next-window versions of the raise* functions. Ian Zerny **20080405182900] [XMonad.Layout.Master: initial import Lukas Mai **20080404220734] [update contrib for applySizeHints changes Lukas Mai **20080404220558] [XMonad.Hooks.ManageDocks: haddock fix Lukas Mai **20080404220532] [MultiToggle/Instances: ghc 6.6 can't parse LANGUAGE pragma Brent Yorgey **20080404200157] [Document _NET_ACTIVE_WINDOW behaviour more exactly Joachim Breitner **20080404072944] [_NET_ACTIVE_WINDOW moves windows if necessary Joachim Breitner *-20080402143811 This makes EWMH behave a bit more like metacity: If _NET_ACTIVE_WINDOW is received and the window is not on the current worspace, it is brought here (instead of the workspace switched to the other one). So for example, if you click on the pidgin icon in the panel and the buddy list is already open some where it is moved here. ] [onstart=lower, solves floating dzen issue Don Stewart **20080403203425] [some bang patterns Don Stewart **20080403172246] [have 'dzen' use autoStruts to detect the gaps Don Stewart **20080403003130] [Actions/Search.hs: add dictionary.com search Brent Yorgey **20080402150521] [_NET_ACTIVE_WINDOW moves windows if necessary Joachim Breitner **20080402143811 This makes EWMH behave a bit more like metacity: If _NET_ACTIVE_WINDOW is received and the window is not on the current worspace, it is brought here (instead of the workspace switched to the other one). So for example, if you click on the pidgin icon in the panel and the buddy list is already open some where it is moved here. ] [HintedGrid: guesstimate window flexibility and layout rigid windows first Lukas Mai **20080402042846] [HintedGrid: try both bottom-up/top-down window placement to minimize unused space Lukas Mai **20080402012538] [Grid/HintedGrid: use an ncolumns formula inspired by dwm's "optimal" mode Lukas Mai **20080402012126] [XMonad.Layout.Gaps: new contrib module for manual gap support, in the few cases where ManageDocks is not appropriate (dock apps that don't set STRUTS properly, adjusting for a display that is cut off on one edge, etc.) Brent Yorgey **20080402003742] [improve WindowGo.hs Haddock formatting gwern0@gmail.com**20080401023130] [forgot a haddock for getEditor in Shell.hs gwern0@gmail.com**20080401022012] [WindowGo.hs: +raiseBrowser, raiseEditor gwern0@gmail.com**20080401021740 Specialize runOrRaise in the same way as with Actions.Search, for one's browser and one's editors. ] [RunOrRaise.hs: FF 3 doesn't use the "Firefox-bin" classname gwern0@gmail.com**20080401015049] [Search.hs: remove an argument from selectSearch and promptSearch gwern0@gmail.com**20080401013947 The new getBrowser function allows us to mv the old selectSearch and promptSearch aside as too-general functions, and replace them with new versions, which employ getBrowser to supply one more argument. This allows us to replace the tedious 'selectSearch google "firefox"; selectSearch yahoo "firefox"...' with shorter 'selectSearch google' and so on. One less argument. Also, update the docs. ] [Shell.hs: +getBrowser, getEditor, helper function gwern0@gmail.com**20080401013447 The helper function asks the shell for the value of a variable, else returns the second argument. getBrowser and getEditor obviously specialize it for two particular possibly queries ] [XMonad.Layout.HintedGrid: initial import Lukas Mai
**20080401231722] [Documentation improvement. Roman Cheplyaka **20080401134305] [Remove broken link to screenshot. Roman Cheplyaka **20080331210854] [MultiToggle: add new XMonad.Layout.MultiToggle.Instances module for common instances of Transformer, update MultiToggle docs accordingly Brent Yorgey **20080331201739] [XMonad.Actions.CycleRecentWS: initial import Michal Janeczek **20080331111906] [XMonad.Hooks.ManageDocks: export checkDoc Lukas Mai **20080331012911] [XMonad.Layout.Grid: fix indentation Lukas Mai **20080330004859] [move Direction type from WindowNavigation to ManageDocks (ManageDocks will move into the core, taking Direction with it) Brent Yorgey **20080331010127] [ManageDocks: clean up + add more documentation Brent Yorgey **20080331002929] [Util.Run, Hooks.DynamicLog: re-export hPutStrLn and hPutStr from Util.Run for convenience, and update DynamicLog documentation to show proper imports Brent Yorgey **20080328205446] [ManageDocks: add avoidStrutsOn, for covering some docks and not others by default. Brent Yorgey **20080327203940] [ManageDocks: add ability to toggle individual gaps independently Brent Yorgey **20080327111722] [PerWorkspace: add modWorkspace(s) combinators, for selectively applying layout modifiers to certain workspaces but not others Brent Yorgey **20080326214351] [Haddock fix Roman Cheplyaka **20080330134435] [Remove stale status gaps code Spencer Janssen **20080329230737] [TAG 0.7 Spencer Janssen **20080329202416] [Bump version to 0.7 Spencer Janssen **20080329192400] [Fix haddock error Spencer Janssen **20080329191752] [XMonad.Layout.MultiToggle: let runLayout modify the base layout if no transformer is active Lukas Mai **20080328190903] [Spiral: add documentation Brent Yorgey **20080328192231] [corrected version of make workspaceDir work even in workspaces with no windows. David Roundy **20080327142257] [cleanup in Tabbed (make 'loc' be actual location). David Roundy **20080326151004] [make workspaceDir work even in workspaces with no windows. David Roundy *-20080326152708 This also fixes a (minor) bug when the focussed window is present on multiple visible workspaces. ] [clean up Config.Droundy. David Roundy **20080327002159] [make workspaceDir work even in workspaces with no windows. David Roundy **20080326152708 This also fixes a (minor) bug when the focussed window is present on multiple visible workspaces. ] [ManageDocks: add warning about making sure gaps are set to zero before switching to avoidStruts, since ToggleStruts won't work otherwise Brent Yorgey **20080326231928] [update documentation in XMonad/Doc in preparation for 0.7 release Brent Yorgey **20080326195741] [XMonad.Hooks.ManageHelpers: reformatting Lukas Mai **20080326182707] [XMonad.Layout.NoBorders: fix floating fullscreen logic Lukas Mai **20080326172844] [UpdatePointer: Make pointer position configurable. xmonad@selg.hethrael.org**20080326075759] [Fix bugs in Tabbed and TabBarDecoration -- please remember multi-head! Spencer Janssen **20080326034541] [my current config Don Stewart **20080326023303] [I don't use DwmStyle Spencer Janssen **20080325213818] [fix bug in TabBarDecoration leading to gaps in corner. David Roundy **20080325210327] [fix bug leading to gaps in tabs at the corner of the screen. David Roundy **20080325210211 Besides being ugly, this had the effect of making me fail to click on the tab I aimed for, if it was in the corner. ] [XMonad.Layout.LayoutModifier: add a metric crapload of documentation Brent Yorgey **20080325205006] [XMonad.Layout.Reflect: update documentation to reflect (haha) recent updates to MultiToggle Brent Yorgey **20080325185630] [XMonad.Layout.HintedTile: make alignment of shrunk windows configurable Lukas Mai **20080325202958] [XMonad.Actions.Commands: documentation fix Brent Yorgey **20080325165707] [focusedHasProperty redbeard0531@gmail.com**20080325040412] [XMonad.Util.Themes: improve documentation to make it clear that themes only apply to decorated layouts Brent Yorgey **20080324185946] [Doc/Extending: remove references to "XMonad.Layouts" -- it's now called "XMonad.Layout", and in any case, importing it explicitly is not needed anyway. Brent Yorgey **20080324143503] [XMonad.Actions.Search: add Google Maps search Brent Yorgey **20080324143348] [XMonad.Layout.Magnifier: add documentation Brent Yorgey **20080324143214] [wfarrTheme wcfarrington@gmail.com**20080324011625 Add a new color theme using blue and black. ] [added RunOrRaisePrompt, exported getCommands from Shell Justin Bogner **20080323222632] [XMonad.Actions.MouseGestures: reexport Direction from WindowNavigation, avoid type duplication Lukas Mai **20080322193457] [use ewmhDesktopsLayout in Droundy. David Roundy **20080322153610] [cut Anneal and Mosaic. David Roundy **20080322153546] [fix WorkspaceDir to work when there are multiple screens. David Roundy **20080311221201 In particlar, ScratchWorkspace broke this. ] [fix various compilation errors Lukas Mai **20080322074113] [XMonad.Layout.NoBorders: first attempt at documenting smartBorders Lukas Mai **20080321221315] [allow magnifier to toggle whether it's active daniel@wagner-home.com**20080321104605] [a magnifier that defaults to not magnifying any windows daniel@wagner-home.com**20080321104441] [XMonad.Layout.Magnifier: remove references to Data.Ratio.% from documentation Lukas Mai **20080320223816] [mark Mosaic as broken. use MosaicAlt Don Stewart **20080320223717] [add ewmhDesktopsLayout for EWMH interaction Joachim Breitner **20080319195736 This is based on Andreaâs EventHook thingy. Note that I could not merge this with some of my earlier EWHM interaction patches (darcs was failing on me), so I copied some code. Do not try to merge it with those patches either.
Note that the docs are saying what should work. There are still some bugs to be resolved, but it works sometimes and should work similar to what we have. ] [Export HandleEvent type to be able to use it in type annotations Joachim Breitner
**20080319195603] [I now use ServerMode Andrea Rossato **20080226115347] [EventHook: handle events after the underlying layout and more Andrea Rossato **20080224230854 - check the first time the Bool is True - coding and naming style ] [Add Hooks.ServerMode: an event hook to execute commands sent by an external client Andrea Rossato **20080224133706] [Add EventHook: a layout modifier to handle X events Andrea Rossato **20080224112432] [tabs Don Stewart **20080317224758] [WindowProperties: fix documentation Brent Yorgey **20080318204540] [Move window properties to a separate Util module Roman Cheplyaka **20080318165658 Add XMonad.Util.WindowProperties Modify XMonad.Layout.IM.hs to use WindowProperties. ] [XMonad.Layout.NoBorders: always unborder fullscreen floating windows, even when there are multiple screens Lukas Mai **20080317183043] [MagicFocus: reimplement as a LayoutModifier, fix bug (MagicFocus didn't pass on messages to underlying layouts) Brent Yorgey **20080317193008] [WindowGo.hs: improve description gwern0@gmail.com**20080316223946 I'm still not sure whether the description makes sense if you don't already understand the idea. ] [Run.hs: improve haddock gwern0@gmail.com**20080316223219 This module too was causing horizontal scrolling because of the shell command. I managed to discover that you only need to specify 'png:' *or* "foo.png", not both, which trimmed off enough characters. Also, I improved the docs for my functions. ] [XSelection.hs: improved haddockf formatting, more links, & cpedit gwern0@gmail.com**20080316222050] [Search.hs: try to add a more descriptive type gwern0@gmail.com**20080316215728] [improve the formatting for WindowGo.hs gwern0@gmail.com**20080316215642] [Search.hs: haddock fmt gwern0@gmail.com**20080316213914 This removes whitespace in source code snippets. Because Haddock renders quoted source code as monospaced unwrappable text, the excess whitespace meant you would have to scroll horizontally, unpleasantly. ] [Add XMonad.Actions.Promote xmonad@s001.hethrael.com**20080316205722] [LayoutCombinators: improve documentation (closes ticket #136) Brent Yorgey **20080316195826] [Xmonad.Layout.NoBorders: make smartBorders unborder fullscreen floating windows (bug 157) Lukas Mai **20080316042941] [Xmonad.Prompt.DirExec: fix haddock error Lukas Mai **20080316042840] [EwmhDesktops: advertise support for _NET_CLIENT_LIST_STACKING Alec Berryman **20080315212631] [ScratchWorkspace: update to work with runLayout changes Brent Yorgey **20080311212908] [Scratchpad: update to work with runLayout changes Brent Yorgey **20080311181715] [MagicFocus: update to work with runLayout changes Brent Yorgey **20080311181625] [LayoutScreens: update to work with runLayout changes Brent Yorgey **20080311181537] [Combo: update to work with runLayout changes Brent Yorgey **20080311181400] [MultiToggle: fix to work with runLayout changes to core Brent Yorgey **20080311172046] [PerWorksapce: use a safer False as default Andrea Rossato **20080223075531] [PerWorkspace: reimplemented using runLayout Andrea Rossato **20080222175954 This way we have a Xinerama safe PerWorkspace and the emptyLayout method for free. ] [ToggleLayouts: reimplemented with runLayout Andrea Rossato **20080223081553] [LayoutCombinators: NewSelect reimplemented with runLayout Andrea Rossato **20080223080958] [LayoutModifier: reimplement ModifiedLayout using runLayout and more Andrea Rossato **20080223075610 - change modifyLayout type to get the Workspace - updated ResizeScreen and ManageDocks accordingly. ] [Combo: updated to latest runLayout changes Andrea Rossato **20080222175924] [EZConfig: add documentation and a warning, so no one repeats my silly hard-to-track-down mistake. Brent Yorgey **20080311172610] [Fix to work with "floats always use current screen" patch robreim@bobturf.org**20080308024928] [make smartBorders ignore screens with no dimensions. David Roundy **20080308224244] [rewrite ScratchWorkspace to make scratch always visible, but not always on screen. David Roundy **20080308223830] [add HiddenNonEmptyWS to CycleWS to avoid workspaces already visible. David Roundy **20080308223717] [Fix ThreeColumns doc. Roman Cheplyaka **20080307203022] [Shell: add support for UTF-8 locales Andrea Rossato **20080302095924] [Font and XUtils: add UTF-8 support and various fixes related to XFT Andrea Rossato **20080302095712 - printStringXMF: use the background color for XFT fonts too - textWidthXMF now returns the text width even with xft fonts - textExtentsXMF will now return only the ascend and the descent of a string. - stringPosition now takes the display too - add support for UTF-8 locales: if the contrib library is compiled with the 'with_xft' or the 'with_utf8' option the prompt and the decoration system will support UTF-8 locales - this requires utf8-strings. ] [Ssh: coding style Andrea Rossato **20080229100346] [Ssh: complete known hosts with non standard ports too Andrea Rossato **20080229095014] [Fix xmonadPromptC and use it. nicolas.pouillard@gmail.com**20080306163928] [Documentation typo about UpdatePointer. nicolas.pouillard@gmail.com**20080306163516] [Fix ToggleOff: It was adding 0.1 to the magnification. Braden Shepherdson **20080305222302] [Removed WmiiActions module. Juraj Hercek **20080305082336] [Adjusted signature of DirExec module functions. Juraj Hercek **20080301171905 - added parameter for function which executes the selected program - renamed dirExecPromptWithName to dirExecPromptNamed ] [Import of new DirExec module. Juraj Hercek **20080229212257 - allows execution of executable files from specific directory ] [Hooks.DynamicLog: export xmobarPP Dmitry Kurochkin **20080303215637] [Magnifier: fix behavior for windows on the bottom + right of the screen. Now all magnified windows will be the same size, possibly shifted in order to fit completely on the screen. Brent Yorgey **20080303204619] [Changed semantics of UpdatePointer to move to nearest point robreim@bobturf.org**20080301143126] [UpdatePointer XMonadContrib module robreim@bobturf.org**20080301134401] [Util.Run: minor clarification in comment gwern0@gmail.com**20080303051513] [Add XMonad.Actions.PerWorkspaceKeys Roman Cheplyaka **20080302202346] [Haddock fix: Changed URL-Markup Dominik Bruhn **20080302185435] [switch Droundy to smartBorders (which works better with ScratchWorkspace). David Roundy **20080301191103] [XMonad.Layout.Simplest: add FlexibleInstances pragma Lukas Mai **20080301061714] [XMonad.Layout.ScratchWorkspace: avoid warnings, make tests compile again Lukas Mai **20080301061625] [implement ScratchWorkspace. David Roundy **20080229224316] [in Prompt.Workspace sort by official workspace order. David Roundy **20080229223047] [simplify Simplest--allow it to apply to non-Windows. David Roundy **20080229221326] [XMonad.Actions.MouseGestures.mkCollect: generalize type Lukas Mai **20080229211732] [Add bottom-tabbed layout. Roman Cheplyaka **20080229155120] [XMonad.Actions.MouseGestures: refactoring, code simplification Lukas Mai **20080229002136 It is now possible to get "live" status updates while the gesture handler is running. I use this in my xmonad.hs to print the current gesture to my status bar. Because collecting movements is now the callback's job, the implementation of mouseGestureH got quite a bit simpler. The interface is incompatible with the previous mouseGestureH but the old mouseGesture function works as before.
] [EZConfig: additional documentation Brent Yorgey
**20080227164602] [XMonad.Util.Scratchpad: change 'XConfig Layout' to 'XConfig l', to avoid type mismatches; the exact layout type doesn't actually matter Brent Yorgey **20080227014201] [EZConfig: add an emacs-style keybinding parser! Brent Yorgey **20080226222723 Now, instead of writing out incredibly dull things like ((modMask conf .|. controlMask .|. shiftMask, xK_F2), ...)
you can just write
("M-C-S-<F2>", ...)
Hooray! ] [Xmonad.Actions.MouseGestures: generalize interface, allow hooks Lukas Mai
**20080226202639] [update inactive debugging code in MouseGestures; no visible changes Lukas Mai **20071109020755] [Scratchpad terminal Braden Shepherdson **20080225183633 Key binding and ManageHook to pop up a small, floating terminal window for a few quick commands.
Combined with a utility like detach[1], makes a great X application launcher.
Requires my two new ManageHooks (doRectFloat, specifically).
[1] http://detach.sourceforge.net ] [Two new floating window ManageHooks. Braden Shepherdson
**20080225183337 Adds doRectFloat, which floats the new window in the given rectangle; and doCenterFloat, which floats the new window with its original size, but centered. ] [Fix usage doc. Roman Cheplyaka
**20080225062330] [Fix haddock hyperlink. Roman Cheplyaka **20080224205416] [Add XMonad.Layout.IM Roman Cheplyaka **20080221085752] [Export XMonad.Layout.Grid.arrange (for use in XMonad.Layout.IM) Roman Cheplyaka **20080221062204] [Decoration: some haddock updates Andrea Rossato **20080220214934] [Small refactoring. Nils Anders Danielsson **20080210224756] [Fixed off-by-one error which broke strut handling for some panels. Nils Anders Danielsson **20080210222600] [Decoration: fix an issue with decoration window creation and more Andrea Rossato **20080220204355 - fix a bug reported by Roman Cheplyaka: when decorate returned Nothing the window was never going to be created, even if decorate was reporting a Just Rectangle in the next run. Quite a deep issue, still visible only with TabbedDecoration at the present time. - remove decorateFirst (decorate has enough information to decide whether a window is the first one or not, am I right, David?) - some point free. ] [DynamicLog.hs: haddock fix Andrea Rossato **20080220204033 Someone forgot to check if her patch was going to break haddock docs generation or not. So, while I was recording a patch with quite a long description I had to manually write - sound strange? -, I found out that my patch did not pass the tests, because of this haddock problem left behind.
And so I fixed it, recorded this patch, with the hope the my next description of the next patch I'm going to record will survive the test suite we created to avoid this kind of problems for. ] [improvements to XMonad.Hooks.DynamicLog, and new contrib module XMonad.Util.Loggers Brent Yorgey
**20080219210128 Improvements to DynamicLog include: * Greatly expanded and improved documentation and examples * remove seemingly useless makeSimpleDzenConfig function * factor out xmobarPP * add new ppExtras field to PP record, for specifying 'extra' loggers which can supply information other than window title, layout, and workspace status to a status bar (for example, time and date, battery status, mail status, etc.) The new XMonad.Util.Loggers module provides some example loggers that can be used in the new ppExtras field of the PP record. Create your own, add them to this module, go crazy! =)
] [LayoutHints: fix a wrong fix Andrea Rossato
**20080219165127 The case analisys of my fix should be the other way around... this is the real fix. ] [Arossato: updated to latest changes Andrea Rossato **20080219163058] [Decoration: comment only Andrea Rossato **20080219161339 This is a detailed commentary of all the code. ] [Decoratione: generate rectangles first, and create windows accordingly Andrea Rossato **20080219122115 With this patch Decoration will first generate a rectangle and only if there is a rectangle available a window will be created. This makes the Decoration state a bit more difficult to process, but should reduce resource consumption. ] [Fix doc for Tabbed Roman Cheplyaka
**20080219055650] [Tabbed and TabBarDecoration: no need to implement decorateFirst (the default is used) Andrea Rossato **20080218184950] [TabBarDecoration: simpleTabBar automatically applies resizeVertical Andrea Rossato **20080218180922 Added some comments too. ] [DwmStyle: comment fix only Andrea Rossato **20080218180727] [ResizeScreen: add resizeHorizontalRight and resizeVerticalBottom Andrea Rossato **20080218180504] [Add TabBarDecoration, a layout modifier to add a bar of tabs to any layout Andrea Rossato **20080218161121 ... and port DecorationMadness to the new system. ] [add Eq superclass to DecorationStyle and change styles in order not to decorate non managed windows Andrea Rossato **20080218131320] [Refactor MouseResize, remove isDecoration and introduce isInStack, isVisible, isInvisible Andrea Rossato **20080218105726 This patch includes several changes, which are strictly related and cannot be recorded separately: - remove Decoraion.isDecoartion and introduce Decoration.isInStack (with the related change to LayoutHints) - in Decoration introduce useful utilities: isVisible, isInvisible, isWithin and lookFor' - MouseResize: - invisible inputOnly windows will not be created; - fix a bug in the read instance which caused a failure in the state deserialization. ] [Prompt: regenerate completion list if there's just one completion Andrea Rossato **20080217132734] [Prompt.Theme: use mkComplFunFromList' to generate completions Andrea Rossato **20080217124453] [some code formatting Andrea Rossato **20080217124434] [Prompt: comment only (clafiry completionToCommand uses) Andrea Rossato **20080216181620] [Prompt: comment only (remove confusing remarks about commandToComplete) Andrea Rossato **20080216180412] [Prompt: haddock fixes only Andrea Rossato **20080216172331] [Prompt.XMonad: use mkComplFunFromList' to get all the completions with an empty command line Andrea Rossato **20080216133949] [Prompt.Window: remove unneeded and ugly escaping/unescaping Andrea Rossato **20080216133842] [Theme: move theme's nextCompletion implementation to Prompt.getNextCompletion Andrea Rossato **20080216133738] [Shell: escape the string in the command line only Andrea Rossato **20080216133651] [Prompt: add some methods to make completions more flexible Andrea Rossato **20080216133454 - now it is possible to decide if the prompt will complete the last word of the command line or the whole line (default is the last word); - completing the last word can be fine tuned by implementing 'commandToComplete' and 'completionToCommand': see comments for details; - move mkComplFunFromList' from TagWindows to Prompt. ] [Prompt.Theme: display all theme information and handle completion accordingly Andrea Rossato **20080216114159] [Prompt.Shell: if there's just one completion and it is a directory add a trailing slash Andrea Rossato **20080216114005] [Prompt: added nextCompletion and commandToComplete methods to fine tune prompts' completion functions Andrea Rossato **20080216113723] [Util.Themes: add ppThemeInfor to render the theme info Andrea Rossato **20080216113635] [DecorationMadness: resizable layouts now use MouseResize too Andrea Rossato **20080212173645] [SimpleFloat now uses MouseResize Andrea Rossato **20080212173615] [Add Actions.MouseResize: a layout modifier to resize windows with the mouse Andrea Rossato **20080212173455] [Decoration: remove mouse resize and more Andrea Rossato **20080212165306 - since mouse resize is not related to decoration, I removed the code from here. Mouse resize will be handled by a separated layout modifier (in a separated module) - now also stacked decoration will be removed (I separated insert_dwr from remove_stacked) ] [Decoration.hs: variable names consistency only Andrea Rossato **20080211123056] [Tabbed and SimpleTabbed (in DecorationMadness) define their own decorationMouseDragHook method Andrea Rossato **20080211114043 ... to disable mouse drag in tabbed layouts ] [Decoration: DecorationStyle class cleanup and focus/drag unification Andrea Rossato **20080211113650 - moved decoEventHook to decorationEventHook - added decorationMouseFocusHook, decorationMouseDragHook, decorationMouseResizeHook methods - added a handleMouseFocusDrag to focus and drag a window (which makes it possible to focus *and* drag unfocused windows too ] [Refactor XMonad.Hooks.DynamicLog Roman Cheplyaka **20080210222406 This allows using DynamicLog not only for statusbar. ] [DecorationMadness: comment only Andrea Rossato **20080210131427] [DecorationMadness: added a few floating layouts Andrea Rossato **20080210122523] [SimpleFloat: export SimpleFloat and add documentation Andrea Rossato **20080210113159] [Move DefaultDecoration from DecorationMadness to Decoration Andrea Rossato **20080210104304] [Themes: added robertTheme and donaldTheme Andrea Rossato **20080210083016] [DecorationMadness: make tunable tabbed layouts respect the Theme decoHeight field Andrea Rossato **20080210075322] [ScreenResize: vertical and horizontal now respond to SetTheme Andrea Rossato **20080210074544 And so they will change the screen dimension accordingly. ] [WindowGo.hs: fix syntax in example Brent Yorgey **20080209225135] [+doc for WindowGo.hs: I've discovered a common usecase for me for raiseMaybe gwern0@gmail.com**20080205032155] [Run.hs: add an option to runinterms gwern0@gmail.com**20080205031824 It turns out that for urxvt, and most terminal, apparently, once you give a '-e' option, that's it. They will not interpret anything after that as anything but input for /bin/sh, so if you wanted to go 'runInTerm "'screen -r session' -title IRC"', you were SOL - the -title would not be seen by urxvt. This, needless to say, is bad, since then you can't do stuff like set the title which means various hooks and extensions are helpless. This patch adds an extra options argument which is inserted *before* the -e. If you want the old behaivour, you can just go 'runInTerm "" "executable"', but now if you need to do something extra, 'runInTerm "-title mutt" "mutt"' works fine. This patch also updates callers. ] [Add DecorationMadness: a repository of weirdnesses Andrea Rossato
**20080209182515] [Decoration: change mouseEventHook to decoEventHook and more Andrea Rossato **20080209165101 Fix also the problem with window's movement when the grabbing starts ] [Tabbed: add simpleTabbed and fx documentation Andrea Rossato **20080209163917 simpleTabbed is just a version of tabbed with default theme and default srhinker. ] [Arossato: update to latest changes Andrea Rossato **20080208140604] [Decoration: enable mouse dragging of windows Andrea Rossato **20080208083602] [WindowArranger: add a SetGeometry message - needed to enable mouseDrag Andrea Rossato **20080208083413] [Decoration: add a mouseEventHook methohd and move mouse button event there Andrea Rossato **20080208073514] [Util.Thems: some more typos in comments Andrea Rossato **20080207233341] [Util.Themes: documentation and export list (added themes that have been left out) Andrea Rossato **20080207232251] [Prompt.Theme: comments and some point-free Andrea Rossato **20080207232155] [oxymor00nTheme **20080207213100] [add swapScreen to CycleWS **20080206191032 * add support for swapping the workspaces on screens to CycleWS ] [Decoration: consistency of variable names Andrea Rossato **20080207191442 Since the configuration is now called Theme, the variable 'c' is now a 't' ] [Add Prompt.Theme: a prompt for dynamically applying a theme to the current workspace Andrea Rossato **20080207184321] [Decoration: add a SetTheme message and releaseResources Andrea Rossato **20080207184048 ...which should make it harder to forget to release the font structure. ] [cabal file: respect alphabetic order for modules Andrea Rossato **20080207183153] [Add Util.Themes to collect user contributed themes Andrea Rossato **20080207182843] [SimpleFloat: comment only Andrea Rossato **20080207182438] [Update to safer initColor api Don Stewart **20080206192232] [use Util.WorkspaceCompare in Prompt.Workspace. David Roundy **20080206004057] [roll back to previous version of Droundy.hs. David Roundy **20080205204043 A cleaner WindowNavigation fix made the separation of tabbed and addTabs not strictly necessary (but still a desireable possibility in my opinion, as it allows pretty decoration of non-composite layouts that might want to have some of their windows tabbed. ] [make WindowNavigation ignore decorations. David Roundy
**20080205203556] [make tabbed work nicely with LayoutCombinators and WindowNavigation. David Roundy **20080205202343 The problem is that WindowNavigation assumes all windows are navigable, and it was getting confused by decorations. With a bit of work, we can decorate windows *after* combining layouts just fine. ] [make WindowNavigation work when windows are stacked. David Roundy **20080205202027] [ XMonad.Actions.WindowGo: add a runOrRaise module for Joseph Garvin with the help of Spencer Janssen gwern0@gmail.com**20080204173402] [enable proper handling of panels in droundy config. David Roundy **20080204030843] [enable button click for focus in tabbed. David Roundy **20080204010536 Note that this patch doesn't work with Thu Dec 27 03:03:56 EST 2007 Spencer Janssen
* Broadcast button events to all layouts, fix for issue #111 but this isn't a regression, since button events have never worked with tabbed and this change. ] [in Decoration, remove windows that are precisely hidden underneath other windows. David Roundy
**20080204005413 This is needed for WindowNavigation to work properly with the new Decorations framework. ] [switch tabbed back to using Simplest (so tabs will be shown). David Roundy **20080204005350] [CycleWS: change example binding for toggleWS from mod-t to mod-z. example bindings shouldn't conflict with default key bindings. Brent Yorgey **20080201202126] [REMOVE RotView: use CycleWS instead. Brent Yorgey **20080201180618 See CycleWS docs for info on switching, or just look at the changes to XMonad.Config.Droundy. ] [CycleWS: add more general functionality that now subsumes the functionality of RotView. Now with parameterized workspace sorting and predicates! Brent Yorgey **20080201121524] [WorkspaceCompare: some refactoring. Brent Yorgey **20080201120430 * Export WorkspaceCompare and WorkspaceSort types. * Extract commonality in sort methods into mkWsSort, which creates a workspace sort from a workspace comparison function. * Rename getSortByTag to getSortByIndex, since it did not actually sort by tag at all; it sorts by index of workspace tags in the user's config. * Create a new getSortByTag function which actually does sort lexicographically by tag. * Enhance documentation. ] [Search.hs: haddock cleanup Brent Yorgey **20080131161948] [Added a handy tip to the documentation of XMonad.Actions.Search v.dijk.bas@gmail.com**20080131122620 The tip explains how to use the submap action to create a handy submap of keybindings for searching. ] [Make LayoutHints a decoration aware layout modifier Andrea Rossato **20080131082314] [Remove LayoutCombinator class and revert PerWorkspace to its Maybe Bool state Andrea Rossato **20080131063929 As I said in order to have a CombinedLayout type instace of LayoutClass and a class for easily writing pure and impure combinators to be feeded to the CombinedLayout together with the layouts to be conbined, there's seems to be the need to change the type of the LayoutClass.description method from l a -> String to l a -> X String. Without that "ugly" change - loosing the purity of the description (please note the *every* methods of that class unless description operates in the X monad) - I'm plainly unable to write something really useful and maintainable. If someone can point me in the right direction I would really really appreciate.
Since, in the meantime, PerWorkspace, which has its users, is broken and I broke it, I'm reverting it to it supposedly more beautiful PerWorkspac [WorkspaceId] (Maybe Bool) (l1 a) (l2 a) type. ] [Extending.hs: documentation update Brent Yorgey
**20080131012728] [DynamicLog: lots of additional documentation; add byorgeyPP as an example dzen config Brent Yorgey **20080130205219] [Extended PP with sorting algorithm specification and added xinerama sorting Juraj Hercek **20080109154923 algorithm - idea is to specify sorting algorithm from user's xmonad.hs - xinerama sorting algorithm produces same ordering as pprWindowSetXinerama - default ppSort is set to getSortByTag, so the default functionality is the same as it was before ] [SimpleDecoration: export defaultTheme Andrea Rossato **20080130124609] [Various decorations related updates Spencer Janssen **20080130064624 * remove deprecated TConf stuff * Remove 'style' from DeConf * Change DeConf to Theme * share defaultTheme across all decorations ] [TwoPane: add description string Joachim Fasting **20080126141332] [add XMonad.Actions.CycleSelectedLayouts Roman Cheplyaka **20080116205020] [Search.hs: add documentation and two more search engines (MathWorld and Google Scholar) Brent Yorgey **20080128190443] [xmonad-contrib.cabal: add build-type field to get rid of Cabal warning Brent Yorgey **20080128190137] [LayoutCombinator class: code clean up Andrea Rossato **20080129224952 - ComboType becomes CombboChooser - removed the stupid doFirst - better comboDescription default implemenation ] [Add a LayoutCombinator class and a CombinedLayout and port PerWorkspace to the new system Andrea Rossato **20080129192903] [Named: reimplemented as a LayoutModifier and updated Config.Droundy accordingly Andrea Rossato **20080128161343] [LayoutModifier: add modifyDescription for completely override the modified layout description Andrea Rossato **20080128160614] [Make ToggleLayouts and Named implement emptyLayout Andrea Rossato **20080128151535] [Decoration: the fontset must be released even when we don't decorate the first window Andrea Rossato **20080128004411 This is quite an old bug! It affected Tabbed since the very beginning..;) ] [Decoration: I forgot we need to release the fontset too! Andrea Rossato **20080127233521] [Decoration: after deleting the windows we must update the layout modifier Andrea Rossato **20080127231815 Thanks to Feuerbach for reporting this. ] [Reflect: reimplemented as a layout modifier (which makes it compatible with windowArranger and decoration) Andrea Rossato **20080127165854] [SimpleFLoat: change the description to Float (Simple is the decoration description) Andrea Rossato **20080127144556] [ManageDocks: implement AvoidStruts as a layout modifier Andrea Rossato **20080127144301] [ResizeScreen has been rewritten as a layout modifier Andrea Rossato **20080127140837] [LayoutModifier add a modifyLayout Andrea Rossato **20080127140219 Many layouts are written as layout modifiers because they need to change the stack of the rectangle before executing doLayout. This is a major source of bugs. all layout modifiers should be using the LayoutModifier class. This method (modifyLayout) can be used to manipulate the rectangle and the stack before running doLayout by the layout modifier. ] [Make LayoutCombinators deal with emptyLayout Andrea Rossato
**20080127092415] [Add ResizeScreen, a layout modifier for modifing the screen geometry Andrea Rossato **20080127010755] [WindowArranger can now arrange all windows Andrea Rossato **20080126233053 This is useful for SimpleFloat, whose state can now persists across layout switches. ] [Arossato: updated my config to recent changes Andrea Rossato **20080126205638] [Add SimpleFloat a very basic floating layout that will place windows according to their size hints Andrea Rossato **20080126205410] [WindoWrranger: export the WindowArranger type (see the upcoming SimpleFloat) Andrea Rossato **20080126204605] [ShowWName: show the name of empty layouts too Andrea Rossato **20080126190214] [ManageDocks: add emptyLayout definition for supporting the new decoration framework Andrea Rossato **20080126185936] [Decoration: code formatting only Andrea Rossato **20080126101354] [export DeConfig to avoid importing Decoration Andrea Rossato **20080126101049] [Prompt: code formatting only Andrea Rossato **20080126093234] [Don't export TConf anymore and export DeConfig instead Andrea Rossato **20080126092141 WARNING: this patch may be breaking your configuration. While it is still possible to use: tabbed shrinkText defaultTConf
updating the fields of the defaultTConf record is not possible anymore, since the type TConf is now hidden.
WARNING: "tabSize" has been substituted by "decoHeight"
You can change your configuration this way: myTConf :: TConf myTConf = defaultTConf { tabSize = 15 , etc....
becomes: myTConf :: DeConfig TabbedDecoration Window myTConf = defaultTabbedConfig { decoHeight = 15 , etc....
and tabbed shrinkText myTConf
becomes: tabDeco shrinkText myTConf
] [Tabbed now uses Decoration Andrea Rossato
**20080125152311] [Add DwmStyle, a layout modifier to add dwm-style decorations to windows in any layout Andrea Rossato **20080125152152] [Adde SimpleDecoration, a layout modifier to add simple decorations to windows in any layout Andrea Rossato **20080125152106] [Add Layout.Simplest, the simplest layout Andrea Rossato **20080125152015] [Add Decoration, a layout modifier and a class for easily writing decorated layouts Andrea Rossato **20080125151726] [Add WindowArranger, a layout modifier to move and resize windows with the keyboard Andrea Rossato **20080125151633] [ShowWName: moved fi to XUtils Andrea Rossato **20080124134725] [XUtils: add functions for operating on lists of windows and export fi Andrea Rossato **20080124134638] [LayoutModifier: add emptyLayoutMod for dealing with empty workspaces Andrea Rossato **20080124015605] [LayoutModifier: add pureMess and pureModifier to the LayoutModifier class Andrea Rossato **20080122111319] [Layout.ShowWName: generalize the instance Andrea Rossato **20080115045139] [add emptyLayout to MultiToggle Lukas Mai **20080128175313] [grammar fix Lukas Mai **20080128175059] [TAG 0.6 Spencer Janssen **20080127222114] [depend on xmonad-0.6 Spencer Janssen **20080127221101] [Bump version to 0.6 Spencer Janssen **20080127211504] [I use urxvtc now Spencer Janssen **20080127211452] [Update the test hook Spencer Janssen **20080127205148] [add 'single' helper function Lukas Mai **20080117234550] [documentation fix Lukas Mai **20080117234401] [style assimilation Lukas Mai **20080117234059] [cleared up transience to better highlight how to use ManageHooks properly xmonad-contrib@hexago.nl**20080102074810 The initial patch that extended the EDSL for writing ManageHook rules did not come with a good example on how to use it. This patch ammends that. 'move' is an example of how to write a rule to resolve a Query (Maybe a) into something tangible. 'move'' is an example of how to write a rule isolating window managing code from the rest ofthe mess the EDSL creates. ] [expands the EDSL for performing actions on windows xmonad-contrib@hexago.nl**20080101174446
This patch adds a few types of relationships and operators for managing windows with rules. It provides grouping operators so the X action can access the quantifier that was matched or not matched. It provides a formalism for predicates that work in both grouping and non grouping rules. It could do with some classes, so that there are fewer operators that always do the Right Thing (TM), but the Haskell Type system currently has some problems resolving types. Since I don't know enough about these high level things, it would be hard to create a GHC patch just to make it all work. ] [-Werror when flag(testing) only Spencer Janssen
**20080118015207] [Timer: some code cleanup Andrea Rossato **20080114211114] [Use doubleFork instead of manual double fork, or buggy single fork. nicolas.pouillard@gmail.com**20080114202833 This fixes showWName because Timer was leaking zombie processes. You should update xmonad, since doubleFork was not exported. ] [Reflect.hs: minor haddock fix Brent Yorgey
**20080116203546] [Reflect.hs: use -fglasgow-exts for now instead of LANGUAGE pragmas, for compatibility with ghc 6.6 Brent Yorgey **20080115194811] [Reflect.hs: add MultiToggle support Brent Yorgey **20080115193519] [MultiToggle.hs: improve 'description' implementation in LayoutClass instance to display the current transformed layout rather than just 'MultiToggle' Brent Yorgey **20080115193311] [Layout.Reflect: new contrib module for reflecting layouts horizontally/vertically Brent Yorgey **20080115030947] [ShowWName.hs: switch color/bgcolor in call to paintAndWrite Brent Yorgey **20080114153821] [Prompt: clean up and optimize moveWord a bit Andrea Rossato **20080113164745] [Prompt: added moveWord to move the cursor to the word boundaries Andrea Rossato **20080113123529 The actions have been bound to ctrl+Left and Right ] [Doc.Extending: added links and description of recent module addition Andrea Rossato **20080113093211] [Action.Search: small haddock fixes Andrea Rossato **20080113092646] [ShowWName now uses Timer and XUtils to display the workspace name Andrea Rossato **20080113091107] [Add XMonad.Util.Timer, a module to set up timers and to handle them Andrea Rossato **20080113090140] [de-obfuscate the initState and set the init offset to the length of the default text Andrea Rossato **20080110140951] [prompt: Allow to provide a default text in the prompt config. nicolas.pouillard@gmail.com**20080109213916] [Correct caps in module header. Joachim Fasting **20071230061920] [Use LANGUAGE pragma. Joachim Fasting **20071230061817] [shiftPrevScreen and shiftNextScreen, to make CycleWS consistent mail@joachim-breitner.de**20071231171609] [formatting Don Stewart **20071204174920] [PerWorkspace.hs: add an explanatory note Brent Yorgey **20071231135806] [Add ShowWName a layout modifier to show the workspace name Andrea Rossato **20071231130441 This module requires dzen ] [ManageDocks: some documentation fixes Andrea Rossato **20071231101820] [-Wall police (again) Spencer Janssen **20071228061841] [-Wall police Spencer Janssen **20071228061822] [Fulfill the EWMH specification by listing the supported ATOMs, doesnt really make a differene AFAIK mail@joachim-breitner.de**20071227215607] [display all visible windows on the current desktop in the pager mail@joachim-breitner.de**20071227204349 This is my best shot at modeling xmonadâs WM behaviour in a way that the Extended Window Manager Hints specification allows. Unfortunately, we can not tell the panel what size and position it should think the apps are. ] [Although I do not need the curr variable after all, this is nicer mail@joachim-breitner.de**20071227190113] [Add support for cycling through screens to CycleWS mail@joachim-breitner.de**20071227182635] [Clear _NET_ACTIVE_WINDOW when nothing is focused mail@joachim-breitner.de**20071228154222] [textExtentsXMF doesn't require the display Andrea Rossato
**20071228125913] [Don't bother checking executable bits of items in $PATH, yields a significant speed-up Spencer Janssen **20071226032412] [ResizableTile.hs: fix resizing to work in the presence of floating windows (resolves issue #100) Brent Yorgey **20071225135839] [LayoutScreens: haddock fixes Andrea Rossato **20071225105316] [XMonad.Actions.Search: haddock fix Andrea Rossato **20071224171115] [Fix isssue 105 Andrea Rossato **20071224171020 issue 105 was due to the fact that tab windows created when bootstrapping the windowset after a restart where managed. Setting the override_redirect attributes to True fixes the issue. Added the possibility to set the override_redirect attribute with XMonad.Util.XUtils.creationNewWindow ] [Prompt.hs: mv .xmonad_history into .xmonad/ gwern0@gmail.com**20071224054610 See my email to mailing list. This will slightly break anyone who upgrades while running and expects to see their prompt history, and leave a stray file, I think, but nothing else, and it'll permanently improve tab-completion, and is tidier. ] [Search.hs: +docs, and export simpleEngine so users can define their own gwern0@gmail.com**20071224043828] [Search.hs: mv into Actions/ per IRC suggestion gwern0@gmail.com**20071224043735] [add XMonad.Actions.NoBorders Lukas Mai
**20071220203953] [AvoidStruts: add support for partial struts Spencer Janssen **20071222133425] [Search.hs: add hoogle Brent Yorgey **20071222184912] [ManageDocks: ignore desktop windows also Spencer Janssen **20071222113808] [Wibble Spencer Janssen **20071222110641] [EwmhDesktops: add _NET_ACTIVE_WINDOW support Spencer Janssen **20071222110552] [A few short comments for WorkspaceCompare Spencer Janssen **20071222105045] [EwmhDesktops: drop 'Workspace' from displayed workspace names Spencer Janssen **20071222104559] [Factor workspace sorting into a separate module Spencer Janssen **20071222104114] [No more tabs Spencer Janssen **20071222050439] [Refactor Search.hs Spencer Janssen **20071222044714] [Generalize XSelection functions to MonadIO Spencer Janssen **20071222044514] [Search.hs: +imdb & amazon engines for unk_red gwern0@gmail.com**20071222035837] [Search.hs: cleanup and refactor gwern0@gmail.com**20071220174001] [Update various restart bindings Spencer Janssen **20071219220634] [Fix typo. Roman Cheplyaka **20071219073857] [Doc/Developing.hs: add some information about Haddock documentation. Brent Yorgey **20071219215300] [require haddock documentation to build successfully in order to record a patch. Brent Yorgey **20071219215217] [Remove inaccurate comment about 'banish' Spencer Janssen **20071217231540] [Warp.hs: haddock fixes Brent Yorgey **20071217224712] [Warp.hs: +doc gwern0@gmail.com**20071216030015 Describe how to emulate Ratpoison's 'banish' functionality on one's config ] [Util/Search.hs: a few updates/fixes Brent Yorgey **20071217222930 * fix shadowing warning (ghc 6.8.2 complains) * export a few more of the functions * re-de-obfuscate generated URLs by not escaping alphanumerics or punct. ] [Util.Search: import escapeURIString, and fall back on the ugly const false hack to avoid copy-pasting even more gwern0@gmail.com**20071215211638] [update Config.Droundy to use a few nice hooks. David Roundy **20071216185653] [Add UrgencyHook support to Tabbed Shachaf Ben-Kiki **20071215171617] [DynamicLog.hs: some documentation updates. Brent Yorgey **20071215143727] [DynamicLog.hs: fix shadowing warning Brent Yorgey **20071215143227] [Add UrgencyHook support to DynamicLog Shachaf Ben-Kiki **20071214043528 Someone with Xinerama should look at this -- I don't know exactly how that should behave. ] [Depend on X11-1.4.1, it has crucial bugfixes Spencer Janssen **20071215022151] [Remove network dependency, potentially breaking XMonad.Util.Search Spencer Janssen **20071214231859] [Search.hs: fix shadowing warning and haddock errors Brent Yorgey **20071214163119] [+cabal support for XMonad.Util.Search gwern0@gmail.com**20071213205654] [+XMonad.Util.Search: new module gwern0@gmail.com**20071213205159 This module is intended to provide helpful functions for easily running web searchs; just hit a bound key, enter your query, and up opens a new tab/browser/window with the search results. In theory anyway; the Wikipedia and Google ones work fine for me, but the Internet Archive's docs on how to do don't necessarily seem to be correct. If you were, like me, previously running shell commands to call Surfraw or similar shell scripts to do the same thing, you can now scrap them and replace them. There aren't too many search engines defined here; new ones would be good, and they're easy to add! ] [Add support for _NET_WM_STRUT_PARTIAL Spencer Janssen
**20071213021704] [ManageDocks: when there are struts on opposing edges, the right/bottom strut Spencer Janssen **20071210021030 was ignored. TODO: quickchecks ] [Run.hs: fix documentation, cleanup whitespace "Valery V. Vorotyntsev" **20071212091516] [Man.hs: input speedup "Valery V. Vorotyntsev" **20071212090256 Descend manpage directories once -- when `manPrompt' is called. (Previous version used to search directories upon each character arrival.) ] [new XMonad.Hooks.ManageHelpers module Lukas Mai
**20071211183040] [Magnifier: custom zoom ratio for magnifier' too intrigeri@boum.org**20071211015554] [Magnifier.hs: minor haddock fixes Brent Yorgey **20071211011154] [fix haddock on Magnifier tim.thelion@gmail.com**20071210231942] [Custom zoom levels for magnifier tim.thelion@gmail.com**20071208230844] [TAG 0.5 Spencer Janssen **20071209233056] [Remove references to xmonad 0.4 Spencer Janssen **20071209232324] [Bump version to 0.5! Spencer Janssen **20071209231622] [Extending: updated to the lates config changes - manageHook simplification Andrea Rossato **20071209164731] [I use ManageDocks now Spencer Janssen **20071209134445] [Update ManageDocks to the new ManageHook system, remove the gap setting code in favor of AvoidStruts Spencer Janssen **20071209134225] [Extending: some fixes Andrea Rossato **20071209123623] [Arossato: my teaTime application. Andrea Rossato **20071209123327] [XPropManage: haddock fixes Andrea Rossato **20071209123246] [SetWMName: haddock fixes Andrea Rossato **20071209123227] [EwmhDesktops: haddock fixes Andrea Rossato **20071209123204] [DynamicLog: haddock fixes Andrea Rossato **20071209123148] [Sshprompt: Add explanation for the completion in sshprompt dominik@dbruhn.de**20071207000904] [More import pruning Spencer Janssen **20071208014846] [Remove XMonad.Operations imports Spencer Janssen **20071208000547] [Prune more imports Spencer Janssen **20071207235116] [I use CopyWindow now Spencer Janssen **20071207234018] [Remove redundant imports Spencer Janssen **20071207233827] [Typo in extra-source-files Spencer Janssen **20071205050311] [Depend on X11>=1.4.0 Spencer Janssen **20071205050012] [Remove TilePrime, it is subsumed by HintedTile Spencer Janssen **20071205045746] [Update Sjanssen.hs Spencer Janssen **20071205045648] [LayoutScreens and Square: haddock updates Brent Yorgey **20071204204039] [Droundy.hs: add spaces so haddock isn't confused by commented-out ||| combinator Brent Yorgey **20071204203622] [my urgency-hook code also seems to crach... change in Droundy. David Roundy **20071201162310] [disable avoidStruts in Droundy again. David Roundy **20071201160226 Apparently, ManageDocks still crashes on X86-64... ] [fix bug where we failed to hide combo decorations. David Roundy **20071201155859] [add to Droundy a non-working urgency hook and enable avoidStruts. David Roundy **20071201132910] [update XSelection.hs; apparently the utf8-string library has updated gwern0@gmail.com**20071130161429 Note that this does not fix the apparent problems with actually using getSelection, even though it works fine from a GHCi prompt... ] [LayoutScreens: documentation fix Brent Yorgey **20071130165423] [tune Droundy config. David Roundy **20071130145138] [more coding on Mosaic. David Roundy **20071123192455] [make Mosaic read (and partially try to obey) WM hints. David Roundy **20071123162538] [refactor XMonad.Prompt, add new modules XMonad.Prompt.{Input,Email} Brent Yorgey **20071128142417 XMonad.Prompt.Input is a new module which provides a framework for prompting the user for input and passing it along to some other action, useful for building actions which require user input. XMonad.Prompt.Email is a simple example of the use of XMonad.Prompt.Input, which prompts the user for a recipient, subject, and body, and sends a one-line email. I also made a small refactoring to XMonad.Prompt in order to support XMonad.Prompt.Input. ] [AppendFile: initial import Brent Yorgey **20071127224258 XMonad.Prompt.AppendFile is a new module which provides a prompt for appending a single line of text to a file. I use it for quickly writing down ideas/todos/etc. to a special file when I can't be bothered to stop what I'm doing to write things down properly. ] [DynamicWorkspaces: haddock updates Brent Yorgey **20071127220033] [WorkspaceDir: minor haddock update Brent Yorgey **20071127215652] [WmiiActions: haddock updates Brent Yorgey **20071127194427] [WindowBringer: haddock updates Brent Yorgey **20071127193948] [Warp: haddock updates Brent Yorgey **20071127193717] [TagWindows: haddock updates Brent Yorgey **20071127193213] [SwapWorkspaces: haddock updates Brent Yorgey **20071127192634] [SimpleDate, Submap: modMask --> modMask x Brent Yorgey **20071127192039] [Submap: haddock updates Brent Yorgey **20071127191841] [SinkAll: haddock updates Brent Yorgey **20071127191318] [SimpleDate: haddock updates; more specific imports Brent Yorgey **20071127190832] [Doc/Developing: various edits Brent Yorgey **20071127190345] [RotView: haddock updates Brent Yorgey **20071127185741] [LayoutCombinators: a few minor haddock fixes Brent Yorgey **20071127163106] [LayoutCombinators: changes infixes and added many other combinators. Andrea Rossato **20071127161807] [CopyWindow: fixed docs Andrea Rossato **20071125121418] [Alleviate clashing symbols with XMonad.ManageHook.<||> Spencer Janssen **20071127004258] [xmonad-contrib.cabal: better order for the documentation links Brent Yorgey **20071125171745] [links to documentatoin subsections in generated docs Don Stewart **20071125052206] [depend on X11 1.4.0 Don Stewart **20071125034656] [RotSlaves: haddock updates Brent Yorgey **20071124174518] [MouseGestures: haddock updates Brent Yorgey **20071124173351] [Extending.hs: a few edits Brent Yorgey **20071124171452] [Developing: a start Andrea Rossato **20071124141133] [Extending: some more stuff Andrea Rossato **20071124141106] [Arossato: some changes. I now use Magnifier among my layouts Andrea Rossato **20071124140918] [DynamicLog: added a dynamicLogXmobar Andrea Rossato **20071124125202] [Haddock docs: modMask --> modMask x Brent Yorgey **20071124022635] [FocusNth: haddock updates Brent Yorgey **20071124022249] [FloatKeys: haddock updates Brent Yorgey **20071124003702] [FlexibleResize: haddock updates Brent Yorgey **20071124002013] [FlexibleManipulate: add link to mouse binding documentation Brent Yorgey **20071124001927] [FlexibleManipulate: haddock updates Brent Yorgey **20071124000754] [FindEmptyWorkspace: haddock updates Brent Yorgey **20071123235427] [Doc/Extending.hs: edits Brent Yorgey **20071123232743] [Extending: added manageHook and logHook sections Andrea Rossato **20071123212943] [Magnifier: typo Andrea Rossato **20071123212900] [LayoutCombinators: fix doc Andrea Rossato **20071123175723] [DwmPromote: haddock updates Brent Yorgey **20071123202204] [DeManage: haddock updates Brent Yorgey **20071123201702] [CycleWS: haddock updates Brent Yorgey **20071123201122] [CopyWindow: haddock updates Brent Yorgey **20071123200643] [ConstrainedResize: haddock updates Brent Yorgey **20071123195643] [Doc/Extending.hs: add a section about configuring mouse bindings. Brent Yorgey **20071123184501] [Commands.hs: haddock updates Brent Yorgey **20071123171619] [dafaultConfig --> defaultConfig Brent Yorgey **20071123164722] [LayoutCombinators: haddock documentation Andrea Rossato **20071123154311] [ToggleLayout: haddock fixes Andrea Rossato **20071123142934] [LayoutHints: haddock fixes Andrea Rossato **20071123142859] [LayouModifier: haddock docs Andrea Rossato **20071123142519] [MagicFocus: haddock docs Andrea Rossato **20071123141657] [Maximize: haddock fixes Andrea Rossato **20071123141304] [MosaicAlt: haddock fixes Andrea Rossato **20071123141021] [Named: haddock fixes Andrea Rossato **20071123140557] [NoBorders: haddock fixes Andrea Rossato **20071123140535] [ResizableTile: haddock fixes Andrea Rossato **20071123140511] [Roledex: haddock fixes Andrea Rossato **20071123140451] [Spiral: haddock docs Andrea Rossato **20071123135023] [clean up mosaic a bit more. David Roundy **20071123153617] [Mosaic: fix docs Andrea Rossato **20071123125339] [ThreeColumns: haddock docs Andrea Rossato **20071123124659] [TilePrime: haddock docs Andrea Rossato **20071123124456] [TwoPane: haddock docs Andrea Rossato **20071123123155] [WindowNavigation: haddock documentation Andrea Rossato **20071123121129] [WorkspaceDir: docs Andrea Rossato **20071123115635] [HntedTile: alignement Andrea Rossato **20071123115031] [Combo: some haddock formatting Andrea Rossato **20071123114904] [make CopyWindow export a fancy copy-window-anywhere function. David Roundy **20071123121020] [remove need for faulty Read instance of NamedWindow. David Roundy **20071122170448] [Magnifier: more refactoring and a few message handlers Andrea Rossato **20071123113353] [cabal: build Magnifier again. Andrea Rossato **20071122190427] [Magnifier: some fixes and refactoring. It now works properly. Andrea Rossato **20071122190124] [Mosaic: unbreak build, remove unused import that ghc complains about Alec Berryman **20071122175925] [Extending: editing the key bindings require importing Data.Map Andrea Rossato **20071122133901] [cabal: added mosaic and anneal Andrea Rossato **20071122133837] [NamedWindow: Mosaic requires NamedWindow to have a Read instance Andrea Rossato **20071122133802] [Added Anneal used by the original mosaic Andrea Rossato **20071122133732] [Make the original Mosaic work with LayoutClass Andrea Rossato **20071122133658] [Prompt/Man.hs: fixing haddock "Valery V. Vorotyntsev" **20071122091828] [Don't show HintedTile in the description Spencer Janssen **20071122072615] [UrgencyHook: haddock fixes Devin Mullins **20071122065616] [updated XPropManage to ManageHook type joel.suovaniemi@iki.fi**20071122053203] [More HintedTile refactoring Spencer Janssen **20071122053154] [HintedTile: Spencer Janssen **20071122051157 - code formatting - refactoring, based on TilePrime work by Eric Mertens - use the current border width of the window, this improves interaction with the No/SmartBorders extensions ] [HintedTile: orientation bug fix, remove wide and tall in favor of the Tall and Wide constructors. Spencer Janssen **20071122042720] [Hooks/DynamicLog.hs: minor typo. Joachim Fasting **20071119131218] [Extending.hs: more edits and additions. Brent Yorgey **20071122034432] [Doc.hs: edits and additions Brent Yorgey **20071121204329] [Extending.hs: edits and additions Brent Yorgey **20071121203631] [Configuring.hs: edits and additions Brent Yorgey **20071121203312] [README: update reference to documentation Brent Yorgey **20071121202643] [Tabbed: haddock fixes Andrea Rossato **20071121181710] [HintedTile: haddock fixes Andrea Rossato **20071121181635] [Grid: haddock fixes Andrea Rossato **20071121181616] [DragPane: haddock fixes Andrea Rossato **20071121181555] [Dishes: haddock fixes Andrea Rossato **20071121181529] [Combo: haddock fixes Andrea Rossato **20071121181507] [Circle: haddock fixes Andrea Rossato **20071121181441] [Accordion: haddock fixes Andrea Rossato **20071121181409] [Updated documentation of all prompts in XMonad.Prompt Andrea Rossato **20071121142715] [Font: haddock fix Andrea Rossato **20071121141618] [NamedWindows: haddock fix Andrea Rossato **20071121141424] [XUtils: haddock fix Andrea Rossato **20071121141319] [Shell: small doc fix Andrea Rossato **20071121141013] [Tabbed: haddock documentation and code formatting Andrea Rossato **20071121140908] [HintedTile: typo Andrea Rossato **20071121140828] [HintedTile: ported to the LayoutClass Andrea Rossato **20071121112331] [PerWorkspace.hs: various fixes and updates Brent Yorgey **20071120173307] [Doc.hs: remove modules from export list. Brent Yorgey **20071120172947 Apparently GHC 6.8.1 issues a warning when a re-exported module does not itself export anything. ] [A new documentation system Andrea Rossato **20071120151552 What to see a real Haddock abuse? Here you go. Removed Documentation.hs and added a new name space: XMonad.Doc. By importing other documentation modules we may also use the synopsis in XMonad.Doc. If you believe that we should not have modules without code, well this code is not for you: just that strange -- stuff ...;) ] [PerWorkspace.hs: minor haddock fixes Andrea Rossato
**20071120103250 Also, we don't need to add those docstring annotation (%...), since that system is not used anymore. ] [new contrib module: Layout.PerWorkspace Brent Yorgey **20071120024612 This module allows you to configure layouts on a per-workspace basis, rather than specifying the same layout for all workspaces. (Of course, you still really *are* specifying the same layout for all workspaces, it just acts differently depending on the workspace. =) ] [NoBorders.hs: Haddock markup fix Brent Yorgey **20071120024415] [xmc/README: fix xmonad capitalisation, spelling fix Brent Yorgey **20071120024118] [Port overview from contrib.html to Documentation.hs Don Stewart **20071119183127] [remove Mosaic and Anneal. David Roundy **20071119153005] [remove MessageHooks Devin Mullins **20071119070417 Duplicating xmonad-core and working around static-linking issues was getting old quick. MessageHooks is now a branch of core, located at: http://code.haskell.org/~twifkak/xmonad-MessageHooks ] [make handle Just Another Message Hook Devin Mullins **20071119041731] [Anneal is only used by Mosaic which is disabled Spencer Janssen **20071119061440] [Prompt: comment only Andrea Rossato **20071119000357] [Port XPrompt to XMonad.Util.Font, various other refactorings Spencer Janssen **20071116232743] [Miscellaneous spell-checking Shachaf Ben-Kiki **20071118230319] [RotSlaves.hs: documentation fix. Brent Yorgey **20071118215858] [Documentation.hs: a lot more edits and additions. Brent Yorgey **20071118215541] [Prompt/*: add XConfig variable to keybindings in doc. Joachim Fasting **20071118144849] [Prompt/XMonad.hs: minor typo in doc. Joachim Fasting **20071118144722] [Actions/SinkAll.hs: update usage doc. Joachim Fasting **20071118144153] [Prompt/Man.hs: remove docstring. Joachim Fasting **20071118143240] [Documentation: added the section on editing layoutHook Andrea Rossato **20071118121240] [needs pattern guards Don Stewart **20071118053204] [Prompt/Workspace.hs: suggest using defaultXPConfig in usage doc. Joachim Fasting **20071117230940] [Prompt/Workspace.hs: update module description. Joachim Fasting **20071117230931] [Prompt/Window.hs: fix import statements in usage doc. Joachim Fasting **20071117230854] [Prompt/Ssh.hs: fix import statements in usage doc. Joachim Fasting **20071117230814] [Prompt/Man.hs: tweak import stuff in usage doc. Joachim Fasting **20071117230734] [Prompt/Layout.hs: add missing import to usage doc. Joachim Fasting **20071117230627] [Prompt/Shell.hs: fix invalid module import in usage doc. Joachim Fasting **20071117224614] [experimental MessageHooks "branch" of main Devin Mullins **20071118010836 Doesn't do much now, but is enough to allow me to define noFollow again. :) I believe the need to change XConfig may force this to be an *actual* branch of xmonad core, but I'm not sure yet. ] [Grid: tabs -> spaces Devin Mullins **20071117201140] [Documentation.hs: various stylistic edits, add a few more details Brent Yorgey **20071117173924] [Documentation: added library description coding style and licensing policy - xmonad in small caps Andrea Rossato **20071117134631] [Documentation: added more stuff Andrea Rossato **20071117114217] [cpp-options requires Cabal 1.2.1 Devin Mullins **20071117012659] [Use cpp-options Spencer Janssen **20071116232301] [Config/Droundy.hs: -Wall police, add -fno-warn-orphans Brent Yorgey **20071116155202] [Move XMonad.Util.Font to fix haddock generation Spencer Janssen **20071116215720] [cabal: I don't know how Hackage handles that so adopt a more general approach Andrea Rossato **20071116201644] [Documentation.hs: minor fixes Andrea Rossato **20071116201600] [Arossato: my terminal is urxvt Andrea Rossato **20071116201533] [Documentation: added the section for adding and removing key bindings Andrea Rossato **20071116155110] [Documentation: more stuff added Andrea Rossato **20071116154059] [utf8-string isn't needed Spencer Janssen **20071116133738] [Depend on X11-xft >= 0.2 Spencer Janssen **20071116130926] [XUtils: remove stringToPixel Spencer Janssen **20071116125247] [Export XMonadFont's constructors, use those constructors in XMonad.Prompt Spencer Janssen **20071116125157] [Use Xft automatically if available Spencer Janssen **20071116124211] [Font.hs: CPP around Xft calls, use a data type rather than Either Spencer Janssen **20071116123552] [Font.hs: tabs Spencer Janssen **20071116122551] [Add Font layer supporting an Xft backend. Make Tabbed.hs a user of this layer. Clemens Fruhwirth **20071116120653] [Documentation: typos and formatting Andrea Rossato **20071116122929] [XUtils: a small haddock fix Andrea Rossato **20071116122359] [XMonad.Util.Run: meny haddock fixes Andrea Rossato **20071116120938 I've also trasnformed gwern's comments to use '--' instead of {- -}, for uniformity. ] [CustomKeys.hs: typo "Valery V. Vorotyntsev" **20071116112531] [README: wrap long lines Andrea Rossato **20071116105037] [Add Documentation.hs for documentation purposes Andrea Rossato **20071116104827 An empty module for documentation purpose with configuration instructions. ] [Arossato: removed unneeded bits Andrea Rossato **20071116104753] [RotSlaves: small haddock fix Andrea Rossato **20071116104730] [update run xmonad script Don Stewart **20071115225704] [Prompt: haddock fixes Andrea Rossato **20071115204828] [Arossato: documentation Andrea Rossato **20071115191039] [Prompt: just code formatting Andrea Rossato **20071115191012] [Prompt: add killWord edit action Andrea Rossato **20071115190734 With this bindings: ^ - Delete kill forward ^ - BackSpace kill backward ] [remove unneeded Data.Bits imports. David Roundy **20071115161346] [CustomKeys.hs: "complete rebinding" mechanism explained "Valery V. Vorotyntsev" **20071115151410 Thanks to Don Stewart for his suggestion: http://article.gmane.org/gmane.comp.lang.haskell.xmonad/3339 ] [Tabbed.hs, SetWMName.hs: the modules need bitwise "or" "Valery V. Vorotyntsev" **20071115143758 Tabbed.hs cleaned of trailing whitespace. ] [fix bug in WindowNavigation. David Roundy **20071114231914 We weren't properly cleaning up in some cases, because we called focus, which calls windows, while handling a message, which had the result that changes to the layout were overwritten. This had the result that windowNavigation combined with DragPane left stray drag bars hanging around. ] [ Tabbed: removed -fno-warn-orphans Andrea Rossato **20071114230544 I added it by mistake, but it is not needed. Sorry. ] [simplify NewSelect code. David Roundy **20071114223538] [fix bug in LayoutCombinators. David Roundy **20071114210139] [no need to import Data.Bits Don Stewart **20071114183955] [ManageDocks.hs: haddock fixes Andrea Rossato **20071114191327] [EZConfig.hs: haddock fixes Andrea Rossato **20071114191109] [CustomKeys.hs: moved into `Util' directory "Valery V. Vorotyntsev" **20071114153418 I still wonder why do we need all those configuration examples. :) ] [Arossato: removed unneeded bits Andrea Rossato **20071114172500] [improve shrinking in Droundy.hs David Roundy **20071114142127] [Arossato: just code formatting Andrea Rossato **20071114142213] [Arossato: typo Andrea Rossato **20071114142046] [Arossato: some keybindings tuning Andrea Rossato **20071114141719] [Tabbed: added -fno-warn-orphans Andrea Rossato **20071114135525] [Arossato: just code formattings Andrea Rossato **20071114135352] [Config.Arossato: my hand has been forced to pick up a true combinator set... Andrea Rossato **20071114133848] [UrgencyHook.hs: small haddock fix Andrea Rossato **20071114104844] [fix EZConfig documentation Devin Mullins **20071114120442] [remove dead code Devin Mullins **20071112184857] [CustomKeys.hs (customKeysFrom): new function "Valery V. Vorotyntsev" **20071113201852 Update third-party configuration to fit your key preferences. Extended documentation. ] [pattern guards and newtype deriving required for ManageDocks.hs to build! Don Stewart **20071114032625] [add ToggleStruts capability to avoidStruts. David Roundy **20071113203434] [Arossato: cleanup and fine-tuning Andrea Rossato **20071113163906] [make shrinker preserved over restart in tabbed. David Roundy **20071113163116] [REAME: one more try gwern0@gmail.com**20071112220523] [scripts/generate-configs: update docs gwern0@gmail.com**20071112144643] [HEADS UP: Rename XMonadContrib library as xmonad-contrib. Don Stewart **20071112180919 After building and install as normal, be sure to unregister your old XMonadContrib library:
$ ghc-pkg unregister --user XMonadContrib-0.4 $ ghc-pkg unregister XMonadContrib-0.4
And then your ~/.xmonad/* stuff should link as normal.
] [XMonad.Config.CustomKeys - new module "Valery V. Vorotyntsev"
**20071112175530 This module is another key bindings customization helper. Differences from XMonad.Util.EZConfig by Devin Mullins: EZConfig -- M.union/M.difference CustomKeys -- Monad.Reader + foldr'ed M.insert/M.delete
IMHO, both modules could evolve into something nice. :) Please discuss at the mailing list. ] [prune Droundy.hs. David Roundy
**20071112172032] [NoBorders.hs: remove modifierDescription definitions, so NoBorders and SmartBorder don't change the layout description. Brent Yorgey **20071112154525] [NoBorder.hs: documentation updates Brent Yorgey **20071112154411] [fix intro doco for UrgencyHook Devin Mullins **20071112044102 Ooh, this new XConfig l -> XConfig l' function makes the docs disappear! ] [revert UrgencyHook behavior back to ICCCM non-compliance Devin Mullins **20071112043325 Note: If you're using UrgencyHook, this will break your config. @withUrgencyHook SomeUrgencyHook@ is XConfig -> XConfig, now. The layout hook has been renamed to urgencyLayoutHook. It may also be worth noting that, in order to recreate the old behavior without using redoLayout (so that this may be ported to an eventHook), I had to hijack logHook. Shouldn't harm anything, though.
TODO: update main docs ] [add StdoutUrgencyHook, to help debug weird client behavior Devin Mullins
**20071112015855] [EZConfig: update for kind change in XConfig Spencer Janssen **20071111215314] [changes to work with XConfig of kind * -> *. David Roundy **20071111005629] [depend on X11==1.3.0.20071111 for new type defns and 64 bit clean Don Stewart **20071111201055] [font size 15 pixels is the dzen default Don Stewart **20071109190328] [add two new modules, one to name layouts, another to select a layout. David Roundy **20071111195036 The latter is pretty useless, as there's no way to find out what layouts are available, but it can at least allow you to select between any layouts that you happen to be using already (in one workspace or another). The former is handy any time you'd rather have a short name for a layout (either for selecting, or for viewing in a status bar). ] [add helper module for writing configs Devin Mullins **20071111075222 Looking for suggestions on this module. Does it belong here? Is there a better name? Should the additional* functions pass the modMask to their second argument? etc. ] [let clients track their urgency, per ICCCM Devin Mullins **20071111021241 This removes the dependency on redoLayout -- now WithUrgencyHook defines handleMess only. ] [wrap user code in userCode, go figure Devin Mullins **20071111002617 (thanks à shachaf for that suggestion) ] [add LANGUAGE PatternGuards to UrgencyHook Devin Mullins **20071111002238] [remove dead doco Devin Mullins **20071111001443] [clarify config code... a bit Devin Mullins **20071111000933] [fix doco for UrgencyHook Devin Mullins **20071111000046] [add NoUrgencyHook, for shachaf's sake Devin Mullins **20071110235857] [oops, export the configuration options Devin Mullins **20071110233313] [add dzenUrgencyHook back Devin Mullins **20071110232706 TODO: fix all the doco ] [remove dzenUrgencyHook* from Dzen module Devin Mullins **20071110231115 To be replaced by UrgencyHook instances defined in the UrgencyHook module. ] [get UrgencyHook to compile Devin Mullins **20071110224303 (The boilerplate, it burns!) Still isn't useful (to me) yet, as I haven't ported dzenUrgencyHook to the new UrgencyHook class. ] [fix bug in avoidStruts. David Roundy **20071110214205] [typo fix in Util.Run Devin Mullins **20071110211328] [add a few docs (very sparse) to DynamicWorkspaces. David Roundy **20071109152649] [add withWorkspace prompt, which automatically creates workspace if nonexistent. David Roundy **20071109152124] [Generalize safe/unsafeSpawn to MonadIO Spencer Janssen **20071109073810] [Magnifier.hs: update so it at least compiles gwern0@gmail.com**20071108012522 Code modified on advice of Wachter; note I make absolutely no claims that the code runs correctly or doesn't eat your pets or does anything besides compile without any warnings. ] [Dzen.hs: resend doc update gwern0@gmail.com**20071106211537] [Update docs in Util gwern0@gmail.com**20071106190258] [fix types to work with Mats fix to X11. David Roundy **20071108192318] [Change the type of properties from Word32 to CLong Mats Jansborg **20071101192730] [fix bug in avoidStruts. David Roundy **20071108175250 I've now tested this module, and it works on x86--but doesn't work on x86-64, because ManageDocks doesn't work on 64-bit. But in any case, it works almost perfectly, with no user intervention needed (and no special hooks). The only catch is that it doesn't notice when a panel disappears, so the layout won't adjust until the next refresh (e.g. if you change focus, layout or workspace). ] [clean up Droundy.hs. David Roundy **20071107144106] [DynamicLog: typo in docs Andrea Rossato **20071108010104] [over pararenthesised arty fibonacci Don Stewart **20071107230601] [Remove spurious import in Arossato's config. Chris Mears **20071107215630] [Add my configuration file Andrea Rossato **20071107191305 Spencer and David: you really did a great job. Thank you guys! ] [add higher order 'dzen' function Don Stewart **20071107183107 The intent is that:
main = dzen xmonad
should just work, and indeed it does now, for launching a cool status bar with minimal effort. ] [Set defaultGaps for makeSimpleDzenConfig Spencer Janssen
**20071107092037] [DynamicLog: Add makeSimpleDzenConfig function Eric Mertens **20071107085514 This function serves as an example for spawning a dzen2 instance and printing the defaultPP to it. ] [Use spawnPipe in sjanssenConfig Spencer Janssen
**20071107082637] [Add spawnPipe Spencer Janssen **20071107075009] [DynamicLog: add ppOutput field to PP Eric Mertens **20071107055805 This allows the user to specify an alternate destination for logging output instead of outputing to stdout (which is still the default). ] [Add EwmhDesktops to exposed-modules Spencer Janssen
**20071107031135] [Actions: update SinkAll doc gwern0@gmail.com**20071106192158] [Prompt.hs: update names gwern0@gmail.com**20071106192054] [EwmhDesktops: move to correct name, update so it compiles gwern0@gmail.com**20071106191751] [Man.hs: -Wall option not necessary as that's turned on in the Cabal files gwern0@gmail.com**20071106190659] [make Setup haddock work again Lukas Mai **20071106141829] [change MultiToggle interface; add docs Lukas Mai **20071106141729] [Remove SwitchTrans Spencer Janssen **20071106065933] [Remove MetaModule Spencer Janssen **20071106023713] [add serializable SwitchTrans (a.k.a. MultiToggle) Lukas Mai **20071106005819] [make TilePrime compile again l.mai@web.de**20071105233218] [add LayoutHints to MetaModule l.mai@web.de**20071105233143] [make LayoutHints compile again l.mai@web.de**20071105233020] [Expose LayoutCombinators Spencer Janssen **20071106021611] [Add LANGUAGE pragmas for ManageDocks Spencer Janssen **20071106021507] [Combo builds now Spencer Janssen **20071106021341] [Make Combo build on GHC 6.8 Spencer Janssen **20071106021126] [Stupid mistake Spencer Janssen **20071105101052] [-Werror Spencer Janssen **20071105060223] [fix Config.Droundy to compile again. David Roundy **20071105205339] [-Wall police Spencer Janssen **20071105060036] [Minor updates to Sjanssen.hs Spencer Janssen **20071105055022] [Use configurations Spencer Janssen **20071105034109] [-Wall is on Don Stewart **20071105031815] [Revert ghc-options changes Spencer Janssen **20071105030327] [forgot to add my config file Don Stewart **20071105025856] [build with optimisations on as usual, fix a few compile errors Don Stewart **20071105024858] [Add XMonad.Config.Sjanssen Spencer Janssen **20071105005832] [Move configs/droundy.hs to an actual library module Spencer Janssen **20071104202957] [Improve test hook. Spencer Janssen **20071104202919 --disable-optimizations makes testing much faster. --user allows Cabal to satisfy dependencies from the user package database. ] [fix warnings in Combo. David Roundy **20071101214504] [make WorkspaceDir always store absolute pathnames. David Roundy **20071101214401] [add new off-center layout combinators. David Roundy **20071101214216] [add configs demo directory David Roundy **20071101203720] [Add Cabal stuff Spencer Janssen **20071101202041] [make Hierarchical LayoutCombinators. David Roundy **20071101185418] [fix selectWorkspace to work with new config. David Roundy **20071101183546] [Hierarchify Spencer Janssen **20071101201059] [Use hierarchical module names from the core Spencer Janssen **20071101182824] [code to define a strut-avoiding layout. David Roundy **20071023220025] [reenable JumpToLayout in NewSelect. David Roundy **20071101181128] [-Wall police in Run. David Roundy **20071101152028] [port Combo (dropping combo). David Roundy **20071101152915] [Port ToggleLayouts Spencer Janssen **20071101091853] [Port WorkspacePrompt Spencer Janssen **20071101090425] [Port Accordion Spencer Janssen **20071101090341] [Port Dishes Spencer Janssen **20071101090312] [Dishes: tabs Spencer Janssen **20071101090237] [Port DragPane Spencer Janssen **20071101085733] [Port MosaicAlt Spencer Janssen **20071101085524] [Port ResizableTile Spencer Janssen **20071101085500] [Port Roledex Spencer Janssen **20071101085430] [Port Spiral Spencer Janssen **20071101085402] [Port TagWindows Spencer Janssen **20071101085335] [Port ThreeColumns Spencer Janssen **20071101085229] [Port TwoPane Spencer Janssen **20071101085151] [Port XMonadPrompt Spencer Janssen **20071101085037] [XMonadPrompt: tabs Spencer Janssen **20071101084939] [Port WindowNavigation Spencer Janssen **20071101084852] [Port Submap Spencer Janssen **20071101084744] [Port CycleWS Spencer Janssen **20071101084431] [NO TABS Spencer Janssen **20071101083954] [Port Commands Spencer Janssen **20071101083236] [XPrompt: don't import XMonad.config Spencer Janssen **20071101074149] [More porting Spencer Janssen **20071101073506] [Port DynamicLog Spencer Janssen **20071101072606] [Port NoBorders Spencer Janssen **20071101070859] [LayoutModifier: LayoutMessages have moved Spencer Janssen **20071101070724] [Remove Config import from Run Spencer Janssen **20071101070408] [Remove 'descriptions' stuff from NewSelect. I think we can do this without make LayoutClass larger Spencer Janssen **20071101033844] [add NewSelect layout combinator. David Roundy **20071024152648 This patch adds a selection layout combinator ||| which replaces Select, and makes the Layout data type unnecessary. This combinator isn't yet feature-complete, as I didn't implement backwards rotation (PrevLayout), but that's obviously doable. This patch requires the descriptions function be added to LayoutClass in core. ] [ManPrompt.hs: auto-complete explicit paths (those with `/') "Valery V. Vorotyntsev" **20071104202056 Bash's compgen is used for this (like in ShellPrompt.hs). Enable all GHC warnings.
Improve documentation (slightly). ] [clean up destroyed windows from urgents list Devin Mullins
**20071103150358] [add focusUrgent action, for those too lazy to read Devin Mullins **20071103055458] [changed urgent state from Set to list Devin Mullins **20071103055143] [fix examples Devin Mullins **20071103022011] [add haddock for top-level Dzen bindings Devin Mullins **20071103021705] [expose dzenWithArgs, dzenUrgencyHookWithArgs (for colors!) Devin Mullins **20071030072455] [use a global IORef to keep list of urgent windows Devin Mullins **20071027064810] [fix parse error in pattern match Brent Yorgey **20071029174150] [allow use of multiple toggles in ToggleLayouts. David Roundy **20071026210643] [WindowNavigation.hs: documentation fix (navigateBorder -> navigateColor) Brent Yorgey **20071029155731] [MetaModule.hs: add ManPrompt, remove ViewPrev "Valery V. Vorotyntsev" **20071029075621] [XMonadPrompt: use a single blank Andrea Rossato **20071029091618] [Added xmonadPromptC cardboard42@gmail.com**20071027014811 I added xmonadPromptC which takes a user defined list of commands as in Command.runCommand
] [Factor out some of dzenPP's goodies Spencer Janssen
**20071029015556] [Don't reverse sjanssenPP Spencer Janssen **20071028224843] [MetaModule.hs: someone forgot the (), so GHC was giving a warning. Small fix to quiet the warning. gwern0@gmail.com**20071027150847] [ViewPrev.hs: deleted "Valery V. Vorotyntsev" **20071027090937 Its functionality is now part of CycleWS module. CycleWS.hs: Nelson Elhage added to authors. ] [add more details on using smartBorders Don Stewart **20071026224510] [add dynamicLogDzen, a dwm status bar, using dzen colour codes Don Stewart **20071026221944] [XPrompt: removed unneeded parenteses Andrea Rossato **20071026221505] [XPrompt.hs: use a single blank "Valery V. Vorotyntsev" **20071022192310 Excessive blanks in prompts originate from here. Eliminate. :) Rewrite `getLastWord' and `skipLastWord' in pointfree style. ] [ShellPrompt.hs (showXPrompt): use a single blank "Valery V. Vorotyntsev" **20071022191741] [ShellPrompt: remove harcoded path when calling bash Andrea Rossato **20071026212334] [ShellPrompt: reformat the comments to complay with the module style Andrea Rossato **20071026211956] [XPrompt: catch exceptions when running the completion function Andrea Rossato **20071026211859] [CycleWS: StackSet.findIndex is now findTag Andrea Rossato **20071026211802] [Dzen.hs: replace 'findIndex' by 'findTag' to match renaming in core. Brent Yorgey **20071022204335] [XPrompt.hs: add sensible bindings for Home and End gwern0@gmail.com**20071026035026] [XPrompt.hs: add a pasteString function and keybinding gwern0@gmail.com**20071026034920] [Run.hs: documentation fix "Valery V. Vorotyntsev" **20071024144244] [XPrompt.hs (uniqSort): new function "Valery V. Vorotyntsev" **20071024142241 Moved from ShellPrompt. There are at least three happy users of this function -- ShellPrompt, SshPrompt, and ManPrompt. ] [SshPrompt.hs: use `uniqSort' from XPrompt.hs "Valery V. Vorotyntsev" **20071024144128 Remove excessive import lists. ] [SshPrompt.hs (showXPrompt): use a single blank "Valery V. Vorotyntsev" **20071022192037 Delete trailing whitespace. Fix documentation typo. ] [ShellPrompt.hs: move `uniqSort' to XPrompt.hs "Valery V. Vorotyntsev" **20071024143820] [ManPrompt.hs: use `uniqSort' from XPrompt.hs "Valery V. Vorotyntsev" **20071024143905 TODO list extended. ] [TilePrime.hs: Handle nmaster = 0 reasonably Eric Mertens **20071025001750] [oops, add period Devin Mullins **20071024125448] [expand Invisible comments Devin Mullins **20071024125213] [Remove excessive import lists from ShellPrompt Spencer Janssen **20071024113106] [Use new terminal config option Spencer Janssen **20071024110219] [Run.hs: do my usual segregation into safe and unsafe runInTerms gwern0@gmail.com**20071024003911] [Run.hs: specialize runInXTerm to use runInTerm per my mailing list suggestion gwern0@gmail.com**20071024001856] [Run.hs: +my suggested runInTerm general function gwern0@gmail.com**20071024001628] [Run.hs, SshPrompt.hs, ShellPrompt.hs: mv runInXTerm back into Run.hs per suggestions gwern0@gmail.com**20071024001341] [Comments for ConstrainedResize Dougal Stanton **20071020092509] [Add ConstrainedResize module Dougal Stanton **20071019173508 Constrain the aspect ratio of floated windows by holding down shift ] [fix stupid dzenUrgencyHook bug Devin Mullins **20071021061308] [CycleWS.hs (toggleWS): new function "Valery V. Vorotyntsev" **20071019205323 This is a pointfree adaptation of ViewPrev.viewPrev; after this patch is applied, it may be a good idea to merge ViewPrev.hs into CycleWS.hs. ] [XPrompt.hs: fix vertical alignment of completions. Dmitry Kurochkin **20071023183129] [fix bug in DragPane (where we forgot that r was mirrored). David Roundy **20071023152448] [ManPrompt.hs: a manual page prompt (new module) "Valery V. Vorotyntsev" **20071022191443] [STRUT aware gap toggling (clean patch) mail@joachim-breitner.de**20071022220132 Without this patch, ManageDocks would only set the gap according to a windowâs STRUT when the window is first mapped. This information would then get lost when the user toggle the gap.
Now, when the user toggles the Gap, all present windows are scanned for STRUT settings, and the gap is set accordingly. No need to manually configure the gap anymore.
This is the same patch as before, but independant of the Hooks patches, and with more documentation. ] [add new LayoutCombinators module. David Roundy
**20071023135638] [export DragPane type. David Roundy **20071023134933] [make DragPane work with any type (not just Windows). David Roundy **20071023134911] [SshPrompt.hs: while I'm here, replace nub with the faster Set trick gwern0@gmail.com**20071019181514] [ShellPrompt.hs: fmt imports and update gwern0@gmail.com**20071019181317] [SshPrompt.hs: fmt imports and update gwern0@gmail.com**20071019181255] [XSelection.hs: fmt imports and sigs gwern0@gmail.com**20071019181232] [XSelection.hs: +2 functions, safePromptSelection and unsafePromptSelection gwern0@gmail.com**20071019181137 Analogous to Run.hs patch; these use safeSpawn and unsafeSpawn respectively. ] [Run.hs: +2 functions, safeSpawn & unsafeSpawn gwern0@gmail.com**20071019181009 See their documentation. This is part of a re-organization of various 'run' commands; this two make it easier to go through the shell or not, and will be re-used elsewhere. ] [Run.hs: fmt gwern0@gmail.com**20071019180953] [Run.hs, ShellPrompt.sh: mv runInXTerm to ShellPrompt.hs gwern0@gmail.com**20071019180900] [XSelection.hs: documentation format changes. gwern0@gmail.com**20071019010057] [XSelection.hs: +type signature for auxiliary function gwern0@gmail.com**20071019010034] [XSelection.hs: simplify creation of window gwern0@gmail.com**20071019010013 While spelunking in the xclip source code, I noticed it had much the same call to createSimpleWindow but with a simpler geometry - just 1x1 pixels, not the odd 200x100 of the original code. It seems to work the same and looks better and less mysterious, so unless arossato had a specific reason for those particular two numbers... ] [XPrompt.hs (keyPressHandle): Ctrl-g and Ctrl-c added to quit keystrokes "Valery V. Vorotyntsev" **20071020170936 Obvious comments removed. ] [XPrompt.hs: trailing whitespace cleaned "Valery V. Vorotyntsev" **20071020170719] [Fix pragmas in XMonadContrib Shachaf Ben-Kiki **20071022011738] [test_XPrompt.hs: there is no ShellPrompt.rmPath "Valery V. Vorotyntsev" **20071019205830] [introduce new combineTwo layout combinator. David Roundy **20071020191748 This layout combinator is similar in spirit (and in code) to the old combo combinator, but only allows two sublayouts. As a result, we don't need to wrap these in existentials, and reading works seamlessly. Also, we add the feature (which could also be added to combo) of being able to change which sublayout a given window is in through integration with WindowNavigation. I envision combo being deprecated soon. combineTwo isn't quite so flexible, but it's much easier and is better-coded also. ] [allow layout modifiers to modify a Message in transit. David Roundy
**20071020191542 This is a helpful feature (for, e.g. WindowNavigation) that allows modifiers (if they so choose... the old API remains supported) to easily send a single Message to the modified layout in response to a Message. ] [update UrgencyHook example config to reflect changes to WindowNavigation and core Config.hs Brent Yorgey **20071019145526] [add ToggleLayouts module. David Roundy **20071018214525] [default to empty description for layout modifiers. David Roundy **20071018202604 This is because modifierDescription is designed to be human-readable, and show rarely creates a human-readable description. And in many (if not most) cases, an empty description is precisely what we want. ] [beautify description code for empty modifier-description. David Roundy **20071018202438] [change definition of 'description' function for LayoutModifier so an extra space is not added if the modifier description is empty. Brent Yorgey **20071018183054] [-Wall police l.mai@web.de**20071018033000] [DynamicLog.hs: Add dzenColor Eric Mertens **20071018174523] [add function to rename workspaces. David Roundy **20071018145604] [fix WindowNavigation comment l.mai@web.de**20071018054315] [change example to dzenUrgencyHook Devin Mullins **20071018022026] [add dzenUrgencyHook as example (and the one I use) Devin Mullins **20071018021742] [fixed Dzen and gave it a configurable timeout Devin Mullins **20071018012910] [rename LayoutSelect & defaultLayout in comments Devin Mullins **20071016051819] [add import to comments, for clarity Devin Mullins **20071012044555] [documentation for UrgencyHook Devin Mullins **20071012034506] [d'oh, minor UrgencyHook cleanup Devin Mullins **20071012032558] [brand new UrgencyHook contrib, depends on X11-extras WMHints binding Devin Mullins **20071011051641 It's a LayoutModifier which lets you define an urgencyHook function -- the action gets performed wheneveran X client sends an XUrgencyHint message (i.e. tries to "flash" the "taskbar"). This statically points to Config.urgencyHook, which requires that the user add a line to Config.hs-boot, in addition to defining the urgencyHook.
Documentation forthcoming. ] [TilePrime.hs: Give a description that distinguishs between horizontal/vertical Eric Mertens
**20071018063749] [Truncate title at 80 characters Spencer Janssen **20071018003013] [shorten in sjanssenPP too Spencer Janssen **20071018002821] [Truncate long window titles Spencer Janssen **20071018002511] [DynamicLog.hs: Add ppWsSep field to PP to specify workspace separator. Eric Mertens **20071018001652 This can be useful when you are using colors to distinguish between workspaces and simply provides more functionality. The default behavior remains the same. ] [Wrapping the empty string yields the empty string Spencer Janssen
**20071018001542] [DynamicLog: documentation only Spencer Janssen **20071017211427] [Allow the user to change the order of workspaces, layout, title Spencer Janssen **20071017211303] [Don't wrap the layout description by default Spencer Janssen **20071017211011] [DynamicLog: not . null. Duh. Spencer Janssen **20071017210912] [A big dynamicLog refactor Spencer Janssen **20071017210431 We introduce the PP type to allow user customization of dynamicLog. dynamicLogWithTitle has been eliminated because this is the default behavior for dynamicLog now. ] [Don't toLower the layout description. Spencer Janssen **20071017202953 If we'd really like lower case layout descriptions, the 'description' method in the LayoutClass instances should be changed instead. ] [TilePrime.hs: Correct behavior when number of windows <= nmaster Eric Mertens **20071017205153 Additionally this patch does various clean-ups that should not affect functionality. ] [Remove RunInXTerm in favor of Run Spencer Janssen
**20071017202201] [Move runXXX functions to one module Christian Thiemann **20071012145233 This patch takes runProcessWithInput out of Dmenu, runProcessWithInputAndWait out of Dzen, and runInXTerm out of RunInXTerm and collects them in one central module called Run. This way, other modules may include Run instead of Dmenu to get what they want without giving the impression of making use of dmenu. ] [Fix LANGUAGE pragmas Shachaf Ben-Kiki **20071017194622] [use full screen for single window in TilePrime l.mai@web.de**20071017191421] [RotSlaves.hs: Add rotAll functions Eric Mertens **20071017173256] [TilePrime.hs: add usage info. Joachim Fasting **20071017192612] [TilePrime.hs: add LANGAUGE pragma. Joachim Fasting **20071017182042] [MetaModule.hs: add WorkspacePrompt. Joachim Fasting **20071017182027] [add TilePrime to MetaModule. David Roundy **20071017133202] [Initial import of TilePrime Eric Mertens **20071017052017 This layout provides a standard tiling layout with support for resize hints and filling the gaps created by them. ] [code cleanup in selectWorkspace. David Roundy
**20071016231218] [allow users to go to dynamically-added workspaces with mod-n. David Roundy **20071016230301] [add modules to deal with Workspaces (select, etc) by name using XPrompt. David Roundy **20071016223347] [make windowNavigation simpler to use in simplest case. David Roundy **20071016214337] [compute nice window border for WindowNavigation properly. David Roundy **20071016213316] [fix docs on WindowNavigation. David Roundy **20071016210349] [compute a reasonable navigation color based on focussed color. David Roundy **20071015165504] [WindowNavigation: don't export the config constructor and some haddock fixes Andrea Rossato **20071013090524 I told to David I would have taken care of that: instead of exporting the config constructor we export 2 functions: navigateColor and noNavigateBorders. Updated documentation accordingly. ] [improvements in Combo. David Roundy **20071015132839] [TAG 0.4 Spencer Janssen **20071016212343] [Spiral.hs: add 'description' function to LayoutClass instance for SpiralWithDir. Brent Yorgey **20071016140959] [ShellPrompt: traverse $PATH once per invocation. Major speed improvement Spencer Janssen **20071016090552] [ShellPrompt.hs: a quick optimization of nub gwern0@gmail.com**20071015234850 I saw some complaints about ShellPrompt being slow - and noticed it myself - and it seems ShellPrompt uses 'nub' in an awkward place to uniquefy input. Nub doesn't perform well on long lists, but I once ran into a similar problem and the suggested solution was something clever: convert to a Set and then back to a List. Sets can't have duplicate entries, and they uniquefy faster than nub. The price is that the output is not sorted the same as nub's output would be, but this is OK because the output of (toList . fromList) is immediately passed to 'sort' - which should then produce the same output for both versions. I haven't really tested this but on long directories this should help. ] [defaultLayout -> layoutHook Spencer Janssen **20071015205901] [LayoutSelection -> Select Spencer Janssen **20071015205804] [defaultLayouts -> layouts Spencer Janssen **20071015205542] [fix float bug in CopyWindow. David Roundy **20071015161529] [Various docstring fixes Spencer Janssen **20071013230529] [TwoPane: Fix syntax error in example Alex Tarkovsky **20071013014151] [note combo broken under head Don Stewart **20071013232524] [New features for generate-configs.sh; renamed to generate-configs Alex Tarkovsky **20071013090251] [WorkspaceDir introduces dependency on directory package Don Stewart **20071013230102] [Dmenu.hs introduces process dependency Don Stewart **20071013230051] [serialisedLayouts Don Stewart **20071013230040] [Combo requires FlexibleContexts (but still doesn't compile under ghc head) Don Stewart **20071013230020] ['Anneal' requires 'random' package in ghc 6.8 Don Stewart **20071013230007] [use leading % for magic comments in ./scripts/generate-configs.sh Don Stewart **20071013212429] [WindowPrompt: haddock fixes Andrea Rossato **20071013160735] [Fix more config docstrings Alex Tarkovsky **20071013085133] [DragPane: haddock fixes Andrea Rossato **20071013090437] [TagWindows.hs: haddock fixes Andrea Rossato **20071013090413] [Tabbed: haddock fixes Andrea Rossato **20071013090342] [Roledex.hs: haddock fixes Andrea Rossato **20071013090323] [ResizableTile.hs: haddock fixes Andrea Rossato **20071013090233] [CycleWS: typo Andrea Rossato **20071013090145] [CopyWindow.hs: type signature for copy Andrea Rossato **20071013090122] [Circle.hs: haddock fixes Andrea Rossato **20071013090100] [Accordion.hs: haddock fixes Andrea Rossato **20071013090038] [clean up DynamicLog.hs Don Stewart **20071013195129] [remove old TODOs (fix darcs conflict) Devin Mullins **20071012154859] [haddock improvement Devin Mullins **20071012145447] [MetaModule.hs: add RunInXTerm and XUtils. Joachim Fasting **20071012114252] [Add documentation to Dishes.hs nornagon@gmail.com**20071012072953] [doco fix: s/SomeLayout/Layout/g Devin Mullins **20071012025953] [Haddock fixes Andrea Rossato **20071012100416] [Fix EwmhDesktops, ManageDocks, and SetWMName compilation for amd64 Alex Tarkovsky **20071010213853] [Export hasTag Karsten Schoelzel **20071011095504] [Improve readability of RotView Eric Mertens **20071011175200] [Added wmii like actions extension. Juraj Hercek **20071010201452] [Remove spurious output from ShellPrompt Spencer Janssen **20071011182816] [add/reformat (commented out) tracing code to SwitchTrans l.mai@web.de**20071011022139] [NoBorders bugfix (I hope) l.mai@web.de**20071011021756 David Roundy should probably have a look at this, but this change makes sense to me. Plus it makes NoBorders work in combination with SwitchTrans. :-)
] [XSelection.hs: Implement Andrea's idea for handling non-UTF-8 string cases gwern0@gmail.com**20071010020616] [Add XSelection to MetaModule Spencer Janssen
**20071010160340] [XSelection.hs: a new module for XMonadContrib dealing with copy-and-paste gwern0@gmail.com**20071008222706 This is based on Andrea Rossato's standalone tools and is meant for integration straight into a Config.hs. It offers two main functions, 'getSelection' and 'putSelection', whose names should be self-explanatory. ] [Add WindowPrompt: the XPrompt equivalent of WindowBringer Andrea Rossato **20071009164047] [WindowBringer: export windowMapWith used by WindowPrompt Andrea Rossato **20071009163505] [MetaModule: added WindowPrompt Andrea Rossato **20071009163445] [LayoutScreens: update docs Spencer Janssen **20071008161441] [TwoPane: update docs Spencer Janssen **20071008161345] [DragPane: no need to deal with expose events in this simplified version Andrea Rossato **20071008143801] [make createNewWindow set background and foreground to a given color. David Roundy **20071008125206 This means we don't need to draw colors that are this color. Also speeds up redrawing, since the X server can do all the drawing on its own, without talking with xmonad. ] [Fix more LANGUAGE pragmas Shachaf Ben-Kiki **20071008115229 This patch should go after my other one -- I'd missed some files that used -fglasgow-exts. ] [Add LANGUAGE pragams Shachaf Ben-Kiki **20071008022141 It seems that GHC 6.6 just enables -fglasgow-exts when it sees any LANGUAGE pragma, so not all of them were added; this patch adds the rest of them, which is necessary for xmonad to compile in GHC >=6.7. ] [fix SwitchTrans some more l.mai@web.de**20071007224116] [update doco Devin Mullins **20071007215906] [add bringMenu, and extract duplication Devin Mullins **20071007215532] [DragPane must handle ExposeEvent too Andrea Rossato **20071008074702] [ShellPrompt.hs: add getShellCompl to export list gwern0@gmail.com**20071007220236 getShellCompl is useful for writing prompts in Config.hs or even full standalone prompts; and personally, if a small utility function like 'split' can be exported, how much more so something useful like getShellCompl? ] [Tabbed and XPrompt updated to lates Extras changes Andrea Rossato **20071007163825] [doc fixes for ManageDocks Devin Mullins **20071007204016] [fix(?) SwitchTrans (makes noBorders work again) l.mai@web.de**20071007193055] [avoid compiler warning in FlexibleManipulate l.mai@web.de**20071007163509] [update NoBorders.hs configuration documentation gwern0@gmail.com**20071007190621 It seems 'noBorder full' no longer hacks it. ] [d'oh, add WindowBringer to MetaModule Devin Mullins **20071007185138] [Maybe? What Maybe? (rollback earlier dmenu change) Devin Mullins **20071007185915] [Enter WindowBringer, Bringer of Windows. Devin Mullins **20071007173633] [add dmenuMap function Devin Mullins **20071007172543] [ShellPrompt: check for executables and better error handling Andrea Rossato **20071007110133 Code contributed by Spencer (basically I just removed FilePath depenency). ] [Move my NextWorkspace functionality into CycleWS mail@joachim-breitner.de**20071007103933 Hi, This patch merges the additional functionality of my NextWorkspace into CycleWS, using a compatible interface for what was there before.
Greetings, Joachim ] [ManageDocks now handles STRUT windows as well mail@joachim-breitner.de**20071007103116 It now also detects window with STRUT set and modifies the gap accordingly. Cheveats: * Only acts on STRUT apps on creation, not if you move or close them * To reset the gap, press Mod-b twice and restart xmonad (Mod-q) ] [NextWorkspace haddock improvement mail@joachim-breitner.de**20071007083216 I just added to the docs how to move a window to the next workspace _and_ switch to that (by >>âing the two actions). Some users (like me, it seems) probably prefer that behaviour.
Greetings, Joachim ] [NextWorkspace: Go forward or backward mail@joachim-breitner.de**20071006233010 Hi,
inspired by RotView, I implemented an Extension that allows the user to go forward or backward in the list of workspaces, or to move the current window to the next or previous workspace. Haddock included. Works here, but hardly tested (and while tired).
Cu torrow @ HacII, if you are there.
Greetings, Joachim ] [Better EWMH support mail@joachim-breitner.de**20071007091648 Yay, SetWMName contains just what I need! Thanks Ivan, that saved me quite some work. Now the panel switch should work even when you start with xmonad right away, and donât run it after metacity has run before :-]
Greetings, Joachim ] [Add ShellPrompt to MetaModule Andrea Rossato
**20071007075937] [Tabbed: updated to the last (unannounced) API changes Andrea Rossato **20071007072018] [ShellPrompt: fromMaybe requires importing Data.Maybe Andrea Rossato **20071007070148] [add MouseGestures to MetaModule l.mai@web.de**20071006230735] [re-add SwitchTrans to MetaModule l.mai@web.de**20071006230711] [add MouseGestures.hs to darcs l.mai@web.de**20071006230425] [document noBorders breakage l.mai@web.de**20071006230316] [Replace -fglasgow-exts with LANGUAGE pragma in WindowNavigation.hs nornagon@gmail.com**20071006224156] [Replace -fglasgow-exts with LANGUAGE pragma in ResizableTile.hs nornagon@gmail.com**20071006223156] [Replace -fglasgow-exts with LANGUAGE pragma in MosaicAlt.hs nornagon@gmail.com**20071006223025] [Replace -fglasgow-exts with LANGUAGE pragma in Grid.hs nornagon@gmail.com**20071006222320] [Replace -fglasgow-exts with LANGUAGE pragma in Dishes.hs nornagon@gmail.com**20071006222155] [update SwitchTrans for the new layout system l.mai@web.de**20071006212008] [Two new dynamic log functions that display the title of the currently focused window Christian Thiemann **20071006173113 I liked the window-title-in-statusbar feature of dwm very much and wanted to have that in XMonad as well. Somewhere on the net I found some code to put into Config.hs (and sorry, that was last week and I already forgot where I got it from) which I modified and put into the DynamicLog extension. One can now set the logHook in Config.hs either to dynamicLogWithTitle to get the usual layout description and workspace list plus window title enclosed in angle brackets, or dynamicLogWithTitleColored "white" (or "red" etc.) to have xmonad print out some ^fg() markers for dzen to display the window title in the given color. Some windows (like terminals or browsers) change their window title from time to time but xmonad does not recognize this. So I started learning Haskell to provide patches for X11-extras and xmonad so that PropertyNotify events are captured and, if the event notifies about a WM_NAME property change, call the logHook to update the status bar.
Hope you find this useful, Christian ] [change Dmenu functions to return IO/X (Maybe String) Devin Mullins
**20071006070959 dmenu exits with code 1 when you hit Escape, and I wanna create a contrib that takes advantage of that. This required changes in four contribs (Commands, DirectoryPrompt, ShellPrompt, and WorkspaceDir), and might require changes in users' Configs. Also, I'm not sure some of the changes I made to the client code are very Haskelly. Would appreciate input there. ] [fix problem found by Heffalump in CopyWindow. David Roundy
**20071005143746] [(un)Manage Docks based on WINDOW_TYPE mail@joachim-breitner.de**20071006132802 Hi, this is a replacement for the example code in Config.hs that should detect and unamange, for example, the gnome-panel.
The problem with that code is that it also unamangs dialog boxes from gnome-panel which then are not usable (no keyboard intput, at least here).
Greetings, Joachim ] [MetaModule.hs: add Dishes. Joachim Fasting
**20071006123900] [Dishes.hs: needs -fglasgow-exts. Joachim Fasting **20071006123851] [ResizableTile.hs: needs -fglasgow-exts. Joachim Fasting **20071006123550] [MetaModule.hs: whitespace. Joachim Fasting **20071006123540] [MetaModule.hs: add some missing imports. Joachim Fasting **20071006123525] [MetaModule.hs: typo. Joachim Fasting **20071006123214] [NoBorders.hs: unused bindings. Joachim Fasting **20071006102316] [NoBorders.smartBorders: add type signature. Joachim Fasting **20071006102210] [Grid.hs: needs -fglasgow-exts. Joachim Fasting **20071006102204] [EwmhWindows wrap up for inclusion mail@joachim-breitner.de**20071006110529 Now with haddock documentation, a proper header and nicer, warningfree code, ready for a first release and inclusion in XMonadConrib. It works for me, but needs more testing. If you run xmonad with gnome-panel or something similar, please try it. Thanks, Joachim ] [EwmhDesktops initial patch mail@joachim-breitner.de**20071005222540 What works so far, quit hackerish: * Number of Workspaces * Active current workspace * Names of workspaces More to come.. ] [get rid of obviated comment Devin Mullins
**20071006055652] [get rid of duplicate mapWorkspaces function Devin Mullins **20071006055404] [add Grid to MetaModule l.mai@web.de**20071005230032] [basic docs for Grid l.mai@web.de**20071005225934] [import Grid.hs into repository l.mai@web.de**20071005013412] [Dishes layout. Stacks windows underneath masters. nornagon@gmail.com**20071005230038] [ShellPrompt: removed readline dependency and added escape character support Andrea Rossato **20071005112250] [XPrompt: added ^A and ^E and more Andrea Rossato **20071005112122 - added ^A (start of line) and ^E (end of line) - added support for escaping spaces (see an example of it's use in the new ShellPrompt) - some code cleanup: I'm now tracking changes to XPrompt also in modified version that supports i18n. This is the reason of some name changes. ] [Tabbed: check if we really have a window to focus Andrea Rossato **20071005111733] [add QC tests for SwapWorkspaces Devin Mullins **20071004081534 run with -i..:../tests ] [add man page doco Devin Mullins **20071004081504] [Maximize layout modifier Jamie Webb**20071004061202] [Add ^K and ^U support to XPrompt Eric Mertens **20071002210814] [Rename ResizableTile.Tall to ResizableTall Jamie Webb**20071003023000 Having two layouts named Tall was upsetting the deserialization code. ] [MosaicAlt take 2 Jamie Webb**20071003162533] [Mark modules that haven't been ported to the new API yet. Spencer Janssen **20071003164516 These need to be ported or removed before the 0.4 release. ] [More LANGUAGE pragmas Spencer Janssen **20071003164257] [Add XPropManage to MetaModule Spencer Janssen **20071003164236] [add swapping capability in WindowNavigation. David Roundy **20071003151755 This allows you to reorder your windows geometrically, by swapping the currently focussed window with ones that are up/down/right/left of it. The idea is that we should be able to manipulate windows based on the visual layout of the screen rather than some (possibly obscure) logical ordering. ] [export constructor to make ThreeColumns layout usable again Daniel Neri **20071003093103] [WindowNavigation: add configurable colors and the possibility to turn them off Andrea Rossato **20071003090017] [Add SwapWorkspaces to MetaModule Spencer Janssen **20071003163405] [add SwapWorkspaces (to reorder them on your number keys) Devin Mullins **20071002212407] [Layout -> LayoutClass for ResizableTile and MosaicAlt Jamie Webb**20071003010849] [NoBorders: reduce flicker Spencer Janssen **20071002213053] [TagWindows Karsten Schoelzel **20071002190526 Functions to work with window tags, including a XPrompt interface. These are stored in the window property "_XMONAD_TAGS"
Adding also functions shiftHere and shiftToScreen (move to another module?). ] [Add XPropManage, a manageHook using XProperties Karsten Schoelzel
**20071002190231] [make Spiral work with new layout class. David Roundy **20071002164735] [some renaming of classes and data types. David Roundy **20070929191238] [SimpleStacking is deprecated Spencer Janssen **20071002185604] [Make Tabbed use XUtils.releaseFont Andrea Rossato **20071002062709] [XUtils: added releaseFont Andrea Rossato **20071002062640] [An alternative mosaic layout implementation Jamie Webb**20071002011716] [Fix infinite loop in ResizableTile serialization Jamie Webb**20071002001254] [Use newtype deriving for Invisible Spencer Janssen **20071001151555] [Tabbed: updated usage information Andrea Rossato **20071001082219] [XMonadContrib.ResizableTile in darcs patch. matsuyama3@ariel-networks.com**20071001091411 I have fixed error "" to return Nothing. Thanks Andrea.
] [Commands: added recent layout commands Andrea Rossato
**20070930213225] [Removed fromIMaybe from Tabbed ad added it to Invisible Andrea Rossato **20070930181912] [Tabbed: reintroduced shrinker configuration option and removed the unneeded Read instance Andrea Rossato **20070930131936] [Tabbed: moved string positioning to XUtils Andrea Rossato **20070930095441] [refactor paintAndWrite to take the alignment and hide string positioning Andrea Rossato **20070930095215] [make DraPane use XUtils Andrea Rossato **20070929172849] [make Tabbed use XUtils Andrea Rossato **20070929172823] [Added XUtils: a library for drawing Andrea Rossato **20070929172754] [enable color setting in WindowNavigation. David Roundy **20070929114531 This is still somewhat experimental, comments welcome. ] [Add smartBorders Spencer Janssen **20070929010946] [Give Invisible a definition for fail. Spencer Janssen **20070929051527 The default definition of fail calls error. This is very bad, as we rely on a non-bottom result. We should consider moving to MonadZero, to be on the safe side. ] [Tabbed: fixed a bug: when only one window is in the stack doLayout must still return a Tabbed (I Nothing) TConf Andrea Rossato **20070928223136] [Added Invisible to store layout state Andrea Rossato **20070928190107 Invisible is a data type to store information that will be lost when restarting XMonad (the idea came from David Roundy) ] [WindowNavigation now uses Invisible (plus some vertical alignement) Andrea Rossato **20070928185907] [DragPane now uses Invisible Andrea Rossato **20070928185832] [Tabbed now uses Invisible Andrea Rossato **20070928185808] [add new WindowNavigation module. David Roundy **20070928131906] [Tabbed: removed two little bugs due to the mess during the transition (my fault, sorry ;) Andrea Rossato **20070928085513] [DeManage.hs: doesn't need -fglasgow-exts. Joachim Fasting **20070928083639] [Use LANGUAGE pragmas over -fglasgow-exts Spencer Janssen **20070928181614] [remove SetLayout. David Roundy **20070928015855] [Various fixes to NoBorders. Hopefully fixes bug #42 Spencer Janssen **20070928174615] [Use LANGUAGE pragmas Spencer Janssen **20070928174602] [LayoutModifier: call unhook after releaseResources Spencer Janssen **20070928174510] [DynamicLog: sort first by index in the workspaces list, then by tag name Spencer Janssen **20070928144900] [Make modifier descriptions prettier Spencer Janssen **20070928053257] [Give Hinted a nice description Spencer Janssen **20070928053121] [LayoutModifier should have descriptions too Spencer Janssen **20070928053106] [Tabbed: give a nice description Spencer Janssen **20070928052608] [DynamicLog: print a description of the current layout Spencer Janssen **20070928051606] [Update docs Spencer Janssen **20070928034350] [Add simpler layoutHints Spencer Janssen **20070928034008] [NewTabbed: after a ReleaseResources we should return Tabbed Nothing... Andrea Rossato **20070928011645] [Move NewTabbed to Tabbed Spencer Janssen **20070927231840] [Remove Tabbed.hs Spencer Janssen **20070927231002] [Remove Decoration.hs Spencer Janssen **20070927230947] [DragPane:just code formatting Andrea Rossato **20070927083814] [NewTabbed: fixes a (reintroduced) bug and some code formatting Andrea Rossato **20070927083551 - The InvisibleMaybe patch reintroduced the rectangle bug. - Some code formatting - Corrected usage information ] [make NewTabbed use InvisibleMaybe to hide its cache. David Roundy **20070926202330] [make DragPane code a bit more compact. David Roundy **20070926191656] [hide implementation of DragPane from users. David Roundy **20070926191630] [make DragPane a bit more succinct. David Roundy **20070926190900] [make DragPane work with the new Layout class Andrea Rossato **20070926190439] [make MagicFocus work with the new Layout class Andrea Rossato **20070926114307] [NewTabbed: we must check if the sceen rectangle changed Andrea Rossato **20070926114056 - Check if rectangle changed - removed orphan instances warnings - some code formatting ] [fix DynamicWorkspaces. David Roundy **20070925220659] [Remove LayoutChoice, this functionality is in the core Spencer Janssen **20070925214912] [new SetLayout module. David Roundy **20070925205333] [make Accordian use pureLayout. David Roundy **20070925192117] [modifyLayout -> handleMessage. David Roundy **20070925182930] [Make Square work with class. David Roundy **20070925174446] [make Combo work with class David Roundy **20070925174417] [NewTabbed: fixed a bug and some code formatting Andrea Rossato **20070925133749 - Since now Operations.windows doesn't call sendMessage UnDoLayout anymore, doLayout must take care of destroying all tabs when only one window ( or none) is left on the workspace. - Some code formatting. ] [make Roledex work with Layout class Andrea Rossato **20070925153237] [make Accordion work with Layout class Andrea Rossato **20070925152307] [fix embarrassing bugs in LayoutModifier. David Roundy **20070924195726] [Added a NewTabbed module with a new tabbed layout to test Andrea Rossato **20070924193419] [LayoutModifier updated to use LayoutMessages Andrea Rossato **20070924193345] [move ThreeCol over to new class. David Roundy **20070924191632] [Use the new modifiers in LayoutHints Spencer Janssen **20070924062000] [Use the new layout switcher in Commands Spencer Janssen **20070924060541] [Follow kind changes in FindEmptyWorkspace Spencer Janssen **20070924055928] [update WorkspaceDir. David Roundy **20070923221456] [rename LayoutHelpers to LayoutModifier. David Roundy **20070923215956] [convert LayoutScreens to class. David Roundy **20070923215942] [Update NoBorders and LayoutHelpers. David Roundy **20070923192640] [add a hook to LayoutHelpers. David Roundy **20070923121723] [use default modifyLayout in Circle. David Roundy **20070923115257] [update LayoutHelpers to work with new Layout class. David Roundy **20070923114929] [make TwoPane work with Layout class Andrea Rossato **20070922124210] [Circle: must export type constructor Andrea Rossato **20070922124126] [make Circle work with Layout class. David Roundy **20070921215525] [Cope with StackSet export changes Spencer Janssen **20070924091031] [Rolodex.hs: add missing type signature. Joachim Fasting **20070919215436 div' is only used with Dimension, used Integral to keep it general. ] [Warp.hs: remove seemingly unused code. Joachim Fasting **20070919214634] [CopyWindow.hs: -Wall police. Joachim Fasting **20070919214556] [CopyWindow.copy: remove seemingly unnecessary parameter from helper func. Joachim Fasting **20070919214526] [DirectoryPrompt.hs: add missing type signature. Joachim Fasting **20070919213736] [LayoutChoice.hs: update module header. Joachim Fasting **20070919213101] [LayoutChoice.hs: add LANGUAGE pragma. Joachim Fasting **20070919212815] [SinkAll.hs: -Wall police. Joachim Fasting **20070919212359] [XPrompt.hs: replace 'borderWidth' with 'borderPixel' gwern0@gmail.com**20070918162950 borderWidth is already defined in Config.hs. Thus, if one attempted to use a prompt configuration different than defaultXPConfig, and one defined it in one's Config.hs where it should be, then the borderWidth field would cause a warning by -Wall, since borderWidth is already a name being used by XMonad at large. ] [Operations.sink is gone Spencer Janssen **20070917214113] [Match 'Remove Operations functions which have StackSet equivalents' from the core Spencer Janssen **20070917213329] [SshPrompt.hs: fix some copy/paste errors, rebind sshPrompt to not conflict with xmonadPrompt Brandon S Allbery KF8NH **20070916182520 Just a minor patch to the comments/documentation, which was clearly copied unchanged from ShellPrompt.hs. ] [make fixedLayout accept a list of Rectangles. David Roundy **20070911134845 This works nicely for describing a fixed xinerama-like layout. (e.g. when using two distinct VNC clients to log into a single VNC server and attain multiheadedness). ] [Fixing some typos and grammar in documentation. Michael Fellinger **20070911023158] [Typo in Tabbed.hs documentation Michael Fellinger **20070911021815] [ssh-global-known-hosts Brandon S Allbery KF8NH **20070909222432 Add support for global ssh known hosts file, which is checked for via $SSH_KNOWN_HOSTS or a standard list of locations. This is stripped of comments and hashed hosts, combined with the local hosts file (which is trated the same way), and duplicates eliminated. ] [add LayoutChoice module. David Roundy **20070906154955] [FloatKeys.hs: needs -fglasgow-exts to compile. Joachim Fasting **20070909144215] [DragPane.hs: needs -fglasgow-exts to compile. Joachim Fasting **20070909144205] [Unify Drag(UpDown)Pane Karsten Schoelzel **20070904210312] [add function and comment assisting use in resizing the screen. David Roundy **20070906125543] [Add FloatKeys for moving and resizing of floating windows with the keyboard Karsten Schoelzel **20070905212531] [Fix FlexibleResize for change in applySizeHints Karsten Schoelzel **20070905193926] [make dragPane handle thinner. David Roundy **20070905124139] [cleanup in WorkspaceDir. David Roundy **20070827185833] [new SetWMName module, useful for working around problems running Java GUI applications. Ivan Tarasov **20070826004411] [remove LayoutHooks module (which is unused). David Roundy **20070823154520] [cleanup in DwmPromote. David Roundy **20070823155437] [cleanup in ViewPrev. David Roundy **20070823155405] [clean up CopyWindow. David Roundy **20070823155912] [Add CycleWS to MetaModule Spencer Janssen **20070905203137] [CycleWS: a couple of simple functions to cycle between workspaces Andrea Rossato **20070821061132] [make Contrib use WorkspaceId = type String. David Roundy **20070820113813] [Add HintedTile docstring Spencer Janssen **20070905200310] [Docstring parser for generating xmonad build configs with default settings for extensions Alex Tarkovsky **20070905200128] [TAG 0.3 Spencer Janssen **20070905022947] [docs not generated in DragPane.hs Don Stewart **20070904232447] [HintedTile typo Spencer Janssen **20070904202804] [HintedTile Spencer Janssen **20070904202219] [Doc fixes for DragPane Spencer Janssen **20070904201847] [XPrompt: a very long string in the completion list can lead to a division by zero Andrea Rossato **20070830141524] [XPrompt.hs: remove debugging bits Andrea Rossato **20070828081235] [make code more compact in XPrompt. David Roundy **20070827191830] [XPrompt: just code formatting Andrea Rossato **20070822193220] [fix bug leading to early exit in XPrompt. David Roundy **20070827185858] [fix bug where we draw divider for DragPane even if there's just one window. David Roundy **20070823155810] [CopyWindow: update usage info Spencer Janssen **20070820232834] [add DragPane. David Roundy **20070813144007] [fix bug in Combo where we ignored changes in super. David Roundy **20070813143500] [remove redundant fromIntegral from Commands. David Roundy **20070820000925] [Mosaic.hs (really) Fix incorrect usage example Jason Creighton **20070818215725 "tall" and "wide" are anachronisms as well. It makes me wonder how we can and/or should give examples like this that don't bitrot and confuse newbies. ] [Mosaic.hs: Fix incorrect usage example Jason Creighton **20070818212854] [XPrompt: haddock tuning and more comments Andrea Rossato **20070818083423] [SwitchTrans:: haddock tuning Andrea Rossato **20070818083401] [RunInXTerm: haddock tuning Andrea Rossato **20070818083329] [RotSlaves: haddock tuning Andrea Rossato **20070818083306] [Roledex: haddock tuning Andrea Rossato **20070818083244] [LayoutHelpers: haddock tuning Andrea Rossato **20070818083220] [DirectoryPrompt: removed ShellPrompt usage info and added pointer to WorkspaceDir Andrea Rossato **20070818083105] [DeManage: haddock fixes Andrea Rossato **20070818083036] [MetaModule: removed BackCompat no longer in the repository Andrea Rossato **20070818071916] [fix MagicFocus/floats interaction Peter De Wachter **20070816185217] [fix Circle/floats interaction Peter De Wachter **20070816185144] [XPrompt: documentation only Andrea Rossato **20070817162806] [ShellPrompt: quickcheck related refactoring Andrea Rossato **20070817155725] [added a tests directory with quickcheck tests for XPrompt and ShellPrompt Andrea Rossato **20070817155634] [XPrompt: quickcheck related refactoring Andrea Rossato **20070817155454 With this patch XPrompt can be tested with quickcheck. As a result getLastWord and skipLastWord has been refactored to avoid possible exceptions. ] [XPrompt: fixes a nasty bug in getLastWord Andrea Rossato **20070815163457 This patch fixes a nasty bug in getLastWord, a bug that causes XMonad to crash as soon as the command line consists of only 2 empty spaces. *PLEASE UPDATE* if you are running XPrompt. ] [ghc thinks I don't need those fromIntegrals l.mai@web.de**20070815231852] [use XPrompt in WorkspaceDir. David Roundy **20070814191103] [clean up DynamicWorkspaces to handle layouts properly. David Roundy **20070814183542] [make DynamicWorkspace more thorough. David Roundy **20070814014548 Note: there's still a bug due to our failure to inform the old layouts to clean up. ] [new module DynamicWorkspaces to add and remove workspaces. David Roundy **20070814011501] [fix Commands to work with new workspaces. David Roundy **20070814004146] [Make FlexibleManipulate comply with new mouse dragging system Spencer Janssen **20070815032619] [make FlexibleResize use new mouseDrag properly. David Roundy **20070807202016] [fix Expand/Shrink for spiralWithDir bobstopper@bobturf.org**20070808204752] [Remove GreedyView: the functionality is now in StackSet Spencer Janssen **20070815022101] [Use maskEvent rather than nextEvent. Fixes rare segfaults Spencer Janssen **20070814170416] [Decoration: don't crash when given a non-existent font Andrea Rossato **20070810182433] [actually use the selected font in XPrompt. David Roundy **20070810174543] [increase default contrast in XPrompt. David Roundy **20070810174724] [center prompt text in window. David Roundy **20070810173746] [don't crash when given a non-existent font in XPrompt. David Roundy **20070810170445] [Add ViewPrev to MetaModule Spencer Janssen **20070810211242] [ViewPrev.hs nelhage@mit.edu**20070810032653 Add a ViewPrev extension which gives a viewPrev command to view the previously visible workspace. ] [fix CopyWindow to not require Integral WorkspaceId. David Roundy **20070801144543] [SshPrompt now uses RunInXTerm to launch the command Andrea Rossato **20070807101911] [RunInXTerm: a simple module to run commands in an X terminal Andrea Rossato **20070807101603 This is just a wrapper around spawn to launch commands in an X terminal: runInXTerm will check the for the XTERMCMD environmental variable, and use it to run the command. If the variable is not set the command will be executed with xterm. ] [XPrompt: removed touchFile (which is not the equivalent of touch!) Andrea Rossato **20070805225906] [LayoutScreen: haddock cleanup Andrea Rossato **20070805215800] [XPrompt.hs: getCompletion should check for completions of the last word of the command line Andrea Rossato **20070805124130] [work around Magnifier's problems with floating windows Peter De Wachter **20070805141051] [Add Roledex to MetaModule Spencer Janssen **20070806151628] [XPrompt.hs: read history lazily Andrea Rossato **20070804185914 Instead of forcing the reading of all the history file we read it lazily. ] [XPrompt.hs: removed defaultPromptConfig. use defautlXPConfig instead Andrea Rossato **20070804183252] [weird formatting fixed Don Stewart **20070806032739] [rolodex tim.thelion@gmail.com**20070804235730 Cascading windows... ] [XPrompt.hs: haddock corrections and some comments Andrea Rossato **20070804104622] [XMonadPrompt.hs: minor haddock corrections Andrea Rossato **20070804104534] [SwitchTrans.hs: minor haddock corrections Andrea Rossato **20070804104458] [SshPrompt.hs: minor haddock corrections Andrea Rossato **20070804104441] [ShellPrompt.hs: minor haddock corrections Andrea Rossato **20070804104408] [FlexibleManipulate.hs: minor haddock corrections Andrea Rossato **20070804104330] [MetaModule: added XPrompt and others Andrea Rossato **20070804093049 XPrompt, XMonadPrompt, SshPrompt. ShellPrompt is commented out since it requires readline and the related xmonad.cabal modifications. ] [XPrompt: fixes a couple of bugs Andrea Rossato **20070804090817 - we run the action passed to mkXPrompt only if we have a command; - updateWindows must call destroyComplWin if there are no completions; - some comments (more to come) - a shorthand in keyPressHandle - removed all warnings ] [RotSlaves rework Karsten Schoelzel **20070803185337 Rework the logic of RotSlaves and rename it RotSlavesDown, add RotSlavesUp. These rotate the slaves in different directions. Also changed the usage, eliminating the need for "windows" in the keybinding. ] [XPrompt: code cleanup Andrea Rossato
**20070803181905 The completion list is not cached anymore: this greatly simplify the code making its runtime behaviour more predictable...;-) Suggested by Spencer. ] [Make 'compList :: [String]', rather than Maybe. No completions is represented by [] Spencer Janssen **20070803160424] [Rename 'setCompletionList' to 'refreshCompletionList' Spencer Janssen **20070803155942] [XPrompt: added comletion and history support Andrea Rossato **20070803154531 This is a long patch the brings us a real prompt, more or less: completions now work. Added history support, with a configuration option: defaul history size is 256. defaultPromptConfig is now deprecated: please use defaultXPConfig instead ] [Prompts: updated and corrected usage info Andrea Rossato **20070803130158] [Make the XPrompt appear on the current screen Spencer Janssen **20070802184231] [XPrompt: a module for easily writing graphical prompts Andrea Rossato **20070802171552] [ XMonadPrompt: a graphical prompt for running XMonad internal commands Andrea Rossato **20070802165336] [SshPrompt: a graphical prompt for ssh connection Andrea Rossato **20070802155943] [ShellPrompt: a graphical shell prompt Andrea Rossato **20070802155845 This module requires readline and so a modification to xmonad.cabal. See usage for instructions. ] [FlexibleManipulate.hs: needs -fglasgow-exts to compile. joachim.fasting@gmail.com**20070802144042] [MetaModule.hs: add FocusNth. joachim.fasting@gmail.com**20070802144023] [Add ThreeColumns to MetaModule Spencer Janssen **20070802143356] [Add RotSlaves to MetaModule Spencer Janssen **20070802143334] [RotSlaves Hans Philipp Annen **20070802094408] [DeManage.hs: haddock compatibility. joachim.fasting@gmail.com**20070725100910] [Fix warnings in FlexibleManipulate (Sorry!) Michael G. Sloan **20070729032407] [Add FlexibleManipulate extension Michael G. Sloan **20070729031402] [Commands: refactoring to include in MetaModule Andrea Rossato **20070728132029 Just a small refactooring (well, now runCommand requires a command list, and I added runCommand's that will take a string to run it against the default command list) to include this module in MetaModule so that we can track it in case of API changes (this patch has been requested by Spencer). ] [SwitchTrans.hs, initial version l.mai@web.de**20070728153826] [fix WorkspaceDir (which was broken) using LayoutHelpers. David Roundy **20070726133520] [FocusNth initial import Karsten Schoelzel **20070725203305] [use a little more contrast in default tabs. David Roundy **20070724143723] [3col fix: do not switch to tall layout on resize/incmastern Kai Grossjohann **20070723212754] [3col rounding Kai Grossjohann **20070721204026] [fix 3col layout for nmaster + 1 windows Kai Grossjohann **20070721150825 Do like two column layout if there are nmaster+1 windows (putting 1 window in the right column). ] [Three column layout Kai Grossjohann **20070721144654 This layout is similar to tall, but has three columns. The first column is the master column. ] [Made the direction of spiral in Spiral.hs optionally configurable bobstopper@bobturf.org**20070721002307] [DeManage: take a Window as argument Spencer Janssen **20070718204410] [Typo Spencer Janssen **20070718204041] [Add XMonadContrib.DeManage: a module for unmanaging windows (like panels) Spencer Janssen **20070718203107] [Tabbed.hs: corrected error in Usage reported by Xavier Maillard Andrea Rossato **20070717050034] [fixes Commands.hs Andrea Rossato **20070716164017] [MetaModule.hs: add missing modules. joachim.fasting@gmail.com**20070715205857] [Magnifier: unbreak: raise focus window Peter De Wachter **20070630072206] [Spiral.hs: correct module header. joachim.fasting@gmail.com**20070707212836] [LayoutScreens.hs: correct module header. joachim.fasting@gmail.com**20070701215712] [add FlexibleResize to MetaModule l.mai@web.de**20070708130229] [link to xinerama-dmenu patch for dmenu 3.2 Jason Creighton **20070708021413 Thanks to Dave Harrison for an updated version of the patch. ] [Tabbed: updated usage information Andrea Rossato **20070707065123] [Tabs should stay beneath any floating window Andrea Rossato **20070707064941 This ifxes the issue reported by Geoffrey Alan Washburn: " Sometimes the tabs will be drawn on top of floating windows." Not anymore! ] [Tabbed: added more configuration options Andrea Rossato **20070706130845 It is now possible to configure active and inactive border colors, and active and inactive text colors (i.e. tabs are now very similar to Ion3 tabs: former Ion users may appreciate). ] [NamedWindows: if fetchName returns Nothing sets the name to resName ClassHint Andrea Rossato **20070706130644 fetchName may return a Nothing if the window's name contains multi byte characters. In such a case the resName string of the ClassHints of that window will be used instead. ] [the gaps list should be filled with the default value from Config.hs Andrea Rossato **20070704224110] [SimpleStacking: -Wall police Alec Berryman **20070704201255] [SimpleStacking: remove note about Xinerama incompatability, works fine now Alec Berryman **20070704200626] [ScreenLayouts.hs: updates to the last API changes Andrea Rossato **20070703201145 A silent API change broke this nice piece of David's code: Spencer decided to move screen details into StackSet, and there we went to manipulate them! ] [More ScreenDetails fixes Spencer Janssen **20070630065916] [Make GreedyView work with ScreenDetails Spencer Janssen **20070630065643] [flexible resizing for floating windows l.mai@web.de**20070629171038 The default resize handler for floating windows warps the mouse pointer to the bottom right corner of the window (fixing the opposite, upper left, corner). This extension lets you use any of the four window corners as grabbing points, allowing more flexible resizing.
] [resolve conflicts in Decoration and Tabbed. David Roundy
**20070629204518 Note that you no longer need simpleStacking when using tabbed. ] [resolve conflict in Square. David Roundy **20070629201636] [clean up code in Combo. David Roundy **20070624171346 This adds some type safety, since the super-layout is now of a distinct type from the sublayouts. This avoids the ugliness we had, of passing "fake" windows to the super layout. Now we directly lay out the layouts. ] [add CopyWindow module, to support sticky/tagged windows. David Roundy **20070624155648 This module allows dwm-style tagging (as I understand dwm). You can have a given window visible in multiple workspaces. If it's visible in two workspaces both of which are visible, a gap will show up in one of them (which is something that needs fixing in xmonad core). Also defines a kill1 which is like kill, but only removes from the current workspace a window if it's in multiple workspaces. ] [make everything work with new doLayout. David Roundy **20070623210952 This modifies all the contrib modules to work (so far as I know) with the new contrib layout. The exception is the LayoutHooks module, which isn't used. It exports an API that is inherently unsafe, so far as I can tell (and always has been). ] [move Accordian to use idModify. David Roundy **20070623143745] [introduce idModify which is just "const (return Nothing)". David Roundy **20070623143542] [move Spiral to LayoutHelpers. David Roundy **20070623143516] [Note that SimpleStacking is incompatible with Xinerama Jason Creighton **20070627035426 It's unclear to me what SimpleStacking is supposed to accomplish, so I'm just going to note that it doesn't work with Xinerama. (Due to assuming that the current workspace is the one being laid out) ] [Tabbed: Make use of the Stack to get focused window Jason Creighton **20070627033910] [Accordion.hs: whitespace. joachim.fasting@gmail.com**20070626071449 Makes Haddock not complain about not finding documentation for '$'. ] [MetaModule.hs: add LayoutHelpers. joachim.fasting@gmail.com**20070626065522 Also tweaks import ordering slightly. ] [Tabbed.hs: updated usage information Andrea Rossato **20070625140735] [added configration options and moved font stuff to Decorations.hs Andrea Rossato **20070625140112 Added a new data type to keep configuration options. tabbed now takes the shrinker and the configuration type. Fixed a bug related to vertical alignment of text. ] [Decoration.hs: added automatic font managment Andrea Rossato **20070625135722 newDecoration now takes also a fontname to set fonts in decorations that use them. If an empty string is send the the default Xorg fonts will be loaded. ] [fix usage instructions on NoBorders. David Roundy **20070624141631] [remove BackCompat.hs daniel@wagner-home.com**20070624171740] [Square.hs: put usage instructions after imports for Haddock compatibility. joachim.fasting@gmail.com**20070623184938] [Magnifier.hs: quote screenshot url for Haddock compatibility. joachim.fasting@gmail.com**20070623223227] [add new LayoutHelpers module. David Roundy **20070622142950] [Add SinkAll module. joachim.fasting@gmail.com**20070623050510 Provides a means of pushing all windows on the current workspace back into tiling. Not all that useful, but might be preferable to restarting or manually pushing windows. ] [Magnifier.hs: needs -fglasgow-exts to compile. joachim.fasting@gmail.com**20070622111442] [fix usage info for LayoutScreens. David Roundy **20070622132618] [add new LayoutScreens module. David Roundy **20070622131300] [Magnifier: raise the focus window Peter De Wachter **20070621192541] [Circle: raise the focus window Peter De Wachter **20070621191207] [Circle cleanups Peter De Wachter **20070621191125] [make Mosaic lay thigs out a bit better. David Roundy **20070621162632] [add SimpleStacking module to make Combo and Tabbed work together. David Roundy **20070621151524 WARNING! This change will break existing Tabbed configurations. The problem is that there is no way within a Layout's "doLayout" to safely modify the layout itself. This makes LayoutHooks fragile, and more to the point, makes SimpleStacking fragile, so we can't safely define a tabbed' = simpleStacking . tabbed
A workaround would have been to duplicate the tabbed code, but I'd rather leave the ugliness and get this fixed. ] [Make Magnifier's master window behavior customizable Peter De Wachter
**20070620170020 based on a suggestion by Tim Hobbs ] [Whitespace. joachim.fasting@gmail.com**20070620115852] [Make Mosaic compile without warnings Spencer Janssen **20070620153111] [make some layouts more general. David Roundy **20070620125420] [Mosaic.hs: get rid off some of the warnings generated by -Wall. joachim.fasting@gmail.com**20070620123449 Unused definitions and imports left in, as I assume they'll be used for something later on. ] [MetaModule.hs: add LayoutHooks. joachim.fasting@gmail.com**20070620115457] [Combo.hs: use case instead of non-standard pattern matching. joachim.fasting@gmail.com**20070620112805 Also uses fmap/maybe instead of do/case, which makes the code look a little cleaner (imo). Please note that I've only been able to test this briefly, but it seems to be working like it's supposed to. ] [Combo.hs: tweak usage instructions. joachim.fasting@gmail.com**20070620112555 tabbed needs an additional argument. ] [README: change reference to 'examples/'. joachim.fasting@gmail.com**20070620093753] [Use Data.Ord.comparing in DynamicLog Shachaf Ben-Kiki **20070620011016 This patch replaces (compare `on`) with Data.ord.comparing, so on doesn't have to be defined. ] [Fix type signatures. joachim.fasting@gmail.com**20070619220323 Think this fixes the rest of the errors caused by the Layout change. ] [MagicFocus.magicFocus: fix type signature. joachim.fasting@gmail.com**20070619214839 Layout change caused because of missing type argument. ] [LayoutHooks.hs: add module header. joachim.fasting@gmail.com**20070619204504] [Factor out pprWindowSet (and Xinerama version) from dynamicLog. Shachaf Ben-Kiki **20070619183657 This patch lets you pretty-print a WindowSet to a string, rather than always printing it out to stdout directly. ] [clean up TwoPane to work on Stacks as it ought. David Roundy **20070619150928] [run-xmonad.sh: don't hard-code path to mkfifo. joachim.fasting@gmail.com**20070619124212 mkfifo isn't located in /sbin on all distributions (Gentoo puts it in /bin). By temporarily appending /sbin to PATH both setups are supported. 'which' and friends are not viable options since /sbin usually isn't in user's PATH by default. ] [Anneal.hs: add module header. joachim.fasting@gmail.com**20070619002849] [run-xmonad.sh: use $HOME when setting PATH. joachim.fasting@gmail.com**20070618234703] [Circle.hs: only compute sqrt 2 once. joachim.fasting@gmail.com**20070618232051] [Magnifier.hs: add usage instructions. joachim.fasting@gmail.com**20070618212215] [MagicFocus.hs: add module header and usage instructions. joachim.fasting@gmail.com**20070618205421] [MagicFocus.magicFocus: add type signature. joachim.fasting@gmail.com**20070618205222] [Accordion.hs: add module header and usage instructions. joachim.fasting@gmail.com**20070618193626] [LayoutHints.hs: add usage thingie for Haddock. joachim.fasting@gmail.com**20070618143234] [LayoutHints.hs: add module header. joachim.fasting@gmail.com**20070618143059] [Dzen.hs: add module header. joachim.fasting@gmail.com**20070618142915] [MetaModule.hs: correct module header. joachim.fasting@gmail.com**20070618191905] [Remove all references to exec Spencer Janssen **20070618201652] [Add Accordion to MetaModule Spencer Janssen **20070618190526] [Add an "accordion" layout which puts non-focused windows in ribbons at the top and bottom of the screen. glasser@mit.edu**20070618153943] [RotView.rotView: use Data.Ord.comparing. joachim.fasting@gmail.com**20070618144502 Looks a bit cleaner than '\x y -> compare (tag x) (tag y)' ] [shrink window names to fit tabs. David Roundy **20070617152340] [Tabbed.hs: fixed centerText issues and some binding shadowing warnings Andrea Rossato **20070617104219 This patch fixes the centerText issue due to the inappropriate use of textExtends and textWidth. Those functions need a FontStruct id to operate, and this cannot be retrieved with queryFont (see comments in Graphics.X11.Xlib.Font). So we now get the FontStruct with loadQueryFont, we set the default Xorg fonts and we calculate things for (vertical and horizontal) centering. It also removes some binding shadows compiler warnings ] [fix leak in Combo. David Roundy **20070616191052 We leaked decorations, since UnDoLayout wasn't passed to the actual layouts that had decorations attached. :( ] [Typo Spencer Janssen **20070617000924] [Comment only Spencer Janssen **20070617000805] [Import typo Spencer Janssen **20070614211337] [Magnifier layout hack Peter De Wachter **20070614203219 This layout hack increases the size of the window that has focus (the master window excepted). This causes it to overlap with nearby windows, so not for tiling purists :) Screenshot: http://caladan.rave.org/magnifier.png ] [Use Haskell '98 data declaration rather than GADT-style Spencer Janssen
**20070614205211] [WorkspaceDir.hs: info and documentation Andrea Rossato **20070614144443] [Warp.hs: info and documentation Andrea Rossato **20070614144426] [TwoPane.hs: info and documentation Andrea Rossato **20070614144409] [Submap.hs: info and documentation Andrea Rossato **20070614144348] [Square.hs: info and documentation Andrea Rossato **20070614144317] [Spiral.hs: info and documentation Andrea Rossato **20070614144300] [SimpleDate.hs: info and documentation Andrea Rossato **20070614144241] [RotView.hs: info and documentation Andrea Rossato **20070614144225] [NoBorders.hs: info and documentation Andrea Rossato **20070614144200] [NamedWindows.hs: info and documentation Andrea Rossato **20070614144135] [Mosaic.hs: info and documentation Andrea Rossato **20070614144118] [metaModule.hs: info and documentation Andrea Rossato **20070614144102] [HintedTile.hs: info and documentation Andrea Rossato **20070614144019] [GreedyView.hs: info and documentation Andrea Rossato **20070614143953] [FindEmptyWorkspace.hs: info and documentation Andrea Rossato **20070614143909] [DynamicLog.hs: info and documentation Andrea Rossato **20070614143839] [DwmPromote.hs: info and documentation Andrea Rossato **20070614143813] [Dmenu.hs: info and documentation Andrea Rossato **20070614143753] [Decoration.hs: info and documentation Andrea Rossato **20070614143731] [Combo.hs: info and documentation Andrea Rossato **20070614143700] [Circle.hs: info and documentation Andrea Rossato **20070614143550] [BackCompat.hs info e documentation Andrea Rossato **20070614064850] [Tabbed.hs: Get correct color values instead of assuming a 24-bit display Jason Creighton **20070613235049 Using, eg, 0xBBBBBB directly makes assumptions about the server's colormap and only works on 24-bit displays. This patch fetches the colors on every doLayout call, which is ugly, but works. It would be nice if we could do all the required initColors only once. ] [added info to Commands.hs Andrea Rossato
**20070613190908 Haddock stuff. ] [add bsd-style license for xmonad contrib Don Stewart **20070614025454] [Update license information Spencer Janssen **20070613152829] [template for module information e documentation Andrea Rossato **20070613131029] [Remove some debugging statements I forgot about earlier Stefan O'Rear **20070613041112] [Update MagicFocus to the new StackSet Spencer Janssen **20070613035323] [Magic Focus Peter De Wachter **20070612175357 Automatically puts the focused window in the master position. It's magic. I wrote this for the Circle layout, but it's actually usable with other layouts as well. ] [add -fglasgow-exts to some modules that use it. David Roundy **20070612170349] [changes to work with Stacks that can't be empty. David Roundy **20070612151209] [add Combo and Square to MetaModule. David Roundy **20070612133753] [new module NoBorders to let a given layout have windows without borders. David Roundy **20070612133727 This is designed for layouts like full and tabbed, where the red square around the screen actually conveys no information (except for weird windows that use the shape extension or something, so that more than one window is actually visible). Save some real estate at no cost. ] [make combo sort of work with new doLayout. David Roundy **20070612133027 For some reason (not entirely clear to me) this doesn't work properly just yet with the tabbed layout. :( But at least it'll compile. The trouble is that we have no way of tracking which tab ought to be visible without adding a *lot* of infrastructure. I'd rather have that infrastructure in xmonad proper than reimplement all the focus-handling in combo, so for now I'll just delay upgrading my xmonad at work... ] [make square work with new doLayout. David Roundy **20070612133009] [add "Square" layout. David Roundy **20070612021048 This is probably only ever useful in combination with Combo. It sticks one window in a square region, and makes the rest of the windows live with what's left (in a full-screen sense). ] [add new combo layout combiner. David Roundy **20070611224922] [In Decoration.hs, track rename of ModifyWindows Stefan O'Rear **20070612060713] [Refactor Decoration into a general layout-level hooks interface, and a decoration support module on top of that Stefan O'Rear **20070612060210] [the Stack can be Empty Andrea Rossato **20070612055144] [Documentation fix Spencer Janssen **20070612035655] [Comment only Spencer Janssen **20070612031305] [Fix LayoutHints in the presence of nonzero border widths Stefan O'Rear **20070611005407] [add keybinding to make aspect ratio flexible. David Roundy **20070611165915] [Note the modules I maintain Spencer Janssen **20070611184830] [Add MetaModule Spencer Janssen **20070611184601] [Updates to work with recent API changes Spencer Janssen **20070611183439] [Rename safeIO to catchIO Spencer Janssen **20070611162028] [add WorkspaceDir, which sets the current directory in a workspace. David Roundy **20070611154041 Actually, it sets the current directory in a layout, since there's no way I know of to attach a behavior to a workspace. This means that any terminals (or other programs) pulled up in that workspace (with that layout) will execute in that working directory. Sort of handy, I think. ] [fmt Don Stewart **20070611053450] [added dynamicLogXinerama, a workspace logger that's nicer for Xinerama Jason Creighton **20070611051810] [redraw decorations on PropertyNotify Jason Creighton **20070611021408 newDecoration now takes a Window parameter, which is the window the decoration is "for". If there is a PropertyNotify for that window, the decoration is redrawn. ] [use safe peek instead of unsafe focus Jason Creighton **20070611015437 Fixes crashing bug with Xinerama where you have a tabbed layout on one screen and attempt to switch to an empty workspace on the other. ] [make Tabbed respect the y position of the layout rect (statusbar bugfix) Jason Creighton **20070610231510] [tune layout of Tabbed just a bit. David Roundy **20070610203513] [make Decoration set the input mask appropriately. David Roundy **20070610203451] [Updates for Layout API change Spencer Janssen **20070610203840] [color focussed tab differently. David Roundy **20070610195743] [update Mosaic for latest changes. David Roundy **20070610145816] [maximize rather than minimize the rating. David Roundy **20070601183240] [fix error in select. David Roundy **20070601183147] [improve changeMosaic. David Roundy **20070601175042] [cut obsolete description of mosaic. David Roundy **20070609131456] [start switching over to a Monte Carlo algorithm for Mosaic David Roundy **20070601170505] [new layout algorithm for Mosaic. David Roundy **20070527191153] [display names of windows on tabs. David Roundy **20070610163729] [make Decoration draw the window initially. David Roundy **20070610163651 We still don't respond to expose events. :( ] [Fix name of xmonad-clock in compilation instructions. glasser@mit.edu**20070610155204] [add Decoration module to be used to easily define decorations. David Roundy **20070610153939] [add sketch of tabbed layout. David Roundy **20070610153926] [make LayoutHints work with new modifyLayout (in X). David Roundy **20070610145740] [tag visibles with <N> Don Stewart **20070610111931] [tweak pkill Don Stewart **20070610093027] [greedydoc dave@nullcube.com**20070610091056 Add documentation on how to use GreedyView as your default workspace switcher. ] [use all 3 load values Don Stewart **20070610090959] [Modified xmonad-clock.c to display battery information from ACPI (will work only on linux though). Also restored three load averages instead of only one. buisse@cs.chalmers.se**20070610090228] [example xinitrc Don Stewart **20070610085715] [update run-xmonad.sh Don Stewart **20070610063915] [no need for ./scripts/xmonad-status.c, update run-xmonad.sh Don Stewart **20070610062806] [add DynamicLog.hs Don Stewart **20070610062757] [make LayoutHints robust with regard to future addition of Layout fields. David Roundy **20070609173725] [remove out of date ./scripts/xmonad-status.hs Don Stewart **20070610005107] [add new LayoutHints module that makes layouts respect size hints. David Roundy **20070604213716] [improve xmonad-status.c Don Stewart **20070609140258] [Add C script for parsing new logging encoding, and displaying workspace info Don Stewart **20070609131856] [missing unsetenv Don Stewart **20070609090127] [add tiny clock program (C) i'm using in the status bar Don Stewart **20070609080435] [remove obsolete 'examples' dir Don Stewart **20070609061450] [latest version of xmonad-status.hs Don Stewart **20070609060913] [remove dead version Don Stewart **20070609060857] [Circle layout Peter De Wachter **20070606064153 Windows are arranged in a circle around the master window. Rather nice to use with a mouse, if you got many windows open. Screenshot: http://caladan.rave.org/circle.png ] [Submap: For creating keyboard submappings Jason Creighton
**20070606061941] [nicer format for dynamic workspaces Don Stewart **20070606045705] [add script which only draws current workspace, and those with clients Don Stewart **20070606044544] [In docs, change name of program from mux to xmonad-status. glasser@mit.edu**20070605140045] [Add xmonad-status.hs Don Stewart **20070605132108 An external status bar client for xmonad.
See screenshots:
http://www.cse.unsw.edu.au/~dons/tmp/dons-dzen-status.png http://www.cse.unsw.edu.au/~dons/tmp/xmonad-dzen-tags.png
] [gapless tiled layout obeying size hints Peter De Wachter
**20070605071716] [Contrib package for 6.4 users daniel@wagner-home.com**20070604225534] [XMonadContrib.ReadMap: a Read instance of Map for GHC 6.4 users daniel@wagner-home.com**20070602064318] [keybindings to warp pointer to window center daniel@wagner-home.com**20070602062328] [XMonadContrib.Commands: for workspace and screen commands, leave out W/S tag glasser@mit.edu**20070601161351] [New contrib module: run internal xmonad commands via dmenu glasser@mit.edu**20070601043849] [Note that my xinerama patch is now in dzen. glasser@mit.edu**20070601041112] [Rescreen is in main xmonad now Spencer Janssen **20070528050656] [replace "name" in NamedWindow with a Show instance. David Roundy **20070526185114] [[Spiral] blend in the scale factor so it doesn't have any effect on the smallest windows joe.thornber@gmail.com**20070525032732] [[Spiral] last rect takes all available space joe.thornber@gmail.com**20070524120239] [[Spiral] Introduce a simpler Rect data type to remove a lot of the fromIntegrals joe.thornber@gmail.com**20070524100423] [[Spiral] divideRects now takes a list of directions to split in joe.thornber@gmail.com**20070524090211] [[Spiral] misc tidying joe.thornber@gmail.com**20070524085537] [[Spiral] remove old spiral code joe.thornber@gmail.com**20070524084805] [[Spiral] add fibonacci spiral joe.thornber@gmail.com**20070524084423] [Allow clients of NamedWindows to get at the name. glasser@mit.edu**20070523184251] [dzen module (with xinerama support, which requires glasser's Xinerama patch to dzen) glasser@mit.edu**20070523184315] [Extract NamedWindow support from Mosaic into its own module glasser@mit.edu**20070523155855] [remove SwapFocus (which is no longer possible) David Roundy **20070523153841 This module depended on the focus stack. ] [Fix Spiral's module name Spencer Janssen **20070522170909] [[SPIRAL] add spiral tiling layout joe.thornber@gmail.com**20070522062537] [Make RotView compile. Miikka Koskinen **20070522075338 As I'm not a Xinerama user, I'm not sure if rotView should consider only hidden workspaces or also visible but not focused workspaces. I thought hidden workspaces only would be more logical. ] [bug fix in DwmPromote. whoops. Miikka Koskinen
**20070522062118] [make FindEmptyWorkspace compile Miikka Koskinen **20070521123239] [make DwmPromote compile Miikka Koskinen **20070521123140] [updated Dmenu.hs to work with zipper StackSet Jason Creighton **20070521233947] [Add GreedyView Spencer Janssen **20070521220048] [Rescreen: collects new screen information Spencer Janssen **20070521164808] [Fixes for windowset -> workspace rename Spencer Janssen **20070521042118] [TwoPane: hide windows that aren't in view Spencer Janssen **20070518224240] [make Mosaic even less picky by default. David Roundy **20070516175554] [add clear window message in Mosaic. David Roundy **20070516175518] [Comment only Spencer Janssen **20070517211003] [Add instructions for TwoPane Spencer Janssen **20070517210206] [Add TwoPane Spencer Janssen **20070517195618] [throttle the exponential expense when many windows are present. David Roundy **20070516022123] [make mosaic configure windows by name rather than by Window. David Roundy **20070512215644 Note that this is still pretty flawed. Often window names change, and the layout then stagnates a bit. Gimp, for example, opens most its windows with the same name before renaming them, so you have to hit mod-return or something to force a doLayout. Also, gimp still overrides xmonad regarding the size of its main window. :( ] [XMonadContrib.FindEmptyWorkspace Miikka Koskinen **20070513184338 With this module you can find empty workspaces, view them and tag windows to them. ] [make DwmPromote compile Miikka Koskinen
**20070513184254] [make DwmPromote compile again Miikka Koskinen **20070510154158] [make DwmPromote compile Miikka Koskinen **20070503105236] [add SwapFocus. David Roundy **20070512191315] [make rotView only consider non-visible workspaces (Xinerama) Jason Creighton **20070510012059] [fix commend in RotView. David Roundy **20070505185654] [switch to Message type for layout messages Don Stewart **20070505014332] [Fix instructions in Mosaic. Chris Mears **20070503222345] [add Mosaic layout. David Roundy **20070503151024] [-Wall police Spencer Janssen **20070503211700] [Make RotView build, and add a brief description. Chris Mears **20070503104234] [comment: Gave URL to xinerama-enabled dmenu patch Jason Creighton **20070503053133] [Put dmenu in X too Spencer Janssen **20070503053727] [Add dmenu (thanks jcreigh) Spencer Janssen **20070503052225] [add RotView module. David Roundy **20070421233838] [XMonadContrib.DwmPromote: dwm-like promote Miikka Koskinen **20070501082031 I like the way dwm's equivalent to xmonad's promote works, so I implemented dwmpromote. ] [add simple date example Don Stewart **20070429064013] [more details Don Stewart **20070429061426] [add readme Don Stewart **20070429061329] [Initial import of xmonad contributions Don Stewart **20070429061150] Patch bundle hash: 2b5c1d80d373820bb423b75b7b46093192428af9
_______________________________________________ xmonad mailing list xmonad@haskell.org http://www.haskell.org/mailman/listinfo/xmonad