X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=etc%2Fcfg_panews.lua;fp=etc%2Fcfg_panews.lua;h=0000000000000000000000000000000000000000;hb=803afbc1cd633f6c025bcd9537e9b7e9aedadd0d;hp=65761a0227457877b7a118c5b87108d8b99d60e6;hpb=8366314611bf30a0f31d25bf5f5023186fa87692;p=ion3.git diff --git a/etc/cfg_panews.lua b/etc/cfg_panews.lua deleted file mode 100644 index 65761a0..0000000 --- a/etc/cfg_panews.lua +++ /dev/null @@ -1,57 +0,0 @@ --- --- Ion panews module configuration file --- - --- Bindings for unused area. - -defbindings("WUnusedWin", { - bdoc("Begin move/resize mode."), - kpress(META.."R", "WUnusedWin.begin_kbresize(_)"), - - bdoc("Resize the area."), - mdrag(META.."Button3", "WUnusedWin.p_resize(_)"), - mdrag(META.."Button1", "WUnusedWin.p_move(_)"), -}) - - -mod_panews.set{ - -- Layout template may be one of default|alternative1|alternative2 - -- or a template table. (The one for 'default' is reproduced below - -- as an example.) - --template="default", - -- The scale factor parameter controls the size-based classification - -- heuristic. The default of 1.0 is designed for 1280x1024 at 75dpi. - --scalef=1.0, -} - - --- The layout template for the 'default' layout looks as follows. ---[[ -{ - type="WSplitFloat", - dir="horizontal", - tls=settings.b_ratio, - brs=settings.s_ratio, - tl={ - type="WSplitPane", - contents={ - type="WSplitFloat", - dir="vertical", - tls=settings.b_ratio2, - brs=settings.s_ratio2, - tl={ - type="WSplitPane", - marker="V:single", - }, - br={ - type="WSplitPane", - marker="M:right", - }, - }, - }, - br={ - type="WSplitPane", - marker="T:up", - }, -} ---]]