Show French keyboard layout
This commit is contained in:
parent
b23f9ab212
commit
3fcbdbf5f6
3 changed files with 23 additions and 0 deletions
roles/home-cli
13
roles/home-cli/files/azerty-afnor.txt
Normal file
13
roles/home-cli/files/azerty-afnor.txt
Normal 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~ │ .¿ │ ,¡ │ :· │ ;≃ │ │
|
||||||
|
└─────┴────┴────┴────┴────┴────┴────┴────┴────┴────┴────┴────┴──────────────┘
|
|
@ -304,6 +304,12 @@ then
|
||||||
fi
|
fi
|
||||||
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.
|
# Make a directory and immediately change to it.
|
||||||
mkcd () {
|
mkcd () {
|
||||||
if [ $# -ne 1 ]
|
if [ $# -ne 1 ]
|
||||||
|
|
|
@ -84,3 +84,7 @@
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: storage.conf
|
src: storage.conf
|
||||||
dest: "{{ ansible_env.XDG_CONFIG_HOME }}/containers/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"
|
||||||
|
|
Loading…
Add table
Reference in a new issue