[Logo]

Archive for the ‘english’ Category

Tipp: Now Playing with MPD

Mittwoch, September 3rd, 2008

a convenient way to get “now playing” information from MPD can be achieved by this little script:

Dependencies

  • xclip
  • mpc (the official mpd commandline client)
  • notify-send (from libnotify-bin)

Script

#!/bin/sh
mpc|head -n1|xclip
notify-send -t 2500 "now playing" "`xclip -o`"

The Script copies the current “artist – track” to the clipboard and displays it as passive popup:

FATsort-gui Update

Montag, September 1st, 2008

A good message for all non-german users of fatsort-gui:

fatsort-gui is now translatable. Default language is english, but german translation is already included. German users do not need to upgrade, because except for the translation function there is nothing new.

Language is read from LANG environment variable, so the program chooses the language automatically, if its available.

If you want to translate the application to your language, you need to append the strings dict with a new language dictionary like this:

strings = {
“de”: {…},
“xy”: {“english string”: “translation”, “another string”: “another translation”}
}

please send any new translations to software at laxu.de, so i can add them to the script.