Mercurial > repos > other > linux
annotate profile @ 109:2ee232a821c2
Improve CSS highlighting
* Remove an old HTML tag that never gets used and clashes elsewhere in CSS
* Add hyphens to allowed class characters
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 28 Apr 2018 16:05:51 +0100 |
parents | 6b1492d34562 |
children | 0d534e797a43 |
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" |