0

我的操作系统是Manjora17.1.12,Python 版本是3.7.0,Supervisor 的版本是3.3.4。我有一个 python 脚本,它只显示一个通知。代码是:

import os

os.system('notify-send hello')

主管配置是:

[program:test_notify]
directory=/home/zz
command=python -u test_notify.py
stdout_logfile = /home/zz/supervisord.d/log/test_notify.log
stderr_logfile = /home/zz/supervisord.d/log/test_notify.log

但是当我与主管一起执行 python 脚本时,它不会显示通知。

4

1 回答 1

1

需要设置适当的环境变量(DISPLAY & DBUS_SESSION_BUS_ADDRESS)。您可以根据您的需要以多种不同的方式进行操作,例如

a) 每个子流程

import os

os.system('DISPLAY=:0 DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus notify-send hello')

b) 在全局脚本中

import os

os.environ['DISPLAY'] = ':0'
os.environ['DBUS_SESSION_BUS_ADDRESS'] = 'unix:path=/run/user/1000/bus'
os.system('notify-send hello')

c)在每个程序的主管配置中

[program:test_notify]
;
; your variables
;
user=john
environment=DISPLAY=":0",DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1000/bus"

上面的示例有几个假设(您可能需要相应地更改这些设置):

  • 脚本以用户 john 身份运行
  • 用户 john 的 UID 为 1000
  • 通知出现在显示屏上:0

要以 root 身份运行脚本并为普通用户显示通知,请按照 Arch wiki Desktop_notifications中的说明使用 sudo 。

于 2018-10-05T18:08:20.370 回答