Move colors variables from zlogin to zshenv.
This commit is contained in:
parent
11692babc0
commit
70392b1e4e
13
zlogin
13
zlogin
|
@ -6,19 +6,6 @@
|
|||
# Ce fichier contient les commandes qui s'exécutent quand l'utilisateur
|
||||
# ouvre une console
|
||||
|
||||
#### Colors definition
|
||||
BLACK='\033[30;40m'
|
||||
RED='\033[0;31m'
|
||||
REDB='\033[1;31m'
|
||||
GREEN='\033[1;32m'
|
||||
YELLOW='\033[1;33m'
|
||||
BLUE='\033[34;40m'
|
||||
MAGENTA='\033[0;35m'
|
||||
CYAN='\033[36;40m'
|
||||
WHITE='\033[0;37m'
|
||||
WHITEB='\033[1;37m'
|
||||
RESET='\033[0m'
|
||||
|
||||
# Afficher des informations sur le systèmes:
|
||||
#echo "\n#### Info uname ####"
|
||||
#uname -a
|
||||
|
|
13
zshenv
13
zshenv
|
@ -3,6 +3,19 @@
|
|||
# Formation Debian GNU/Linux par Alexis de Lattre
|
||||
# http://formation-debian.via.ecp.fr/
|
||||
|
||||
#### Colors definition
|
||||
export BLACK='\033[30;40m'
|
||||
export RED='\033[0;31m'
|
||||
export REDB='\033[1;31m'
|
||||
export GREEN='\033[1;32m'
|
||||
export YELLOW='\033[1;33m'
|
||||
export BLUE='\033[34;40m'
|
||||
export MAGENTA='\033[0;35m'
|
||||
export CYAN='\033[36;40m'
|
||||
export WHITE='\033[0;37m'
|
||||
export WHITEB='\033[1;37m'
|
||||
export RESET='\033[0m'
|
||||
|
||||
# Le PATH = répertoires dans lesquels le shell va chercher les commandes
|
||||
# ATTENTION : le répertoire courant ne fait pas partie du PATH
|
||||
export PATH="/usr/local/bin:/usr/local/sbin:/bin:/usr/bin:/usr/sbin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/sbin:$HOME/bin:/opt:/usr/local/games"
|
||||
|
|
Loading…
Reference in New Issue