diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-08-02 01:10:32 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-08-02 01:10:32 +0200 |
commit | c0461acb94ac27457be8b1dc3e80f21bac9f719e (patch) | |
tree | d0f8b372a90907c467cf7ecae1e8ce6e1d623278 | |
parent | e72378238a2b276816a0ddb0c0cfc63c091f3eec (diff) |
fix: use --bg-color for bg color
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 5f5b187..8f40d39 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -174,7 +174,7 @@ int main(int argc, char **argv) { const char *timeout_str = args["--timeout"]; const char *icon_filepath = args["--icon"]; const char *icon_color_str = args["--icon-color"]; - const char *bg_color_str = args["--icon-color"]; + const char *bg_color_str = args["--bg-color"]; if(!notification_text) { fprintf(stderr, "error: missing required option '--text'\n"); |