termius使用
2022年2月17日大约 1 分钟
粘贴:ctrl+shit+v
同理
termius使用ssh教程
右键添加到菜单
参考:https://bun.plus/posts/beautify-windows-terminal-and-start-it-through-the-right-click-menu

通过资源管理器的右键快捷菜单快速启动 Windows Terminal,免去每次都通过 cd
command输入路径的繁琐操作,我们需要modify注册表实现。
配置注册表
首先把 Windows Terminal 的图标保存到本地:右键另存(防止 GitHub 部分资源被墙无法下载所以提供的是本站的备份,原始文件在这里)
接着打开文本编辑器,创建一个注册表文件(后缀名为 .reg
),内容如下:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\wt]
@="Open with Windows Terminal"
"Icon"="E:\\icons\\terminal.ico"
[HKEY_CLASSES_ROOT\Directory\Background\shell\wt\command]
@="C:\\Users\\修改为你的用户名\\AppData\\Local\\Microsoft\\WindowsApps\\wt.exe"
图标:https://raw.githubusercontent.com/microsoft/terminal/master/res/terminal.ico
注意将第5行 "Icon"
后面的内容替换为保存图标的完整路径,路径以\\
分割文件夹;以及最后一行写入当前用户的用户名。
保存后双击该文件,即可将 Windows Terminal 添加到右键菜单。