#288 Updated some of the static Holidays using Command Line

This commit is contained in:
ccostan
2019-10-21 17:42:01 -04:00
parent d71547b1b0
commit 6987313cbc
2 changed files with 6 additions and 10 deletions

View File

@@ -63,18 +63,16 @@ sensor:
# Countdown Sesor using WolfRam Alpha Natural language queries
################################################################################
- platform: rest
- platform: command_line
name: Halloween Countdown
resource: !secret wolframalpha_halloween_api
value_template: "{{ (value|replace(' days', '')) | int }}"
command: "HALLOWEEN=`date -d 'Oct 31' +%j | awk '{print $1 + 0}'`; TODAY=`date +%j | awk '{print $1 + 0}'`; DAYS=$(($HALLOWEEN - $TODAY)); echo $DAYS"
unit_of_measurement: Days
scan_interval: 43200
- platform: rest
name: Christams Countdown
resource: !secret wolframalpha_xmas_api
value_template: "{{ (value|replace(' days', '')) | int }}"
unit_of_measurement: Days
- platform: command_line
command: "XMAS=`date -d 'Dec 25' +%j | awk '{print $1 + 0}'`; TODAY=`date +%j | awk '{print $1 + 0}'`; DAYS=$(($XMAS - $TODAY)); echo $DAYS"
name: Christmas Countdown
unit_of_measurement: days
scan_interval: 43200
- platform: rest