15 lines
416 B
Bash
Executable File
15 lines
416 B
Bash
Executable File
#!/bin/bash
|
|
############################################
|
|
# just a wrapper to call the notifyer #
|
|
# needed here to keep dirs/configs clean #
|
|
# and maybe to set user-rights #
|
|
############################################
|
|
|
|
# Absolute path to this script
|
|
SCRIPT=`readlink -f $0`
|
|
# Absolute path this script is in
|
|
SCRIPTPATH=`dirname $SCRIPT`
|
|
|
|
cd ${SCRIPTPATH}/../
|
|
timeout 45 python pyponotify.py "$@"
|