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
import logging | |
import os | |
from datetime import datetime, timedelta | |
import requests | |
import xmltodict | |
import pytz | |
TZ = os.environ.get("RADIANT_TZ", "UTC") | |
LAT = float(os.environ.get("RADIANT_LAT")) |
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
PILFONT ?= pilfont.py | |
BUILD ?= build | |
BROKEN ?= broken | |
FONT_PATH ?= xc/fonts/bdf/75dpi xc/fonts/bdf/misc xc/fonts/bdf/unnec_75dpi | |
FONT_BDF := $(shell find $(FONT_PATH) -name "*.bdf" -exec basename {} \;) | |
ifneq ($(wildcard $(BROKEN)),) | |
FONT_IGNORE := $(shell cat $(BROKEN)) | |
FONT_BDF := $(filter-out $(FONT_IGNORE),$(FONT_BDF)) | |
endif |
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
{ | |
"title": "Citrix Receiver/Workspace modifiers for Ctrl, Alt, Windows order", | |
"rules": [ | |
{ | |
"description": "In Citrix, add fn modifier to tab so it is forwarded", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "tab", | |
"modifiers": { "optional": [ "any" ] } |