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", }