diff options
| author | Josh Rahm <rahm@google.com> | 2025-03-07 10:22:30 -0700 |
|---|---|---|
| committer | Josh Rahm <rahm@google.com> | 2025-03-07 10:22:30 -0700 |
| commit | f466c55f363f43cd00f9fe9f04595920d73823e3 (patch) | |
| tree | 417d450a52d1989e2f04fe88c8c54bba11523b96 /src/Rahm/Desktop/Keys.hs | |
| parent | 61e8ccf2eab183587605cce4c5126258571b5294 (diff) | |
| download | rde-f466c55f363f43cd00f9fe9f04595920d73823e3.tar.gz rde-f466c55f363f43cd00f9fe9f04595920d73823e3.tar.bz2 rde-f466c55f363f43cd00f9fe9f04595920d73823e3.zip | |
Rename dzen selection to workspaceWheel
Diffstat (limited to 'src/Rahm/Desktop/Keys.hs')
| -rw-r--r-- | src/Rahm/Desktop/Keys.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Rahm/Desktop/Keys.hs b/src/Rahm/Desktop/Keys.hs index 2085c22..9a6d895 100644 --- a/src/Rahm/Desktop/Keys.hs +++ b/src/Rahm/Desktop/Keys.hs @@ -60,7 +60,6 @@ import Rahm.Desktop.Common ) import Rahm.Desktop.DMenu (runDMenu) import qualified Rahm.Desktop.Dragging as D -import Rahm.Desktop.WorkspaceWheel (displayDzenSelection, displayDzenSelectionAtPoint, displayDzenSelectionInCenter) import Rahm.Desktop.History ( historyBack, historyForward, @@ -119,6 +118,7 @@ import Rahm.Desktop.SwapMaster (swapMaster) import Rahm.Desktop.Theater ( restoreTheater, ) +import Rahm.Desktop.WorkspaceWheel (displayWorkspaceWheel, displayWorkspaceWheelAtPoint, displayWorkspaceWheelInCenter) import Rahm.Desktop.Workspaces ( accompaningWorkspace, next, @@ -1101,12 +1101,12 @@ bindings = do bind xK_o $ do justMod $ - doc "Select a workspace using dzen" displayDzenSelectionInCenter + doc "Select a workspace using dzen" displayWorkspaceWheelInCenter bind button10 $ do noMod $ doc "Select a workspace using dzen" $ do - noWindow displayDzenSelection + noWindow displayWorkspaceWheel bind button14 $ do noMod $ @@ -1213,7 +1213,7 @@ bindings = do noMod $ doc "Show dzen selection" $ noWindow $ do - displayDzenSelection + displayWorkspaceWheel escape bind button14 $ @@ -1307,7 +1307,7 @@ cornersConfig :: Map ScreenCorner (X ()) cornersConfig = Map.fromList [ ( SCUpperLeft, - displayDzenSelection + displayWorkspaceWheel ) ] |