
I just updated my Amarok Twitter Script, added a few suggestions sent to me by Charles Nepote.
Install:
1) In AmaroK goto Tools > Script Manager
2) Hit install and select the downloaded package.
3) After install right click on “twitter-update.sh” and select “Edit”.
4) Customise your Username and Password in the specified location and save.
5) Now hit Run and Close.
Download:
—- Also updated my twitter from console script
#!/bin/bash
#
# Twitter Update
#
# Requires: cURL http://curl.haxx.se/
# By Guillermo Antonio Amaral Bastidas < gamaral@guillermoamaral.com >
#
### CONFIGURE ###
declare -rx USERNAME=”YOUR_USERNAME”
declare -rx PASSWORD=”YOUR_PASSWORD”
### DONT MODIFY ###
declare -x STATUS=”$@”
curl ‘http://twitter.com/statuses/update.xml’ \
-u ${USERNAME}:${PASSWORD} \
-d “status=${STATUS}” > /dev/null 2> /dev/null
# EOF
Usage:
./twitter Update from console woot
Download:
Recent Comments