7 lines
118 B
Bash
Executable file
7 lines
118 B
Bash
Executable file
#!/bin/sh
|
|
|
|
start=$(date +%s)
|
|
$@
|
|
if [ $(($(date +%s) - $start)) -gt 0 ]
|
|
then notify-send "Command finished:" "$*"
|
|
fi
|