urxvt
2.6 en 2004 agregó soporte para la función de colores dinámicos de xterm . En Secuencias de control XTerm , esto es OSC
11. OSC
10 establece el color de texto predeterminado. El registro de cambios mencionó parte del cambio:
2.6 Fri Apr 2 03:24:10 CEST 2004
- minor doc corrections.
- WARNING: changed menu sequence from ESC ] 10 to ESC ] 703 to
avoid clashes with xterm.
- changed OSC701/OSC702 sequence to return standard escaped reports.
- xterm-compat: make set window colour and other requests report
window colour when arg is "?".
pero el código fuente cuenta la historia, como siempre:
/*
* XTerm escape sequences: ESC ] Ps;Pt (ST|BEL)
* 0 = change iconName/title
* 1 = change iconName
* 2 = change title
* 4 = change color
+ * 10 = change fg color
+ * 11 = change bg color
* 12 = change text color
* 13 = change mouse foreground color
* 17 = change highlight character colour
@@ -2949,20 +3236,21 @@
* 50 = change font
*
* rxvt extensions:
- * 10 = menu (may change in future)
* 20 = bg pixmap
* 39 = change default fg color
* 49 = change default bg color
* 55 = dump scrollback buffer and all of screen
* 701 = change locale
* 702 = find font
+ * 703 = menu
*/
El manual rxvt(7)
no proporciona información útil:
Comandos del sistema operativo XTerm
"ESC] Ps; Pt ST"
Establecer parámetros XTerm. ST de 8 bits: 0x9c, secuencia ST de 7 bits: ESC \
(0x1b, 0x5c), el terminador compatible con versiones anteriores BEL (0x07) también es
aceptado. cualquier octeto se puede escapar con el prefijo SYN (0x16,
^ V).
Este sencillo ejemplo establece los colores predeterminados de primer plano (texto) y de fondo :
#!/bin/sh
printf '\033]10;red\007'
printf '\033]11;green\007'
Al igual xterm
, estos colores predeterminados pueden ser anulados temporalmente por colores "ANSI".
La función se puede deshabilitar al xterm
usar el dynamicColors
recurso. A diferencia xterm
, urxvt
no tiene configuración de recursos para la función.
VTE también implementa la función, y tampoco la documenta. urxvt
al menos comenzó con la documentación de rxvt
. Para VTE, debe leer el código fuente. La característica relevante en se vteseq.cc
ve así:
/* Change the default background cursor, BEL terminated */
static void
vte_sequence_handler_change_background_color_bel (VteTerminalPrivate *that, GValueArray *params)
{
vte_sequence_handler_change_special_color_internal (that, params,
VTE_DEFAULT_BG, -1, 11, BEL);
}
/* Change the default background cursor, ST terminated */
static void
vte_sequence_handler_change_background_color_st (VteTerminalPrivate *that, GValueArray *params)
{
vte_sequence_handler_change_special_color_internal (that, params,
VTE_DEFAULT_BG, -1, 11, ST);
}
Ese código se remonta a algún momento en 2003 (cuando fue escrito en C):
commit f39e281529827f68fd0e9bba41785d66a21efc1c
Author: Nalin Dahyabhai <nalin@src.gnome.org>
Date: Wed Jan 22 21:35:22 2003 +0000
accept OSC{number};{string}ST as set-text-parameters, per XTerm docs (part
* src/caps.c: accept OSC{number};{string}ST as set-text-parameters, per XTerm
docs (part of #104154).
* src/keymap.c: revert change to prepend "1;" to keys with modifiers (#104139).
Otras lecturas: