This file contains 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: guest light automation | |
description: guest automation for lights on/off | |
trigger: | |
- type: motion | |
platform: device | |
device_id: bf4f40f0e5729debfffc56ddd7e5f576 | |
entity_id: binary_sensor.guest_motion | |
domain: binary_sensor | |
id: motion-detected | |
- type: no_motion |
This file contains 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: yard lights automation | |
description: yard automation for lights on/off | |
trigger: | |
- type: occupied | |
platform: device | |
device_id: 69f6be5c3f03a0d931cac057e97fcfe2 | |
entity_id: binary_sensor.patio_motion | |
domain: binary_sensor | |
id: motion-detected | |
- type: not_occupied |
This file contains 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
// surfingkeys conf | |
settings.hintAlign = "left" ; | |
settings.omnibarSuggestionTimeout = 500; | |
settings.showModeStatus = false; | |
iunmap(":"); // Disable emoji suggestions. |
This file contains 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
""""general options | |
"let configpath = '/home/zeltak/.cvimrc' | |
"set localconfig | |
" Settings | |
let barposition = "bottom" | |
This file contains 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
ylist <- list() | |
path.data<-"/media/NAS/Uni/Projects/P046_Israel_MAIAC/3.Work/2.Gather_data/FN003_AOd_allyears/" | |
for(i in 2000:2001){ | |
ylist[[ paste0('dat',i) ]] <- clippedaod[yr == i] | |
saveRDS(ylist[i],paste0(path.data, "allaod_", i, ".rds") | |
print(i) | |
} |