256 renk istemi Zsh


14

İstemimi 256 renkte renklendirmek için nasıl ayarlayabilirim? Ben bash istemine eşdeğer bir arıyorum:

  local DEFAULT="\[\033[0;39m\]"
  local ROOK="\[\033[38;5;24m\]"
  PS1="${ROOK}\$${DEFAULT} "

1
Bakıp oy vermeyen herkese utanç!
phunehehe

export PS1='%{[38;5;24m%};%{[0m%} 'tam olarak istediğim şeydi.
Sardathrion - SE kötüye karşı

Yanıtlar:


9

İlk olarak, terminalinizin 256 rengi desteklediğinden emin olun. İkinci olarak, PS1doğru kodla bir değişken kullanın , örneğin:

export PS1='%{^[[01;38;05;214;48;05;123m%}%m%{^[[0m%} '

Bu, ana bilgisayar adının kalın, 214 ön plan rengi ve 123 arka plan rengiyle bir istem verecektir.

+ Ve + ^[yazarak "girildiğini" unutmayın . Tüm özellikler listesi için bu " Bu 256 Renk Şey " adlı mükemmel makaleye bakın .CtrlvCtrl[


Evet, urxvt 256 renk etkinleştirme terminalini kullanıyorum.
Sardathrion - SE kötüye karşı

Terminalimin 256 rengi destekleyip desteklemediğini nasıl doğrulayabilirim? Örneğin, gnome terminali (Ubuntu) 256 rengi destekliyor mu?
Amelio Vazquez-Reina

Bu komut dosyasını kullanın (tam makale frexx.de/xterm-256-notes ). gnome-terminal256 rengi destekler.
phunehehe

1
Bağlantının sunucusu bozuldu (502 hatalı ağ geçidi).
Pikrass

1
@Pikrass 404 bulunamadı.
Totor

14
export PS1='%F{214}%K{123}%m%k%f'

Gönderen man zshmisc:

   %F (%f)
          Start (stop) using a different foreground colour, if supported by the terminal.  The colour may be specified two ways: either as a numeric argument, as normal, or by a sequence in braces following the %F, for example %F{red}.  In the latter case the values allowed are as described for the fg zle_highlight attribute; see  Char
          acter Highlighting in zshzle(1).  This means that numeric colours are allowed in the second format also.

   %K (%k)
          Start (stop) using a different bacKground colour.  The syntax is identical to that for %F and %f.

Ayrıca denemek için şöyle kullanılabilir:

$> print -P '%F{214}%K{123}%m%k%f'
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.