diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-11-21 23:09:56 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-11-21 23:09:56 +0100 |
commit | e7ad146b035856a747781fa4fb823a24aa3f5842 (patch) | |
tree | 9789b9912b09484ecb5459938e6d3c229246296c /etc/rc | |
parent | 0e2caab754a0e931d00ea7d55b3b0e031b78f71b (diff) |
zshrc: Very minor unbloat
Diffstat (limited to 'etc/rc')
-rw-r--r-- | etc/rc | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -10,7 +10,6 @@ system=${$(uname):l} alias 'linux:'='[[ $system == linux ]] &&' -alias 'openbsd:'='[[ $system == openbsd ]] &&' if [[ $system == linux ]] { [[ -f /etc/debian_version ]] && distro=debian @@ -22,11 +21,11 @@ if [[ $system == linux ]] { # {{{ Functions for startup status function zrc_status { - echo -n "\r\e[2K\e[0;36m䷢\e[0m $*" + echo -n "\r\e[2K\e[0;32m>>\e[0m $*" } function zrc_info { - echo "\e[0;36mℹ\e[0m $*" + echo "\e[0;31m>>\e[0m $*" } # }}} @@ -553,7 +552,6 @@ compdef _functions reload # {{{ Cleanup echo -n "\r\e[2K" unalias 'linux:' -unalias 'openbsd:' unfunction zrc_status zrc_info unfunction xsource unset system distro |