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
filetype off | |
" Environment { | |
" Identify platform { | |
silent function! OSX() | |
return has('macunix') | |
endfunction | |
silent function! LINUX() | |
return has('unix') && !has('macunix') && !has('win32unix') |
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
[user] | |
name = David Skindell | |
[core] | |
editor = vim | |
excludesfile = ~/.gitignore_global | |
pager = less -FX | |
[color] | |
ui = True | |
[push] | |
default = simple |
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
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout some time, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) | |
# | |
# Please see http://i3wm.org/docs/userguide.html for a complete reference! |
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 | |
# | |
# NOTE: any 'chunkc' command that is run from this config file | |
# that is NOT 'chunkc core::<..>' or 'chunkc set ..' | |
# MUST be put in the background using & | |
# | |
# e.g: | |
# chunkc tiling::rule --owner Finder --name Copy --state float & | |
# |
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
####### Shortcut Hotkeys ############# | |
# open terminal | |
lalt - return : $HOME/.config/skhd/open_terminal.sh --single-instance | |
lalt + shift - return : $HOME/.config/skhd/open_terminal.sh | |
#alt - t : osascript -e 'tell application "iTerm2" to create window with default profile' | |
# restart Yabi, SpaceBar, and SKHD | |
#lalt + lcmd - r : \ | |
# launchctl kickstart -k "gui/${UID}/homebrew.mxcl.yabai"; \ | |
# skhd --reload |
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
# vim:fileencoding=utf-8:ft=conf:foldmethod=marker | |
include ./kitty-themes/themes/Solarized_Dark_Higher_Contrast.conf | |
#: Fonts {{{ | |
#: kitty has very powerful font management. You can configure | |
#: individual font faces and even specify special fonts for particular | |
#: characters. |
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: Low battery level detection & notification for all battery sensors | |
description: | |
Regularly test all sensors with 'battery' device-class for crossing | |
a certain battery level threshold and if so execute an action. | |
domain: automation | |
input: | |
threshold: | |
name: Battery warning level threshold | |
description: |
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
# Fork of https://community.home-assistant.io/t/plant-moisture-notification/369425 | |
blueprint: | |
name: Low/High plant sensor level detection & notification for all plant devices | |
description: | |
Regularly test all plant devices (using https://github.com/Olen/homeassistant-plant) | |
with temperature, moisture, illumination, dpi, humidity, or conductivity that are | |
too low or too high | |
domain: automation | |
input: | |
triggers: |
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: Philips Hue Dimmer Remote with Phillips Hue Bridge | |
description: | |
'Control lights with a Philips Hue Dimmer Switch via Phillips Hue Bridge. | |
The top "on" button will turn the lights on to the last set brightness | |
Dim up/down buttons will change the brightness smoothly and can be pressed |
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 to control a light (or lights) using a Philips Hue SML001 | |
# motion sensor connected to Home Assistant via ZHA | |
# | |
# Home Assitant configures the sensor to be an Occupancy Sensor at boot, | |
# setting the Occupied to Unoccipied time and sensitivity of the sensor. | |
# I used to use HA timers to do this, but Blueprint is now much more simple :-) | |
# | |
# Additionally the sensor can be disabled using a oneof two entities. | |
# I usually link this to a TV state, as I do not want my lights going on & off |
OlderNewer