Go to file
2023-07-25 13:55:20 +00:00
css Better mobile view 2023-07-25 12:32:21 +00:00
examples Added examples, theme default-shadow. Bumped to v4. 2023-07-25 13:34:38 +00:00
fonts Initial commit 2023-07-25 11:01:17 +00:00
images/backgrounds Added support for background images 2023-07-25 13:04:28 +00:00
js Added examples, theme default-shadow. Bumped to v4. 2023-07-25 13:34:38 +00:00
index.html Added examples, theme default-shadow. Bumped to v4. 2023-07-25 13:34:38 +00:00
README.md Update README.md 2023-07-25 13:55:20 +00:00
themes.yaml Added examples, theme default-shadow. Bumped to v4. 2023-07-25 13:34:38 +00:00
VERSION Added examples, theme default-shadow. Bumped to v4. 2023-07-25 13:34:38 +00:00

Dashie

Dashie is a simple personal dashboard with themes and multiple pages, generated per visit from the YAML configuration files. The YAML configuration files have to be edited by hand.

There is no multiuser support right now.

Inspired by Dashy, https://dashy.to/.

Installation

Copy examples/*.yaml to the web root, and put everything on a webserver serving the directory statically.

Themes

The themes.yaml file in the web root has the following format per theme:

gruvbox: # Name of theme.
  page:
    text: "#bdae93" # Color of the page name.
    background: "#282828 url('/images/backgrounds/gruvbox.svg')" # background color/image of the page.
    header: "#504945" # Background color of the header section.
    footer: # Colors for the footer (The 'Dashie v[x]' line).
      show: true # Show or hide the footer.
      text: "#a89984"
      background: "#504945"

  page_select: # Colors for the page boxes.
    text: "#bdae93"
    background: "#3c3836"

  theme_select: # Colors for the theme selector.
    text: "#bdae93"
    background: "#3c3c36"
    border: "#665c54"

  section:
    background: "#504945"
    shadow: "10px 10px 15px 0px rgba(0, 0, 0, 0.25)"
    # These colors will be used in a roundrobin fashion when displaying
    # sections, if a section is not explicitly using a color index.
    # The first is the border color, the second is the section label color.
    borders:
      - ["#fb4934", "#eee"]
      - ["#b8bb26", "#333"]
      - ["#fabd2f", "#333"]
      - ["#458588", "#eee"]
      - ["#fe8019", "#333"]
      - ["#689d6a", "#333"]

  item:
    label: # The label can be left blank to receive the same color as the section border.
    background: "#282828"
    description: "#d5c4a1"
    url: "#a89984"
    icon: # Icon can be left blank, same behaviour as label.
    hover: brighter # Determines mouse pointer hovering over section background color.
                    #Can be brighter, darker or anything else to disable behaviour.