2014 m. gegužės 6 d., antradienis

Linux terminalo spalvos ir kodai

Terminalo nustatymus galima keisti dokumente:
gedit ~/.bashrc

Kaip įjungti terminalo spalvas?Spaudžiam Ctrl+F ir ieškom 
#force_color_prompt=yes” eilutės
Nutrinam "#", ir išsaugom.

Bashrc perkrovimas iš terminalo.
source ~/.bashrc
. ~/.bashrc  
Terminalo spalvų kodai.
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;39m\]  - balta
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;31m\] - raudona
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;33m\] - geltona
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;34m\] - mėlina


Terminalo spalvos kodai.

Pagrindiniai terminalo kodai.

Teksto ir fono spalvinimo pvz.

#man colors
export LESS_TERMCAP_mb=$'\E[01;31m'
export LESS_TERMCAP_md=$'\E[01;37m'
export LESS_TERMCAP_me=$'\E[0m'
export LESS_TERMCAP_se=$'\E[0m'
export LESS_TERMCAP_so=$'\E[01;44;33m'
export LESS_TERMCAP_ue=$'\E[0m'
export LESS_TERMCAP_us=$'\E[01;32m'

#bash colors
bold=$(tput bold)
normal=$(tput sgr0)
RED=$'\e[0;31m'
GREEN=$'\e[0;32m'
YELLOW=$'\e[1;33m'
CYAN=$'\e[0;36m'
PURPLE=$'\033[0;35m'

NC=$'\033[0m' # No Color

Paimta Iš .bashrc.

Literatūra:
http://excid3.com/blog/ubuntu-color-terminal/
http://linuxcommand.org/tlcl.php