fix permissions to allow users to execute install-wmiirc-lua script
[wmiirc-lua.git] / TODO
blobc9838e0ffdff534f4e6a1140fce5a54777a7624a
1 If you have any suggests I am happy to add them to the list.
3 for 0.3 release
4     - core
5         - verify required packages in wmii.lua (like lua version number)
6         - version number in the files
7         - resize windows/columns with Mod1-[+-] or Mod1-Ctrl-[hjkl]
9     - bundled plugins
10         - mpd: controls / volume
11         - acpi: battery life / thermal
12         - cpufreq: cpu freq / governor
13         - whereami: wireless / controls
14         - history: 
15             - Mod1-[oi] to provide window history
16             - Mod4-[oi] to provide workspace history (vim inspired)
17         - at: use the at scheduler to implement a reminder system
18               action of 'at' or '@' for short
19               examples:
20                  alt-a @ 20:00 "message to display"
21                  alt-a @ 20:00 !xeyes
23 future
24     - core
25         - bundle xclipboard functionality (add a core/x11.so)
26         - make wmii.load_plugin() support multiple api versions
28         - Mod1-; will display a "execute lua code here" command line
29           - it would be nice if it tab completed
31         - tags starting with '@' are reserved for internal use and don't
32           display on /lbar
33         - Mod1-[ and Mod1-] to push/pop windows off a stack in a hidden
34           tag @stack
36         - figure out a better way for wmiirc to remap function in
37           wmii.lua;
38           - an option would be to give each function a name (be it an
39             event, key-binding, or action) and make them usable from
40             either so people could bind a function ring_my_bell() to an
41             event, key, or action.  Maybe...
42                 wmii.bind_event ("ring", wmii.h_ring_my_bell)
43                 wmii.bind_key ("Alt-r", wmii.h_ring_my_bell)
44                 wmii.bind_action ("ring", wmii.h_ring_my_bell)
45             it should really make no difference how the action was
46             invoked.  We could let the handler function know *how* with
47             a parameter that wmii.lua passes to it.
49         - improve logging
50           - use file in ~/.wmii-3.5/ like wmii+ruby
52     - bundled plugins
53         - 'session_manager'
54             - remember where windows are, and restart the "session" as
55               it was before
56             - global and per-view
58         - 'clipboard'
59             - remember X of the last copy/paste contents
60             - pull them up with an action
61             - see http://glipper.sourceforge.net/ for ideas/code
63         - 'messages'
64             - add action or hot-key to copy last message to xclipboard
66         - 'groups'
67             - grouping multiple windows (maybe a tag prefix, and use the
68               existing tag idea)
69               - group individually,
70               - group all in a view,
71               - group all visible
72             - sending input to all windows in that group
73             - would be useful for a cluster, etc.
75 vim: set ts=8 et sw=8 tw=72