Warning: session_start(): open(/tmp/sess_qrolluhpkiqa37satojmeh2d35, O_RDWR) failed: No space left on device (28) in /www/H01/htdocs/lib/base/lib_base.php on line 280
NotifyAmarok (Gnome) openDesktop.org
-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    Linux42.org    OpenSkillz.com   
 
Home
Apps
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login


-
- Content .- Fans (4) . 

NotifyAmarok (Gnome)

   1.0  

Amarok 2.0 Script

Score 85%
NotifyAmarok (Gnome)
zoom


NotifyAmarok (Gnome)
zoom


NotifyAmarok (Gnome)
zoom


Link:  Link
Downloads:  1365
Submitted:  Apr 23 2009
Updated:  Jun 3 2009

Description:

Alternative OSD through Gnome Notification Daemon

This script shows information about the currently played track as a notification using a notification daemon that implements the freedesktop.org dbus interface (e.g. libnotify or notify-osd). It is intended to replace Amaroks own OSD, so its recommend to deactivate this via the configuration menu.

Dependings:
* Amarok 2.x
* notify-osd (recommend) or libnotify-bin
* imagemagick
(if you use libnotify)

Some example strings for the configuration are available on my blog: http://mantis.blogsport.de/2009/07/08/notifyamarok-configuration/

UPDATE (1.11.09):
ubuntu karmic (9.10):

Due to some changes in notify-osd for karmic some issue evolved concerning amarok notifications:
1. The update seems to have become slower which first of all sometimes causes empty notifications.
2. Newlines in the title are prevented by design now.
3. The destruction of notifications stopped working so there is an additional standard duration without update after the duration time thats set in the NotifyAmarok configuration.
As I unfortunately dont have time for this project at the moment I most likely wont fix this in the near future. Sorry!

KDE 4.3:
KDE 4.3 now support the freedesktop.org specifications, but unfortunately no smooth update. If you are using KDE, i recommend you to use thesalus' amaroknotify (http://www.kde-apps.org/content/show.php/amaroKnotify?content=103197), which provides nearly the same functionality now, but is developed for KDE.




Changelog:

1.0
Major development step with stunning new features ;)
* Full Configurable Notification Title, Body and Duration with all song information available and nice unicode symbols
* A nice Help Window that (i hope) explains the configuration accurately
* set Keybinding to trigger a notification when ever you wonder which song is playing atm (though not very straightforward yet) see "Questions and Answers" for Details
* finally just using the same cover images Amarok does without searching for fitting covers
* new code concept/structure that benefits future development of more new features
* now works on Amarok 2.1 Beta as well




LicenseGPL
(NotifyAmarok1.0)
Donate
Send to a friend
Subscribe
Other  Content  from meerkat
Report inappropriate content



goto page: prev   1  2 

-

 too many Gnome dependencies

 
 by rubyinthedust on: Sep 8 2009
 
Score 50%

Good work, although this looks really nice this is not KDE material - there are far too many Gnome deps. Alone script requires banshee gnome-mount gajim and pidgin notifiers, which are all Gnome apps, and those require even more libraries. Installation will take me hours, for a script?


Reply to this

-

 Re: too many Gnome dependencies

 
 by Jojo12a on: Nov 17 2009
 
Score 50%

Well, I don't suppose this is for KDE users because it is all about better integration of the KDE application Amarok into GNOME. But it is a script for a KDE application so I suspect it to belong here anyway.


Reply to this

-

 Icon filenames with spaces

 
 by Jojo12a on: Nov 17 2009
 
Score 50%

One small bugfix: Icon filenames that contain spaces (or other characters specially treated by bash) will not work in the current implementation because in line 106,

resize = subprocess.Popen("convert -resize 50x50 "+icon+" "+path+"/temp.png", shell=True, stdout=subprocess.PIPE,)

has to be replaced by

resize = subprocess.Popen(("convert", "-resize", "50x50", icon, path+"/temp.png"), stdout=subprocess.PIPE,)

shell=True is not a that good idea because you should try to avoid shell escapes.

Also, please replace all

Template(sys.argv[i])

calls by

Template(unicode(sys.argv[i], 'utf-8'))

so that Unicode strings are allowed in the template strings.


Reply to this

-

 problems with shebang

 
 by bal0r on: May 12 2012
 
Score 50%

Hi, thanks for this nice script.
In order to make it working I needed to change the shebang line to:
#!/usr/bin/env python2
Kind regards,
Max


Reply to this

goto page: prev   1  2 

Add commentBack




-



 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Apps
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Content RSS   
Events RSS   

Participate
Groups
Forum
Add Content
Public API
About openDesktop.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2007-2016 openDesktop.org Team  
All rights reserved. openDesktop.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
openDesktop is a trademark of the openDesktop.org Team