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
| /* | |
| Door timer | |
| Controls light in the room by door state: | |
| * when door opens: turn light on until time less than DELAY_OPEN value | |
| * when door closes: turn light off after time reaches DELAY_CLOSE value | |
| Separately control timer for two rooms | |
| Pins used: |
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
| --- Makefile 2016-08-04 13:07:27.501588143 -0400 | |
| +++ Makefile 2016-08-04 13:07:35.035595718 -0400 | |
| @@ -1,13 +1,17 @@ | |
| GLIDE_GO_EXECUTABLE ?= go | |
| -VERSION := $(shell git describe --tags) | |
| +VERSION_GIT := $(shell git describe --tags) | |
| +VERSION ?= ${VERSION_GIT} | |
| DIST_DIRS := find * -type d -exec | |
| +PREFIX ?= /usr/local | |
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
| import XMonad hiding ( (|||) ) | |
| import XMonad.Hooks.DynamicLog | |
| import XMonad.Hooks.ManageDocks | |
| import XMonad.Hooks.ManageHelpers | |
| import XMonad.Hooks.UrgencyHook | |
| import XMonad.Util.EZConfig(additionalKeys) | |
| -- Pipes, environment variables, etc. | |
| import XMonad.Util.Run(spawnPipe) | |
| import System.IO |
OlderNewer