diff --git a/Homer/config.yml b/Homer/config.yml new file mode 100644 index 0000000..9c931cf --- /dev/null +++ b/Homer/config.yml @@ -0,0 +1,152 @@ +--- +# Homepage configuration +# See https://fontawesome.com/v5/search for icons options + +title: "Raspberry Pi Dashboard" +subtitle: "CJ's" +logo: "assets/icons/logo.png" +# icon: "fas fa-skull-crossbones" # Optional icon + +header: true +footer: '

CJs Raspberry Pi Dashboard built on Homer

' # set false if you want to hide it. + +# Optional theme customization +theme: dark +colors: + light: + highlight-primary: "#3367d6" + highlight-secondary: "#4285f4" + highlight-hover: "#5a95f5" + background: "#f5f5f5" + card-background: "#ffffff" + text: "#363636" + text-header: "#ffffff" + text-title: "#303030" + text-subtitle: "#424242" + card-shadow: rgba(0, 0, 0, 0.1) + link: "#3273dc" + link-hover: "#363636" + dark: + highlight-primary: "#d63333" + highlight-secondary: "#f44242" + highlight-hover: "#5a95f5" + background: "#131313" + card-background: "#2b2b2b" + text: "#eaeaea" + text-header: "#ffffff" + text-title: "#fafafa" + text-subtitle: "#f5f5f5" + card-shadow: rgba(0, 0, 0, 0.4) + link: "#dc3232" + link-hover: "#ffdd57" + +# Optional message +#message: +# #url: https://b4bz.io +# style: "is-dark" # See https://bulma.io/documentation/components/message/#colors for styling options. +# title: "Demo !" +# icon: "fa fa-grin" +# content: "This is a dummy homepage demo.
Find more information on github.com/bastienwirtz/homer" + +# Optional navbar +# links: [] # Allows for navbar (dark mode, layout, and search) without any links +links: + - name: "Contribute" + icon: "fab fa-github" + url: "https://github.com/bastienwirtz/homer" + target: "_blank" # optional html a tag target attribute + # this will link to a second homer page that will load config from additional-page.yml and keep default config values as in config.yml file + # see url field and assets/additional-page.yml.dist used in this example: + - name: "another page!" + icon: "fas fa-file-alt" + url: "#additional-page" + +# Services +# First level array represent a group. +# Leave only a "items" key if not using group (group name, icon & tagstyle are optional, section separation will not be displayed). +services: + - name: "Servers" + icon: "fas fa-server" + items: + - name: "Portainer" + logo: "assets/icons/portainer.png" + subtitle: "Docker" + tag: "Tools" + keywords: "Docker Portainer" + url: "http://[IP]:9000/" + target: "_blank" + - name: "Nginx" + logo: "assets/icons/nginx.png" + subtitle: "Proxy manager" + tag: "Tools" + url: "http://[IP]:81/" + target: "_blank" + - name: "Wire Guard" + logo: "assets/icons/wireguard.png" + subtitle: "VPN" + tag: "Tools" + url: "http://[IP]:51821/" + target: "_blank" + - name: "Pi-Hole" + logo: "assets/icons/pihole.svg" + # subtitle: "DNS Server" + url: "http://[IP]:1010/admin/" + type: "PiHole" + target: "_blank" + + - name: "Cloud Applications" + icon: "fas fa-cloud" + items: + - name: "Plex" + logo: "assets/icons/plex.png" + subtitle: "Media Server" + tag: "Cloud app" + url: "http://[IP]:32400/web/" + target: "_blank" + - name: "NextCloud" + logo: "assets/icons/nextcloud.png" + subtitle: "Access portal" + tag: "Cloud app" + url: "https://[IP]:8443/" + target: "_blank" + - name: "Wordpress" + logo: "assets/icons/wordpress.png" + subtitle: "Blog" + tag: "Cloud app" + url: "http://[IP]:5080/" + target: "_blank" + - name: "Grafana" + logo: "assets/icons/grafana.png" + subtitle: "Monitoring Stats" + tag: "Cloud app" + url: "http://[IP]:3000/" + target: "_blank" + + + - name: "Web Tools" + icon: "fas fa-ethernet" + items: + - name: "YouTube DL" + logo: "assets/icons/ytdl.png" + subtitle: "Video Downloader" + tag: "Cloud app" + url: "http://[IP]:17442/" + target: "_blank" + - name: "NextCloud" + logo: "assets/icons/nextcloud.png" + subtitle: "Admin Dashboard" + tag: "Cloud app" + url: "https://[IP]:4444/" + target: "_blank" + - name: "Whoogle" + logo: "assets/icons/whoogle.png" + subtitle: "Google without the ads" + tag: "App" + url: "http://[IP]:5001/" + target: "_blank" + - name: "Transmission" + logo: "assets/icons/transmission.png" + subtitle: "Torrent manager" + tag: "Web app" + url: "http://[IP]:9091/" + target: "_blank" \ No newline at end of file