Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
HISTSIZE=1000000 | |
HISTFILESIZE=2000000 | |
PROMPT_COMMAND='[[ $_PWD == $PWD ]] || { _PWD=$PWD; ls; }' | |
PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]$(__git_ps1 " \[\033[32m\](%s)\[\033[00m\]")\n\$ ' | |
shopt -s autocd |
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
speechAgent: { | |
enable: true, | |
notifyWhen: () => { | |
const hours = new Date().getHours(); | |
return 7 <= hours && hours < 19; | |
}, | |
notifyScript: ({ temperature, eTVOC }) => { | |
return [ | |
temperature <= 18 ? "暖房を入れましょう" : null, | |
28 <= temperature ? "暖房を切りましょう" : null, |