38 lines
746 B
Markdown
38 lines
746 B
Markdown
|
+++
|
||
|
date = "2024-09-02"
|
||
|
tags = ["windows"]
|
||
|
title = "windows terminalでsixelを使う"
|
||
|
+++
|
||
|
|
||
|
現時点ではwindows terminalの`preview 1.22`で使用できるようになりました。
|
||
|
|
||
|
https://github.com/microsoft/terminal/releases
|
||
|
|
||
|
![](/img/windows_terminal_sixel.png)
|
||
|
|
||
|
最も手っ取り早くlibsixelをbuildする方法はmsys2を使うことです。
|
||
|
|
||
|
```sh
|
||
|
$ 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/
|
||
|
|