


Browser by Gibreel 22 comments
Some changes are required:
https://api.del.icio.us/v1 => http://[host]/api
Adding a bookmark: http://[host]/bookmarks.php/[user]?action=add&address=[address]&title=[title]
Edit: Same as add without the title
And for some reason the user is set to Unknown, but I haven't looked into this.
Renaming tags work (if the api url is changed). - May 19 2006

Karamba & Superkaramba by chip2003 61 comments
I had to update the program="..." in tnetstat.theme to get it to work correctly. Otherwise it would sometimes display ESTABLISHED instead of program name. I changed it to:
netstat -p --numeric-hosts --ip 2>/dev/null | grep -vE '^.*-[[:space:]]*$' | grep -E '^(tcp|udp).*' | sed -e 's/.*:.*:\([^[:blank:]]*\).*\/\(.*\)/\1\t\2/' | sed -e 's/\(.*\)[[:blank:]]\(kmail\|konqueror\|kded\).*/\1\t\2/' | sort -u
I also changed tdisk.sh to make it skip filesystems that was mounted with --bind:
df -k -x none -x unknown | grep ^/ | grep -v '(proc|tmp|pts)' | head -n9 | awk '{print $5" "$6}' | nl -s" " -w1 > ~/.superkaramba/tdisk.txt
And program="..." in tdisk.theme to
sleep 1; grep ^1 ~/.superkaramba/tdisk.txt | cut -d' ' -f 3
and
sleep 1; grep ^1 ~/.superkaramba/tdisk.txt | cut -d' ' -f 2
etc.
Thanks again.
// Erik - Feb 07 2005
ie, replace
./configure --prefix=/usr
with
./configure --prefix=/opt/kde3
And, as I said before, mail me if this doesn't work.
// Erik - May 30 2002

Various Stuff by sewagemaster 7 comments
Then put the lines
-------
#!/bin/sh
export KDEHOME=$HOME/.kde3
export KDEDIR=/opt/kde3
export PATH=/opt/kde3/bin:$PATH
export PREFERRED=/opt/kde3/bin/startkde
exec startkde
-------
in a file, name it kde3, chmod +x and place it in /usr/bin. - Apr 21 2002