Files
dotfiles/bin/notify

13 lines
179 B
Plaintext
Raw Permalink Normal View History

2020-03-17 20:35:03 +01:00
#!/usr/bin/env bash
set -o nounset
cmd="${@}"
name="${1}"
${cmd[@]}
exit_code="$?"
notify-send "Command \"${name}\" finished" "Exit code: ${exit_code}\nFull command: ${cmd}"