開啟應用程式 (Terminal)

開啟 Terminal

按鍵組合 功能 執行指令
Alt + Enter 開啟 Terminal cosmic-term
Alt + Shift + a 開啟 Terminal cosmic-term
Alt + Ctrl + a 開啟 Terminal xfce4-terminal
Alt + Shift + t 開啟 Terminal qterminal
Alt + Ctrl + t 開啟 Terminal lxterminal
    (
        modifiers: [
            Alt,
        ],
        key: "Return",
        description: Some("LaunchTerminal"),
    ): Spawn("cosmic-term"),
    (
        modifiers: [
            Alt,
            Shift,
        ],
        key: "a",
        description: Some("LaunchTerminal"),
    ): Spawn("cosmic-term"),
    (
        modifiers: [
            Alt,
            Ctrl,
        ],
        key: "a",
        description: Some("LaunchTerminal_2"),
    ): Spawn("xfce4-termianl"),
    (
        modifiers: [
            Alt,
            Shift,
        ],
        key: "t",
        description: Some("LaunchTerminal_3"),
    ): Spawn("qterminal"),
    (
        modifiers: [
            Alt,
            Ctrl,
        ],
        key: "t",
        description: Some("LaunchTerminal_4"),
    ): Spawn("lxterminal"),

開啟 Terminal (預設)

按鍵組合 功能 執行指令
Win + t 開啟 Terminal cosmic-term
    Terminal: "cosmic-term",
    (modifiers: [Super], key: "t"): System(Terminal),

不過目前「Win + t」被我改成「ToggleSticky」。

    (
        modifiers: [
            Super,
        ],
        key: "t",
    ): ToggleSticky,