Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. switchNthLastFocused :: TopicConfig -> Int -> X ()

    xmonad-contrib XMonad.Actions.TopicSpace

    Switch to the Nth last focused topic or fall back to the defaultTopic.

  2. switchNthLastFocusedByScreen :: TopicConfig -> Int -> X ()

    xmonad-contrib XMonad.Actions.TopicSpace

    Like switchNthLastFocused, but only consider topics that used to be on the current screen. For example, the following function allows one to toggle between the currently focused and the last used topic, while treating different screens completely independently from one another.

    toggleTopicScreen = switchNthLastFocusedByScreen myTopicConfig 1
    

  3. switchNthLastFocusedExclude :: [Topic] -> TopicConfig -> Int -> X ()

    xmonad-contrib XMonad.Actions.TopicSpace

    Like switchNthLastFocused, but also filter out certain topics.

  4. module XMonad.Hooks.RefocusLast

    Provides hooks and actions that keep track of recently focused windows on a per workspace basis and automatically refocus the last window on loss of the current (if appropriate as determined by user specified criteria).

  5. data RefocusLastLayoutHook a

    xmonad-contrib XMonad.Hooks.RefocusLast

    A LayoutModifier that updates the RecentWins for a workspace upon relayout.

  6. RefocusLastLayoutHook :: RefocusLastLayoutHook a

    xmonad-contrib XMonad.Hooks.RefocusLast

    No documentation available.

  7. newtype RefocusLastToggle

    xmonad-contrib XMonad.Hooks.RefocusLast

    A newtype on Bool to act as a universal toggle for refocusing.

  8. RefocusLastToggle :: Bool -> RefocusLastToggle

    xmonad-contrib XMonad.Hooks.RefocusLast

    No documentation available.

  9. refocusLastLayoutHook :: l a -> ModifiedLayout RefocusLastLayoutHook l a

    xmonad-contrib XMonad.Hooks.RefocusLast

    Records a workspace's recently focused windows into extensible state upon relayout. Potentially a less wasteful alternative to refocusLastLogHook, as it does not run on WM_NAME propertyNotify events.

  10. refocusLastLogHook :: X ()

    xmonad-contrib XMonad.Hooks.RefocusLast

    A log hook recording the current workspace's most recently focused windows into extensible state.

Page 251 of many | Previous | Next