Copyright | (c) 2013 Dmitri Iouchtchenko |
---|---|
License | BSD3-style (see LICENSE) |
Maintainer | Dmitri Iouchtchenko <johnnyspoon@gmail.com> |
Stability | unstable |
Portability | unportable |
Safe Haskell | None |
Language | Haskell98 |
Keeps track of workspace viewing order.
Synopsis
- workspaceHistoryHook :: X ()
- workspaceHistory :: X [WorkspaceId]
- workspaceHistoryByScreen :: X [(ScreenId, [WorkspaceId])]
- workspaceHistoryWithScreen :: X [(ScreenId, WorkspaceId)]
- workspaceHistoryTransaction :: X () -> X ()
Usage
To record the order in which you view workspaces, you can use this
module with the following in your ~/.xmonad/xmonad.hs
:
import XMonad.Hooks.WorkspaceHistory (workspaceHistoryHook)
Then add the hook to your logHook
:
main = xmonad $ def { ... , logHook = ... >> workspaceHistoryHook >> ... , ... }
To make use of the collected data, a query function is provided.
workspaceHistoryHook :: X () Source #
A logHook
that keeps track of the order in which workspaces have
been viewed.
Querying
workspaceHistory :: X [WorkspaceId] Source #
A list of workspace tags in the order they have been viewed, with the most recent first. No duplicates are present, but not all workspaces are guaranteed to appear, and there may be workspaces that no longer exist.
workspaceHistoryByScreen :: X [(ScreenId, [WorkspaceId])] Source #
Handling edits
workspaceHistoryTransaction :: X () -> X () Source #