John Lind
a7fd31d233
Replace <+> with <>
2022-05-02 08:28:36 +02:00
slotThe
478393fb7d
Deprecate user and abandoned modules
...
Now that the user configs are on the website, it is time to deprecate
them. At the same time deprecated X.C.Monad, which hasn't been updated
since 2008 and X.C.Prime, which has confused users quite recently,
thinking it to be a better starting place.
Fixes: https://github.com/xmonad/xmonad-contrib/issues/677
Fixes: https://github.com/xmonad/xmonad-contrib/issues/595
Related: https://github.com/xmonad/xmonad-web/pull/49
2022-01-14 07:58:18 +01:00
slotThe
38c11c1e3c
Add "Description" field to module headers
...
Fixes: https://github.com/xmonad/xmonad-contrib/issues/592
2021-09-26 14:15:54 +02:00
slotThe
bd5b969d9b
Apply hlint hints
...
All hints are applied in one single commit, as a commit per hint would
result in 80+ separate commits—tihs is really just too much noise.
Related: https://github.com/xmonad/xmonad-contrib/issues/537
2021-06-06 18:59:05 +02:00
Tomas Janousek
e38fb3bdb8
Make usage of ManageDocks simpler and more robust
...
As it now consists of a startup hook, a manage hook, an event hook and
a layout modifier, and behaves erratically when any one component is not
included in a user's config (which happens to be the case for all
configs from xmonad-contrib 0.12 since the startup hook is a new
inclusion), it's probably wise to have a single function that adds
all the hooks to the config instead.
NB: This will need a release notes entry anyway!
2016-09-07 13:26:58 +03:00
Daniel Wagner
0f1b6fb772
use Data.Default wherever possible, and deprecate the things it replaces
2013-05-28 01:39:09 +00:00
Daniel Wagner
daa2731d3d
eliminate references to defaultConfig
2013-05-28 00:58:25 +00:00
Brent Yorgey
b435a6a519
suppress some warnings under ghc 6.12.1 and clean up redundant imports to get rid of some others.
2010-01-12 17:25:07 +00:00
Spencer Janssen
328fae1468
Use X.U.SpawnOnce in my config
2009-11-07 17:46:15 +00:00
Daniel Schoepe
8ec090cfbf
Fixed conflict between X.U.ExtensibleState and X.C.Sjanssen
2009-11-07 10:36:19 +00:00
Daniel Schoepe
fa476549c2
Use X.U.ExtensibleState instead of IORefs
...
This patch changes SpawnOn, DynamicHooks and UrgencyHooks to
use X.U.ExtensibleState instead of IORefs. This simplifies the
usage of those modules thus also breaking current configs.
2009-11-06 11:56:01 +00:00
Spencer Janssen
97a36b49a5
My config uses xmonadPropLog now
2009-11-07 00:52:30 +00:00
Spencer Janssen
5417286d6a
Use 'ewmh' in relevant configs
2009-10-23 03:50:43 +00:00
Justin Bogner
fc1da0d701
Move EWMH support initialization to a startupHook
...
Set EWMH support atoms and the window manager name in a startup hook,
rather than in the log hook: the log hook occurs far too frequently
for it to make sense to set constants with it.
2009-10-11 05:35:38 +00:00
Spencer Janssen
63e5b222b8
Minor changes to my config
2009-09-01 02:48:02 +00:00
Spencer Janssen
27bbeff92c
Use doShift in my config
2009-02-19 04:20:40 +00:00
Spencer Janssen
da2a08ec7e
Use spawnOn in my config
2009-01-17 04:10:26 +00:00
Spencer Janssen
b1984eef30
Update to my config
2009-01-16 20:45:53 +00:00
Spencer Janssen
293b8152aa
I use the deleteConsecutive history filter
2008-10-25 07:04:38 +00:00
Spencer Janssen
005f4ef7fb
Update my config to use 'statusBar'
2008-09-21 06:35:13 +00:00
Spencer Janssen
644b85ab36
Use the new completion on tab setting
2008-09-11 08:59:40 +00:00
Spencer Janssen
1c03ecc596
Updates to my config
2008-08-12 05:01:24 +00:00
Ivan N. Veselov
82a6bea527
'xmobar' function added to DynamicLog for running xmobar with some defaults
2008-05-08 19:49:18 +00:00
Spencer Janssen
8677090476
Refactor my config
2008-05-07 02:15:04 +00:00
Spencer Janssen
4fff234f3b
manageHooks for my config
2008-04-30 08:25:36 +00:00
Spencer Janssen
31d303508e
I don't use DwmStyle
2008-03-25 21:38:18 +00:00
Lukas Mai
529797ae8e
XMonad.Layout.HintedTile: make alignment of shrunk windows configurable
2008-03-25 20:29:58 +00:00
Spencer Janssen
dfa3a4ee01
Various decorations related updates
...
* remove deprecated TConf stuff
* Remove 'style' from DeConf
* Change DeConf to Theme
* share defaultTheme across all decorations
2008-01-30 06:46:24 +00:00
Andrea Rossato
041eb5dc18
Don't export TConf anymore and export DeConfig instead
...
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
2008-01-26 09:21:41 +00:00
Spencer Janssen
d8baf188db
I use urxvtc now
2008-01-27 21:14:52 +00:00
Spencer Janssen
71d1c8c23b
I use ManageDocks now
2007-12-09 13:44:45 +00:00
Spencer Janssen
503cb539af
More import pruning
2007-12-08 01:48:46 +00:00
Spencer Janssen
3a522e7e3c
Remove XMonad.Operations imports
2007-12-08 00:05:47 +00:00
Spencer Janssen
4f7764ca8b
Prune more imports
2007-12-07 23:51:16 +00:00
Spencer Janssen
e85228229b
I use CopyWindow now
2007-12-07 23:40:18 +00:00
Spencer Janssen
58d540789b
Update Sjanssen.hs
2007-12-05 04:56:48 +00:00
David Roundy
e423e3eb34
changes to work with XConfig of kind * -> *.
2007-11-11 00:56:29 +00:00
Spencer Janssen
4fcd67ef05
Use spawnPipe in sjanssenConfig
2007-11-07 08:26:37 +00:00
Spencer Janssen
7d1506fded
Stupid mistake
2007-11-05 10:10:52 +00:00
Spencer Janssen
2bb992c128
-Wall police
2007-11-05 06:00:36 +00:00
Spencer Janssen
9cd33f809e
Minor updates to Sjanssen.hs
2007-11-05 05:50:22 +00:00
Don Stewart
080e11b376
build with optimisations on as usual, fix a few compile errors
2007-11-05 02:48:58 +00:00
Spencer Janssen
ee5ae195e0
Add XMonad.Config.Sjanssen
2007-11-05 00:58:32 +00:00