From 3e160736c36c0c0bb2e7027ccd3c7d3a5118f8d4 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Fri, 6 Dec 2024 12:30:07 -0500 Subject: [PATCH] feat: shift+alt+tab --- config/src/shortcuts/action.rs | 2 ++ data/system_actions.ron | 2 ++ 2 files changed, 4 insertions(+) diff --git a/config/src/shortcuts/action.rs b/config/src/shortcuts/action.rs index 4638460..1b4e407 100644 --- a/config/src/shortcuts/action.rs +++ b/config/src/shortcuts/action.rs @@ -173,6 +173,8 @@ pub enum System { WebBrowser, /// Opens the (alt+tab) window switcher WindowSwitcher, + /// Opens the (alt+shift+tab) window switcher + WindowSwitcherPrevious, /// Opens the workspace overview WorkspaceOverview, } diff --git a/data/system_actions.ron b/data/system_actions.ron index 7eaba77..c87a8be 100644 --- a/data/system_actions.ron +++ b/data/system_actions.ron @@ -37,6 +37,8 @@ WebBrowser: "xdg-open http://", /// Opens the (alt+tab) window switcher WindowSwitcher: "cosmic-launcher alt-tab", + /// Opens the (alt+shift+tab) window switcher + WindowSwitcherPrevious: "cosmic-launcher shift-alt-tab", /// Opens the workspace overview WorkspaceOverview: "cosmic-workspaces", }