rootkiwi / an2linuxclient

Sync Android notifications encrypted to a Linux desktop

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add support for emojis

ple103 opened this issue Β· comments

commented

If the notifications use Unicode emojis which the apps I've tried do it should work. I've only tried with the notification daemon that I use (dunst) so I'm not sure if it works on others aswell.
http://www.unicode.org/emoji/charts/full-emoji-list.html

Try this python3 program:

#!/usr/bin/env python3
from gi.repository import Notify
Notify.init('test')
Notify.Notification.new('Emojis', 'πŸ˜€πŸ˜πŸ˜‚πŸ˜ƒπŸ˜„πŸ˜…πŸ˜†πŸ˜‰πŸ˜Š', '').show()