開啟應用程式 (常用的)

常用的應用程式

按鍵組合 功能 執行指令
Alt + Shift + f 開啟檔案管理器 cosmic-files
Alt + Shift + g 開啟檔案管理器 thunar
Alt + Shift + e 開啟文字編輯器 cosmic-edit
Alt + Shift + b 開啟網頁瀏覽器 firefox --new-tab about:blank
Alt + Shift + s 開啟系統設定 cosmic-settings
    (
        modifiers: [
            Alt,
            Shift,
        ],
        key: "f",
        description: Some("LaunchFileManager"),
    ): Spawn("cosmic-files"),
    (
        modifiers: [
            Alt,
            Shift,
        ],
        key: "g",
        description: Some("LaunchFileManager_1"),
    ): Spawn("thunar"),
    (
        modifiers: [
            Alt,
            Shift,
        ],
        key: "e",
        description: Some("LaunchTextEditor"),
    ): Spawn("cosmic-edit"),
    (
        modifiers: [
            Alt,
            Shift,
        ],
        key: "b",
        description: Some("LaunchWebBrowser"),
    ): Spawn("firefox --new-tab about:blank"),
    (
        modifiers: [
            Alt,
            Shift,
        ],
        key: "s",
        description: Some("LaunchSystemSettings"),
    ): Spawn("cosmic-settings"),

常用的應用程式 (預設)

按鍵組合 功能 執行指令
Win + f 開啟檔案管理器 xdg-open ~
Win + b 開啟網頁瀏覽器 xdg-open http://
Win + t 開啟終端機 cosmic-term
    HomeFolder: "xdg-open ~",
    WebBrowser: "xdg-open http://",
    Terminal: "cosmic-term",
    (modifiers: [Super], key: "b"): System(WebBrowser),
    (modifiers: [Super], key: "f"): System(HomeFolder),
    (modifiers: [Super], key: "t"): System(Terminal),

不過目前「Win + b」被我停用了

    (
        modifiers: [
            Super,
        ],
        key: "b",
    ): Disable,

而「Win + f」改成「Fullscreen

    (
        modifiers: [
            Super,
        ],
        key: "f",
    ): Fullscreen,

而「Win + t」改成「ToggleSticky

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