Questions tagged [notify-send]
34 questions
-1
votes
1 answer
Lua script how to invoke/call zenity or notify-send?
I'm a beginner in lua
OS: Manjaro XFCE
If I run from terminal desktop notification with notify-send or zenity it works.
for instance:
notify-send -t 4000 'Displays for 4 secs' "understood!!"
However, I can make it work from a lua…

user2718593
- 111
- 8
-1
votes
1 answer
Python3 cannot install notify-send
For Linux Mint 18.3 32-bit and Python 3.5.2 plus a Python3 virtual environment.
I'm having trouble installing Python 3's notify-send. The objective being to display text in a "notification bubble" ala:
I already have a BASH script that does what I…

RBV
- 1,367
- 1
- 14
- 33
-1
votes
1 answer
Run os.system as if python was not executed with sudo
When I run the following command, everyhting works as expected. No error and I get a system notification saying "Hello":
$ python3
>>> import os
>>> os.system("notify-send Hello")
0
However, when I do this:
$ sudo python3
>>> import os
>>>…

Forivin
- 14,780
- 27
- 106
- 199
-2
votes
1 answer
Notification from linux box
I m using putty on windows server to login into remote server. I need to monitor some jobs on that remote linux box. I need some script or binary file, that will send me notification on windows server/pc as soon as job fails on remote…