Put the keyboard into usermotd
This commit is contained in:
parent
69f8f2cbf6
commit
992ba2af04
1 changed files with 6 additions and 6 deletions
|
@ -304,12 +304,6 @@ then
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Print AZERTY keyboard if using the French locale.
|
|
||||||
if [ "$LANG" = "fr_FR.UTF-8" ] && [ -r "$XDG_DATA_HOME/azerty-afnor.txt" ]
|
|
||||||
then
|
|
||||||
cat "$XDG_DATA_HOME/azerty-afnor.txt"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Make a directory and immediately change to it.
|
# Make a directory and immediately change to it.
|
||||||
mkcd () {
|
mkcd () {
|
||||||
if [ $# -ne 1 ]
|
if [ $# -ne 1 ]
|
||||||
|
@ -395,6 +389,12 @@ usermotd () {
|
||||||
else
|
else
|
||||||
echo "SHELL=$SHELL"
|
echo "SHELL=$SHELL"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Print AZERTY keyboard if using the French locale.
|
||||||
|
if [ "$LANG" = "fr_FR.UTF-8" ] && [ -r "$XDG_DATA_HOME/azerty-afnor.txt" ]
|
||||||
|
then
|
||||||
|
cat "$XDG_DATA_HOME/azerty-afnor.txt"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
simpletls () {
|
simpletls () {
|
||||||
|
|
Loading…
Reference in a new issue