web-dev-qa-db-fra.com

Comment changer la couleur de fond de xterm?

comment changer la couleur de fond? J'ai sélectionné Profile > Background > solid color, mais où puis-je choisir la couleur?

14
ziiweb

Puisque vous semblez parler de Terminal, avez-vous désactivé "Utiliser les couleurs du thème système" sous Couleurs? Une fois que vous avez fait cela, vous pouvez choisir une couleur d’arrière-plan, toujours sous l’onglet Couleurs. L'onglet Arrière-plan semble ne permettre que la sélection d'une image (ou d'une transparence), ce qui m'a également déclenché.

1
Paul

Il existe deux méthodes bien supportées pour modifier la couleur d'arrière-plan d'un xterm (rappelez-vous xterm! = Terminal).

A. Définissez la couleur lorsque vous créez le xterm: E.g., 

% xterm -bg yellow &

OR

B. Modifiez .Xdefaults pour inclure une spécification de couleur, comme suit: XTerm * background: yellow

% vi ~/.Xdefaults  (pick your favorite editor)

Cela peut aussi être fait en tapant ce qui suit dans un xterm:

% cat >> ~/.Xdefaults  <RETURN>
XTerm*background:yellow<RETURN>
<CTRL-D>

Quelle que soit la manière dont vous modifiez .Xdefaults, la modification ne prendra effet que si:

  • xrdb ~/.Xdefaults
  • votre serveur X est redémarré, probablement le moyen le plus simple de le faire est de redémarrer votre ordinateur ou de vous déconnecter.

Ensuite, il sera réglé une fois pour toutes.

32
Paul

Je suggère d’inverser les couleurs de premier plan et d’arrière-plan par défaut en utilisant

xterm -rv
12
user3600441

J'utilise les couleurs suivantes et la configuration de la police pour xterm. Ajoutez le suivant à votre fichier ".Xresources" dans votre répertoire personnel.

XTerm*faceName: Bitstream Vera Serif Mono
xterm*faceSize: 11
xterm*vt100*geometry: 80x60
xterm*saveLines: 16384
xterm*loginShell: true
xterm*charClass: 33:48,35:48,37:48,43:48,45-47:48,64:48,95:48,126:48
xterm*termName: xterm-color
xterm*eightBitInput: false

!BLK Cursor
#define _color0        #000d18
#define _color8        #000d18
!RED Tag
#define _color1        #e89393
#define _color9        #e89393
!GRN SpecialKey
#define _color2        #9ece13
#define _color10       #9ece13
!YEL Keyword
#define _color3        #f0dfaf
#define _color11       #f0dfaf
!BLU Number
#define _color4        #8cd0d3
#define _color12       #8cd0d3
!MAG Precondit
#define _color5        #c0bed1
#define _color13       #c0bed1
!CYN Float
#define _color6        #dfaf8f
#define _color14       #dfaf8f
!WHT Search
#define _color7        #efefef
#define _color15       #efefef
!FMT Include, StatusLine, ErrorMsg
#define _colorBD       #ffcfaf
#define _colorUL       #ccdc90
#define _colorIT       #80d4aa
!TXT Normal, Normal, Cursor
#define _foreground    #dcdccc
#define _background    #1f1f1f
#define _cursorColor   #8faf9f
URxvt*color0         : _color0
URxvt*color1         : _color1
URxvt*color2         : _color2
URxvt*color3         : _color3
URxvt*color4         : _color4
URxvt*color5         : _color5
URxvt*color6         : _color6
URxvt*color7         : _color7
URxvt*color8         : _color8
URxvt*color9         : _color9
URxvt*color10        : _color10
URxvt*color11        : _color11
URxvt*color12        : _color12
URxvt*color13        : _color13
URxvt*color14        : _color14
URxvt*color15        : _color15
URxvt*colorBD        : _colorBD
URxvt*colorIT        : _colorIT
URxvt*colorUL        : _colorUL
URxvt*foreground     : _foreground
URxvt*background     : _background
URxvt*cursorColor    : _cursorColor
XTerm*color0         : _color0
XTerm*color1         : _color1
XTerm*color2         : _color2
XTerm*color3         : _color3
XTerm*color4         : _color4
XTerm*color5         : _color5
XTerm*color6         : _color6
XTerm*color7         : _color7
XTerm*color8         : _color8
XTerm*color9         : _color9
XTerm*color10        : _color10
XTerm*color11        : _color11
XTerm*color12        : _color12
XTerm*color13        : _color13
XTerm*color14        : _color14
XTerm*color15        : _color15
XTerm*colorBD        : _colorBD
XTerm*colorIT        : _colorIT
XTerm*colorUL        : _colorUL
XTerm*foreground     : _foreground
XTerm*background     : _background
XTerm*cursorColor    : _cursorColor

Une fois le fichier enregistré, exécutez la procédure suivante pour enregistrer les modifications:

xrdb -merge ~/.Xresources
8
Arahkun