all repos — fluxbox @ 3b9611b61ddc023225092a85b21867131fb363cc

custom fork of the fluxbox windowmanager

increase default size of toolbar and icon buttons
Mark Tiefenbruck mark@fluxbox.org
commit

3b9611b61ddc023225092a85b21867131fb363cc

parent

f92fd6ca0562c7a91facbab4ec1ffa87ffc0d517

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

jump to
M doc/asciidoc/fluxbox.txtdoc/asciidoc/fluxbox.txt

@@ -733,7 +733,7 @@ Setting to False removes the toolbar from the screen. Default: True

session.screen0.toolbar.widthPercent: <integer> This resource sets the width percentage of the toolbar on the screen. - Default: 65 + Default: 100 session.screen0.toolbar.tools: <tools> This resource specifies the tools plugged into the toolbar. Read the

@@ -778,7 +778,7 @@ - Right: Fixed width, aligned right

session.screen0.iconbar.iconWidth: <integer> Used to specify the iconbar button width for Left/Right alignment. - Default: 70 + Default: 128 session.screen0.strftimeFormat: <date> This adjusts the way the current time is displayed in the toolbar. The
M doc/fluxbox.1.indoc/fluxbox.1.in

@@ -1,12 +1,12 @@

.\" Title: fluxbox .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.74.0 <http://docbook.sf.net/> -.\" Date: 10/12/2008 +.\" Date: 10/18/2008 .\" Manual: [FIXME: manual] .\" Source: [FIXME: source] .\" Language: English .\" -.TH "FLUXBOX" "1" "10/12/2008" "[FIXME: source]" "[FIXME: manual]" +.TH "FLUXBOX" "1" "10/18/2008" "[FIXME: source]" "[FIXME: manual]" .\" ----------------------------------------------------------------- .\" * (re)Define some macros .\" -----------------------------------------------------------------

@@ -1673,7 +1673,7 @@ Setting to False removes the toolbar from the screen\&. Default: True

session\&.screen0\&.toolbar\&.widthPercent: <integer> This resource sets the width percentage of the toolbar on the screen\&. - Default: 65 + Default: 100 session\&.screen0\&.toolbar\&.tools: <tools> This resource specifies the tools plugged into the toolbar\&. Read the

@@ -1718,7 +1718,7 @@ \- Right: Fixed width, aligned right

session\&.screen0\&.iconbar\&.iconWidth: <integer> Used to specify the iconbar button width for Left/Right alignment\&. - Default: 70 + Default: 128 session\&.screen0\&.strftimeFormat: <date> This adjusts the way the current time is displayed in the toolbar\&. The

@@ -2731,9 +2731,9 @@ fluxbox is written and maintained by Henrik Kinnunen <fluxgen at fluxbox org>, Simon Bowden <rathnor at fluxbox org>, Mathias Gumz <akira at fluxbox org>, and Mark Tiefenbruck <mark at fluxbox org>, with contributions and patches merged from many individuals around the world\&.

.sp Blackbox was written and maintained by Brad Hughes <blackbox at alug org> and Jeff Raven <jraven at psu edu>\&. .sp -The Official fluxbox website: http://www\&.fluxbox\&.org +The Official fluxbox website: \m[blue]\fBhttp://www\&.fluxbox\&.org\fR\m[] .sp -Many compatible themes: \- http://boxwhore\&.org \- http://themes\&.freshmeat\&.net/ +Many compatible themes: \- \m[blue]\fBhttp://boxwhore\&.org\fR\m[] \- \m[blue]\fBhttp://themes\&.freshmeat\&.net/\fR\m[] .sp This manpage is the combined work of: .sp

@@ -2804,7 +2804,7 @@ Numerous other languages could be available if someone jumps in\&.

.RE .SH "BUGS" .sp -If you find any bugs, please visit the #fluxbox irc channel on irc\&.freenode\&.net or submit them to the bug tracker at http://sf\&.net/projects/fluxbox \&. Or you may subscribe to one of the mailinglists\&. More information can be found on the official website\&. +If you find any bugs, please visit the #fluxbox irc channel on irc\&.freenode\&.net or submit them to the bug tracker at \m[blue]\fBhttp://sf\&.net/projects/fluxbox\fR\m[] \&. Or you may subscribe to one of the mailinglists\&. More information can be found on the official website\&. .SH "SEE ALSO" .sp fluxbox\-keys(5) bsetroot(1) fbsetbg(1) fbrun(1) fluxstyle(1)
M src/IconbarTool.ccsrc/IconbarTool.cc

@@ -260,7 +260,7 @@ m_rc_mode(screen.resourceManager(), "{static groups} (workspace)",

screen.name() + ".iconbar.mode", screen.altName() + ".Iconbar.Mode"), m_rc_alignment(screen.resourceManager(), FbTk::Container::RELATIVE, screen.name() + ".iconbar.alignment", screen.altName() + ".Iconbar.Alignment"), - m_rc_client_width(screen.resourceManager(), 70, + m_rc_client_width(screen.resourceManager(), 128, screen.name() + ".iconbar.iconWidth", screen.altName() + ".Iconbar.IconWidth"), m_rc_client_padding(screen.resourceManager(), 10, screen.name() + ".iconbar.iconTextPadding", screen.altName() + ".Iconbar.IconTextPadding"),
M src/Toolbar.ccsrc/Toolbar.cc

@@ -232,7 +232,7 @@ scrn.name() + ".toolbar.autoHide", scrn.altName() + ".Toolbar.AutoHide"),

m_rc_maximize_over(scrn.resourceManager(), false, scrn.name() + ".toolbar.maxOver", scrn.altName() + ".Toolbar.MaxOver"), m_rc_visible(scrn.resourceManager(), true, scrn.name() + ".toolbar.visible", scrn.altName() + ".Toolbar.Visible"), - m_rc_width_percent(scrn.resourceManager(), 66, + m_rc_width_percent(scrn.resourceManager(), 100, scrn.name() + ".toolbar.widthPercent", scrn.altName() + ".Toolbar.WidthPercent"), m_rc_alpha(scrn.resourceManager(), 255, scrn.name() + ".toolbar.alpha", scrn.altName() + ".Toolbar.Alpha"),