kebler.net
de43f28f78
changed startup in setup in /etc/profile.d accordingly so it sources intead of calls async for the same reason add notify module with login_notify to delay notification until user is logged in added lag to alias, and made load debug module is load in file module.
8 lines
111 B
Bash
8 lines
111 B
Bash
function dtnotify () {
|
|
(notify-send "$1") &
|
|
}
|
|
|
|
function login_notify () {
|
|
(sleep 10;notify-send "$1") &
|
|
}
|
|
|