From a26b35a4a1803e07b5766a5e3a546d3f8036f3b6 Mon Sep 17 00:00:00 2001 From: r3b00thx Date: Thu, 5 Jun 2025 17:10:30 +0300 Subject: [PATCH] chore(main): fix flag mismatch I fixed the flag mismatch for the no fancy option. --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index ed15b06..0f43b18 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -29,8 +29,8 @@ int main(int argc, char** argv, char** envp) { static struct option long_options[] = {{"autocopy", no_argument, nullptr, 'a'}, {"format", required_argument, nullptr, 'f'}, {"help", no_argument, nullptr, 'h'}, - {"no-fancy", no_argument, nullptr, 'n'}, - {"notify", no_argument, nullptr, 'j'}, + {"no-fancy", no_argument, nullptr, 'b'}, + {"notify", no_argument, nullptr, 'n'}, {"render-inactive", no_argument, nullptr, 'r'}, {"no-zoom", no_argument, nullptr, 'z'}, {"no-fractional", no_argument, nullptr, 't'},