annotate profile @ 82:220ca3e2e115

Add emoji config to standard build (requires Noto Color Emoji font)
author IBBoard <dev@ibboard.co.uk>
date Thu, 15 Mar 2018 20:59:22 +0000
parents 6b1492d34562
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
24
acbc487533ab Consistently fix Thunderbird time settings by moving some bits to profile, not bashrc
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
1 # This file is read each time a login shell is started.
acbc487533ab Consistently fix Thunderbird time settings by moving some bits to profile, not bashrc
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
2 # All other interactive shells will only read .bashrc; this is particularly
acbc487533ab Consistently fix Thunderbird time settings by moving some bits to profile, not bashrc
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
3 # important for language settings, see below.
acbc487533ab Consistently fix Thunderbird time settings by moving some bits to profile, not bashrc
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
4
acbc487533ab Consistently fix Thunderbird time settings by moving some bits to profile, not bashrc
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
5 #SUSE-ism for importing common profile stuff
acbc487533ab Consistently fix Thunderbird time settings by moving some bits to profile, not bashrc
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
6 test -z "$PROFILEREAD" && . /etc/profile || true
acbc487533ab Consistently fix Thunderbird time settings by moving some bits to profile, not bashrc
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
7
acbc487533ab Consistently fix Thunderbird time settings by moving some bits to profile, not bashrc
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
8 #Make sure that Thunderbird et al show correct dates and that all apps (not just Bash) get the right locale
acbc487533ab Consistently fix Thunderbird time settings by moving some bits to profile, not bashrc
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
9 export LC_TIME=en_GB.UTF-8
acbc487533ab Consistently fix Thunderbird time settings by moving some bits to profile, not bashrc
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
10 export LC_ALL=en_GB.UTF-8
acbc487533ab Consistently fix Thunderbird time settings by moving some bits to profile, not bashrc
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
11
acbc487533ab Consistently fix Thunderbird time settings by moving some bits to profile, not bashrc
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
12 #Set us up for XCompose support of custom characters
27
c67aa2af6ff2 Switch to ibus, because it is simpler than uim but does XCompose
IBBoard <dev@ibboard.co.uk>
parents: 24
diff changeset
13 export GTK_IM_MODULE="ibus"
46
d9f24f3996d6 Set a 256-colour terminal so tmux shows 256 colours
IBBoard <dev@ibboard.co.uk>
parents: 45
diff changeset
14 export LS_OPTIONS="$LS_OPTIONS -p"
51
6b1492d34562 Switch from xterm to screen to fix Nano scrolling
IBBoard <dev@ibboard.co.uk>
parents: 47
diff changeset
15 export TERM="screen-256color"