This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: deCONZ - IKEA SOMRIG shortcut button | |
| domain: automation | |
| input: | |
| remote: | |
| name: Remote | |
| description: The remote that will control the lights | |
| selector: | |
| device: | |
| integration: deconz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \usepackage[backend=biber, style=iso-numeric, sorting=none, bibencoding=UTF8]{biblatex} | |
| \let\oldcite\cite | |
| \renewcommand*\cite[1]{\textsuperscript{\oldcite{#1}}} | |
| \usepackage{listingsutf8} | |
| \lstset{ | |
| basicstyle=\small\ttfamily, | |
| numbers=left, | |
| stepnumber=1, | |
| columns=flexible, | |
| inputencoding=utf8, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo `date`" Checking for new version..." >> result-deploy.log | |
| git pull > result-git.log | |
| OK=`cat result-git.log | grep "Already up-to-date."` | |
| if [[ $OK == "" ]]; then | |
| npm run dist > result-npm.log | |
| OK=`cat result-npm.log | grep "Success!"` | |
| if [[ $OK != "" ]]; then | |
| rm -rf web/testing-OLD > /dev/null 2>&1 | |
| mv web/testing web/testing-OLD > /dev/null 2>&1 |