1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Arnout Engelen <arnouten@bzzt.net>
Date: Fri, 30 Oct 2015 18:58:59 -0700
Subject: 209_use-etc-default
Allow for custom configuration in /etc/default/notion
---
etc/cfg_notion.lua | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/etc/cfg_notion.lua b/etc/cfg_notion.lua
index 8b2f363..061f934 100644
--- a/etc/cfg_notion.lua
+++ b/etc/cfg_notion.lua
@@ -14,6 +14,10 @@
-- instead. The 'xmodmap' tool can be used to get/set which key codes correspond
-- to which modifiers, and the 'xev' tool can be used to see what codes are
-- generated by particular keys.
+
+-- These may be defined in /etc/default/notion, loaded as cfg_debian.
+dopath("cfg_debian")
+
--META="Mod4+"
--ALTMETA="Mod4+Shift+"
|