Home

Awesome

A bloated and modern-looking startpage

maintained contributions HitCount Codacy Badge

Live Preview

Gallery

<div align='center'> <h3> <img src='/scrots/idle.png' align='center'> </h3> </div>
Search AutosuggestionSettings
screenshotscreenshot
Web MenuWeather Forecast
screenshotscreenshot

Features

Keybindings

Swipe gestures

Quick search

Customization and Settings

Changing the colors, blur strength, and animation speed on-the-fly

Adding more buttons on the web menu

Add more buttons or web shortcuts in web menu by editing the webSites array in js/config.js. Make sure to put an icon with svg format for the shortcut in assets/webcons/ folder.

const webSites = [
	{
		site: 'Reddit',
		icon: 'reddit',
		url: 'https://reddit.com/',
		category: 'social'
	},
	...
]

Adding more buttons on the dock

To add more web shortcuts/buttons in the dock, you have to edit the dockSites array in js/config.js. Make sure to put an icon with svg format for the shortcut in assets/webcons/ folder.

const dockSites = [
	{
		site: 'Reddit',
		icon: 'reddit',
		url: 'https://reddit.com/'
	},
	...
]

Adding more search engine in selection

Add more search engine in selection by editing the searchEngines object in js/config.js. Make sure to follow the format below:

const searchEngines = {
	'duckduckgo': {
		name: 'Duckduckgo',
		prefix: 'https://duckduckgo.com/?q='
	},
	...
}

Adding more quick search urls

Add more quick search shortcuts by editing the quickSearchData object in js/config.js. Make sure to follow the format below:

const quickSearchData = {
	'r/': {
		urlPrefix: 'https://reddit.com/r/'
	},
	...

Set your OpenWeatherMap API key

Setting up your OpenWeatherMap credential is a breeze.

Note:

Changing the default search engine

Google is the default search engine of the search bar, if you want to change it to DuckDuckGo or something:

Changing the profile picture

Changing the background image

The background image changes based on time.

Keybindings

Important Note

TODO