From 6dee348167ec6c0fde123492799fe7a1946d3ea5 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 22 Mar 2009 22:14:15 +0100 Subject: hide input while loading the shell (yeah I type too fast) --- .zshrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.zshrc b/.zshrc index 4420441..a7c5517 100644 --- a/.zshrc +++ b/.zshrc @@ -3,8 +3,14 @@ # Author: Florian "Bluewind" Pritz #---------------------------------------------------- +# Don't show input while loading +stty -echo + # Makes this file smaller ;) for file in ${HOME}/.zsh/rc/**/* do . "$file" done + +# Show again +stty echo -- cgit v1.2.3-24-g4f1b