X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=util%2Fepist%2FDESIGN;h=545c9edfdd64ee71ade9fc644363f115c0ea2000;hb=616fa39a1609809cecc628627139b8a96eef2989;hp=d9d03531c29ca06611ad39e1fea7a575ab0ee0f7;hpb=b10d59dabb5dfd5f3beb2fe71c39b4ee0a3dc5fc;p=chaz%2Fopenbox diff --git a/util/epist/DESIGN b/util/epist/DESIGN index d9d03531..545c9edf 100644 --- a/util/epist/DESIGN +++ b/util/epist/DESIGN @@ -14,9 +14,10 @@ Epist design notes, by woodblock - close - move to desktop - send to desktop -- shade +- toggle shade - sticky -- move window (?) +- move window +- resize window - next/prev window (special orders like stacking, grouping, etc?) - maximize/minimize - no stupid window @@ -29,4 +30,27 @@ class Action { int param; Action next; } - + +option ; + +action [name] ; + +chain [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. + +