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