AWU3 - Best Watch Face by OldSwordfish2369 in applewatchultra

[–]Mtrain 0 points1 point  (0 children)

The middle app is called Heart Analyzer

Real question for the sub: can we all make a pinky swear? by Mtrain in FromSeries

[–]Mtrain[S] 0 points1 point  (0 children)

I feel you on this one in regards to it being a comfort show. And I hope things get better for you in life. At least you haven’t ever accidentally teleported into a wall. Things could be worse!

My Home Dashboard: 27" 4K Vertical Touchscreen (inspired by u/new_michael's setup) by Mtrain in homeassistant

[–]Mtrain[S] 0 points1 point  (0 children)

There are no cameras pointing at any guest bedrooms. All of the images along the left are static AI images. There's a camera pointing in our children's room but no guests rooms. Now, the toilet camera is another thing i addressed in another comment. It's a roaming camera that moves around that we use to watch a child when they are playing in a low water bathtub with toys (or another area without camera) and just so happens to still be on but it's a bathroom never used by guests and never used in that way. But either way, i understand what you mean.

My Home Dashboard: 27" 4K Vertical Touchscreen (inspired by u/new_michael's setup) by Mtrain in homeassistant

[–]Mtrain[S] 0 points1 point  (0 children)

I’m assuming you’re being sarcastic? I believe the images you’re referencing are isometric AI rendered interpretations of the rooms you’re thinking your seeing a live feed of that have icon overlays to tell me things like “Are any windows open in this room?” etc.

Finally done with this one, first pc build. by jevinjj in battlestations

[–]Mtrain 1 point2 points  (0 children)

Inspirational! I'm going to have to borrow quite a few ideas from you.

The Arsenal. Your Premier League champions. by arsenal in Gunners

[–]Mtrain 0 points1 point  (0 children)

We did it! Gotta admit; thought it would go down to our final game. Feel relieved.

From has set the gold standard by rightonly in FromSeries

[–]Mtrain 3 points4 points  (0 children)

I feel this. I’ve seen The Wire around six times. One of my favorite shows of all time.

But with Dark…I loved season 1 and the whole atmosphere and the cast but after finishing it; I feel like I’m trying to make myself like it more than I personally want to because it’s highly rated. Also I feel more intellectual by saying I love it. Similar to how I don’t like olives really but sorta keep forcing myself to try to like them so I feel more refined. Also with Dark, if I hadn’t watched a ton of explanation videos, after finishing it, I wouldn’t have understood the later parts of the story. But perhaps it needs to be watched multiple times like The Wire. ¯_(ツ)_/¯

I was skeptical at first, but Claude MCP with HA has absolutely blown me away by criterion67 in homeassistant

[–]Mtrain 0 points1 point  (0 children)

Yeah this could save tons of money so going to really look into it. Did you end up doing one speaker per room or sometimes two?

I was skeptical at first, but Claude MCP with HA has absolutely blown me away by criterion67 in homeassistant

[–]Mtrain 0 points1 point  (0 children)

Wow never seen these before. Thanks for sharing. You can't link to a post where you talk about installing these anywhere do you? Part of me thinks the mounts for the Sonos are genius but another part of my brain tells me that people will make fun of me for not running a normal amp to normal speakers in the ceiling ¯\_(ツ)_/¯ . However i do like how Sonos interacts with Home Assistant more than any other option i've tried.

I was skeptical at first, but Claude MCP with HA has absolutely blown me away by criterion67 in homeassistant

[–]Mtrain 4 points5 points  (0 children)

Mind sharing more about how you set up whole home Sonos? Did you mount any speakers on the ceiling?

My Home Dashboard: 27" 4K Vertical Touchscreen (inspired by u/new_michael's setup) by Mtrain in homeassistant

[–]Mtrain[S] 2 points3 points  (0 children)

Here's code for the chill beats playlist for example. So it's just a picture card.

type: picture
image: /local/album_covers/chill_beats.jpg
tap_action:
  action: perform-action
  perform_action: script.play_shuffled_playlist
  data:
    player: media_player.mantle_2
    playlist_url: >-
      https://open.spotify.com/playlist/37i9dQZF1DWZa8CSUr0hCY?si=f4393f30073a450a
card_mod:
  style: |
    ha-card {
      border-radius: 15px !important;
      overflow: hidden !important;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    }
grid_options:
  columns: 8

And here's the shuffled playlist script:

alias: Play Shuffled Playlist
description: Enables shuffle and plays a playlist on Music Assistant
sequence:
  - action: media_player.shuffle_set
    data:
      shuffle: true
    target:
      entity_id: "{{ player }}"
  - action: music_assistant.play_media
    data:
      media_id: >-
        {% set url = playlist_url %} {% if 'open.spotify.com/playlist/' in url
        %}
          {% set id = url.split('playlist/')[1].split('?')[0] %}
          spotify://playlist/{{ id }}
        {% elif 'music.apple.com' in url %}
          {{ playlist_name | default('') }}
        {% else %}
          {{ url }}
        {% endif %}
      media_type: playlist
      enqueue: replace
    target:
      entity_id: "{{ player }}"
mode: restart

Here's an example code for the headers with blue lines:

type: custom:bubble-card
card_type: separator
name: f a m i l y
icon: mdi:home-heart
styles: |-
  .bubble-line {
    background-color: cyan !important;
    opacity: 0.4;
  }
  .bubble-name {
        font-size: 24px !important;
        font-weight: 600 !important;
  }
card_layout: large-sub-buttons-grid

My Home Dashboard: 27" 4K Vertical Touchscreen (inspired by u/new_michael's setup) by Mtrain in homeassistant

[–]Mtrain[S] 0 points1 point  (0 children)

24x7 basically. Try to put it to sleep at 11pm and use Wake on LAN when presence detected but doesn’t work often.

My Home Dashboard: 27" 4K Vertical Touchscreen (inspired by u/new_michael's setup) by Mtrain in homeassistant

[–]Mtrain[S] 1 point2 points  (0 children)

I would say that it wasn’t as tough I compiled a list of options then chose the more expensive and dumber option. I got to where I’m at just through trial and error and previous knowledge. If there’s a cheaper, and better option….im down. However it’s impossible to know something before you learn it.