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
|
||||
|
||||
# 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.
|
||||
mkcd () {
|
||||
if [ $# -ne 1 ]
|
||||
|
@ -395,6 +389,12 @@ usermotd () {
|
|||
else
|
||||
echo "SHELL=$SHELL"
|
||||
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 () {
|
||||
|
|
Loading…
Reference in a new issue