all repos — openbox @ b10d59dabb5dfd5f3beb2fe71c39b4ee0a3dc5fc

openbox fork - make it a bit more like ryudo

util/epist/DESIGN (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Epist design notes, by woodblock
--------------------------------

- Chained keybindings like emacs, and I suppose vi if you're wierd like that.
 - most actions can take extra parameters. probably only numbers, or strings, maybe both.
 - no interactive string inputs
- A config file that doesn't suck


- exec
- iconify
- raise
- lower
- close
- move to desktop
- send to desktop
- shade
- sticky
- move window (?)
- next/prev window (special orders like stacking, grouping, etc?)
- maximize/minimize
- no stupid window
- toggle keybindings
- menus?

class Action {
 enum type;
 char *string;
 int param;
 Action next;
}