2024-09-02 / @syui

windows / windows

windows terminalでsixelを使う

現時点ではwindows terminalのpreview 1.22で使用できるようになりました。

https://github.com/microsoft/terminal/releases

最も手っ取り早くlibsixelをbuildする方法はmsys2を使うことです。

$ scoop install msys2
# ここでmsys2を起動
$ msys2

$ pacman -S git make gcc
$ git clone https://github.com/saitoha/libsixel
$ cd libsixel
$ ./configure
$ make
$ make install

$ ls ./converters/img2sixel.exe
$ which img2sixel.exe

# 画像を表示
$ img2sixel.exe syui.png

$ exit

ref : https://devblogs.microsoft.com/commandline/windows-terminal-preview-1-22-release/