aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* WindowNavigation: don't export the config constructor and some haddock fixesAndrea Rossato2007-10-131-12/+20
| | | | | | | | 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. darcs-hash:20071013090524-32816-303a461ace55ca42289a15c79b2db77a9943fa3d.gz
* improvements in Combo.David Roundy2007-10-151-10/+15
| | | | darcs-hash:20071015132839-72aca-90f2480c63facfb2d0f24ce75bbcccbabe40bcf0.gz
* Spiral.hs: add 'description' function to LayoutClass instance for SpiralWithDir.Brent Yorgey2007-10-161-0/+1
| | | | darcs-hash:20071016140959-bd4d7-4375de268b8544a30b9fd153fe8cdb0da5cf2b68.gz
* ShellPrompt: traverse $PATH once per invocation. Major speed improvementSpencer Janssen2007-10-161-24/+28
| | | | darcs-hash:20071016090552-a5988-eed1d245021b0284bcd5b90f1fdc93d59eb2dd7f.gz
* ShellPrompt.hs: a quick optimization of nubgwern02007-10-161-1/+2
| | | | | | 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. darcs-hash:20071015234850-f7719-ce02426337ffbbfb15dd1999713075c5aada81bd.gz
* defaultLayout -> layoutHookSpencer Janssen2007-10-151-3/+3
| | | | darcs-hash:20071015205901-a5988-b70eee6f46dac1c5cc4c73f64fa03c2a673c0993.gz
* LayoutSelection -> SelectSpencer Janssen2007-10-151-1/+1
| | | | darcs-hash:20071015205804-a5988-6498900eeba69a7d8af6b0760c72b6d0795a4636.gz
* defaultLayouts -> layoutsSpencer Janssen2007-10-1519-31/+31
| | | | darcs-hash:20071015205542-a5988-4636825868c99db4f3cfdcd6b1e361d78e393762.gz
* fix float bug in CopyWindow.David Roundy2007-10-151-1/+1
| | | | darcs-hash:20071015161529-72aca-22af3affff9166a8f8e4f53f652363be5247f2a7.gz
* Various docstring fixesSpencer Janssen2007-10-143-5/+5
| | | | darcs-hash:20071013230529-a5988-22845bbae2cbbe64d774f9881cd75067d45fc6d5.gz
* TwoPane: Fix syntax error in exampleAlex Tarkovsky2007-10-131-2/+2
| | | | darcs-hash:20071013014151-bd4fb-d9eb57e327457014f7122451f24f512ba4926c0e.gz
* note combo broken under headDon Stewart2007-10-141-1/+1
| | | | darcs-hash:20071013232524-cba2c-d17958aeb1d224fe4446c38c772b94598f2fd9f2.gz
* New features for generate-configs.sh; renamed to generate-configsAlex Tarkovsky2007-10-132-206/+302
| | | | darcs-hash:20071013090251-bd4fb-cbc2dbc80107aa545c665fe552c19a9bbde2b04f.gz
* WorkspaceDir introduces dependency on directory packageDon Stewart2007-10-141-0/+2
| | | | darcs-hash:20071013230102-cba2c-346f0e5523f86efb54fad3702447418503907f8d.gz
* Dmenu.hs introduces process dependencyDon Stewart2007-10-141-0/+2
| | | | darcs-hash:20071013230051-cba2c-3caa72f06b67a00b520e0b8c957f0fe9c4ba63af.gz
* serialisedLayoutsDon Stewart2007-10-141-2/+2
| | | | darcs-hash:20071013230040-cba2c-a54c6f9daa3784c741ea0d64888d9c39172b8307.gz
* Combo requires FlexibleContexts (but still doesn't compile under ghc head)Don Stewart2007-10-141-2/+2
| | | | darcs-hash:20071013230020-cba2c-abce26b8edf763174e813885b17725ac9f156f05.gz
* 'Anneal' requires 'random' package in ghc 6.8Don Stewart2007-10-141-0/+1
| | | | darcs-hash:20071013230007-cba2c-440a4f17ca0c02675fc323748798e7e47ba1a5a2.gz
* use leading % for magic comments in ./scripts/generate-configs.shDon Stewart2007-10-131-6/+6
| | | | darcs-hash:20071013212429-cba2c-e0b295111877212387af5cb6d69be1d8c098886e.gz
* WindowPrompt: haddock fixesAndrea Rossato2007-10-131-4/+5
| | | | darcs-hash:20071013160735-32816-33b37a23491d572d144ed69bda140e6913edc7fb.gz
* Fix more config docstringsAlex Tarkovsky2007-10-133-6/+6
| | | | darcs-hash:20071013085133-bd4fb-9be09371bd239e8ed38da30ff98470fdf8d9c119.gz
* DragPane: haddock fixesAndrea Rossato2007-10-131-1/+1
| | | | darcs-hash:20071013090437-32816-9b08354e83fbca90f69fc907b0c570ed1ea33e1f.gz
* TagWindows.hs: haddock fixesAndrea Rossato2007-10-131-13/+14
| | | | darcs-hash:20071013090413-32816-34dda90905bcb789615c6bd6f8fc5bd842c01467.gz
* Tabbed: haddock fixesAndrea Rossato2007-10-131-5/+9
| | | | darcs-hash:20071013090342-32816-3c2575691c880a1248b839d3f1fcbd54acfabda5.gz
* Roledex.hs: haddock fixesAndrea Rossato2007-10-131-2/+2
| | | | darcs-hash:20071013090323-32816-a6774409be12b501ee35ba9310e84d43f8437b7c.gz
* ResizableTile.hs: haddock fixesAndrea Rossato2007-10-131-1/+5
| | | | darcs-hash:20071013090233-32816-e5751a30a49175bfea22215b2ed6b07b8f37fee9.gz
* CycleWS: typoAndrea Rossato2007-10-131-2/+2
| | | | darcs-hash:20071013090145-32816-f6585a4e1bab54fa6df854cb390449a20c261856.gz
* CopyWindow.hs: type signature for copyAndrea Rossato2007-10-131-0/+1
| | | | darcs-hash:20071013090122-32816-93b90523b2609d2bf19066db80ae323a0231f692.gz
* Circle.hs: haddock fixesAndrea Rossato2007-10-131-0/+1
| | | | darcs-hash:20071013090100-32816-fcc597d534167e53bb698e1b1eb63275c7bca4b4.gz
* Accordion.hs: haddock fixesAndrea Rossato2007-10-131-2/+2
| | | | darcs-hash:20071013090038-32816-478cd9f47b1818396bd7341d51eef69349e3c385.gz
* clean up DynamicLog.hsDon Stewart2007-10-131-16/+44
| | | | darcs-hash:20071013195129-cba2c-0f7b450f25113577cd57ce3c10e830f44f1c2678.gz
* remove old TODOs (fix darcs conflict)Devin Mullins2007-10-121-4/+0
| | | | darcs-hash:20071012154859-78224-51f469de9d542b50f7c17f15f74ecb3f7f76e1ee.gz
* haddock improvementDevin Mullins2007-10-122-12/+17
| | | | darcs-hash:20071012145447-78224-ddfc6b2085e85d92547aac3fc027c0dd4bad9cd3.gz
* MetaModule.hs: add RunInXTerm and XUtils.Joachim Fasting2007-10-121-0/+2
| | | | darcs-hash:20071012114252-928c4-283fe4c3718e51721cb54603655a3a7f8fc74127.gz
* Add documentation to Dishes.hsnornagon2007-10-121-1/+6
| | | | darcs-hash:20071012072953-25eb7-df0c646cdc908f54c60943cc7d5441591073f7d2.gz
* doco fix: s/SomeLayout/Layout/gDevin Mullins2007-10-124-11/+11
| | | | darcs-hash:20071012025953-78224-916a50210664192b90802aabb67da486374d0519.gz
* Haddock fixesAndrea Rossato2007-10-127-32/+49
| | | | darcs-hash:20071012100416-32816-049c57f0dbc5d794db1b66295429ba6cd5b7b160.gz
* Fix EwmhDesktops, ManageDocks, and SetWMName compilation for amd64Alex Tarkovsky2007-10-103-98/+98
| | | | darcs-hash:20071010213853-bd4fb-66e3492b55dc7aeb9dee18201a66f540b52e8b53.gz
* Export hasTagKarsten Schoelzel2007-10-111-1/+1
| | | | darcs-hash:20071011095504-eb3a1-3ac3472370adaf4ebad34e48925ff2f1cc0045bc.gz
* Improve readability of RotViewEric Mertens2007-10-111-8/+12
| | | | darcs-hash:20071011175200-b49f3-732d731fed3f8b1af4bfaacfcc426b2292d61475.gz
* Added wmii like actions extension.Juraj Hercek2007-10-102-0/+102
| | | | darcs-hash:20071010201452-69f16-8e1614d6ed8e8f0b7e8a407c0c5699906887fcc3.gz
* Remove spurious output from ShellPromptSpencer Janssen2007-10-111-1/+0
| | | | darcs-hash:20071011182816-a5988-c95c4d60081d46de24269b70cbffe1dccc7e6f11.gz
* add/reformat (commented out) tracing code to SwitchTransl.mai2007-10-111-8/+15
| | | | darcs-hash:20071011022139-42ea9-ebb51e6c63155d8b55dfb883e18a760a60d9727b.gz
* NoBorders bugfix (I hope)l.mai2007-10-111-1/+1
| | | | | | | 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. :-) darcs-hash:20071011021756-42ea9-2d61edad94df2fc1dca1d9aaf6df780b4b4caaf8.gz
* XSelection.hs: Implement Andrea's idea for handling non-UTF-8 string casesgwern02007-10-101-5/+4
| | | | darcs-hash:20071010020616-f7719-c516e74e6e7d37e73b2926a7cea30b97d65128f6.gz
* Add XSelection to MetaModuleSpencer Janssen2007-10-101-0/+1
| | | | darcs-hash:20071010160340-a5988-b3796181524ce767ab7f61d898cfc2ebc04bb0c1.gz
* XSelection.hs: a new module for XMonadContrib dealing with copy-and-pastegwern02007-10-091-0/+154
| | | | | | 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. darcs-hash:20071008222706-f7719-a064aa284a8434d993bc6c002b11eb85d037461d.gz
* Add WindowPrompt: the XPrompt equivalent of WindowBringerAndrea Rossato2007-10-091-0/+88
| | | | darcs-hash:20071009164047-32816-eb2389cce3b8f24a12ccbbdd71eb5ad987ac859d.gz
* WindowBringer: export windowMapWith used by WindowPromptAndrea Rossato2007-10-091-1/+1
| | | | darcs-hash:20071009163505-32816-9689ba57f37826b9a986b5db9fbe3d27ed902b17.gz
* MetaModule: added WindowPromptAndrea Rossato2007-10-091-0/+1
| | | | darcs-hash:20071009163445-32816-b04e6d4338fe1c4c5078eb81bd17a172b9fd0184.gz