Kevin Bedi
Kevin Bedi
Yeah of course! Would love to see some test coverage :)
Thanks for the request! Could you clarify what the features might be of this desktop app? Would it just be a giant text field where you could enter the notification...
Ah. I don't think a desktop app would really be required for that, we could just use something like https://github.com/mikaelbr/node-notifier to push OS-level notifications at the same time as the...
> I could be pretty interest in helping develop this Desktop version! Sure, happy to have your help. I was thinking of making a site that uses web push notifications...
I like the idea - probably won't have time to add it for a while, but I'll accept a pull request that adds it (as long as it is still...
I think -t is already for the text right? Perhaps -k for key? So `notify -k asdf -t "Message" -i "Title"`? In long form: `notify --only-key asdf --text "Text" --title...
Oh right, I guess we need a command to make the mapping? Perhaps `notify --map-key 'asdf' --map-to 'android'` or `notify -m 'asdf' -o 'android` And then 'android' or 'asdf' will...
Oh yeah we can reuse the -r for mapping. So you could use `notify -r asdf -o 'android'` on an existing key or to register a new one.
I like this structure - but I'd love for it to be backward compatible. Perhaps we could read the old txt format first, see if it matches and if so...
Yeah looking good! The only thing I don't like that much is that we're writing in a `get` method, so it has a side effect that may be unexpected. Perhaps...