mirror of
https://github.com/GeorgeSG/sarah.git
synced 2026-06-21 02:47:44 +00:00
remove mentions on config folder
This commit is contained in:
+2
-2
@@ -2,8 +2,8 @@ extends: default
|
|||||||
|
|
||||||
ignore: |
|
ignore: |
|
||||||
appdaemon/
|
appdaemon/
|
||||||
config/templates/partials/
|
templates/partials/
|
||||||
config/secrets.yaml
|
secrets.yaml
|
||||||
|
|
||||||
rules:
|
rules:
|
||||||
document-start:
|
document-start:
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ keep everything organized and grouped by different functionalities.
|
|||||||
- `routines` - definitions of automated routines - e.g. Coming Home or Waking Up
|
- `routines` - definitions of automated routines - e.g. Coming Home or Waking Up
|
||||||
- `sensors` - describing sensors the house can use
|
- `sensors` - describing sensors the house can use
|
||||||
|
|
||||||
The `speech` module uses [partial templates](https://github.com/GeorgeSG/sarah/tree/master/config/templates/partials) to generate more complex messages.
|
The `speech` module uses [partial templates](https://github.com/GeorgeSG/sarah/tree/master/templates/partials) to generate more complex messages.
|
||||||
|
|
||||||
## Hardware
|
## Hardware
|
||||||
|
|
||||||
|
|||||||
+1
-2
@@ -7,8 +7,7 @@ homeassistant:
|
|||||||
time_zone: Europe/Sofia
|
time_zone: Europe/Sofia
|
||||||
packages: !include_dir_named packages
|
packages: !include_dir_named packages
|
||||||
allowlist_external_dirs:
|
allowlist_external_dirs:
|
||||||
- /config/www/audio/youtube
|
- /www/audio/youtube
|
||||||
- /config
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# ─── HOME ASSISTANT COMPONENTS ENABLED ──────────────────────────────────────────
|
# ─── HOME ASSISTANT COMPONENTS ENABLED ──────────────────────────────────────────
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ youtube_url = sys.argv[1]
|
|||||||
out_name = sys.argv[2] if len(sys.argv) > 2 else 'temp'
|
out_name = sys.argv[2] if len(sys.argv) > 2 else 'temp'
|
||||||
out_folder = sys.argv[3] if len(sys.argv) > 3 else ''
|
out_folder = sys.argv[3] if len(sys.argv) > 3 else ''
|
||||||
|
|
||||||
full_file_path = f"""/config/www/audio/youtube/{out_folder}{out_name}"""
|
full_file_path = f"""/www/audio/youtube/{out_folder}{out_name}"""
|
||||||
|
|
||||||
ydl = youtube_dl.YoutubeDL({'format': 'bestaudio', 'outtmpl': full_file_path})
|
ydl = youtube_dl.YoutubeDL({'format': 'bestaudio', 'outtmpl': full_file_path})
|
||||||
|
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ sensor:
|
|||||||
|
|
||||||
|
|
||||||
shell_command:
|
shell_command:
|
||||||
clear_logs: truncate -s 0 /config/home-assistant.log
|
clear_logs: truncate -s 0 /home-assistant.log
|
||||||
|
|
||||||
script:
|
script:
|
||||||
sarah_restart:
|
sarah_restart:
|
||||||
|
|||||||
Reference in New Issue
Block a user