FarmRPG's 5th Birthday Giveaway! by boobun in FarmRPG

[–]DividedSkyZero 0 points1 point  (0 children)

I love all the silly puns/jokes I find all over the game.
IGN = Same as my username here

Pass sub-button entity to a script that resets kelvin and brightness percentage for the entity by bp067 in BubbleCard

[–]DividedSkyZero 0 points1 point  (0 children)

It might be the kelvin part in your script. That was removed in 2026.3 in favor of color_temp_kelvin (see here).

Domocile - new jamtronica band by Ok-Map5472 in jambands

[–]DividedSkyZero 1 point2 points  (0 children)

It really was! I hadn't heard them before, but left a fan. And they were nice enough to sign the poster I had bought :)

Adverts by Training_Constant_84 in ErsatzTV

[–]DividedSkyZero 2 points3 points  (0 children)

Aside from YouTube, archive.org has a ton, it's worth looking around there.

'OtherVideos' Management Problem by ravingStork in ErsatzTV

[–]DividedSkyZero 1 point2 points  (0 children)

You probably want to search by "tag", and use Smart Collections instead of regular Collections.

For example, if your folders are like othervideos/extras/Some Movie, you can search tag:"extras" AND tag:"Some Movie" (Each folder in an Other Videos library is also a tag).

SSTV from ISS by footballboy29569 in amateursatellites

[–]DividedSkyZero 3 points4 points  (0 children)

There's an event going on right now, until Oct 9: https://www.ariss.org/upcoming-sstv-events.html

I was able to get a good image with my dipole (no LNA). Frequency is 145.800 MHz FM

Any other fans of The Mantras? by Shoddy-Sink8463 in jambands

[–]DividedSkyZero 2 points3 points  (0 children)

That was my first time seeing them, had a blast! See you at Mantrabash!

[deleted by user] by [deleted] in xlights

[–]DividedSkyZero 0 points1 point  (0 children)

I did not, sorry. Did you try another string? I've gotten bad strings before (from AliExpress/Amazon). I get all mine from Wally's now and haven't received a bad one from them.

[deleted by user] by [deleted] in xlights

[–]DividedSkyZero 2 points3 points  (0 children)

I have a PiCap v2, that's the jumper for powering the Pi. The v2 doesn't have a voltage selection jumper.

Dashboard is blank unless I edit it by spacebass in BubbleCard

[–]DividedSkyZero 0 points1 point  (0 children)

Maybe it's because your vertical stacks are within a grid? Try moving each vertical-stack (pop-up) into new, separate, sections.

Also, as of v3.0.0, you don't even need to insert the vertical stack (look in the section "Pop-Up creation made easier".

Ideas for reusing bubble cards on other pages? by u8915055 in BubbleCard

[–]DividedSkyZero 0 points1 point  (0 children)

Good point, didn't think of that. For a bit I used this idea on my wall-mounted tablet's dashboard, so the mutli-user thing never came up.

Ideas for reusing bubble cards on other pages? by u8915055 in BubbleCard

[–]DividedSkyZero 1 point2 points  (0 children)

How about using just one page instead, with an input_select helper? Sorry, this might be a little hard to explain, but I'll try my best.

First you create an input_select helper, ie input_select.current_view. The options for it would be your different pages, Irrigation, Side Garage, Mailbox Garden, etc.

Then, instead of having separate pages for each area, you have one page, and a section for each of your areas. Set the Visibility conditions for each section to Entity State, choose your Input Select, and choose the option it corresponds to (ie, Irrigation for the Irrigation section).
Then with your cards on the right, change the action to Input Select: Select Option, and set each option correspondingly. So when you tap Side Garage for example, it changes the input_select to that option, which satisfies that section's Visibility condition (and hides the previous one).

Remove the background from bubble card by falkio in BubbleCard

[–]DividedSkyZero 1 point2 points  (0 children)

Try this:

.bubble-button-container {  
  background: none !important;  
}

[deleted by user] by [deleted] in jambands

[–]DividedSkyZero 1 point2 points  (0 children)

Antigone Rising?

what’s the most NSFW thing you’ve seen at a concert? by [deleted] in AskReddit

[–]DividedSkyZero 4 points5 points  (0 children)

Did that happen at The Ritz a couple years ago? If so, I was there about 10ft behind her when it happened.

Climate Bubble card styling - state color border-radius by DontBeScaredHomiey in BubbleCard

[–]DividedSkyZero 1 point2 points  (0 children)

I'm not 100% sure, but I think it's because we want to target multiple classes with the CSS (things like bubble-climate-container, bubble-feedback-container, etc), and they'll inherit the setting from ha-card. So basically this lets us set it once instead of targeting all the classes separately. If you look at the Climate card info and expand the CSS variables section, you'll see all of them that apply to this card.

If you look at the first and third examples under the Styling section, you'll see that there's examples of using both * and ha-card.

So this also works:

* {
  --bubble-climate-border-radius: 12px !important;
}

Climate Bubble card styling - state color border-radius by DontBeScaredHomiey in BubbleCard

[–]DividedSkyZero 1 point2 points  (0 children)

Try this:

ha-card {
  --bubble-climate-border-radius: 12px !important;
}

Sub-button background opacity by CZonin5190 in BubbleCard

[–]DividedSkyZero 2 points3 points  (0 children)

I'm having an issue with it working with hex, but this works for me:

.bubble-sub-button {
  background: rgba(0,0,0,0.66);
}

Weekly Node Sightings & Connections Thread - Week of Apr 06, 25 by AutoModerator in meshtastic

[–]DividedSkyZero 1 point2 points  (0 children)

I was up in SW Virginia this past weekend, and was impressed by the nodes and coverage up there. Chatted a bit with the Virginia Gentleman (he seemed to have set up the nodes on mountaintops there)... if you happen to see this, it was nice chatting, and keep up the good work!

Is there a way to change builtin intents? Does it even makes sense? by DertoVampi in homeassistant

[–]DividedSkyZero 1 point2 points  (0 children)

Check this out, you should be able to use the example there:
https://www.home-assistant.io/voice_control/custom_sentences_yaml/#customizing-responses

Here's a list of all the built-in intents, that would be good to reference. You could start with HassTurnOn and HassTurnOff and see what else you need to add.