]> Dogcows Code - chaz/openbox/commitdiff
added some notes about a config file format
authorScott Moynes <smoynes@nexus.carleton.ca>
Wed, 17 Jul 2002 00:40:10 +0000 (00:40 +0000)
committerScott Moynes <smoynes@nexus.carleton.ca>
Wed, 17 Jul 2002 00:40:10 +0000 (00:40 +0000)
util/epist/DESIGN

index d9d03531c29ca06611ad39e1fea7a575ab0ee0f7..b487b133d750bff7660f1dc89520da6b9277b0d5 100644 (file)
@@ -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.
+
+
This page took 0.022962 seconds and 4 git commands to generate.