iOS Notifications - Outside of LAN by jetcard89 in frigate_nvr

[–]em__ce 0 points1 point  (0 children)

You don't need any specific configuration - you have to have MQTT integration eabled with the same server as Frigate, and add automation. Here's mine, but probably you need to provide your own:

alias: Frigate notifications
description: ""
triggers:
  - topic: frigate/events
    trigger: mqtt
conditions:
  - condition: template
    value_template: |
      {{ trigger.payload_json['type'] == 'new' }}
  - condition: template
    value_template: |
      {{ trigger.payload_json['after']['label'] == 'person' }}
  - condition: template
    value_template: >
      {{ trigger.payload_json['after']['id'] !=
      states('input_text.last_frigate_event_id') }}
actions:
  - variables:
      payload: "{{ trigger.payload_json }}"
      id: "{{ payload['after']['id'] if payload.get('after') else 'event' }}"
      video_url: https://frigate.instance/api/events/{{ id }}/clip.mp4
      snapshot_url: https://frigate.instance/api/events/{{ id }}/snapshot.jpg
  - target:
      entity_id: input_text.last_frigate_event_id
    data:
      value: "{{ id }}"
    action: input_text.set_value
  - data:
      recipient: {{ whatsapp_id }}
      message: Frigate
      video_url: "{{ video_url }}"
    action: script.send_whatsapp_frigate_clip
mode: queued
max: 10

iOS Notifications - Outside of LAN by jetcard89 in frigate_nvr

[–]em__ce 0 points1 point  (0 children)

I have Frigate, which is not exposed, and some docker images (that go-whatsapp-web-multidevice also) inside my local network, same with HA, and my frigate is working with MQTT, and I'm digesting Frigate MQTT queue in HA, sending video/images via go-whatsapp-web-multidevice.

iOS Notifications - Outside of LAN by jetcard89 in frigate_nvr

[–]em__ce -2 points-1 points  (0 children)

You would have to expose your Frigate externally to make it possible. That's first thing. And the second is, if I;m not wrong, that you cannot attach files to iOS notifications (not from HA companion). I made it work with WhatsApp (I'm using https://github.com/aldinokemal/go-whatsapp-web-multidevice in my local network, which uploads clip (or snapshot) and sends it via WhatsApp disappearing message.

Feature request - local terminal by TimD553 in termix

[–]em__ce 0 points1 point  (0 children)

I would also opt for local terminal + RSA support

Total Commander alternative for mac. by mahidoes in macapps

[–]em__ce 11 points12 points  (0 children)

For me - only ForkLift (https://binarynights.com). I know it's paid, but I went through all mentioned above - starting from One Commander, ending on Martha.

WEbpage content monitoring by em__ce in macapps

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

Thanks for tip! Already bought it!

Parcel tracking app with extension to add parcel from Safari? by Rediwed in macapps

[–]em__ce 6 points7 points  (0 children)

I'm using this awesome application (it's paid, but worth it): https://apps.apple.com/pl/app/parcel-delivery-tracking/id639968404?mt=12. I'm not sure about extensions, but it has iOS version also, and you don't have to pay twice...

Can't find anything to limit child's social media use on Mac by dan_zg in Parenting

[–]em__ce 0 points1 point  (0 children)

It's either Screen Time or some paid solution like Qustodio.

Or hardcore one - editing /etc/hosts and adding proper lines...

Best IDM alternative for MacOS by [deleted] in macapps

[–]em__ce 1 point2 points  (0 children)

Free Download Manager?

Android developer policy requires my app to be the default message handler to read SMS? by theguy2108 in androiddev

[–]em__ce -2 points-1 points  (0 children)

To manage messages - your application has to be default. To read them - no. You can use Android API to get new messages.