aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/fish.in
diff options
context:
space:
mode:
Diffstat (limited to 'share/fish.in')
-rw-r--r--share/fish.in14
1 files changed, 13 insertions, 1 deletions
diff --git a/share/fish.in b/share/fish.in
index b1d88b78..8b1feead 100644
--- a/share/fish.in
+++ b/share/fish.in
@@ -18,7 +18,6 @@ if not set -q fish_complete_path
set -U fish_complete_path ~/.fish.d/completions @sysconfdir@/fish.d/completions @datadir@/fish/completions
end
-
set __fish_help_dir @docdir@
# This is a Solaris-specific test to modify the PATH so that
@@ -75,6 +74,19 @@ for i in (printf "%s\n" $path_list|grep -E -v $path_regexp)
end
#
+# Print a greeting
+#
+
+if not set -q fish_greeting
+ set -l line1 (printf (_ 'Welcome to fish, the friendly interactive shell') )
+ set -l line2 (printf (_ 'Type %shelp%s for instructions on how to use fish') (set_color green) (set_color normal))
+ set -U fish_greeting $line1\n$line2
+end
+
+echo $fish_greeting
+
+
+#
# Don't need completions in non-interactive mode
#