bashrc & zshrc: add empty line between output of uptime & who

This commit is contained in:
Mika Suomalainen 2013-02-17 09:04:22 +02:00
parent 8f67584df0
commit b6062f7f76
2 changed files with 2 additions and 2 deletions

2
bashrc
View File

@ -132,7 +132,7 @@ fi
#shopt -s autocd
# Show the hostname, uptime and users logged in on shell start
hostname && uptime && who -H -w -u
hostname && uptime && echo "" && who -H -w -u
##### Environment 7RS56S #####
# Environment should be placed to .environment or .bash_environment.

2
zshrc
View File

@ -73,7 +73,7 @@ zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31'
zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd'
# Show the hostname, uptime and users logged in on shell start
hostname && uptime && who -H -w -u
hostname && uptime && echo "" && who -H -w -u
##### Environment 7RS56S #####
# Environment should be placed to .environment or .zsh_environment (or .zshenv).