From bb15f6d342843b96b18d5ae8b6e300f667b1c156 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Sun, 12 Jan 2020 07:08:47 +0100 Subject: [PATCH] Add experimental support for the euro sign This is only implemented in the French keyboard for the moment. It still conflicts with other modifiers. --- src/keyboard.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/keyboard.c b/src/keyboard.c index a886a5f..591a441 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -322,6 +322,11 @@ static KeyboardKeyDefinition const _keyboard_layout_letters_azerty[] = { 0, 0, XK_Shift_L, XK_Z, "Z" }, { 0, 2, 0, XK_e, "e" }, { 0, 0, XK_Shift_L, XK_E, "E" }, +#if 0 /* def XK_CURRENCY */ + { 0, 0, XK_Alt_R, XK_EuroSign, "€" }, +#else + { 0, 0, XK_Alt_R, XK_E, "€" }, +#endif { 0, 2, 0, XK_r, "r" }, { 0, 0, XK_Shift_L, XK_R, "R" }, { 0, 2, 0, XK_t, "t" },