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
<p style="text-align: start"> | |
{%- if states('input_boolean.holiday_mode') == "on" -%} | |
{#- Holiday Mode -#} | |
🇬🇧 {{ now().timestamp() | timestamp_custom('%I:%M %p') }}<br> | |
{%- else %} | |
{#- Not Holiday Mode -#} | |
{#- Shell Home/Away -#} | |
{# {%- if states('person.shell') != "home" %} | |
👰 Away ({{ relative_time(states.person['shell'].last_changed) }} ago)<br> #} | |
{# {%- else %} |
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
alias d="docker-compose" | |
alias k="kubecolor --force-colors --light-background " | |
alias tf="terraform" | |
alias kctx="kubectx" | |
alias kns="kubens" | |
alias knet="/usr/local/bin/kubectl run -it --rm --restart=Never alec --image=praqma/network-multitool bash" | |
alias watch='watch --color ' | |
# kubectl edit xyx opens in vscode | |
export KUBE_EDITOR='code --wait' |