moved slideshow flags into misc (1000 -> 903)

This commit is contained in:
Thomas Osterland 2018-03-22 07:55:22 +01:00
parent bbd2196326
commit 74e6dfe497
1 changed files with 5 additions and 5 deletions

View File

@ -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"