diff options
author | June McEnroe <june@causal.agency> | 2020-02-12 20:12:34 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-12 20:12:34 -0500 |
commit | 180bbc7b38f814ff506bb25091a908f02ba32b5c (patch) | |
tree | 423b6fddd7fc39667ea6be4eed13665b034fc833 /chat.c | |
parent | Mark and unmark on uiHide, uiShow (diff) | |
download | catgirl-180bbc7b38f814ff506bb25091a908f02ba32b5c.tar.gz catgirl-180bbc7b38f814ff506bb25091a908f02ba32b5c.zip |
Add -N flag for notifications
Diffstat (limited to '')
-rw-r--r-- | chat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chat.c b/chat.c index c0950fb..dbd2784 100644 --- a/chat.c +++ b/chat.c @@ -94,11 +94,12 @@ int main(int argc, char *argv[]) { const char *user = NULL; const char *real = NULL; - const char *Opts = "!C:H:O:RS:a:c:eh:j:k:n:p:r:s:u:vw:"; + const char *Opts = "!C:H:N:O:RS:a:c:eh:j:k:n:p:r:s:u:vw:"; const struct option LongOpts[] = { { "insecure", no_argument, NULL, '!' }, { "copy", required_argument, NULL, 'C' }, { "hash", required_argument, NULL, 'H' }, + { "notify", required_argument, NULL, 'N' }, { "open", required_argument, NULL, 'O' }, { "restrict", no_argument, NULL, 'R' }, { "bind", required_argument, NULL, 'S' }, @@ -124,6 +125,7 @@ int main(int argc, char *argv[]) { break; case '!': insecure = true; break; case 'C': utilPush(&urlCopyUtil, optarg); break; case 'H': hashInit = strtoul(optarg, NULL, 0); + break; case 'N': utilPush(&uiNotifyUtil, optarg); break; case 'O': utilPush(&urlOpenUtil, optarg); break; case 'R': self.restricted = true; break; case 'S': bind = optarg; |