Tony Zorman
b1b3c4c469
~/.xmonad/xmonad.hs -> xmonad.hs
...
With XDG support so firmly ingrained now, it's about time we stop
hard-coding the configuration path in the docs.
2023-12-22 18:17:17 +01: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
9af232489d
Remove unnecessary imports of X.L.LayoutCombinators
2021-06-04 18:23:37 +01:00
slotThe
ea09fc2bf4
Fix GHC warning: -Wdeprecations
...
Related: https://github.com/xmonad/xmonad-contrib/issues/537
2021-05-21 17:37:09 +02: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
daniel
db37e18098
generalize IO actions to MonadIO m => m actions
...
This should not cause any working configs to stop working, because IO is an instance of MonadIO, and because complete configs will pin down the type of the call to IO. Note that XMonad.Config.Arossato is not a complete config, and so it needed some tweaks; with a main function, this should not be a problem.
2009-11-14 02:36:16 +00:00
Adam Vogt
afecca6561
Preserve backwards compatibility with H.ServerMode
2009-08-25 22:03:48 +00:00
Daniel Schoepe
28e0adcde7
Let the user decide which commands to use in X.H.ServerMode
2009-08-25 10:16:30 +00:00
Daniel Schoepe
9a7dcbbabb
Adjustments to use the new event hook feature instead of Hooks.EventHook
2009-02-03 16:00:46 +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
Brent Yorgey
a09ed70091
Util.Run, Hooks.DynamicLog: re-export hPutStrLn and hPutStr from Util.Run for convenience, and update DynamicLog documentation to show proper imports
2008-03-28 20:54:46 +00:00
Andrea Rossato
f1c5f11c2e
I now use ServerMode
2008-02-26 11:53:47 +00:00
Andrea Rossato
9cd93a043a
Arossato: updated to latest changes
2008-02-19 16:30:58 +00:00
Andrea Rossato
42f78498f1
Arossato: update to latest changes
2008-02-08 14:06:04 +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
8f65eecf92
WindowArranger can now arrange all windows
...
This is useful for SimpleFloat, whose state can now persists across
layout switches.
2008-01-26 23:30:53 +00:00
Andrea Rossato
bb4c97ede0
Arossato: updated my config to recent changes
2008-01-26 20:56:38 +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
Andrea Rossato
b2d8bd71c3
Arossato: my teaTime application.
2007-12-09 12:33:27 +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
dc11825588
Remove redundant imports
2007-12-07 23:38:27 +00:00
Andrea Rossato
e3b779303f
Arossato: some changes. I now use Magnifier among my layouts
2007-11-24 14:09:18 +00:00
Andrea Rossato
42297605be
Arossato: my terminal is urxvt
2007-11-16 20:15:33 +00:00
Andrea Rossato
c30f6076ac
Arossato: removed unneeded bits
2007-11-16 10:47:53 +00:00
Andrea Rossato
3d39b52959
Arossato: documentation
2007-11-15 19:10:39 +00:00
David Roundy
ffed7c0e02
remove unneeded Data.Bits imports.
2007-11-15 16:13:46 +00:00
Andrea Rossato
011780d68c
Arossato: removed unneeded bits
2007-11-14 17:25:00 +00:00
Andrea Rossato
58e2029669
Arossato: just code formatting
2007-11-14 14:22:13 +00:00
Andrea Rossato
90aae189f0
Arossato: typo
2007-11-14 14:20:46 +00:00
Andrea Rossato
064e9257b7
Arossato: some keybindings tuning
2007-11-14 14:17:19 +00:00
Andrea Rossato
85952e9e53
Arossato: just code formattings
2007-11-14 13:53:52 +00:00
Andrea Rossato
4323d659d3
Config.Arossato: my hand has been forced to pick up a true combinator set...
2007-11-14 13:38:48 +00:00
Andrea Rossato
46528b4f48
Arossato: cleanup and fine-tuning
2007-11-13 16:39:06 +00:00
David Roundy
e423e3eb34
changes to work with XConfig of kind * -> *.
2007-11-11 00:56:29 +00:00
Chris Mears
ab1f382566
Remove spurious import in Arossato's config.
2007-11-07 21:56:30 +00:00
Andrea Rossato
d1eb962214
Add my configuration file
...
Spencer and David: you really did a great job. Thank you guys!
2007-11-07 19:13:05 +00:00