Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
My Home Assistant Public Configuration
  • Loading branch information
kartcon committed Aug 24, 2019
1 parent 052a9f6 commit 72a2151
Show file tree
Hide file tree
Showing 351 changed files with 40,764 additions and 3 deletions.
173 changes: 172 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,173 @@
# Auto detect text files and perform LF normalization
## GITATTRIBUTES FOR WEB PROJECTS
#
# These settings are for any web project.
#
# Details per file setting:
# text These files should be normalized (i.e. convert CRLF to LF).
# binary These files are binary and should be left untouched.
#
# Note that binary is a macro for -text -diff.
######################################################################

## AUTO-DETECT - Handle line endings automatically for files detected
## as text and leave all files detected as binary untouched.
## This will handle all files NOT defined below.
* text=auto

## SOURCE CODE
*.bat text
*.coffee text
*.css text
*.htm text
*.html text
*.inc text
*.ini text
*.js text
*.jsx text
*.json text
*.less text
*.php text
*.pl text
*.py text
*.rb text
*.sass text
*.scm text
*.scss text
*.sh text
*.sql text
*.styl text
*.ts text
*.xml text
*.xhtml text

## DOCUMENTATION
*.markdown text
*.md text
*.mdwn text
*.mdown text
*.mkd text
*.mkdn text
*.mdtxt text
*.mdtext text
*.txt text
AUTHORS text
CHANGELOG text
CHANGES text
CONTRIBUTING text
COPYING text
INSTALL text
license text
LICENSE text
NEWS text
readme text
*README* text
TODO text

## TEMPLATES
*.dot text
*.ejs text
*.haml text
*.handlebars text
*.hbs text
*.hbt text
*.jade text
*.latte text
*.mustache text
*.phtml text
*.tmpl text

## LINTERS
.csslintrc text
.eslintrc text
.jscsrc text
.jshintrc text
.jshintignore text
.stylelintrc text

## CONFIGS
*.bowerrc text
*.cnf text
*.conf text
*.config text
.editorconfig text
.gitattributes text
.gitconfig text
.gitignore text
.htaccess text
*.npmignore text
*.yaml text
*.yml text
Makefile text
makefile text

## HEROKU
Procfile text
.slugignore text

## GRAPHICS
*.ai binary
*.bmp binary
*.eps binary
*.gif binary
*.ico binary
*.jng binary
*.jp2 binary
*.jpg binary
*.jpeg binary
*.jpx binary
*.jxr binary
*.pdf binary
*.png binary
*.psb binary
*.psd binary
*.svg text
*.svgz binary
*.tif binary
*.tiff binary
*.wbmp binary
*.webp binary

## AUDIO
*.kar binary
*.m4a binary
*.mid binary
*.midi binary
*.mp3 binary
*.ogg binary
*.ra binary

## VIDEO
*.3gpp binary
*.3gp binary
*.as binary
*.asf binary
*.asx binary
*.fla binary
*.flv binary
*.m4v binary
*.mng binary
*.mov binary
*.mp4 binary
*.mpeg binary
*.mpg binary
*.swc binary
*.swf binary
*.webm binary

## ARCHIVES
*.7z binary
*.gz binary
*.rar binary
*.tar binary
*.zip binary

## FONTS
*.ttf binary
*.eot binary
*.otf binary
*.woff binary
*.woff2 binary

## EXECUTABLES
*.exe binary
*.pyc binary
45 changes: 45 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
######################################################################
# Folders
######################################################################
config/deps
deps
.homeassistant/deps
tts
unused
__pycache__

######################################################################
# Files
######################################################################
.cloud
*.conf
core.*
*.csr
*.crt
*.db-journal
*.db-shm
*.db-wal
.DS_Store
.HA_VERSION
home-assistant.log
home-assistant_v2.db
.homekit.state
ios.conf
ipchange.yaml
ip_bans.yaml
*.key
known_devices.yaml
nest.conf
OwnTracks_config.txt
OZW_Log.txt
*.pickle
*.pid
phue.conf
production_auth.json
pyozw.sqlite
secrets
secrets.yaml
*.sqlite
.storage
.uuid
*.xml
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Home-Assistant-Public
Public Repository
# .homeassistant
Home Assistant Repo
25 changes: 25 additions & 0 deletions alarm_cp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#########################
# Alarm Control Panel #
#########################
#
- platform: manual
name: HA Alarm
code: !secret alarm_code
# pending_time: 30
# delay_time: 20
# trigger_time: 4
disarmed:
trigger_time: 0
armed_home:
pending_time: 15
delay_time: 15
trigger_time: 30
armed_night:
pending_time: 10
delay_time: 10
trigger_time: 15
armed_away:
pending_time: 10
delay_time: 10
trigger_time: 30
#
14 changes: 14 additions & 0 deletions appdaemon/appdaemon.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
log:
logfile: STDOUT
errorfile: STDERR
appdaemon:
threads: 10
app_dir: /config/appdaemon/apps
plugins:
HASS:
type: hass
ha_url: http://hassio/homeassistant
token: cf96c2b1fac9792aa35ecfc10c1ad13db04f45e026b2c9e53b5971e69be7082f
hadashboard:
dash_url: http://127.0.0.1:5050
dash_dir: /config/appdaemon/dashboards
14 changes: 14 additions & 0 deletions appdaemon/appdaemon_Backup.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
log:
logfile: STDOUT
errorfile: STDERR
appdaemon:
threads: 10
app_dir: /config/appdaemon/apps
plugins:
HASS:
type: hass
ha_url: http://hassio/homeassistant
token: f6abc9e66e20ed31bbf9de26902e7c92fe5e68d3c087409b7abeb035d049eb2e
hadashboard:
dash_url: http://127.0.0.1:5050
dash_dir: /config/appdaemon/dashboards
4 changes: 4 additions & 0 deletions appdaemon/apps/apps.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
hello_world:
module: hello
class: HelloWorld
13 changes: 13 additions & 0 deletions appdaemon/apps/hello.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import appdaemon.plugins.hass.hassapi as hass

#
# Hellow World App
#
# Args:
#

class HelloWorld(hass.Hass):

def initialize(self):
self.log("Hello from AppDaemon")
self.log("You are now ready to run Apps!")
1 change: 1 addition & 0 deletions appdaemon/compiled
38 changes: 38 additions & 0 deletions appdaemon/custom_widgets/basesymbol/basesymbol.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
.widget-basesymbol-{{id}} {
position: relative;
}

.widget-basesymbol-{{id}} .title {
position: absolute;
top: 5px;
width: 100%;
}

.widget-basesymbol-{{id}} .title2 {
position: absolute;
top: 23px;
width: 100%;
}

.widget-basesymbol-{{id}} .state_text {
position: absolute;
bottom: -3px;
width: 100%;
}

.widget-basesymbol-{{id}} .img-frame {
max-height: 100%;
}

.widget-basesymbol-{{id}} .icon {
display: inline-block;
}

.widget-basesymbol-{{id}} .toggle-area {
z-index: 10;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
4 changes: 4 additions & 0 deletions appdaemon/custom_widgets/basesymbol/basesymbol.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<h1 class="title" data-bind="text: title, attr:{style: title_style}"></h1>
<h1 class="title2" data-bind="text: title2, attr:{style: title2_style}"></h1>
<h2 class="icon" data-bind="attr:{style: icon_style}"><img class="img-frame" data-bind="attr: {src: icon}"></img></h2>
<h1 class="state_text" data-bind="text: state_text, attr: {style: state_text_style}"></h1>
Loading

0 comments on commit 72a2151

Please sign in to comment.