Simply include the file within your configuration.yaml file like this:
# ...
input_number: !include input_numbers.yaml
# ...Restart your Home Assistant to update the values (reloading YAML will not be enough).
| #!/usr/bin/env bash | |
| # checck if pidof exists | |
| PIDOF="$(which pidof)" | |
| # and if not - install it | |
| (test "${PIDOF}" && test -f "${PIDOF}") || brew install pidof | |
| # find app in default paths | |
| CO_PWD=~/Applications/CrossOver.app/Contents/MacOS | |
| test -d "${CO_PWD}" || CO_PWD=/Applications/CrossOver.app/Contents/MacOS |
Simply include the file within your configuration.yaml file like this:
# ...
input_number: !include input_numbers.yaml
# ...Restart your Home Assistant to update the values (reloading YAML will not be enough).