This is simply a replacement homepage for Ubuntu installations. It provides additional help, links and search options. It is designed to be beautiful and more friendly to first time users, while adding a few neat tricks for experienced users.
Copy the site
directory to the Ubuntu install, then set the browser home page to be the index.html
file inside of that directory.
The src
and config
directories are for development only.
See CHANGELOG for details.
- 0.1: 06 Jan 2011 First commit.
- 0.2: 17 Jan 2011 Ready for trial installs.
The built site can be simply viewed in Firefox or Chrome. It has never been tested on anything else.
To develop or change the site you'll need:
- Ruby (tested on 1.9.2)
- StaticMatic gem (tested with v0.11.1)
- HAML (tested with v3.0.22)
- SASS
- Compass (tested with v0.10.5)
You can just manually edit the index.html or style.css files for personal use, but I probably won't acccept any changes that way.
NOTE: tested on Ubuntu 10.04 only with Firefox 4, 3.6 and Chrome 9
-
Clone or download from github
-
Change to the Ubuntu-Homepage directory
-
Preview with StaticMatic
staticmatic preview .
-
Go to http://localhost:3000/ and you should see the site running.
-
If you make changes and want to distribute the static html site then you need to build with StaticMatic:
staticmatic build .
However there is a bug or problem with the stylesheet path, such that you need to manually edit index.html and remove the extraneous / character:
<link href="/stylesheets/style.css" media="all" rel="stylesheet" type="text/css"/>
to:
<link href="stylesheets/style.css" media="all" rel="stylesheet" type="text/css"/>
Thanks to the SocialTech and Linux Education folks in Toronto. The current code, images and design are based on:
Ubuntu Homepage software is released under the GPL 3.
Copyright (C) 2011, Ryan Kelln
Ubuntu Homepage is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Ubuntu Homepage is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.