mirror of
https://github.com/Lissy93/dashy.git
synced 2025-12-24 01:15:08 +01:00
✨ feature added for categorizing widgets, filtering then as per category in section and srearching widgets category wise from search box. #1882
This commit is contained in:
parent
72e80a1bcf
commit
3f721f2730
2 changed files with 42 additions and 75 deletions
|
|
@ -832,7 +832,7 @@
|
|||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"uniqueItems": true,
|
||||
"uniqueItems": false,
|
||||
"default": []
|
||||
},
|
||||
"sectionLayout": {
|
||||
|
|
|
|||
|
|
@ -1,80 +1,47 @@
|
|||
---
|
||||
# Page meta info, like heading, footer text and nav links
|
||||
pageInfo:
|
||||
title: Dashy
|
||||
description: Welcome to your new dashboard!
|
||||
navLinks:
|
||||
- title: GitHub
|
||||
path: https://github.com/Lissy93/dashy
|
||||
- title: Documentation
|
||||
path: https://dashy.to/docs
|
||||
- title: GitHub
|
||||
path: https://github.com/Lissy93/dashy
|
||||
- title: Documentation
|
||||
path: https://dashy.to/docs
|
||||
|
||||
# Optional app settings and configuration
|
||||
appConfig:
|
||||
theme: dracula
|
||||
layout: auto
|
||||
iconSize: medium
|
||||
theme: colorful
|
||||
|
||||
# Main content - An array of sections, each containing an array of items
|
||||
sections:
|
||||
- name: Getting Started
|
||||
icon: fas fa-rocket
|
||||
items:
|
||||
- title: Dashy Live
|
||||
description: Development a project management links for Dashy
|
||||
icon: https://i.ibb.co/qWWpD0v/astro-dab-128.png
|
||||
url: https://live.dashy.to/
|
||||
target: newtab
|
||||
id: 0_1481_dashylive
|
||||
- title: GitHub
|
||||
description: Source Code, Issues and Pull Requests
|
||||
url: https://github.com/lissy93/dashy
|
||||
icon: favicon
|
||||
id: 1_1481_github
|
||||
- title: Docs
|
||||
description: Configuring & Usage Documentation
|
||||
provider: Dashy.to
|
||||
icon: far fa-book
|
||||
url: https://dashy.to/docs
|
||||
id: 2_1481_docs
|
||||
- title: Showcase
|
||||
description: See how others are using Dashy
|
||||
url: https://github.com/Lissy93/dashy/blob/master/docs/showcase.md
|
||||
icon: far fa-grin-hearts
|
||||
id: 3_1481_showcase
|
||||
- title: Config Guide
|
||||
description: See full list of configuration options
|
||||
url: https://github.com/Lissy93/dashy/blob/master/docs/configuring.md
|
||||
icon: fas fa-wrench
|
||||
id: 4_1481_configguide
|
||||
- title: Support
|
||||
description: Get help with Dashy, raise a bug, or get in contact
|
||||
url: https://github.com/Lissy93/dashy/blob/master/.github/SUPPORT.md
|
||||
icon: far fa-hands-helping
|
||||
id: 5_1481_support
|
||||
- name: Widgets
|
||||
displayData:
|
||||
sortBy: default
|
||||
rows: 1
|
||||
cols: 3
|
||||
collapsed: false
|
||||
hideForGuests: false
|
||||
widgetCategories: [timer, weather]
|
||||
widgets:
|
||||
- type: crypto-watch-list
|
||||
options:
|
||||
limit: 10
|
||||
- type: clock
|
||||
category: timer
|
||||
options:
|
||||
timeZone: Pacific/Auckland
|
||||
format: en-NZ
|
||||
hideDate: false
|
||||
label: Test Label 2
|
||||
- type: weather
|
||||
category: weather
|
||||
options:
|
||||
apiKey: 622126b2099b1a7007af4b3aff676add
|
||||
city: Hamilton, NZ
|
||||
units: metric
|
||||
hideDetails: true
|
||||
- type: weather
|
||||
options:
|
||||
apiKey: 622126b2099b1a7007af4b3aff676add
|
||||
city: Hamilton, NZ
|
||||
units: metric
|
||||
hideDetails: true
|
||||
- name: Getting Started
|
||||
icon: fas fa-rocket
|
||||
items:
|
||||
- title: Dashy Live
|
||||
description: Development a project management links for Dashy
|
||||
icon: https://i.ibb.co/qWWpD0v/astro-dab-128.png
|
||||
url: https://live.dashy.to/
|
||||
target: newtab
|
||||
- title: GitHub
|
||||
description: Source Code, Issues and Pull Requests
|
||||
url: https://github.com/lissy93/dashy
|
||||
icon: favicon
|
||||
- title: Docs
|
||||
description: Configuring & Usage Documentation
|
||||
provider: Dashy.to
|
||||
icon: far fa-book
|
||||
url: https://dashy.to/docs
|
||||
- title: Showcase
|
||||
description: See how others are using Dashy
|
||||
url: https://github.com/Lissy93/dashy/blob/master/docs/showcase.md
|
||||
icon: far fa-grin-hearts
|
||||
- title: Config Guide
|
||||
description: See full list of configuration options
|
||||
url: https://github.com/Lissy93/dashy/blob/master/docs/configuring.md
|
||||
icon: fas fa-wrench
|
||||
- title: Support
|
||||
description: Get help with Dashy, raise a bug, or get in contact
|
||||
url: https://github.com/Lissy93/dashy/blob/master/.github/SUPPORT.md
|
||||
icon: far fa-hands-helping
|
||||
|
||||
Loading…
Reference in a new issue