1
0
hugo/content/blog/2024-09-02-ws-sixel.md
2024-12-21 23:10:54 +09:00

746 B

+++ date = "2024-09-02" tags = ["windows"] title = "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/