Skip to content
/ MinTab Public
forked from newmanls/mintab

A minimal, elegant, easy to configure startpage

License

Notifications You must be signed in to change notification settings

barn852/MinTab

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MinTab

A minimal, elegant, easy to configure startpage.

MinTab screenshot

Features

  • Themeable.
  • Easy to configure.
  • Time format can be set to 24 or 12 hours (24h is default).
  • New quotes everytime you open a new tab.
  • Full icons support from Remix Icon.

Usage

As Home Page:

  1. Fork this repo.
  2. Enable the Github Pages service Settings > GitHub Pages > Source [master branch] > Save.
  3. Set it as Home Page:
    • Click the menu button. and select Options. Preferences.
    • Click the Home panel.
    • Click the menu next to Homepage and new windows and choose to show custom URLs and add your Github Pages link

As New Tab:

You can use different Add-ons/Extensions for it

Customization

Links

You can change icons and list links in the config.js file. Just select an icon from Remix Icon or a name, and a link:

const ICONS = [
  {
    icon: "ri-youtube-fill",
    link: "https://www.youtube.com/"
  },
  {
    icon: "ri-whatsapp-fill",
    link: "https://web.whatsapp.com/"
  },
  {
    icon: "ri-reddit-fill",
    link: "https://www.reddit.com/"
  },
  {
    icon: "ri-github-fill",
    link: "https://www.github.com/"
  }
]

const LIST_ITEMS = [
  {
    name: "music",
    link: "https://music.youtube.com"
  },
  {
    name: "netflix",
    link: "https://www.netflix.com/"
  },
  {
    name: "r/unixporn",
    link: "https://www.reddit.com/r/unixporn/"
  },
  {
    name: "r/firefoxcss",
    link: "https://www.reddit.com/r/firefoxcss/"
  },
]

You can copy this format and add as many links as you want.

Clock

You can set hour format for 24 or 12 hour clock in the config.js file. Just set hour12 to true or false:

const CONFIG = {
  hour12  : false
}

Theme

You can change colors, font and animation speed at the top of the styles.css file:

:root {
  --fgColor   : #ffffff; /* foreground color */
  --bgColor   : #212121; /* background color */
  --bgFilter  : rgba(0, 0, 0, 0.1); /* background image filter */
  --font      : "Roboto"; /* custom font */

  --animationSpeed  : 0.2s; /* speed for animations when hovering/resizing */
}

Also, you can change the background image by overwriting the bg.jpg file.

Thanks to

About

A minimal, elegant, easy to configure startpage

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 42.3%
  • JavaScript 38.8%
  • HTML 18.9%