Posts Tagged ‘linux’

Get the latest Chrome nightly on your Linux desktop every day

Wednesday, February 16th, 2011

Quick bash script to pull the latest chrome nightly to your very own desktop!

1
2
3
4
5
6
7
8
9
#!/bin/bash
LATEST="http://build.chromium.org/f/chromium/snapshots/Linux/"`curl http://build.chromium.org/f/chromium/snapshots/Linux/LATEST`"/chrome-linux.zip"
wget $LATEST
unzip chrome-linux.zip
rm chrome-linux.zip
if [ -x ~/builds/chrome-linux/ ]; then
    rm -rf ~/builds/chrome-linux/
fi
mv chrome-linux ~/builds/

You’ll need to make the directory it’s going to download to.

$ mkdir ~/builds

Then add as a cron job to run every night && daily updates will come down the pipes!

howto: Enable Last.fm integration for Listen Music Player in Xubuntu/Xfce

Monday, December 15th, 2008

Notice: This is a technical post. If you don’t have this problem, you probably want to skip this one.

I have just started using the Listen music player, which is a very nice lightweight little python program that comes shipped with xubuntu. As of the time of writing the version included in the xubuntu-desktop package has not been updated so that it integrates with last.fm properly.

The following fixes the problem, and will happily allow you to broadcast your terrible taste to the rest of the world without sitting you down & asking why you really want to do so.


wget http://www.listen-project.org/raw-attachment/ticket/826/audioscrobbler_manager.py

sudo cp audioscrobbler_manager.py /usr/lib/listen/

rm audioscrobbler_manager.py

You can see this in action on my last.fm profile should you have the inclination.

Love regards etc

Notice: The next post will almost certainly be of a less niche nature. Look forward to it. Or something.