From 74e6dfe497d1f8729759d0f264039978c0df3145 Mon Sep 17 00:00:00 2001 From: Thomas Osterland Date: Thu, 22 Mar 2018 07:55:22 +0100 Subject: [PATCH] moved slideshow flags into misc (1000 -> 903) --- i3lock.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/i3lock.c b/i3lock.c index e68d60e..d5b269d 100644 --- a/i3lock.c +++ b/i3lock.c @@ -1220,7 +1220,7 @@ int main(int argc, char *argv[]) { {"composite", no_argument, NULL, 902}, /* slideshow options */ - {"slideshow-interval", required_argument, NULL, 1000}, + {"slideshow-interval", required_argument, NULL, 903}, {NULL, no_argument, NULL, 0}}; @@ -1672,16 +1672,16 @@ int main(int argc, char *argv[]) { case 902: composite = true; break; - case 999: - debug_mode = true; - break; - case 1000: + case 903: slideshow_interval = atoi(optarg); if (slideshow_interval < 0) { slideshow_interval = 10; } break; + case 999: + debug_mode = true; + break; default: errx(EXIT_FAILURE, "Syntax: i3lock [-v] [-n] [-b] [-d] [-c color] [-u] [-p win|default]" " [-i image.png] [-t] [-e] [-f]\n"