#!/bin/sh # # Web location: http://www.angelfire.com/ms/telegram/icon_opera # File name is .icon_opera - Sets up an icon for opera # on the Damn Small Linux desktop. # adapted from an install opera script by cbagger01 # For use on a restored DSL system with the Opera 6.12 Web Browser. # Reference - http://www.angelfire.com/ms/telegram/general_howto # Opera 6.12 Installation section # Save this file as .icon_opera in /home/damnsmall # Before use, chmod 755, then run #./.icon_opera # If no icon, check the path to /opera/images/opera_48x48.png # Backup your system before Powerdown to retain icons. # rapidweather v1.0 # Create Desktop Icon for Opera cp /ramdisk/usr/share/opera/images/opera_48x48.png /home/damnsmall/.xtdesktop/opera.png echo 'table Icon' > /home/damnsmall/.xtdesktop/opera.lnk echo ' Type: Program' >> /home/damnsmall/.xtdesktop/opera.lnk echo ' Caption: Opera' >> /home/damnsmall/.xtdesktop/opera.lnk echo ' Command: sh /home/damnsmall/.start_opera' >> /home/damnsmall/.xtdesktop/opera.lnk echo ' Icon: /home/damnsmall/.xtdesktop/opera.png' >> /home/damnsmall/.xtdesktop/opera.lnk echo ' X: 25' >> /home/damnsmall/.xtdesktop/opera.lnk echo ' Y: 440' >> /home/damnsmall/.xtdesktop/opera.lnk echo 'end' >> /home/damnsmall/.xtdesktop/opera.lnk # turn the icons off if they are on killall -9 xtdesk # a message that the icon is installed echo '' echo ' Your new Opera Icon is installed.' echo '' echo ' Turn on the Icons with Menu - Enhance - Icons'