Sunday, September 27, 2009

Audacious themes

[ Linux | Audacious | Themes | Skins ]
You can use winamp themes with Audacious,
just download and unzip into /usr/share/audacious/Skins/
(You may have to create a folder for the theme first)

Tuesday, September 8, 2009

fix ssh known_hosts


#!/bin/bash

if [ $# -ne 1 ]
then
echo "Usage: $0 line"
exit
fi

line=$1
tmp=tmp_$RANDOM

sed $line'd' ~/.ssh/known_hosts > $tmp
mv $tmp ~/.ssh/known_hosts