max package:xmonad-contrib

Maximum chord length. Use 0 for no maximum.
Just maximize a window without focusing
Maximize a window and then focus it
Deprecated: This field will be removed in the future; history is now handled by XMonad.Hooks.WorkspaceHistory
interface to the X11 library function XMaxCmapsOfScreen().
interface to the X11 library function XMaxRequestSize().
The largest element of a non-empty structure. This function is non-total and will raise a runtime exception if the structure happens to be empty. A structure that supports random access and maintains its elements in order should provide a specialised implementation to return the maximum in faster than linear time.

Examples

Basic usage:
>>> maximum [1..10]
10
>>> maximum []
*** Exception: Prelude.maximum: empty list
>>> maximum Nothing
*** Exception: maximum: empty structure
WARNING: This function is partial for possibly-empty structures like lists.
Widget for ToggleMaximize command
A magnifier that greatly magnifies the focused window; defaults to Off.
A magnifier that greatly magnifies just the vertical direction; defaults to Off.
Like maximize, but allows you to specify the amount of padding placed around the maximized window.
The largest element of a non-empty structure with respect to the given comparison function.

Examples

Basic usage:
>>> maximumBy (compare `on` length) ["Hello", "World", "!", "Longest", "bar"]
"Longest"
WARNING: This function is partial for possibly-empty structures like lists.
Just x: maximum number of columns to show in completion window
Just x: maximum number of rows to show in completion window
Temporarily yanks the focused window out of the layout to mostly fill the screen.
Reduce the dimensions if they exceed the given maximum dimensions.