├── LICENSE ├── README.md ├── images ├── arch-logo-od.png ├── cat.gif └── preview.png ├── index.html ├── script.js └── styles.css /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) [2021] [kennethcheo] 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # startpage 2 | 3 | Custom browser startpage with colors inspired by the [One Dark syntax theme](https://github.com/atom/atom/tree/master/packages/one-dark-syntax) for the [Atom text editor](https://atom.io). 4 | 5 | Forked from https://github.com/kencx/startpage.git and added time module and changed the colorscheme. 6 | 7 | ## Preview 8 | [Live Preview](https://michaelneuper.github.io/startpage/) 9 |  10 | 11 | ## Usage 12 | - Clone this repo or download the `.zip` 13 | - Go to browser settings and choose custom homepage 14 | - Copy and paste the file path to the `index.html` file 15 | 16 | ## Modifying 17 | Change the: 18 | - _timezone_ in line 5 in `script.js` 19 | - _locale_ in line 13 in `script.js` 20 | - _font_ in line 12 in `styles.css` 21 | - _links_ in `index.html` 22 | - _colors_ in `styles.css` 23 | - Color reference: 24 | 25 |  26 | 27 | - _picture_ in `index.html` from the [cat gif](https://twitter.com/avogado6/status/1165595520967954432?s=19) 28 | -------------------------------------------------------------------------------- /images/arch-logo-od.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelneuper/startpage/4f5b43a1f221ce9fe1cbfe3135c71d85597ead9b/images/arch-logo-od.png -------------------------------------------------------------------------------- /images/cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelneuper/startpage/4f5b43a1f221ce9fe1cbfe3135c71d85597ead9b/images/cat.gif -------------------------------------------------------------------------------- /images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelneuper/startpage/4f5b43a1f221ce9fe1cbfe3135c71d85597ead9b/images/preview.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |22 |