Hoogle Search
Within LTS Haskell 24.38 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
withLastMinimized :: (Window -> X ()) -> X ()xmonad-contrib XMonad.Actions.Minimize Perform an action with last minimized window on current workspace or do nothing if there is no minimized windows on current workspace
withLastMinimized' :: (Maybe Window -> X ()) -> X ()xmonad-contrib XMonad.Actions.Minimize Like withLastMinimized but the provided action is always invoked with a 'Maybe Window', that will be nothing if there is no last minimized window.
-
xmonad-contrib XMonad.Actions.RepeatAction Runs the last remembered action. Be careful not to include this action in the remembered actions!
getLastFocusedTopics :: X [Topic]xmonad-contrib XMonad.Actions.TopicSpace Deprecated: Use XMonad.Hooks.WorkspaceHistory.workspaceHistory (re-exported by this module) instead
reverseLastFocusedTopics :: X ()xmonad-contrib XMonad.Actions.TopicSpace Reverse the list of "last focused topics"
setLastFocusedTopic :: TopicConfig -> Topic -> (Topic -> Bool) -> X ()xmonad-contrib XMonad.Actions.TopicSpace Deprecated: Use XMonad.Hooks.WorkspaceHistory instead
shiftNthLastFocused :: Int -> X ()xmonad-contrib XMonad.Actions.TopicSpace Shift the focused window to the Nth last focused topic, or fall back to doing nothing.
switchNthLastFocused :: TopicConfig -> Int -> X ()xmonad-contrib XMonad.Actions.TopicSpace Switch to the Nth last focused topic or fall back to the defaultTopic.
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
switchNthLastFocusedExclude :: [Topic] -> TopicConfig -> Int -> X ()xmonad-contrib XMonad.Actions.TopicSpace Like switchNthLastFocused, but also filter out certain topics.