9 lines
183 B
Bash
Executable File
9 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
|
|
export USER=ducoterra
|
|
|
|
LEVEL=$1
|
|
MESSAGE=$2
|
|
sudo -E -u $USER notify-send "$LEVEL" "$MESSAGE" --expire-time 10
|