Show French keyboard layout

This commit is contained in:
Anthony Rose 2023-04-21 19:56:07 +01:00
parent b23f9ab212
commit 3fcbdbf5f6
3 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,13 @@
┌────┬────┬────┬────┬────┬────┬────┬────┬────┬────┬────┬────┬────┬──────────┐
│ # ̯ │ 1À │ 2É │ 3È │ 4Ê │ 5˝ │ 6˵ │ 7 │ 8— │ 9 │ 0 │ "° │ ¨ │ │
│ @˘ │ ৠ│ é´ │ è` │ ê& │ ([ │ )] │ ‘¯ │ _ │ «“ │ »” │ '° │ ^ˇ │ │
├────┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬────────┤
│ │ AÆ │ Z │ E │ R │ T™ │ Y │ UÙ │ I˙ │ OŒ │ P‰ │ │ ±‡ │ │
│ │ aæ │ z£ │ e€ │ r® │ t{ │ y} │ uù │ i. │ oœ │ p% │ - │ +† │ │
├──────┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┐ │
│ │ Q │ Sẞ │ D │ F │ G │ Hˍ │ J │ K │ L │ M │ \√ │ ½¼ │ │
│ │ qθ │ sß │ d$ │ f¤ │ gμ │ h │ j │ k │ l| │ m∞ │ /÷ │ *× │ │
├─────┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴─┬──┴────┴──────┤
│ │ >≥ │ WƷ │ X │ CÇ │ V˛ │ B │ N │ ? │ !, │ … │ =≠ │ │
│ │ <≤ │ wʒ │ x© │ cç │ v¸ │ b ̵ │ n~ │ .¿ │ ,¡ │ :· │ ;≃ │ │
└─────┴────┴────┴────┴────┴────┴────┴────┴────┴────┴────┴────┴──────────────┘

View file

@ -304,6 +304,12 @@ then
fi
fi
# Print AZERTY keyboard if using the French locale.
if [ "$LANG" -eq "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 ]

View file

@ -84,3 +84,7 @@
ansible.builtin.copy:
src: storage.conf
dest: "{{ ansible_env.XDG_CONFIG_HOME }}/containers/storage.conf"
- name: Create $XDG_DATA_HOME/azerty-afnor.txt
ansible.builtin.copy:
src: azerty-afnor.txt
dest: "{{ ansible_env.XDG_DATA_HOME }}/azerty-afnor.txt"