Are you running 0.8 in Docky mode?
Do you think I am making this up? https://bugs.launchpad.net/do-plugins/+bug/317674

Fab wrote:Are you running 0.8 in Docky mode?
Do you think I am making this up? https://bugs.launchpad.net/do-plugins/+bug/317674



timttmy wrote:To hell with your gui's![]()
I use identibash it was written by Linc off of TLLTS.
And it just works.Unlike gwibber on arch linux which is very broken.

timttmy wrote:To hell with your gui's![]()
I use identibash it was written by Linc off of TLLTS.
And it just works.Unlike gwibber on arch linux which is very broken.


#!/bin/bash
# Lincs script with some of the search fields changed so they work with identi.ca/user/all/rss
# because the identi.ca rss feed uses different/broken XML
#
# Based in part on article found at http://www.ibm.com/developerworks/linux/library/l-friendfeed/index.html
#
# Just replace with your username and password
#
maxitems=7
user=username
pass=password
puburl="http://identi.ca/${user}/all/rss"
posturl="http://identi.ca/api/statuses/update.xml"
function readpub()
{
clear
curl -s $puburl > /tmp/tweet.tmp
count=0
echo "-------------------------------------------"
while read line
do
if $(echo "${line}" | grep -q "title>")
then
echo "${line}" | sed 's/<title>//g' | sed 's/<\/title>//g'
fi
if $(echo "${line}" | grep -q "dc:date>")
then
echo -n "${line}" | sed 's/<dc:date>/ @ /g' | sed 's/<\/dc:date>//g'
fi
if $(echo "${line}" | grep -q "dc:creator>")
then
echo "${line}" | sed 's/<dc:creator>/ By: /g' | sed 's/<\/dc:creator>//g'
fi
if $(echo "${line}" | grep -q "</cc:licence>")
then
echo "-------------------------------------------"
count=$((count + 1))
if [ $count -eq $maxitems ]
then
break
fi
fi
done < /tmp/tweet.tmp
}
function postmsg()
{
curl -s -u ${user}:${pass} -d status="$msg" --data source="Identibash" ${posturl} 2>&1>/dev/null
}
getopts "rp:" flag
case "${flag}" in
r) readpub ;;
p) msg=${OPTARG}; postmsg; readpub ;;
esac
chmod +x identibash

timttmy wrote: I'll pay you $2 cash for a screenshot from a nice looking desktop

Users browsing this forum: No registered users and 1 guest