mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-06-21 08:12:57 +00:00
25 lines
844 B
YAML
Executable File
25 lines
844 B
YAML
Executable File
#-------------------------------------------
|
|
# @CCOSTAN
|
|
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
|
# Minecraft related stuff
|
|
#-------------------------------------------
|
|
automation:
|
|
- alias: Someone on the MC server!
|
|
id: e7cc50d1-2374-4923-8e0c-2a59ff593cf8
|
|
trigger:
|
|
- platform: state
|
|
entity_id: sensor.minecraft_players_online
|
|
|
|
action:
|
|
- service: script.notify_engine
|
|
data:
|
|
value1: >
|
|
{% if states.sensor.minecraft_players_online.state|int > 0 %}
|
|
{{ states.sensor.minecraft_players_online.state }} player(s) connected to Minecraft server
|
|
{% else %}
|
|
All players disconnected from Minecraft server
|
|
{% endif %}
|
|
title: "Minecraft Server Status"
|
|
who: 'carlo'
|
|
group: 'information'
|