通知发送在sudo运行的python脚本中不起作用

时间:2019-02-11 22:52:13

标签: python bash notifications sudo notify-send

我正在编写一个以sudo权限运行的python脚本。在某个时候,我想向用户发送通知。我注意到,notify-send不能以root用户身份运行,因此我尝试通过执行su $SUDO_USER -c notify-send ...来以实际用户身份运行它,但这也不起作用。

以下第一个功能在没有sudo特权的情况下运行。当使用sudo运行时,它们都不起作用。知道为什么吗?

def notify(message):

    subprocess.run(['notify-send', '-i', 'utilities-terminal', 'Notification Title', message],
                   stdout=subprocess.PIPE,
                   stderr=subprocess.PIPE,
                   check=True)


def notifySudo(message):

    subprocess.run(['su', os.environ['SUDO_USER'], '-c', 'notify-send', '-i', 'utilities-terminal', 'Notification Title', message],
                   stdout=subprocess.PIPE,
                   stderr=subprocess.PIPE,
                   check=True)

1 个答案:

答案 0 :(得分:0)

因此,经过一些研究,我找到了解决方案:

import os

def notify(title, message):

    userID = subprocess.run(['id', '-u', os.environ['SUDO_USER']],
                            stdout=subprocess.PIPE,
                            stderr=subprocess.PIPE,
                            check=True).stdout.decode("utf-8").replace('\n', '')


    subprocess.run(['sudo', '-u', os.environ['SUDO_USER'], 'DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/{}/bus'.format(userID), 
                    'notify-send', '-i', 'utilities-terminal', title, message],
                    stdout=subprocess.PIPE,
                    stderr=subprocess.PIPE,
                    check=True)