diff options
Diffstat (limited to 'swaylock')
-rw-r--r-- | swaylock/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/swaylock/main.c b/swaylock/main.c index 0e96afc7..c3743965 100644 --- a/swaylock/main.c +++ b/swaylock/main.c @@ -34,9 +34,9 @@ int main(int argc, char **argv) { surfaces = create_list(); registry = registry_poll(); - if (!registry->swaylock) { + /*if (!registry->swaylock) { sway_abort("swaylock requires the compositor to support the swaylock extension."); - } + }*/ int i; for (i = 0; i < registry->outputs->length; ++i) { @@ -45,7 +45,7 @@ int main(int argc, char **argv) { if (!window) { sway_abort("Failed to create surfaces."); } - lock_set_lock_surface(registry->swaylock, output->output, window->surface); + //lock_set_lock_surface(registry->swaylock, output->output, window->surface); list_add(surfaces, window); } |