9 lines
111 B
Bash
9 lines
111 B
Bash
|
function dtnotify () {
|
||
|
(notify-send "$1") &
|
||
|
}
|
||
|
|
||
|
function login_notify () {
|
||
|
(sleep 10;notify-send "$1") &
|
||
|
}
|
||
|
|