-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.yaml
100 lines (83 loc) · 2.42 KB
/
configuration.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
adaptive_lighting:
# Text to speech
tts:
- platform: google_translate
light: !include lights.yaml
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
sensor: !include sensors.yaml
frontend:
themes: !include_dir_merge_named themes
extra_module_url:
- /local/lovelace-card-mod/card-mod.js
http:
ssl_certificate: !secret ssl_certificate_path
ssl_key: !secret ssl_key_path
input_number:
hall_brightness:
name: Brightness
initial: 77
min: 0
max: 255
step: 1
cv_gone:
name: Home Temperature Nobody Home
initial: 18.0
min: 15
max: 23
step: 0.5
# Enable an alert to show that vacation mode is ON
alert:
vacation_mode:
name: Vacation Mode is Enabled
entity_id: input_boolean.vacation_mode
state: 'on'
repeat: 1440
can_acknowledge: false
skip_first: false
notifiers:
- persistent_notification
template:
- sensor:
- name: "Outside Temperature"
unit_of_measurement: "°C"
state: "{{state_attr('weather.home', 'temperature')}}"
- binary_sensor:
name: CV Time Schedule
unique_id: sensor.cv_time_schedule
state: "{{is_state('sensor.otgw_setpoint_ovrd_mode_gateway_cv_ketel', 'N') }}"
icon: >
{% if is_state('sensor.cv_time_schedule', 'on') %}
mdi:clock
{% else %}
mdi:clock-outline
{% endif %}
panel_custom:
- name: ha_auto
sidebar_title: Automations
sidebar_icon: mdi:cog-outline
js_url: /api/hassio/app/entrypoint.js
url_path: 'config/automation'
embed_iframe: true
require_admin: true
- name: ha_logs
sidebar_title: Logs
sidebar_icon: mdi:book-outline
js_url: /api/hassio/app/entrypoint.js
url_path: 'config/logs'
embed_iframe: true
require_admin: true
shell_command:
git_commit: apk add --update openssl && rm -rf /var/cache/apk/* && cd /config && git add -u && { git commit -m "New Backup" || true; }
git_push: cd /config && git push
git_pull: cd /config && git pull
recrypt: cd /config/dehydrate/dehydrated && ./dehydrated -c
install_openssh: apk add --update openssl && rm -rf /var/cache/apk/*
logger:
default: warning
logs:
homeassistant.components.shell_command: debug