projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4b33989
)
added some notes about a config file format
author
Scott Moynes
<smoynes@nexus.carleton.ca>
Wed, 17 Jul 2002 00:40:10 +0000
(
00:40
+0000)
committer
Scott Moynes
<smoynes@nexus.carleton.ca>
Wed, 17 Jul 2002 00:40:10 +0000
(
00:40
+0000)
util/epist/DESIGN
patch
|
blob
|
history
diff --git
a/util/epist/DESIGN
b/util/epist/DESIGN
index d9d03531c29ca06611ad39e1fea7a575ab0ee0f7..b487b133d750bff7660f1dc89520da6b9277b0d5 100644
(file)
--- a/
util/epist/DESIGN
+++ b/
util/epist/DESIGN
@@
-29,4
+29,27
@@
class Action {
int param;
Action next;
}
-
+
+option <name> <value>;
+
+action [name] <key> <type> <parameter>;
+
+chain [name] <key> {
+ <action name>,
+ <action name>,
+ ...
+ }
+
+eg:
+ action emacs C-e exec emacs;
+ action C-a exec aterm -fn smoothansi;
+ action xmms C-x exec xmms;
+
+chain M-q {
+ emacs,
+ xmms
+ }
+
+Would produce M-q C-e -> emacs, M-q C-x -> xmms, C-a -> aterm.
+
+