diff options
| author | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2022-01-24 22:53:48 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2022-01-24 22:53:48 -0500 |
| commit | 83d27c02d12cc0b8925256efd3ff6ddb3d3afef2 (patch) | |
| tree | c7188297efeb3796821709788662b5fda9558c71 /config.def.h | |
| parent | 2ea59ed9319d58c1a6821839537274c7eb6e2a1a (diff) | |
| download | slock-83d27c02d12cc0b8925256efd3ff6ddb3d3afef2.tar.gz | |
Added both arch and ubuntu group names
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 86e35b5..38dbee1 100644 --- a/config.def.h +++ b/config.def.h @@ -1,6 +1,7 @@ /* user and group to drop privileges to */ static const char *user = "nobody"; -static const char *group = "nobody"; +static const char *group = "nogroup"; // use this one for Ubuntu +//static const char *group = "nobody"; // use this one for Arch Linux static const char *colorname[NUMCOLS] = { [INIT] = "black", /* after initialization */ |