Files
scwrypts/zsh/lib/system/desktop/notify.module.zsh
T

17 lines
294 B
Bash
Raw Normal View History

2023-02-21 18:44:27 -07:00
#####################################################################
DEPENDENCIES+=(
notify-send
)
REQUIRED_ENV+=()
#####################################################################
NOTIFY() {
local D=$DISPLAY
[ ! $D ] && D=:0
DISPLAY=$D notify-send "SCWRYPTS $SCWRYPT_NAME" $@
}