aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/config.fish
diff options
context:
space:
mode:
authorGravatar Fabian Homborg <FHomborg@gmail.com>2016-03-06 15:28:54 +0100
committerGravatar Fabian Homborg <FHomborg@gmail.com>2016-03-09 13:07:04 +0100
commit6288f89bf95273cbce8437cfd6466cf8fc80850b (patch)
treebd92094016d181c7f9b05e6fd0e6f6b6c1f9d7d6 /share/config.fish
parent6a16bdb808b02977cc99f84b4adae420f99019d2 (diff)
Move code in etc/config.fish to share/config.fish
instead add a bit of information on how fish's configuration works for the admin to etc/config.fish. This means that fish is fully functional without /etc, which might be nice for "stateless" systems.
Diffstat (limited to 'share/config.fish')
-rw-r--r--share/config.fish29
1 files changed, 29 insertions, 0 deletions
diff --git a/share/config.fish b/share/config.fish
index b7a461c3..9ed3250a 100644
--- a/share/config.fish
+++ b/share/config.fish
@@ -176,3 +176,32 @@ if not set -q __fish_init_2_3_0
set fish_user_abbreviations $fab
set -U __fish_init_2_3_0
end
+
+#
+# Some things should only be done for login terminals
+# This used to be in etc/config.fish - keep it here to keep the semantics
+#
+
+if status --is-login
+
+ # Check for i18n information in
+ # /etc/sysconfig/i18n
+
+ if test -f /etc/sysconfig/i18n
+ string match -r '^[a-zA-Z]*=.*' < /etc/sysconfig/i18n | while read -l line
+ set -gx (string split '=' -m 1 -- $line | string replace -ra '"([^"]+)"' '$1' | string replace -ra "'([^']+)'" '$1')
+ end
+ end
+
+ #
+ # Put linux consoles in unicode mode.
+ #
+
+ if test "$TERM" = linux
+ if string match -qir '\.UTF' -- $LANG
+ if command -s unicode_start >/dev/null
+ unicode_start
+ end
+ end
+ end
+end