diff options
Diffstat (limited to 'slock/slock.c')
| -rw-r--r-- | slock/slock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slock/slock.c b/slock/slock.c index 040012d..3293def 100644 --- a/slock/slock.c +++ b/slock/slock.c @@ -714,8 +714,8 @@ main(int argc, char **argv) { snprintf(command, size_needed, "mount | grep -q ' %s/Private '", home_path); int result = system(command); free(command); - if (result != 0) { - background_image = ".local/share/wallpapers/lock"; + if (result == 0) { + background_image = private_image; privateblur = 0; } if (strcmp(background_image, "") == 0) { |
