Up to [cvs.NetBSD.org] / pkgsrc / wm / xmonad-contrib
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
recursive revbump after patching lang/ghc910
Bump all Haskell packages after switching the default compiler.
wm/xmonad-contrib: update to xmonad-contrib-0.18.1 ## _unreleased_ ## 0.18.1 (August 20, 2024) ### Breaking Changes * `XMonad.Hooks.StatusBars` - Move status bar functions from the `IO` to the `X` monad to allow them to look up information from `X`, like the screen width. Existing configurations may need to use `io` from `XMonad.Core` or `liftIO` from `Control.Monad.IO.Class` in order to lift any existing `IO StatusBarConfig` values into `X StatusBarConfig` values. * `XMonad.Prompt` - Added an additional `XPConfig` argument to `historyCompletion` and `historyCompletionP`. Calls along the lines of `historyCompletionP myFunc` should be changed to `historyCompletionP myConf myFunc`. If not `myConf` is lying around, `def` can be used instead. * `XMonad.Actions.GridSelect` - Added the `gs_cancelOnEmptyClick` field to `GSConfig`, which makes mouse clicks into "empty space" cancel the current grid-select. Users explicitly defining their own `GSConfig` record will have to add this to their definitions. Additionally, the field defaults to `True`—to retain the old behaviour, set it to `False`. ### New Modules * `XMonad.Actions.Profiles` - Group workspaces by similarity. Useful when one has lots of workspaces and uses only a couple per unit of work. * `XMonad.Hooks.FloatConfigureReq` - Customize handling of floating windows' move/resize/restack requests (ConfigureRequest). Useful as a workaround for some misbehaving client applications (Steam, rxvt-unicode, anything that tries to restore absolute position of floats). * `XMonad.Layout.Columns` - Organize windows in columns. This layout allows to move/resize windows in every directions. * `XMonad.Prompt.WindowBringer` - Added `copyMenu`, a convenient way to copy a window to the current workspace. ### Bug Fixes and Minor Changes * Fix build-with-cabal.sh when XDG_CONFIG_HOME is defined. * `XMonad.Util.EZConfig` - Fixed `checkKeymap` warning that all keybindings are duplicates. * `XMonad.Hooks.ManageHelpers` - Added `isNotification` predicate to check for windows with `_NET_WM_WINDOW_TYPE` property of `_NET_WM_WINDOW_TYPE_NOTIFICATION`. * `XMonad.Prompt.OrgMode` - Added `HH:MM-HH:MM` and `HH:MM+HH` syntax to specify time spans. * `XMonad.Prompt` - The history file is not extraneously read and written anymore if the `historySize` is set to 0. * `XMonad.Hooks.EwmhDesktops` - Requests for unmanaged windows no longer cause a refresh. This avoids flicker and also fixes disappearing menus in the Steam client and possibly a few other client applications. (See also `XMonad.Hooks.FloatConfigureReq` and/or `XMonad.Util.Hacks` for additional Steam client workarounds.) * `XMonad.Actions.Submap` - Added `visualSubmapSorted` to enable sorting of the keymap descriptions. * `XMonad.Hooks.ScreenCorners` - Added screen edge support with `SCTop`, `SCBottom`, `SCLeft` and `SCRight`. Now both corners and edges are supported. * `XMonad.Actions.WindowNavigation` - Improve navigation in presence of floating windows. - Handle window switching when in `Full` layout. ### Other changes
Recursive revbump after changing the default Haskell compiler
wm/xmonad-contrib: Update to 0.18.0 0.18.0 (February 3, 2024) Breaking Changes Deprecated XMonad.Layout.Cross due to bitrot; refer to XMonad.Layout.Circle and XMonad.Layout.ThreeColumns for alternatives. Deprecated the XMonad.Layout.StateFull module and XMonad.Layout.TrackFloating.(t|T)rackFloating in favour of XMonad.Layout.FocusTracking. Dropped support for GHC 8.4. XMonad.Util.ExclusiveScratchpads Deprecated the module in favour of the (new) exclusive scratchpad functionality of XMonad.Util.NamedScratchpad. XMonad.Actions.CycleWorkspaceByScreen The type of repeatableAction has changed, and it's deprecated in favour of X.A.Repeatable.repeatable. XMonad.Hooks.DynamicProperty Deprecated the module in favour of the more aptly named XMonad.Hooks.OnPropertyChange. XMonad.Util.Scratchpad: Deprecated the module; use XMonad.Util.NamedScratchpad instead. XMonad.Actions.Navigation2D Removed deprecated function hybridNavigation. XMonad.Layout.Spacing Removed deprecated functions SpacingWithEdge, SmartSpacing, SmartSpacingWithEdge, ModifySpacing, setSpacing, and incSpacing. XMonad.Actions.MessageFeedback Removed deprecated functions send, sendSM, sendSM_, tryInOrder, tryInOrder_, tryMessage, and tryMessage_. XMonad.Prompt.Window Removed deprecated functions windowPromptGoto, windowPromptBring, and windowPromptBringCopy. XMonad.Hooks.ICCCMFocus Removed deprecated module. This was merged into xmonad. XMonad.Layout.LayoutBuilderP Removed deprecated module; use XMonad.Layout.LayoutBuilder instead. XMonad.Hooks.RestoreMinimized Removed deprecated module; use XMonad.Hooks.Minimize instead. XMonad.Layout.Named Deprecated the entire module, use XMonad.Layout.Renamed (which newly provides named for convenience) instead. XMonad.Actions.SinkAll Deprecated the entire module, use XMonad.Actions.WithAll instead. XMonad.Layout.Circle: Deprecated the entire module, use the circle function from XMonad.Layout.CircleEx instead. XMonad.Hooks.EwmhDesktops _NET_CLIENT_LIST_STACKING puts windows in the current workspace at the top in bottom-to-top order, followed by visible workspaces, followed by invisible workspaces. Within visible and invisible groups, workspaces are ordered lexicographically, as before. Currently focused window will always be the topmost, meaning the last in the list. XMonad.Util.NamedScratchpad Added nsSingleScratchpadPerWorkspace—a logHook to allow only one active scratchpad per workspace. XMonad.Util.EZConfig The function readKeySequence now returns a non-empty list if it succeeded. Deprecate XMonad.Util.Ungrab; it was moved to XMonad.Operations in core. New Modules XMonad.Layout.CenterMainFluid A three column layout with main column in the center and two stack column surrounding it. Master window will be on center column and spaces on the sides are reserved. XMonad.Layout.FocusTracking. Replaces X.L.StateFull and half of X.L.TrackFloating. XMonad.Actions.MostRecentlyUsed Tab through windows by recency of use. Based on the Alt+Tab behaviour common outside of xmonad. XMonad.Util.History Track history in O(log n) time. Provides History, a variation on a LIFO stack with a uniqueness property. In order to achieve the desired asymptotics, the data type is implemented as an ordered Map. XMonad.Actions.Repeatable Actions you'd like to repeat. Factors out the shared logic of X.A.CycleRecentWS, X.A.CycleWorkspaceByScreen and X.A.CycleWindows. XMonad.Hooks.OnPropertyChange: A new module replicating the functionality of XMonad.Hooks.DynamicProperty, but with more discoverable names. XMonad.Actions.ToggleFullFloat: Fullscreen (float) a window while remembering its original state. There's both an action to be bound to a key, and hooks that plug into XMonad.Hooks.EwmhDesktops. XMonad.Layout.CircleEx: A new window layout, similar to X.L.Circle, but with more possibilities for customisation. XMonad.Layout.DecorationEx: A new, more extensible, mechanism for window decorations, and some standard types of decorations, including usual bar on top of window, tabbed decorations and dwm-like decorations. Bug Fixes and Minor Changes XMonad.Layout.Magnifier Added magnifyxy to allow for different magnification in the horizontal and vertical directions. Added magnifierxy, magnifierxy', magnifierxyOff, and magnifierxyOff' as particular combinators. XMonad.Util.Loggers Added logClassname, logClassnames, logClassnames', logClassnameOnScreen, logClassnamesOnScreen, logClassnamesOnScreen', and ClassnamesFormat. These are all equivalents of their Title counterparts, allowing logging the window classname instead. XMonad.Hooks.StatusBar.PP dynamicLogString now forces its result and produces an error string if it throws an exception. Use dynamicLogString' if for some reason you need the old behavior. XMonad.Util.EZConfig Added remapKeysP, which remaps keybindings from one binding to another. Made additionalKeys{,P}, removeKeys{,P}, remapKeysP, and {additional,remove}MouseBindings infixl 4 so they can more easily be concatenated with (++). XMonad.Util.NamedScratchpad Added addExclusives, resetFocusedNSP, setNoexclusive, resizeNoexclusive, and floatMoveNoexclusive in order to augment named scratchpads with the exclusive scratchpad functionality of XMonad.Util.ExclusiveScratchpads. XMonad.Layout.BorderResize Added borderResizeNear as a variant of borderResize that can control how many pixels near a border resizing still works. XMonad.Util.Run It is now ensured that all arguments of execute and eval are quoted. Likewise, executeNoQuote is added as a version of execute that does not do that. Added findFile as a shorthand to call find-file. Added list and saveExcursion to the list of Emacs commands. Added toList to easily lift a String to an X Input. Added >&&> and >||> to glue together different inputs. XMonad.Util.Parser Added the gather, count, between, option, optionally, skipMany, skipMany1, chainr, chainr1, chainl, chainl1, and manyTill functions, in order to achieve feature parity with Text.ParserCombinators.ReadP. XMonad.Actions.FloatKeys Added directionMoveWindow and directionMoveWindow as more alternatives to the existing functions. XMonad.Hooks.InsertPosition Added setupInsertPosition as a combinator alternative to insertPosition. XMonad.Actions.Navigation2D Added sideNavigation as a fallback to the default tiling strategy, in case lineNavigation can't find a window. This benefits especially users who use XMonad.Layout.Spacing. XMonad.Prompt.OrgMode Added orgPromptRefile and orgPromptRefileTo for interactive and targeted refiling of the entered note into some existing tree of headings, respectively. Allowed the time specification in HHMM format. XMonad.Actions.Search Added aur, flora, ncatlab, protondb, rosettacode, sourcehut, steam, voidpgks_x86_64, voidpgks_x86_64_musl, arXiv, clojureDocs, cratesIo, rustStd, noogle, nixos, homeManager, and zbmath search engines. XMonad.Layout.ResizableThreeColumns Fixed an issue where the bottom right window would not respond to MirrorShrink and MirrorExpand messages. XMonad.Hooks.EwmhDesktops Added disableEwmhManageDesktopViewport to avoid setting the _NET_DESKTOP_VIEWPORT property, as it can lead to issues with some status bars (see this polybar issue). Added setEwmhFullscreenHooks to override the default fullfloat/sink behaviour of _NET_WM_STATE_FULLSCREEN requests. See also XMonad.Actions.ToggleFullFloat for a float-restoring implementation of fullscreening. Added ewmhDesktops(Maybe)ManageHook that places windows in their preferred workspaces. This is useful when restoring a browser session after a restart. XMonad.Hooks.StatusBar Added startAllStatusBars to start the configured status bars. XMonad.Util.NamedActions Changed addDescrKeys and addDescrKeys' to not discard the keybindings in the current config. XMonad.Prompt The emacsLikeXPKeymap and vimLikeXPKeymap keymaps now treat C-m the same as Return. Added prevCompletionKey to XPConfig, facilitating the ability to cycle through the completions backwards. This is bound to S-<TAB> by default. The vimLikeXPKeymap now accepts the prompt upon pressing enter in normal mode. XMonad.Actions.Prefix Added orIfPrefixed, a combinator to decide upon an action based on whether any prefix argument was given. XMonad.Actions.WorkspaceNames Enabled prompt completion (from history) in renameWorkspace. XMonad.Prompt.Pass Added passOTPTypePrompt to type out one-time-passwords via xdotool. XMonad.Util.Stack Added zipperFocusedAtFirstOf to differentiate two lists into a zipper.
*: revebump for new brotli option for freetype2 Addresses PR 57693
Revbump all Haskell after updating lang/ghc96
Bump Haskell packages after updating lang/ghc94
revbump all the Haskell packages after modifying the runtime system of lang/ghc94
*: Recursive revbup from graphics/freetype2
wm/xmonad-contrib: Update to 0.17.1 The release note is too long to paste here. See https://hackage.haskell.org/package/xmonad-contrib-0.17.1/changelog
Bump all Haskell packages after enabling "split sections" in mk/haskell.mk
revbump after changing the default Haskell compiler
Update to xmonad-contrib-0.17.0 The list of changes is too long to paste here: https://hackage.haskell.org/package/xmonad-contrib-0.17.0/changelog
Bump packages that depends on GHC
*: Bump PKGREVISION for ghc-9.0.1
*: revbump after fontconfig bl3 changes (libuuid removal)
Update to xmonad-contrib-0.16 The list of changes is too long to paste here. See http://hackage.haskell.org/package/xmonad-contrib-0.16/changelog
Update to xmonad-contrib-0.14 The list of changes from 0.12 are too long to paste here. See http://hackage.haskell.org/package/xmonad-contrib-0.14/changelog
Recursive bumps for fontconfig and libzip dependency changes.
Update to 0.12 CHANGES: ## 0.12 (December 14, 2015) ### Breaking Changes * `XMonad.Actions.UpdatePointer.updatePointer` arguments were changed. This allows including aspects of both of the `TowardsCentre` and `Relative` methods. To keep the same behavior, replace the entry in the left column with the entry on the right: | < 0.12 | >= 0.12 | |-------------------------------------|----------------------------------| | `updatePointer Nearest` | `updatePointer (0.5, 0.5) (1,1)` | | `updatePointer (Relative x y)` | `updatePointer (x,y) (1,1)` | | `updatePointer (TowardsCentre x y)` | `updatePointer (0.5,0.5) (x,y)` | ### New Modules * `XMonad.Actions.AfterDrag` Perform an action after the current mouse drag is completed. * `XMonad.Actions.DynamicProjects` Imbues workspaces with additional features so they can be treated as individual project areas. * `XMonad.Actions.LinkWorkspaces` Provides bindings to add and delete links between workspaces. It is aimed at providing useful links between workspaces in a multihead setup. Linked workspaces are viewed at the same time. * `XMonad.Config.Bepo` This module fixes some of the keybindings for the francophone among you who use a BEPO keyboard layout. Based on `XMonad.Config.Azerty` * `XMonad.Config.Dmwit` Daniel Wagner's configuration. * `XMonad.Config.Mate` This module provides a config suitable for use with the MATE desktop environment. * `XMonad.Config.Prime` A draft of a brand new config syntax for xmonad. * `XMonad.Hooks.DynamicProperty` Module to apply a `ManageHook` to an already-mapped window when a property changes. This would commonly be used to match browser windows by title, since the final title will only be set after (a) the window is mapped, (b) its document has been loaded, (c) all load-time scripts have run. * `XMonad.Hooks.ManageDebug` A `manageHook` and associated `logHook` for debugging `ManageHook`s. Simplest usage: wrap your xmonad config in the `debugManageHook` combinator. Or use `debugManageHookOn` for a triggerable version, specifying the triggering key sequence in `XMonad.Util.EZConfig` syntax. Or use the individual hooks in whatever way you see fit. * `XMonad.Hooks.WallpaperSetter` Log hook which changes the wallpapers depending on visible workspaces. * `XMonad.Hooks.WorkspaceHistory` Keeps track of workspace viewing order. * `XMonad.Layout.AvoidFloats` Find a maximum empty rectangle around floating windows and use that area to display non-floating windows. * `XMonad.Layout.BinarySpacePartition` Layout where new windows will split the focused window in half, based off of BSPWM. * `XMonad.Layout.Dwindle` Three layouts: The first, `Spiral`, is a reimplementation of `XMonad.Layout.Spiral.spiral` with, at least to me, more intuitive semantics. The second, `Dwindle`, is inspired by a similar layout in awesome and produces the same sequence of decreasing window sizes as Spiral but pushes the smallest windows into a screen corner rather than the centre. The third, `Squeeze` arranges all windows in one row or in one column, with geometrically decreasing sizes. * `XMonad.Layout.Hidden` Similar to `XMonad.Layout.Minimize` but completely removes windows from the window set so `XMonad.Layout.BoringWindows` isn't necessary. Perfect companion to `XMonad.Layout.BinarySpacePartition` since it can be used to move windows to another part of the BSP tree. * `XMonad.Layout.IfMax` Provides `IfMax` layout, which will run one layout if there are maximum `N` windows on workspace, and another layout, when number of windows is greater than `N`. * `XMonad.Layout.PerScreen` Configure layouts based on the width of your screen; use your favorite multi-column layout for wide screens and a full-screen layout for small ones. * `XMonad.Layout.Stoppable` This module implements a special kind of layout modifier, which when applied to a layout, causes xmonad to stop all non-visible processes. In a way, this is a sledge-hammer for applications that drain power. For example, given a web browser on a stoppable workspace, once the workspace is hidden the web browser will be stopped. * `XMonad.Prompt.ConfirmPrompt` A module for setting up simple confirmation prompts for keybindings. * `XMonad.Prompt.Pass` This module provides 3 `XMonad.Prompt`s to ease passwords manipulation (generate, read, remove) via [pass][]. * `XMonad.Util.RemoteWindows` This module implements a proper way of finding out whether the window is remote or local. * `XMonad.Util.SpawnNamedPipe` A module for spawning a pipe whose `Handle` lives in the xmonad state. * `XMonad.Util.WindowState` Functions for saving per-window data. ### Miscellaneous Changes * Fix issue #9: `XMonad.Prompt.Shell` `searchPredicate` is ignored, defaults to `isPrefixOf` * Fix moveHistory when alwaysHighlight is enabled * `XMonad.Actions.DynamicWorkspaceGroups` now exports `addRawWSGroup` * Side tabs were added to the tabbed layout * `XMonad/Layout/IndependentScreens` now exports `marshallSort` * `XMonad/Hooks/UrgencyHook` now exports `clearUrgency` * Exceptions are now caught when finding commands on `PATH` in `Prompt.Shell` * Switched to `Data.Default` wherever possible * `XMonad.Layout.IndependentScreens` now exports `whenCurrentOn` * `XMonad.Util.NamedActions` now exports `addDescrKeys'` * EWMH `DEMANDS_ATTENTION` support added to `UrgencyHook` * New `useTransientFor` modifier in `XMonad.Layout.TrackFloating` * Added the ability to remove arbitrary workspaces
Bump PKGREVISION for hs-dlist-0.7.1.1
Fix X11 dependencies.
Bump PKGREVISION for hs-transformers-0.4.2.0
Bump PKGREVISION for hs-random-1.1
Bump PKGREVISION for hs-random-1.0.1.3
Import xmonad-contrib-0.11.3 as wm/xmonad-contrib, packaged for wip by degroote. Third party tiling algorithms, configurations and scripts to xmonad, a tiling window manager for X. For an introduction to building, configuring and using xmonad extensions, see "XMonad.Doc". In particular: "XMonad.Doc.Configuring", a guide to configuring xmonad "XMonad.Doc.Extending", using the contributed extensions library "XMonad.Doc.Developing", introduction to xmonad internals and writing your own extensions.