summaryrefslogtreecommitdiff
path: root/bin/ekgping
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ekgping')
-rwxr-xr-xbin/ekgping4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/ekgping b/bin/ekgping
index f946c53..32d7770 100755
--- a/bin/ekgping
+++ b/bin/ekgping
@@ -4,6 +4,7 @@ use strict;
use warnings;
use 5.010;
+use File::ShareDir qw(dist_file);
use IO::Handle;
use IPC::Run qw(harness io);
use SDL::Mixer;
@@ -24,7 +25,8 @@ my $column = 0;
my $column_max = Term::Size::chars;
my $mixer = SDL::Mixer->new();
-my $beep_sound = SDL::Music->new('beep.ogg');
+my $beep_file = dist_file('ekgping', 'beep.ogg');
+my $beep_sound = SDL::Music->new($beep_file);
my $ping = harness(
[ 'ping', '-n', $host ],