all repos — fluxbox @ b288fc1401c0bbbd3262697833b195d7bef7522b

custom fork of the fluxbox windowmanager

turn on opaque window moving by default
Mark Tiefenbruck mark@fluxbox.org
commit

b288fc1401c0bbbd3262697833b195d7bef7522b

parent

27dc136121a6f97c5fbfeec6b642cf091324def4

4 files changed, 8 insertions(+), 8 deletions(-)

jump to
M doc/asciidoc/fluxbox.1doc/asciidoc/fluxbox.1

@@ -1,11 +1,11 @@

.\" Title: fluxbox .\" Author: .\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/> -.\" Date: 09/02/2008 +.\" Date: 09/04/2008 .\" Manual: .\" Source: .\" -.TH "FLUXBOX" "1" "09/02/2008" "" "" +.TH "FLUXBOX" "1" "09/04/2008" "" "" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only)

@@ -1004,7 +1004,7 @@

session\.screen0\.opaqueMove: <boolean> When moving a window, setting this to True will draw the window contents as it moves (this is nasty on slow systems)\. If False, it - will only draw an outline of the window border\. Default: False + will only draw an outline of the window border\. Default: True session\.screen0\.workspaces: <integer> Set this to the number of workspaces the users wants\. Default: 4
M doc/asciidoc/fluxbox.txtdoc/asciidoc/fluxbox.txt

@@ -926,7 +926,7 @@

session.screen0.opaqueMove: <boolean> When moving a window, setting this to True will draw the window contents as it moves (this is nasty on slow systems). If False, it - will only draw an outline of the window border. Default: False + will only draw an outline of the window border. Default: True session.screen0.workspaces: <integer> Set this to the number of workspaces the users wants. Default: 4
M doc/fluxbox.1.indoc/fluxbox.1.in

@@ -1,11 +1,11 @@

.\" Title: fluxbox .\" Author: .\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/> -.\" Date: 09/02/2008 +.\" Date: 09/04/2008 .\" Manual: .\" Source: .\" -.TH "FLUXBOX" "1" "09/02/2008" "" "" +.TH "FLUXBOX" "1" "09/04/2008" "" "" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only)

@@ -1004,7 +1004,7 @@

session\.screen0\.opaqueMove: <boolean> When moving a window, setting this to True will draw the window contents as it moves (this is nasty on slow systems)\. If False, it - will only draw an outline of the window border\. Default: False + will only draw an outline of the window border\. Default: True session\.screen0\.workspaces: <integer> Set this to the number of workspaces the users wants\. Default: 4
M src/Screen.ccsrc/Screen.cc

@@ -286,7 +286,7 @@

BScreen::ScreenResource::ScreenResource(FbTk::ResourceManager &rm, const string &scrname, const string &altscrname): - opaque_move(rm, false, scrname + ".opaqueMove", altscrname+".OpaqueMove"), + opaque_move(rm, true, scrname + ".opaqueMove", altscrname+".OpaqueMove"), full_max(rm, false, scrname+".fullMaximization", altscrname+".FullMaximization"), max_ignore_inc(rm, true, scrname+".maxIgnoreIncrement", altscrname+".MaxIgnoreIncrement"), max_disable_move(rm, false, scrname+".maxDisableMove", altscrname+".MaxDisableMove"),