開啟應用程式 (常用的)

常用的應用程式

按鍵組合 功能 執行指令
Alt + Shift + f 開啟檔案管理器 thunar
Alt + Shift + g 開啟檔案管理器 pcmanfm-qt
Alt + Shift + e 開啟文字編輯器 mousepad
Alt + Shift + b 開啟網頁瀏覽器 firefox --new-tab about:blank
Alt + Shift + s 開啟系統設定 cosmic-settings
    (
        modifiers: [
            Alt,
            Shift,
        ],
        key: "f",
        description: Some("File_Manager_1"),
    ): Spawn("thunar"),
    (
        modifiers: [
            Alt,
            Shift,
        ],
        key: "g",
        description: Some("File_Manager_2"),
    ): Spawn("pcmanfm-qt"),
    (
        modifiers: [
            Alt,
            Shift,
        ],
        key: "e",
        description: Some("Text_Editor_1"),
    ): Spawn("mousepad"),
    (
        modifiers: [
            Alt,
            Shift,
        ],
        key: "b",
        description: Some("Web_Browser_1"),
    ): Spawn("firefox --new-tab about:blank"),
    (
        modifiers: [
            Alt,
            Shift,
        ],
        key: "s",
        description: Some("System_Settings_1"),
    ): Spawn("cosmic-settings"),

常用的應用程式 (預設)

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