以优雅正统的方式将windows terminal添加到右键菜单
程序员文章站
2024-01-09 17:41:12
...
此片文章将windows terminal 简称为wt。
我将wt设置为默认打开ubuntu。
这里有两个目标:
1.单独点击Windows terminal的时候,要默认进入到用户“~”目录。
2.在文件夹中右键打开wt的时候,要默认进入此文件夹目录。
步骤:
1.在wt配置文件中添加
"startingDirectory": "//wsl$/Ubuntu/home/<你的用户名>"
2.修改注册表将wt添加到右键里
(1)在桌面新建temp.reg,写入以下内容:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\wt]
@="wt"
[HKEY_CLASSES_ROOT\Directory\Background\shell\wt\command]
@="C:\\Users\\<此处为你的用户名>\\AppData\\Local\\Microsoft\\WindowsApps\\wt.exe -p \"Ubuntu\" -d . "
写好后,双击运行这个reg文件。
完毕。