I use palemoon, for normal browsing. Arora for my apps and links for getting rss and news.
If you are like me, turning off everything just to have more uptime, you open up many tabs, then disable wifi and read leisurely.
So what do I use links for?
1. Create a home directory on your SD. For example 'home'.
2. Symbolic link this home directory from your Nand's homedirectory
2.1 Open a terminal, type in "ln -s /media/mysdcardname/home"
3. Inside this home directory, create a script
3.1 cd ~/home
3.2 mkdir ~/home/tmp
3.3 mousepad alterslash.sh
Code:
#!/bin/bash
cd ~/home/temp
wget http://alterslash.org
if [ $? -gt 0 ];then
echo "error downloading"
exit 1
fi
cd -
rm ~/home/temp/index.html
F=`ls -tr ~/home/temp/index.html*|tail -1`
ln -s "$F" ~/home/temp/index.html
links -g ~/home/temp/index.html
3.4 Save and close mousepad, return to the xterm prompt
3.5 chmod +x ~/home/alterslash.sh
4 Now we are able to run it like so:
So... when you run this, it will download the frontpage from alterslash (the Slashdot digest) and display it graphically with links (note the -g). It will also hold a history of downloaded files,