Commit Graph

5 Commits

Author SHA1 Message Date
Leonid Plyushch
6d292f04d0 termux-notification: fix typo in usage text 2018-06-05 17:54:13 +03:00
Oliver Schmidhauser
06d4a0bf2f Disable globbing in termux-notification.
Fixes https://github.com/termux/termux-api/issues/120

`termux-notification --content '*'` should mean the content of the
notifiation is `*` and not a list of files. The globbing, if desired,
should be done by the shell starting the process

```
echo * # does globbing
echo '*' does not do globbing

termux-notification --content * # Does globbing (but errors, since this
won't be valid syntax).
termux-notification --content '*' # Does globbing without this patch but
shouldn't

```
2018-02-12 11:30:40 +01:00
Oliver Schmidhauser
3b447e8036 Fix initialisation of variable.
Fixes https://github.com/termux/termux-api/issues/83
2017-04-10 08:31:38 +02:00
Fredrik Fornwall
712e0caf16 termux-notification: Support --on-delete action
This makes it possible to act on the notification being dismissed.

Client side part of https://github.com/termux/termux-api/issues/81
2017-04-09 19:07:53 +02:00
Fredrik Fornwall
1ec1334b54 Initial push 2017-04-09 18:19:29 +02:00