diff options
| author | uint23 <72694427+uint23@users.noreply.github.com> | 2025-05-20 15:55:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-20 15:55:40 +0100 |
| commit | 0f7dd226b703e783e837f2a7db59d1b1a255872a (patch) | |
| tree | f109f41e6cdf992fa70c1428047a1f50708a1fe2 /src/parser.c | |
| parent | 86a8bba41f1757c605badda8afdf4c1d759a0dd1 (diff) | |
| parent | a2a5460316e933fcc0c40e1362ed4a9c101d6e1c (diff) | |
Merge pull request #33 from werdl/makefile
Copy sxwmrc during installation
Diffstat (limited to 'src/parser.c')
| -rw-r--r-- | src/parser.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/parser.c b/src/parser.c index 1ceb7e0..a2de128 100644 --- a/src/parser.c +++ b/src/parser.c @@ -160,6 +160,11 @@ int parser(Config *cfg) goto found; } + snprintf(path, sizeof path, "/usr/local/share/sxwmrc"); + if (access(path, R_OK) == 0) { + goto found; + } + found: FILE *f = fopen(path, "r"); if (!f) { |
