Drop obsolete muttng from /etc/skel/.fluxbox/menu and /etc/skel/.pekwm/menu, thanks...
[grml-desktop.git] / etc / skel / .ion2 / dock.lua
1 --
2 -- Ion-devel dock module configuration
3 --
4
5 dock = create_dock(0, {    -- create a new dock on screen 0
6     name="dock",    -- name for use in target="..." winprops
7     hpos="right",    -- horizontal position left|center|right
8     vpos="bottom",    -- vertical position top|middle|bottom
9     grow="left",    -- growth direction up|down|left|right
10     is_auto=true})    -- whether new dockapps should be added automatically
11
12 global_bindings{
13     kpress(DEFAULT_MOD.."space",
14         function()
15             WDock.toggle(dock)    -- toggle map/unmapped state
16         end),
17 }
18
19 -- dockapp ordering
20
21 -- Use the dockposition winprop to enforce an ordering on dockapps. The value is
22 -- arbitrary and relative to other dockapps only. The default is 0.
23 -- Unfortunately, many dockapps do not set their class/instance/role so they
24 -- cannot be used with the winprop system.
25
26 -- dockapp borders
27
28 -- Use dockappborder=false to disable the drawing of a border around a dockapp.
29 -- This is only effective if outline_style="each" (see dock-draw.lua).
30
31 winprop{
32     instance="gkrellm2",
33     dockposition=-100,    -- place first
34     dockborder=false,    -- do not draw border if outline_style="each"
35 }
36
37 -- kludges
38
39 winprop{
40     instance="wmxmms",
41     target="dock",
42 }