From 0bc4b2b4a25adea85d5f6c6947cfd31f9098149e Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Wed, 15 Jul 2009 20:08:23 +0200 Subject: [PATCH] Add GPL header to mpris script Ack'd by the author. --- data/scripts/mpris | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/data/scripts/mpris b/data/scripts/mpris index 28c9fe6f..c483c721 100755 --- a/data/scripts/mpris +++ b/data/scripts/mpris @@ -1,6 +1,25 @@ #!/usr/bin/env perl -# Copyright 2009 Sebastian Goth seezer@roath.org -# + +########################################################################## +# Copyright (C) 2009 by Sebastian Goth # +# seezer@roath.org # +# # +# This program is free software; you can redistribute it and/or modify # +# it under the terms of the GNU General Public License as published by # +# the Free Software Foundation; either version 2 of the License, or # +# (at your option) version 3. # +# # +# This program is distributed in the hope that it will be useful, # +# but WITHOUT ANY WARRANTY; without even the implied warranty of # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # +# GNU General Public License for more details. # +# # +# You should have received a copy of the GNU General Public License # +# along with this program; if not, write to the # +# Free Software Foundation, Inc., # +# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # +########################################################################## + # Simple script to read metadata from mpris compatible mediaplayers via dbus. # # Run it like this: @@ -40,7 +59,7 @@ close IN; if(keys(%d)) { ## change the following line to fit your needs ## -print "I'm listening to ".$d{"title"}." by ".$d{"artist"}; +print "/me is listening to ".$d{"title"}." by ".$d{"artist"}; ################################################# print "\n"; -- 2.20.1