Keyboard interaction with notifications on lock screen

2020-02-12 Thread Tobias Mueller
Hi, I want to ask whether notifications on the lock screen are safe from being discarded by the user. That is, if we show something on the lock screen, can we be sure that nobody can discard the notification while the user is away? In our case, we intend to show something along the lines of "You

Re: Keyboard interaction with notifications on lock screen

2020-02-12 Thread Florian Müllner via gnome-shell-list
On Wed, Feb 12, 2020 at 13:55, Tobias Mueller wrote: I want to ask whether notifications on the lock screen are safe from being discarded by the user. Yes. When locked, notifications can only be removed programmatically (via `org.gtk.Notifications.RemoveNotification()` or `org.freedesk

Re: Keyboard interaction with notifications on lock screen

2020-02-12 Thread Tobias Mueller
Hi Florian, On Wed, 2020-02-12 at 16:25 +0100, Florian Müllner wrote: > Yes. > > When locked, notifications can only be removed programmatically (via > `org.gtk.Notifications.RemoveNotification()` or > `org.freedesktop.Notifications.CloseNotification()`), not by a user. Cool. Thanks :) Cheers,