aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-10-26 14:30:54 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-10-26 14:33:21 +0200
commit164a06e66ee8197fd8bf3201591ab590956888da (patch)
tree27cb6cccb773606b15f8c8028e6ddc06988fe8d7 /src
parentf192e262ea6d9905d29cf9ad8b0e76f463f9f475 (diff)
downloadarctica-greeter-164a06e66ee8197fd8bf3201591ab590956888da.tar.gz
arctica-greeter-164a06e66ee8197fd8bf3201591ab590956888da.tar.bz2
arctica-greeter-164a06e66ee8197fd8bf3201591ab590956888da.zip
Explicitly set the keyboard layout
Ported from slick-greeter: Author: Clement Lefebvre <clement.lefebvre@linuxmint.com> Date: Sat Jun 10 15:57:49 2017 +0100 Explicitly set the keyboard layout The keyboard layout isn't properly set by default in some case. This affects wireless Logitech keyboards in particular, and it results in the greeter using an American layout instead of the layout chosen during the installation.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am1
-rw-r--r--src/arctica-greeter.vala13
-rw-r--r--src/config.vapi1
3 files changed, 15 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index ec75868..9f16db6 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -46,6 +46,7 @@ arctica_greeter_CFLAGS = \
-DLOCALEDIR=\""$(localedir)"\" \
-DVERSION=\"$(VERSION)\" \
-DPKGDATADIR=\""$(pkgdatadir)"\" \
+ -DPKGLIBEXECDIR=\""$(pkglibexecdir)"\" \
-DINDICATORDIR=\""$(INDICATORDIR)"\"
logo_generator_CFLAGS = $(arctica_greeter_CFLAGS)
diff --git a/src/arctica-greeter.vala b/src/arctica-greeter.vala
index 94a1eb0..2def301 100644
--- a/src/arctica-greeter.vala
+++ b/src/arctica-greeter.vala
@@ -580,6 +580,16 @@ public class ArcticaGreeter
greeter_ready ();
}
+ private static void set_keyboard_layout ()
+ {
+ try {
+ Process.spawn_command_line_sync(Path.build_filename (Config.PKGLIBEXECDIR, "arctica-greeter-set-keyboard-layout"), null, null, null);
+ }
+ catch (Error e){
+ warning ("Error while setting the keyboard layout: %s", e.message);
+ }
+ }
+
private static void activate_numlock ()
{
try {
@@ -651,6 +661,9 @@ public class ArcticaGreeter
if (do_test_mode)
debug ("Running in test mode");
+ /* Set the keyboard layout */
+ set_keyboard_layout ();
+
/* Set the numlock state */
if (AGSettings.get_boolean (AGSettings.KEY_ACTIVATE_NUMLOCK)) {
debug ("Activating numlock");
diff --git a/src/config.vapi b/src/config.vapi
index c2e8d96..1aca0b9 100644
--- a/src/config.vapi
+++ b/src/config.vapi
@@ -6,6 +6,7 @@ namespace Config
public const string VERSION;
public const string INDICATOR_FILE_DIR;
public const string PKGDATADIR;
+ public const string PKGLIBEXECDIR;
public const string INDICATORDIR;
public const string SD_BINARY;
}