feat: alt-shift-tab

This commit is contained in:
Ashley Wulber 2024-12-11 21:20:55 -05:00 committed by Ashley Wulber
parent 0072b79885
commit 72ab1feb63
4 changed files with 8 additions and 1 deletions

View file

@ -537,6 +537,7 @@ fn all_system_actions() -> &'static [Action] {
Action::System(SystemAction::VolumeRaise),
Action::System(SystemAction::WebBrowser),
Action::System(SystemAction::WindowSwitcher),
Action::System(SystemAction::WindowSwitcherPrevious),
Action::System(SystemAction::WorkspaceOverview),
Action::Terminate,
Action::ToggleOrientation,
@ -665,6 +666,9 @@ fn localize_action(action: &Action) -> String {
SystemAction::VolumeRaise => fl!("system-shortcut", "volume-raise"),
SystemAction::WebBrowser => fl!("system-shortcut", "web-browser"),
SystemAction::WindowSwitcher => fl!("system-shortcut", "window-switcher"),
SystemAction::WindowSwitcherPrevious => {
fl!("system-shortcut", "window-switcher-previous")
}
SystemAction::WorkspaceOverview => fl!("system-shortcut", "workspace-overview"),
},

View file

@ -80,6 +80,7 @@ pub const fn actions() -> &'static [Action] {
Action::System(SystemAction::Launcher),
Action::System(SystemAction::WorkspaceOverview),
Action::System(SystemAction::WindowSwitcher),
Action::System(SystemAction::WindowSwitcherPrevious),
Action::System(SystemAction::LockScreen),
Action::System(SystemAction::VolumeLower),
Action::System(SystemAction::VolumeRaise),