X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/ccd96c4f2fa288f60aa6cbb87e1a83e6ff28c099..1bea7f5c61956746547f44fe8809fb6fb57a2038:/bin/disorder-notify diff --git a/bin/disorder-notify b/bin/disorder-notify index 3f6823c..84c702f 100755 --- a/bin/disorder-notify +++ b/bin/disorder-notify @@ -3,16 +3,16 @@ sub notify ($$) { my ($head, $body) = @_; + $body =~ s:\&:&:g; + $body =~ s:\<:<:g; + $body =~ s:\>:>:g; my $kid = fork; defined $kid or return; if (!$kid) { open STDOUT, ">", "/dev/null"; - exec "gdbus", "call", "-e", - "-d", "org.freedesktop.Notifications", - "-o", "/org/freedesktop/Notifications", - "-m", "org.freedesktop.Notifications.Notify", "--", - "DisOrder", "0", "audio-volume-high", - $head, $body, "[]", "{}", "5000"; + exec "notify-send", + "-c", "DisOrder", "-i", "audio-volume-high", "-t", "5000", + $head, $body; } waitpid $kid, 0; } @@ -27,8 +27,29 @@ sub cmd (@) { else { return "??? multiple lines"; } } +sub now_playing (;$) { + my ($track) = @_; + if (!defined $track) { + my @r = cmd "playing"; + if ($r[0] =~ /^track\s+(.*)$/) { $track = $1; } + else { return; } + } + my %p; + for my $p ("artist", "album", "title") + { $p{$p} = cmd "part", $track, "display", $p; } + if ($p{artist} =~ /^[A-Z]$/) + { $p{artist} = $p{album}; $p{album} = undef; } + elsif ($p{artist} eq "share" && $p{album} eq "disorder") + { next LINE; } + my $r = "$p{artist}: ‘$p{title}’"; + if (defined $p{album}) { $r .= ", from ‘$p{album}’"; } + notify "DisOrder: now playing", $r; +} + for (;;) { open my $log, "-|", "disorder", "log"; + my $startp = 1; + my $stateinfo = undef; LINE: while (<$log>) { chomp; my @f = (); @@ -57,33 +78,32 @@ for (;;) { push @f, $t if defined $t; my $what = $f[1]; - if ($what eq "state") { + if ($what eq "volume" && $startp) { + $startp = 0; + notify "DisOrder state", "Connected: $startinfo"; + now_playing; + } elsif ($what eq "state") { my $st = $f[2]; - if ($st eq "disable_random") { - notify "DisOrder state", "Random play disabled"; - } elsif ($st eq "enable_random") { - notify "DisOrder state", "Random play enabled"; - } elsif ($st eq "disable_play") { - notify "DisOrder state", "Playing disabled"; - } elsif ($st eq "enable_play") { - notify "DisOrder state", "Playing enabled"; - } elsif ($st eq "pause") { - notify "DisOrder state", "Paused"; - } elsif ($st eq "resume") { - notify "DisOrder state", "Resuming"; + my $msg; + my $np = 0; + if ($st eq "disable_random") { $msg = "random play disabled"; } + elsif ($st eq "enable_random") { $msg = "random play enabled"; } + elsif ($st eq "disable_play") { $msg = "playing disabled"; } + elsif ($st eq "enable_play") { $msg = "playing enabled"; } + elsif ($st eq "pause") { $msg = "paused"; } + elsif ($st eq "resume") { $msg = "playing"; $np = 1; } + else { next LINE; } + if (!$startp) { + notify "DisOrder state", ucfirst $msg; + now_playing if $np; + } else { + if (defined $startinfo) { $startinfo .= "; " . $msg; } + else { $startinfo = $msg; } } + } elsif ($what eq "scratched") { + notify "DisOrder state", "Scratched playing track"; } elsif ($what eq "playing") { - my $track = $f[2]; - my %p; - for my $p ("artist", "album", "title") - { $p{$p} = cmd "part", $track, "display", $p; } - if ($p{artist} =~ /^[A-Z]$/) - { $p{artist} = $p{album}; $p{album} = undef; } - elsif ($p{artist} eq "share" && $p{album} eq "disorder") - { next LINE; } - my $r = "$p{artist}: ‘$p{title}’"; - if (defined $p{album}) { $r .= ", from ‘$p{album}’"; } - notify "Now playing", $r; + now_playing $f[2]; } } close $log;