From f0d620abf00381ae57877e99e3a3ffe34da6e7e9 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Thu, 3 Nov 2022 03:15:05 -0400 Subject: Execute custom shell command after locking the system --- config.def.h | 2 ++ slock.c | 3 +++ 2 files changed, 5 insertions(+) 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); -- cgit v1.2.3