系統選單

開啟「應用程式主選單」

按鍵組合 功能 執行指令
Alt + F1 開啟「應用程式主選單」 System(AppLibrary) (cosmic 內建)
    AppLibrary: "cosmic-app-library",
    (
        modifiers: [
            Alt,
        ],
        key: "F1",
    ): System(AppLibrary),

開啟「應用程式啟動選單」

按鍵組合 功能 執行指令
Alt + F2 開啟「應用程式啟動選單」 System(Launcher) (cosmic 內建)
Win + grave 開啟「應用程式啟動選單」 System(Launcher) (cosmic 內建)

grave 指的是「`」,在「~」底下。

    Launcher: "cosmic-launcher",
    (
        modifiers: [
            Alt,
        ],
        key: "F2",
    ): System(Launcher),
    (
        modifiers: [
            Super,
        ],
        key: "grave",
    ): System(Launcher),

開啟「工作空間切換選單」

按鍵組合 功能 執行指令
Win + Tab 開啟「工作空間切換選單」 System(WorkspaceOverview) (cosmic 內建)
    WorkspaceOverview: "cosmic-workspaces",
    (
        modifiers: [
            Super,
        ],
        key: "Tab",
    ): System(WorkspaceOverview),