71 lines
1.2 KiB
Text
71 lines
1.2 KiB
Text
// https://github.com/pop-os/cosmic-settings/blob/master/cosmic-settings/src/pages/input/keyboard/shortcuts/nav.rs#L76
|
|
// For action types
|
|
{
|
|
(
|
|
modifiers: [
|
|
Super,
|
|
],
|
|
key: "l",
|
|
): Focus(Right),
|
|
(
|
|
modifiers: [
|
|
Super,
|
|
],
|
|
key: "j",
|
|
): NextWorkspace,
|
|
(
|
|
modifiers: [
|
|
Super,
|
|
],
|
|
key: "h",
|
|
): Focus(Left),
|
|
(
|
|
modifiers: [
|
|
Super,
|
|
],
|
|
key: "k",
|
|
): PreviousWorkspace,
|
|
(
|
|
modifiers: [
|
|
Super,
|
|
],
|
|
key: "Return",
|
|
): Spawn("alacritty"),
|
|
(
|
|
modifiers: [
|
|
Super,
|
|
],
|
|
key: "space",
|
|
description: Some("launcher"),
|
|
): System(Launcher),
|
|
(
|
|
modifiers: [
|
|
Super,
|
|
],
|
|
): System(WorkspaceOverview),
|
|
(
|
|
modifiers: [
|
|
Super,
|
|
],
|
|
key: "Right",
|
|
): Disable,
|
|
(
|
|
modifiers: [
|
|
Super,
|
|
],
|
|
key: "Down",
|
|
): Disable,
|
|
(
|
|
modifiers: [
|
|
Super,
|
|
],
|
|
key: "Left",
|
|
): Disable,
|
|
(
|
|
modifiers: [
|
|
Super,
|
|
],
|
|
key: "Up",
|
|
): Disable,
|
|
|
|
}
|