#!/bin/sh # This script creates an omni-jar in /tmp/ while being tested. # This will remove duplicates rm -rf /tmp/firefox-omni #unzip omni.jar mkdir -p /tmp/firefox-omni pushd /tmp/firefox-omni unzip /usr/lib/firefox-6/omni.jar # Edit the bookmarks.html file cat > /tmp/firefox-omni/defaults/profile/bookmarks.html < Bookmarks

Bookmarks

Bookmarks Toolbar

Fedora Documentation
Fedora Documentation.

RIT Links

RIT Homepage
RIT Homepage.
Mycourses
Mycourses Homepage.
RIT Schedule Maker
Create a class schedule.
RIT Infocenter
Class Registration, Academic Services, and more.

Fedora Project

Fedora Project
Home of the Fedora Project.
Fedora Forum
Fedora Forums for community interaction.
Fedora Solved
Community answers to community questions.
Fedora Weekly News
Fedora Weekly News.
Planet Fedora
Blogs by Fedora contributors.
Join Fedora!
Join the Fedora Project!

Red Hat

Red Hat
Home of Red Hat, sponsor of the Fedora Project.
JBoss
Home of the JBoss community, sponsored by Red Hat.
OpenSource.com
Open Source applied to the world.
The Open Source Way
Community authored open source best practices.

Free Content

Wikipedia
Collaborative encycolpedia.
LibriVox
Freely licensed audio books.
Open Clip Art
Freely licensed clip art.
Free Sound
Freely licensed sound.
Creative Commons
Free licenses for creative work.

EOF # Zip things back up # >/dev/null will mute output zip -9 -r omni.jar * >/dev/null mv omni.jar /usr/lib/firefox-6/omni.jar