Windows Terminal は Build 2019 で発表された Windows 向けの新たなターミナルです。マルチタブが導入されており、複数の PowerShell やコマンドプロンプトなどを切り替えながら利用できます。また、Windows10 v1809 から UNIX / Linux 互換の擬似コンソール ConPTY が導入されたため Bash などの Linux シェルを表示できます。せっかくなので Cygwin も利用できるように設定してみました。1
設定手順
Cygwin での準備
setup-x86_64.exe
もしくは apt-cyg
を利用して Cygwin に chere
をインストールします。Mintty で chere -h
を実行できればOKです:
$ chere -h
/usr/bin/chere version 1.4
Usage:
/usr/bin/chere -<iuxlrhv> [-lracnmpf12] [-t <term>] [-s <shell>]
[-d <display> ] [-o <options>] [-e <menutext>]
Adds the stated terminal/shell combination to the folder context menu
This allows you to right click a folder in Windows Explorer and open
a Cygwin shell in that folder.
Options:
i - Install
u - Uninstall
x - Freshen eXisting entries
l - List currently installed chere items
r - Read all chere registry entries to stdout
a - All users
c - Current user only
n - Be Nice and provide Control Panel uninstall option (Default)
m - Minimal, no Control Panel uninstall
p - Print regtool commands to stdout rather than running them
f - Force write (overwrite existing, ignore missing files)
1 - Start using registry one-liners. This doesn\'t work with ash,
tcsh or network shares.
2 - Start via bash script. Relies on windows to change directory,
and login scripts avoiding doing a cd /home/<username>
h - Help
v - Version
t <term> - Use terminal term. Supported terminals are:
cmd rxvt mintty xterm urxvt
s <shell> - Use the named shell. Supported shells are:
ash bash cmd dash fish mksh pdksh posh tcsh zsh passwd
d <display> - DISPLAY to use (xterm, urxvt). Defaults to :0.
Set to env to use the runtime environment variable.
o <options> - Add <options> to the terminal startup command.
If more than one option is specified, they should all be
contained within a single set of quotes.
e <menutext> - Use <menutext> as the context menu text.
See the man page for more detail.
読んでの通り、特定のフォルダで Cygwin ターミナルを開始するためのユーティリティです。bash.exe
を起動するだけでは Cygwin の機能を利用できないため、このツールをインストールしています。
Windows Terminal での設定
-
PowerShell を起動して適当な GUID を取得します。
[guid]::NewGuid()
-
Windows Terminal を起動し、[Settings] から
settings.json
を開きます。 -
"profiles" : [ { ... } ]
の末尾に以下のオブジェクトを追記して保存します。"guid"
の値は先ほど取得した GUID に差し替えてください:profiles.json{ "guid": "{22cbae05-ab97-4c97-a2ea-6feaa2494f7a}", "name": "Cygwin", "suppressApplicationTitle": true, "commandline": "C:\\cygwin64\\bin\\bash.exe /bin/xhere /bin/bash ~", "icon": "C:\\cygwin64\\Cygwin-Terminal.ico", "useAcrylic" : true, "acrylicOpacity" : 0.6 }
-
新規タブの選択肢に
Cygwin
が追加されました!
※ここでは同様の手順で Git Bash も 追加しています。
参考リンク
- Windows で VS Code の integrated terminal を cygwin64 の bash にする
- Windows Terminalでもmsys2を使おう
- Windows Terminal で Git Bash を表示する
-
ちなみに Ansible は Python-pip 導入後に pip からインストールできるほか、
setup-x86_46.exe
からでもインストール可能です。 ↩