xtermc is a simple C program
that allows to change the appearance of a running XTerm terminal.
This program currently allows you to change the title of the terminal, as well as the text color, background color, and cursor color.
Run the program with the following options:
xtermc [options]-t: Set the title of the terminal.-f: Set the foreground (text) color.-b: Set the background color.-c: Set the cursor color.
Colors are specified either as strings (e.g., black or red)
or as RGB values in hex (e.g. #000 or #3124f7),
with or without the initial # character.
Set the title to the hostname:
xtermc -t "$(hostname)"Set the text color to red:
xtermc -f redSet the background color to blue:
xtermc -b 00fSet the colors of the Solarized theme:
xterm -f #839496 -b #fdf6e3This code is licensed under the General Public License, version 3 or later. See the LICENSE file for the license text.