-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmplayer_exec
executable file
·70 lines (56 loc) · 1.4 KB
/
mplayer_exec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/perl
# abstract: mplayer client for mplayer daemon
use strict;
use warnings FATAL => 'all';
use Getopt::Long;
use File::LsColor ();
# shell function:
# mplayer_redir () {
# /usr/bin/mplayer -quiet -msglevel all=0 -identify \
# -include $XDG_CONFIG_HOME/mplayer/config -profile $HOST \
# $(absname "$@") > $XDG_CONFIG_HOME/mplayer/log.txt
# rm -v $XDG_CONFIG_HOME/mplayer/log.txt
# }
# input.conf:
# DEL run 'mplayer_delete_current_file -rm'
my $opt = {
log => "$ENV{XDG_CONFIG_HOME}/mplayer/log.txt",
rm => 0,
};
GetOptions(
'log:s' => \$opt->{log},
'rm|delete' => sub { rm( get_np_file() ); exit },
'np' => sub { np(); exit },
);
print STDERR "USAGE: mplayer_exec [[np|rm][log=...]]\n";
exit;
sub np {
printf "%s\n", File::LsColor::ls_color_internal(get_np_file());
}
sub rm {
my $file = shift;
if(-t STDOUT) {
printf("rm(): unlink %s ? [Y/n] ", $file);
chomp(my $choice = <>);
if(lc($choice) ne 'y') {
return;
}
}
if(unlink($file)) {
printf("\n [DELETED] %s\n", $file);
system('ratpoison', '-c', "echo $file deleted.");
}
else {
warn "Could not unlink $file: $!\n";
}
}
sub get_np_file {
open(my $fh, '<', $opt->{log}) or die "mplayer not running?\n";
my $meta = { };
my @rev_log = map { chomp; $_ } reverse( <$fh> );
for my $line(@rev_log) {
if($line =~ m/ID_FILENAME=(.+)$/) {
return $1;
}
}
}