You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All of the following commands fail to show pop-up notifications when the phone is unlocked. They'll only appear when you slide down from the top-edge of the screen to view the "notification center" area.
pinephone.notify(" ")pinephone.notify(" "," ")pinephone.notify("test")pinephone.notify("test"," ");pinephone.notify("Hello!","What is go")// <=10 characters in the body seems to fail...
This, however, works:
pinephone.notify("Hello!","What is goi")// This works... needs >10 characters?
The text was updated successfully, but these errors were encountered:
The dollar sign character issues are related to running as a shell command, and can be seemingly fixed by using single quote strings as arguments to notify-send instead of double quote strings.
All of the following commands fail to show pop-up notifications when the phone is unlocked. They'll only appear when you slide down from the top-edge of the screen to view the "notification center" area.
This, however, works:
The text was updated successfully, but these errors were encountered: