1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-07-31 06:07:44 +00:00

Oneliner script to set tab color in a Windows Terminal (#1031)

Simple oneliner script to set color for Windows Terminal.

---------

Co-authored-by: Darren Schroeder <343840+fdncred@users.noreply.github.com>
This commit is contained in:
rutexd 2025-02-03 23:58:47 +01:00 committed by GitHub
parent 32baeb7995
commit b45fd953c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,2 @@
# Simple script that sets color of a windows terminal (https://github.com/microsoft/terminal).
def set-tab-color [idx: int] { ansi -e ( ["2;15;", ($idx | into string), (",|") ] | str join ) }