This command should enable a blue foreground color:
echo -ne "\033]10;#0000ff\007"
This command should enable a green background color:
echo -ne "\033]11;#00ff00\007"
This command should enable a red cursor color:
echo -ne "\033]12;#ff0000\007"
These two commands should print out the currently active color scheme:
echo -ne "\033]10;?\033\\"
echo -ne "\033]11;?\033\\"
This command should print out the current cursor position:
echo -ne "\033[6n"
This command should set the window title to "Test":
echo -ne "\033]2;Test\007" && sleep 10
Enter this command, then paste a word from the clipboard. The text
displayed on the terminal should contain the codes 200~
and 201~
:
echo -ne "\033[?2004h" && sleep 10
This command should trigger a notification:
echo -ne "\033]777;notify;Title;Body\033\\"