TileBoard - New dashboard for Homeassistant

Hi

I’ve made changes in custom.css but they are not reflecting in the gui. I am only starting up and my knowledge with css is zero. Here is I am trying to do: Change the size of the Fonts of the Clock on main page.

custom.css (I am assuming this is the same file in the styles directory?)
.header clock { font-size: 28px; }

Please help. Thank you

Never mind. I made changes using MS Edge. But now I opened Firefox and I can see the changes. weird.

Hi Phil

Did you manage to do this? Any chance of sharing the css? Thank you.

Hi, I want to install the NWS integration.
Need to fill in a API key, this suppose to be random (with email) but won’t work for me.
Get the error ‘Connection failed, try again’

How to get it working/installed in HA?

Did you get this working?
Would like to use this also (weather in Netherlands).

I like the Tileboard, i have made so mane changes to the files and i’m stuck on old version… but… ist ok. Anyway, i also have a raspberry 4 with plex installed so i need tho show on my panel all the movies and tv shows that are available on my Plex. Hope you like it :slight_smile:

Here is a short preview of the integration: https://youtu.be/4QqvZev-HNk

2 Likes

Hi Samir,

sorry, bot distracted, and not looked at it again - will see if i can look at it shortly.

Jason

cant make it work,what is the content of run once js file? is the cod from here? https://stackoverflow.com/a/20430478
if yes… i have errors about

angular.module('vkApp')

please be kind and guide me.
regards

Really like it. would you mind sharing your configuration? I’m also using Plex a lot so this will be useful.

i can share the scripts, but you must first make sure you have webserver running on your raspberry, where the plex is installed.

I love this weather layout, and thanks so much for sharing! Quick question, I’m really not good at all with JS, so trying some copy and paste, and keep getting this “undefined” error. Might anyone know what it is? My code matches above verbatim, so saving reposting the code:
1

hi @shep,
if you just want to get rid of the undefined, i’d add the following:

state: false,

(mine’s added under the title property, but it doesn’t matter on the order to be honest)

Jason

Thank you so much! Worked perfectly! :slight_smile: Looks amazing and really appreciate the help!

Thanks. I will pass then as i’m not using a Raspberry pi for my server. But good job anyway on your page. Look nice.

Thanks. Anyway, its not about raspberry, its about a web server that can show web pages. Apache will do that job

How do I get the “mdi:weather-snowy-rainy” icon to show up in the Weather_List tile? Or maybe a better question is, how do you add custom icons to the weather_list tile?

@resoai, @rchl - could you please advise if this is possible please :pleading_face:

Hi,
I got my tileboard up and running, love how it looks. Though I’ve been struggling with something for a few days now, I have Spotify set up, trying to get “source” to work. If I use “Types.Media.Player”, it works, but I don’t like the volume slider.

So, instead, Id like to use this

Currently, I’ve specified

                     {
                        position: [0, 2],
                        type: TYPES.CUSTOM,
                        title: 'Source',
                        id: 'media_player.spotify_yoghurt',
                        state: false,
                        bgOpacity: 0.9,
                        width: 3,
                        height: 1,
                        icon: 'mdi-cast-audio',
                        action: function (item, entity) {
                                this.apiRequest({
                                type: 'call_service',
                                domain: 'media_player',
                                service: 'select_source',
                                service_data: {
                                 source:'media_player.study_speaker',
                                   entity_id: 'media_player.spotify_yoghurt',
                                   }
                              });
                          }

I’ve tried different using a different source, ‘study_speaker’, though that hasn’t worked either. The goal would be the list of all the Google Cast devices, but I cant even get it to change the source to one of them

Any ideas?

Still searching for smart solution for my design…

Current state:

To reduce size of all icons I put placed this:

.item-background{
    background-size: 65%;
    background-repeat: no-repeat;
    background-position: 50%;
}

if custom.css.
However would like to change one Tile (called “Domofon”) and have bacground-size: 90% there. Can you please help me with that?

1 Like

For a particular tile you have 2 options:

  • use
customStyles: { 
  background-size: 20%; 
  etc... 
}

or even better use

classes: ['-my-special-class'],

and in custom.css use whatever you want.
With classes you can reuse/extend that class for any tile you want.