blob: 30890e055f95e6ffc6c0c4a7e822d6952f6fbfb9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
SCR="/usr/local/bin/skype-call-recorder"
if [ -f "$SCR" ] ; then
if !(pgrep skype-call-reco >/dev/null 2>&1) ; then
"$SCR" &
fi
fi
PULSE_LATENCY_MSEC=30 exec /usr/bin/skype $*
|