2020年7月28日火曜日

Windows Terminalの設定(起動時の位置他)[更新 2020年10月23日]

起動時の位置

設定ファイル(settings.json )に以下を追加すればいいのですが、追加する場所が悪かったようです。
"initialPosition": "200,80",

----------
    // 起動時の位置の指定
    "initialPosition": "200,80",
    "initialCols": 140,
    "initialRows": 35,

    // フルスクリーンで起動する
    // "launchMode":"maximized",

    // A profile specifies a command to execute paired with information about how it should look and feel.
    // Each one of them will appear in the 'New Tab' dropdown,
    //   and can be invoked from the commandline with `wt.exe -p xxx`
    // To learn more about profiles, visit https://aka.ms/terminal-profile-settings
    "profiles":
    {
        "defaults":
        {
            // Put settings here that you want to apply to all profiles.
            // "initialPosition": "200,80", ここに書いても機能しない
            // アクリルモードの透明度(acrylicOpacity)を変更
            "useAcrylic": true,
            "acrylicOpacity": 0.8,
            // 壁紙を設定
            // "backgroundImage": "C:\\Users\\hida\\Dropbox\\Windows\\Windows_Terminal\\Nikon.jpg",
            // "backgroundImageOpacity": 1.0,
            // "backgroundImageSeretchMode": "fill",
            "fontFace": "HackGenNerd Console",
            "fontSize": 12
        },


起動時のホームディレクトリをubuntuのホームにする

            {
                "guid": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}",
                "hidden": false,
                "name": "Ubuntu-20.04",
                "source": "Windows.Terminal.Wsl",
                "startingDirectory": "//wsl$/Ubuntu-20.04/home" // 追加
            },

 

アイコンの追加

            {
                "guid": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}",
                "hidden": false,
                "name": "Ubuntu-20.04",
                "source": "Windows.Terminal.Wsl",
                "startingDirectory": "//wsl$/Ubuntu-20.04/home" // 追加
               "icon" : "C:\\usr\\Ubuntu.ico"  // アイコンの設定
            },   

* 同じアイコンを別の場所に置くとうまく行かない。なぜ?


0 コメント: