Well, I've just had it play a song to me on linpus, so it's possible. Now, just need to replicate my steps for you...
Okay, see if this works. I tried to copy a macles guide, but couldn't make it work, so you've got the slightly bodged up version:
In terminal enter (one at a time)
- Code: Select all
wget "http://download.songbirdnest.com/installer/linux/i686/Songbird_1.0.0-860_linux-i686.tar.gz"
sudo tar -zvxf Songbird_1.0.0-860_linux-i686.tar.gz --directory /opt
sudo chown user -R /opt/Songbird
You now have
songbird downloaded, and should launch via /opt/
Songbird/
songbird . I tried to make a link into /usr/bin at this point, but couldn't make it work for some reason.
To create a .desktop file (which contains the info necessary to have a desktop icon), enter one line at a time:
- Code: Select all
sudo cp /usr/share/applications/pcmmvp.desktop /usr/share/applications/songbird.desktop
sudo mousepad /usr/share/applications/songbird.desktop
This copies the existing file from the media player, and brings it up for you to edit. If you've deleted it before now, you'll have to improvise. Replace the contents with:
- Code: Select all
[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=Songbird
Comment=Play songs
Icon=/opt/Songbird/songbird.png
Exec=/opt/Songbird/songbird
Terminal=false
StartupNotify=true
Categories=GTK;Application;Audio;
Hopefully you're now getting an idea of the innards of a desktop file by looking at that.
To add it (or anything else) to the desktop, enter:
- Code: Select all
mousepad /home/user/.config/xfce4/desktop/group-app.xml
This file controls the desktop. Scroll down to the Fun section, and add a new entry like this:
- Code: Select all
<app sequence="5">/usr/share/applications/songbird.desktop</app>
You'll need to change that 5 to something appropriate (it controls where it appears in the list; don't duplicate numbers in the same section, though!)
Save, and then restart. Cross your fingers that I retraced my steps properly, and go to see if it's worked. With any luck, you also now know how to alter your desktop.