1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: "Set PATH correctly"
Forwarded: no
Author: ""
Last-Update: 2016-02-29
--- a/scripts/listen.pl
+++ b/scripts/listen.pl
@@ -83,10 +83,10 @@ sub getmp3filename {
sub getmp3proces {
# most of the players put the file into the memory at first,
# let's try to catch it there, first
- getmp3filename("lsof -d mem | grep -i .mp3");
+ getmp3filename("/usr/bin/lsof -d mem | grep -i .mp3");
# if we didn't find anything there, we check the fds for mp3s
if ($mp3player eq "nope") {
- getmp3filename("lsof -d 1-15 | grep -i \\.mp3");
+ getmp3filename("/usr/bin/lsof -d 1-15 | grep -i \\.mp3");
}
# hmm are we listening to anything?
|