summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.def.h2
-rw-r--r--slock.c3
2 files changed, 5 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 9a0dac3..472c67e 100644
--- a/config.def.h
+++ b/config.def.h
@@ -2,6 +2,8 @@
static const char *user = "master";
static const char *group = "wheel";
+static const char *cmd = "layouttoggle us";
+
static const char *colorname[NUMCOLS] = {
[BACKGROUND] = "black", /* after initialization */
[INIT] = "#2d2d2d", /* after initialization */
diff --git a/slock.c b/slock.c
index fd275b0..d100271 100644
--- a/slock.c
+++ b/slock.c
@@ -563,6 +563,9 @@ main(int argc, char **argv) {
}
}
+ // Run a post system-lock command:
+ system(cmd);
+
/* everything is now blank. Wait for the correct password */
readpw(dpy, &rr, locks, nscreens, hash);