aboutsummaryrefslogtreecommitdiff
path: root/scripts/notify.sh
blob: 5111b876241bff7c8624a5f652f3c86a736d29a0 (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/bash
# All the wrapping wierdness to add support for cron
# https://wiki.archlinux.org/index.php/Desktop_notifications#Usage_in_programming

user=$(whoami);

sudo -u $user DISPLAY=:0 DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u $user)/dbus-1 notify-send "$@";