X-Git-Url: https://git.xandkar.net/?a=blobdiff_plain;f=home%2Flib%2Flogin_functions.sh;h=862e908a0078d92a2160baa40443716691e2efb5;hb=dfbaafa4485eb5e965760163dbc1aa5e400e1e5d;hp=1cc5f7f44ecd10b30ffb7782cf5af14989576ece;hpb=641d30ddcd419dfb53fb855064a41ee925a9c9e3;p=khome.git diff --git a/home/lib/login_functions.sh b/home/lib/login_functions.sh index 1cc5f7f..862e908 100644 --- a/home/lib/login_functions.sh +++ b/home/lib/login_functions.sh @@ -166,3 +166,16 @@ bt_devs() { | awk '{print $2}' \ | xargs bluetoothctl -- info } + +run() { + stderr="$(mktemp)" + $@ 2> >(tee "$stderr") + code="$?" + urgency='' + case "$code" in + 0) urgency='normal';; + *) urgency='critical' + esac + notify-send -u "$urgency" "Job done: $code" "$(cat $stderr)" + rm "$stderr" +}