Updated Changelog, NEWS, man-pages for 1.3.4

This commit is contained in:
Mathias Gumz 2013-02-10 12:57:21 +01:00
parent cf56f32b29
commit fe2d9476d5
23 changed files with 190 additions and 120 deletions

View file

@ -1,5 +1,63 @@
(Format: Year/Month/Day) (Format: Year/Month/Day)
-----------------------------
Changes for 1.3.4
*13/02/10:
* More subtle brightening of colors
* FbTk::FbTime::mono() yields microseconds since fluxbox started
*13/02/06:
* Feature: Added 'LHalf' / 'RHalf' buttons for titlebar
* Bugfix: Elliptic gradients are rendered correctly now
* Bugfix: Avoid integer overflow for some gradients
* Code optimization in texture rendering code (RAM, reduced branches)
*13/02/01:
* Feature: Added 'ClientPatternTest' command to help debugging
client patterns via 'fluxbox-remote'
* Bugfix: Handle FbTk::Timers with equal end time correctly
* Bugfix: Align ClockTool timers with system clock to trigger clock
switches when the users expects them
*13/01/23:
* Improved calculation of brighter colors
*13/01/20:
* Added 'he_IL' translations (Thanks Genghis Khan)
*13/01/17:
* Bugfix: Invert a texture correctly
*13/01/16:
* Cleanup of build-system and .gitignore
*13/01/15:
* Simplification of FbTK::Timer code
*13/01/13:
* Simplification of FbTK::TextureRender code
* Use the same lookup-tables for solid colors and gradient textures
*13/01/12:
* Bugfix: Do not handle list of timers in place
* Improved documentation of code
*13/01/10:
* Including the code of the SystemTray into the binary is optional now
* Reduce window-movement lagging on slower systems (Thanks Aymeric Vincent)
*13/01/02:
* Build-system improvements (Thanks Sami Kerola)
*12/12/31:
* Removed bashisms from fluxbox-generate_menu (Thanks Sami Kerola)
*12/12/30:
* Build-system improvements (Thanks Sami Kerola)
* Combile fix: forgotten parentheses in code for MacOS
----------------------------- -----------------------------
Changes for 1.3.3 Changes for 1.3.3

33
NEWS
View file

@ -2,26 +2,19 @@ This is mostly a bug fix release. For a more complete list and detailed
description of them see the documentation and ChangeLog. description of them see the documentation and ChangeLog.
General: General:
* Added 'NearestCorner', 'NearestEdge' and 'NearestCornerOrEdge' resize * Added 'LHalf' / 'RHalf' titlebar buttons
methods * Added 'ClientPatternTest' command for testing clientpatterns via
* Added percentage values for commands such as ResizeWindow fluxbox-remote
* Added style ressources 'menu.hilite.font', 'menu.hilite.justify' * Added 'he_IL' translations
* Added 'OnTab' modifier for keys file
* Added _MOTIF_WM_INFO atom to advertise motif capabilities
* Added 'fullscreen', 'maximizedhorizontal', 'maximizedvertical' tests to
client patterns
* Added option to revert focus to previous window only on current head in
a multi-monitor setup
* Rewrite of FbTk::TextureRenderer (simpler code)
* Improved building on Microsoft Windows
Critical Bugfixes in 1.3.3: Critical Bugfixes in 1.3.4:
* Use of monotonic increasing clock for timer, not affected by leap seconds etc. * All timer based problems are fixed now
* Fixed integer overflows for some gradient textures
* Fixed compile issue on MacOS
Other Bugfixes: Other Bugfixes:
* Fixed placement off transient windows in a multi-monitor setup with 'holes' * Correct renderinger of 'sunken' textures
* Fixed usage of '~' as part of style filenames * Move windows without the lagging-behind-effect on slower machines
* Replaced (deprecated) XKeycodeToKeysym() with XkbKeycodeToKeysym() * Improved color brightening in textures
* Improved vertical alignment of text in decorations * Memory and other code improvements in texture rendering code
* Fixed compiler and code style issues * Fix build-system issues
* Updated italian translations

View file

@ -1,7 +1,7 @@
dnl Initialize autoconf and automake dnl Initialize autoconf and automake
AC_PREREQ(2.52) AC_PREREQ(2.52)
AC_INIT([fluxbox], AC_INIT([fluxbox],
[1.3.3], [1.3.4],
[fluxbox-devel@lists.sourceforge.net],, [fluxbox-devel@lists.sourceforge.net],,
[http://fluxbox.org/]) [http://fluxbox.org/])
AC_CONFIG_SRCDIR([src/fluxbox.cc]) AC_CONFIG_SRCDIR([src/fluxbox.cc])

View file

@ -1,7 +1,7 @@
fbrun(1) fbrun(1)
======== ========
Jim Ramsay <i.am@jimramsay.com> Jim Ramsay <i.am@jimramsay.com>
v1.3.3, 30 December 2012 v1.3.4, 10 February 2013
:man source: fbrun.txt :man source: fbrun.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -1,7 +1,7 @@
fbsetbg(1) fbsetbg(1)
========== ==========
Jim Ramsay <i.am@jimramsay.com> Jim Ramsay <i.am@jimramsay.com>
v1.3.3, 30 December 2012 v1.3.4, 10 February 2013
:man source: fbsetbg.txt :man source: fbsetbg.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -1,7 +1,7 @@
fbsetroot(1) fbsetroot(1)
============ ============
Jim Ramsay <i.am@jimramsay.com> Jim Ramsay <i.am@jimramsay.com>
v1.3.3, 30 December 2012 v1.3.4, 10 February 2013
:man source: fbsetroot.txt :man source: fbsetroot.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -1,7 +1,7 @@
fluxbox-apps(5) fluxbox-apps(5)
=============== ===============
Jim Ramsay <i.am@jimramsay.com> Jim Ramsay <i.am@jimramsay.com>
v1.3.3, 30 December 2012 v1.3.4, 10 February 2013
:man source: fluxbox-apps.txt :man source: fluxbox-apps.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -1,7 +1,7 @@
fluxbox-keys(5) fluxbox-keys(5)
=============== ===============
Jim Ramsay <i.am@jimramsay.com> Jim Ramsay <i.am@jimramsay.com>
v1.3.3, 30 December 2012 v1.3.4, 10 February 2013
:man source: fluxbox-keys.txt :man source: fluxbox-keys.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -1,7 +1,7 @@
fluxbox-menu(5) fluxbox-menu(5)
=============== ===============
Jim Ramsay <i.am@jimramsay.com> Jim Ramsay <i.am@jimramsay.com>
v1.3.3, 30 December 2012 v1.3.4, 10 February 2013
:man source: fluxbox-menu.txt :man source: fluxbox-menu.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -1,7 +1,7 @@
fluxbox-remote(1) fluxbox-remote(1)
================= =================
Mark Tiefenbruck <mark@fluxbox.org> Mark Tiefenbruck <mark@fluxbox.org>
v1.3.3, 30 December 2012 v1.3.4, 10 February 2013
:man source: fluxbox-remote.txt :man source: fluxbox-remote.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -1,7 +1,7 @@
fluxbox-style(5) fluxbox-style(5)
================ ================
Henrik Kinnunen <fluxgen@fluxbox.org> Henrik Kinnunen <fluxgen@fluxbox.org>
v1.3.3, 30 December 2012 v1.3.4, 10 February 2013
:man source: fluxbox-style.txt :man source: fluxbox-style.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual
@ -231,14 +231,14 @@ options. Have fun.
window.bevelWidth: <integer> window.bevelWidth: <integer>
window.borderColor: <color> window.borderColor: <color>
window.borderWidth: <integer> window.borderWidth: <integer>
window.button.focus: <texture type> window.button.focus: <texture type>
window.button.focus.color: <color> window.button.focus.color: <color>
window.button.focus.colorTo: <color> window.button.focus.colorTo: <color>
window.button.focus.picColor: <color> window.button.focus.picColor: <color>
window.button.focus.pixmap: <filename> window.button.focus.pixmap: <filename>
window.button.pressed: <texture type> window.button.pressed: <texture type>
window.button.pressed.color: <color> window.button.pressed.color: <color>
window.button.pressed.colorTo: <color> window.button.pressed.colorTo: <color>
window.button.pressed.pixmap: <filename> window.button.pressed.pixmap: <filename>
window.button.unfocus: <texture type> window.button.unfocus: <texture type>
window.button.unfocus.color: <color> window.button.unfocus.color: <color>
@ -251,13 +251,13 @@ options. Have fun.
window.font: <font> window.font: <font>
window.frame.focusColor: <color> window.frame.focusColor: <color>
window.frame.unfocusColor: <color> window.frame.unfocusColor: <color>
window.grip.focus: <texture type> window.grip.focus: <texture type>
window.grip.focus.color: <color> window.grip.focus.color: <color>
window.grip.focus.colorTo: <color> window.grip.focus.colorTo: <color>
window.grip.focus.pixmap: <filename> window.grip.focus.pixmap: <filename>
window.grip.unfocus: <texture type> window.grip.unfocus: <texture type>
window.grip.unfocus.color: <color> window.grip.unfocus.color: <color>
window.grip.unfocus.colorTo: <color> window.grip.unfocus.colorTo: <color>
window.grip.unfocus.pixmap: <filename> window.grip.unfocus.pixmap: <filename>
window.handle.focus: <texture type> window.handle.focus: <texture type>
window.handle.focus.color: <color> window.handle.focus.color: <color>
@ -282,20 +282,24 @@ options. Have fun.
window.label.unfocus.color: <color> window.label.unfocus.color: <color>
window.label.unfocus.colorTo: <color> window.label.unfocus.colorTo: <color>
window.label.unfocus.pixmap: <filename> window.label.unfocus.pixmap: <filename>
window.label.focus.textColor: <color> window.label.focus.textColor: <color>
window.label.unfocus.textColor: <color> window.label.unfocus.textColor: <color>
window.maximize.pixmap: <filename> window.maximize.pixmap: <filename>
window.maximize.pressed.pixmap: <filename> window.maximize.pressed.pixmap: <filename>
window.maximize.unfocus.pixmap: <filename> window.maximize.unfocus.pixmap: <filename>
window.roundCorners: <{Top|Bottom}{Left|Right}> window.roundCorners: <{Top|Bottom}{Left|Right}>
window.shade.pixmap: <filename> window.shade.pixmap: <filename>
window.shade.pressed.pixmap: <filename> window.shade.pressed.pixmap: <filename>
window.shade.unfocus.pixmap: <filename> window.shade.unfocus.pixmap: <filename>
window.stick.pixmap: <filename> window.stick.pixmap: <filename>
window.stick.pressed.pixmap: <filename> window.stick.pressed.pixmap: <filename>
window.stick.unfocus.pixmap: <filename> window.stick.unfocus.pixmap: <filename>
window.stuck.pixmap: <filename> window.stuck.pixmap: <filename>
window.stuck.unfocus.pixmap: <filename> window.stuck.unfocus.pixmap: <filename>
window.lhalf.pixmap: <filename>
window.lhalf.unfocus.pixmap: <filename>
window.rhalf.pixmap: <filename>
window.rhalf.unfocus.pixmap: <filename>
window.title.focus: <texture type> window.title.focus: <texture type>
window.title.focus.color: <color> window.title.focus.color: <color>
window.title.focus.colorTo: <color> window.title.focus.colorTo: <color>
@ -396,37 +400,37 @@ look just the way you want it.
toolbar.borderColor: <color> toolbar.borderColor: <color>
toolbar.borderWidth: <integer> toolbar.borderWidth: <integer>
toolbar.button.scale: <integer> toolbar.button.scale: <integer>
toolbar.color: <color> toolbar.color: <color>
toolbar.colorTo: <color> toolbar.colorTo: <color>
toolbar.clock: <texture type> toolbar.clock: <texture type>
toolbar.clock.borderColor: <color> toolbar.clock.borderColor: <color>
toolbar.clock.borderWidth: <integer> toolbar.clock.borderWidth: <integer>
toolbar.clock.font: <font> toolbar.clock.font: <font>
toolbar.clock.justify: <{Left|Right|Center}> toolbar.clock.justify: <{Left|Right|Center}>
toolbar.clock.pixmap: <filename> toolbar.clock.pixmap: <filename>
toolbar.clock.color: <color> toolbar.clock.color: <color>
toolbar.clock.colorTo: <color> toolbar.clock.colorTo: <color>
toolbar.clock.textColor: <color> toolbar.clock.textColor: <color>
toolbar.height: <integer> toolbar.height: <integer>
toolbar.iconbar.focused: <texture type> toolbar.iconbar.focused: <texture type>
toolbar.iconbar.focused.color: <color> toolbar.iconbar.focused.color: <color>
toolbar.iconbar.focused.colorTo:<color> toolbar.iconbar.focused.colorTo:<color>
toolbar.iconbar.focused.pixmap: <filename> toolbar.iconbar.focused.pixmap: <filename>
toolbar.iconbar.unfocused: <texture type> toolbar.iconbar.unfocused: <texture type>
toolbar.iconbar.unfocused.color: <color> toolbar.iconbar.unfocused.color: <color>
toolbar.iconbar.unfocused.colorTo: <color> toolbar.iconbar.unfocused.colorTo: <color>
toolbar.iconbar.unfocused.pixmap: <filename> toolbar.iconbar.unfocused.pixmap: <filename>
toolbar.iconbar.empty: <texture type> toolbar.iconbar.empty: <texture type>
toolbar.iconbar.empty.color: <color> toolbar.iconbar.empty.color: <color>
toolbar.iconbar.empty.colorTo: <color> toolbar.iconbar.empty.colorTo: <color>
toolbar.iconbar.empty.pixmap: <filename> toolbar.iconbar.empty.pixmap: <filename>
toolbar.iconbar.focused.borderColor: <color> toolbar.iconbar.focused.borderColor: <color>
toolbar.iconbar.focused.borderWidth: <integer> toolbar.iconbar.focused.borderWidth: <integer>
toolbar.iconbar.unfocused.borderColor: <color> toolbar.iconbar.unfocused.borderColor: <color>
toolbar.iconbar.unfocused.borderWidth: <integer> toolbar.iconbar.unfocused.borderWidth: <integer>
toolbar.iconbar.borderColor: <color> toolbar.iconbar.borderColor: <color>
toolbar.iconbar.borderWidth: <integer> toolbar.iconbar.borderWidth: <integer>
toolbar.iconbar.focused.font: <font> toolbar.iconbar.focused.font: <font>
toolbar.iconbar.focused.justify: <{Left|Right|Center}> toolbar.iconbar.focused.justify: <{Left|Right|Center}>
toolbar.iconbar.focused.textColor: <color> toolbar.iconbar.focused.textColor: <color>
toolbar.iconbar.unfocused.font: <font> toolbar.iconbar.unfocused.font: <font>

View file

@ -1,7 +1,7 @@
fluxbox(1) fluxbox(1)
========== ==========
Henrik Kinnunen <fluxgen@fluxbox.org> Henrik Kinnunen <fluxgen@fluxbox.org>
v1.3.3, 30 December 2012 v1.3.4, 10 February 2013
:man source: fluxbox.txt :man source: fluxbox.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual
@ -1176,12 +1176,16 @@ may specify any number, space-delimited.
+ +
-- --
The available options are:;; The available options are:;;
*Close* *Maximize* *MenuIcon* *Minimize* *Shade* *Stick* *Close* *Maximize* *MenuIcon* *Minimize* *Shade* *Stick* *LHalf* *RHalf*
-- --
+ +
Default left: *Stick* Default left: *Stick*
+ +
Default right: *Shade Minimize Maximize Close* Default right: *Shade Minimize Maximize Close*
+
'LHalf' and 'RHalf' are buttons to quickly place a window into the left and
right half of the current monitor.
All of the 'location' resources following require a pathname to their specific All of the 'location' resources following require a pathname to their specific
files. This is where you can specify different files. Most of the defaults will files. This is where you can specify different files. Most of the defaults will

View file

@ -1,7 +1,7 @@
startfluxbox(1) startfluxbox(1)
=============== ===============
Jim Ramsay <i.am@jimramsay.com> Jim Ramsay <i.am@jimramsay.com>
v1.3.3, 30 December 2012 v1.3.4, 10 February 2013
:man source: startfluxbox.txt :man source: startfluxbox.txt
:man version: {revision} :man version: {revision}
:man manual: Fluxbox Manual :man manual: Fluxbox Manual

View file

@ -2,12 +2,12 @@
.\" Title: fbrun .\" Title: fbrun
.\" Author: Jim Ramsay <i.am@jimramsay.com> .\" Author: Jim Ramsay <i.am@jimramsay.com>
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Date: 30 December 2012 .\" Date: 10 February 2013
.\" Manual: Fluxbox Manual .\" Manual: Fluxbox Manual
.\" Source: fbrun.txt .\" Source: fbrun.txt
.\" Language: English .\" Language: English
.\" .\"
.TH "FBRUN" "1" "30 December 2012" "fbrun\&.txt" "Fluxbox Manual" .TH "FBRUN" "1" "10 February 2013" "fbrun\&.txt" "Fluxbox Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -2,12 +2,12 @@
.\" Title: fbsetbg .\" Title: fbsetbg
.\" Author: Jim Ramsay <i.am@jimramsay.com> .\" Author: Jim Ramsay <i.am@jimramsay.com>
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Date: 30 December 2012 .\" Date: 10 February 2013
.\" Manual: Fluxbox Manual .\" Manual: Fluxbox Manual
.\" Source: fbsetbg.txt .\" Source: fbsetbg.txt
.\" Language: English .\" Language: English
.\" .\"
.TH "FBSETBG" "1" "30 December 2012" "fbsetbg\&.txt" "Fluxbox Manual" .TH "FBSETBG" "1" "10 February 2013" "fbsetbg\&.txt" "Fluxbox Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -2,12 +2,12 @@
.\" Title: fbsetroot .\" Title: fbsetroot
.\" Author: Jim Ramsay <i.am@jimramsay.com> .\" Author: Jim Ramsay <i.am@jimramsay.com>
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Date: 30 December 2012 .\" Date: 10 February 2013
.\" Manual: Fluxbox Manual .\" Manual: Fluxbox Manual
.\" Source: fbsetroot.txt .\" Source: fbsetroot.txt
.\" Language: English .\" Language: English
.\" .\"
.TH "FBSETROOT" "1" "30 December 2012" "fbsetroot\&.txt" "Fluxbox Manual" .TH "FBSETROOT" "1" "10 February 2013" "fbsetroot\&.txt" "Fluxbox Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -2,12 +2,12 @@
.\" Title: fluxbox-apps .\" Title: fluxbox-apps
.\" Author: Jim Ramsay <i.am@jimramsay.com> .\" Author: Jim Ramsay <i.am@jimramsay.com>
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Date: 30 December 2012 .\" Date: 10 February 2013
.\" Manual: Fluxbox Manual .\" Manual: Fluxbox Manual
.\" Source: fluxbox-apps.txt .\" Source: fluxbox-apps.txt
.\" Language: English .\" Language: English
.\" .\"
.TH "FLUXBOX\-APPS" "5" "30 December 2012" "fluxbox\-apps\&.txt" "Fluxbox Manual" .TH "FLUXBOX\-APPS" "5" "10 February 2013" "fluxbox\-apps\&.txt" "Fluxbox Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -2,12 +2,12 @@
.\" Title: fluxbox-keys .\" Title: fluxbox-keys
.\" Author: Jim Ramsay <i.am@jimramsay.com> .\" Author: Jim Ramsay <i.am@jimramsay.com>
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Date: 30 December 2012 .\" Date: 10 February 2013
.\" Manual: Fluxbox Manual .\" Manual: Fluxbox Manual
.\" Source: fluxbox-keys.txt .\" Source: fluxbox-keys.txt
.\" Language: English .\" Language: English
.\" .\"
.TH "FLUXBOX\-KEYS" "5" "30 December 2012" "fluxbox\-keys\&.txt" "Fluxbox Manual" .TH "FLUXBOX\-KEYS" "5" "10 February 2013" "fluxbox\-keys\&.txt" "Fluxbox Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -2,12 +2,12 @@
.\" Title: fluxbox-menu .\" Title: fluxbox-menu
.\" Author: Jim Ramsay <i.am@jimramsay.com> .\" Author: Jim Ramsay <i.am@jimramsay.com>
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Date: 30 December 2012 .\" Date: 10 February 2013
.\" Manual: Fluxbox Manual .\" Manual: Fluxbox Manual
.\" Source: fluxbox-menu.txt .\" Source: fluxbox-menu.txt
.\" Language: English .\" Language: English
.\" .\"
.TH "FLUXBOX\-MENU" "5" "30 December 2012" "fluxbox\-menu\&.txt" "Fluxbox Manual" .TH "FLUXBOX\-MENU" "5" "10 February 2013" "fluxbox\-menu\&.txt" "Fluxbox Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -2,12 +2,12 @@
.\" Title: fluxbox-remote .\" Title: fluxbox-remote
.\" Author: Mark Tiefenbruck <mark@fluxbox.org> .\" Author: Mark Tiefenbruck <mark@fluxbox.org>
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Date: 30 December 2012 .\" Date: 10 February 2013
.\" Manual: Fluxbox Manual .\" Manual: Fluxbox Manual
.\" Source: fluxbox-remote.txt .\" Source: fluxbox-remote.txt
.\" Language: English .\" Language: English
.\" .\"
.TH "FLUXBOX\-REMOTE" "1" "30 December 2012" "fluxbox\-remote\&.txt" "Fluxbox Manual" .TH "FLUXBOX\-REMOTE" "1" "10 February 2013" "fluxbox\-remote\&.txt" "Fluxbox Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------

View file

@ -2,12 +2,12 @@
.\" Title: fluxbox-style .\" Title: fluxbox-style
.\" Author: Henrik Kinnunen <fluxgen@fluxbox.org> .\" Author: Henrik Kinnunen <fluxgen@fluxbox.org>
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Date: 30 December 2012 .\" Date: 10 February 2013
.\" Manual: Fluxbox Manual .\" Manual: Fluxbox Manual
.\" Source: fluxbox-style.txt .\" Source: fluxbox-style.txt
.\" Language: English .\" Language: English
.\" .\"
.TH "FLUXBOX\-STYLE" "5" "30 December 2012" "fluxbox\-style\&.txt" "Fluxbox Manual" .TH "FLUXBOX\-STYLE" "5" "10 February 2013" "fluxbox\-style\&.txt" "Fluxbox Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -251,14 +251,14 @@ Many, many things you can do with window design in fluxbox(1), below are your op
window\&.bevelWidth: <integer> window\&.bevelWidth: <integer>
window\&.borderColor: <color> window\&.borderColor: <color>
window\&.borderWidth: <integer> window\&.borderWidth: <integer>
window\&.button\&.focus: <texture type> window\&.button\&.focus: <texture type>
window\&.button\&.focus\&.color: <color> window\&.button\&.focus\&.color: <color>
window\&.button\&.focus\&.colorTo: <color> window\&.button\&.focus\&.colorTo: <color>
window\&.button\&.focus\&.picColor: <color> window\&.button\&.focus\&.picColor: <color>
window\&.button\&.focus\&.pixmap: <filename> window\&.button\&.focus\&.pixmap: <filename>
window\&.button\&.pressed: <texture type> window\&.button\&.pressed: <texture type>
window\&.button\&.pressed\&.color: <color> window\&.button\&.pressed\&.color: <color>
window\&.button\&.pressed\&.colorTo: <color> window\&.button\&.pressed\&.colorTo: <color>
window\&.button\&.pressed\&.pixmap: <filename> window\&.button\&.pressed\&.pixmap: <filename>
window\&.button\&.unfocus: <texture type> window\&.button\&.unfocus: <texture type>
window\&.button\&.unfocus\&.color: <color> window\&.button\&.unfocus\&.color: <color>
@ -271,13 +271,13 @@ window\&.close\&.unfocus\&.pixmap: <filename>
window\&.font: <font> window\&.font: <font>
window\&.frame\&.focusColor: <color> window\&.frame\&.focusColor: <color>
window\&.frame\&.unfocusColor: <color> window\&.frame\&.unfocusColor: <color>
window\&.grip\&.focus: <texture type> window\&.grip\&.focus: <texture type>
window\&.grip\&.focus\&.color: <color> window\&.grip\&.focus\&.color: <color>
window\&.grip\&.focus\&.colorTo: <color> window\&.grip\&.focus\&.colorTo: <color>
window\&.grip\&.focus\&.pixmap: <filename> window\&.grip\&.focus\&.pixmap: <filename>
window\&.grip\&.unfocus: <texture type> window\&.grip\&.unfocus: <texture type>
window\&.grip\&.unfocus\&.color: <color> window\&.grip\&.unfocus\&.color: <color>
window\&.grip\&.unfocus\&.colorTo: <color> window\&.grip\&.unfocus\&.colorTo: <color>
window\&.grip\&.unfocus\&.pixmap: <filename> window\&.grip\&.unfocus\&.pixmap: <filename>
window\&.handle\&.focus: <texture type> window\&.handle\&.focus: <texture type>
window\&.handle\&.focus\&.color: <color> window\&.handle\&.focus\&.color: <color>
@ -302,20 +302,24 @@ window\&.label\&.unfocus: <texture type>
window\&.label\&.unfocus\&.color: <color> window\&.label\&.unfocus\&.color: <color>
window\&.label\&.unfocus\&.colorTo: <color> window\&.label\&.unfocus\&.colorTo: <color>
window\&.label\&.unfocus\&.pixmap: <filename> window\&.label\&.unfocus\&.pixmap: <filename>
window\&.label\&.focus\&.textColor: <color> window\&.label\&.focus\&.textColor: <color>
window\&.label\&.unfocus\&.textColor: <color> window\&.label\&.unfocus\&.textColor: <color>
window\&.maximize\&.pixmap: <filename> window\&.maximize\&.pixmap: <filename>
window\&.maximize\&.pressed\&.pixmap: <filename> window\&.maximize\&.pressed\&.pixmap: <filename>
window\&.maximize\&.unfocus\&.pixmap: <filename> window\&.maximize\&.unfocus\&.pixmap: <filename>
window\&.roundCorners: <{Top|Bottom}{Left|Right}> window\&.roundCorners: <{Top|Bottom}{Left|Right}>
window\&.shade\&.pixmap: <filename> window\&.shade\&.pixmap: <filename>
window\&.shade\&.pressed\&.pixmap: <filename> window\&.shade\&.pressed\&.pixmap: <filename>
window\&.shade\&.unfocus\&.pixmap: <filename> window\&.shade\&.unfocus\&.pixmap: <filename>
window\&.stick\&.pixmap: <filename> window\&.stick\&.pixmap: <filename>
window\&.stick\&.pressed\&.pixmap: <filename> window\&.stick\&.pressed\&.pixmap: <filename>
window\&.stick\&.unfocus\&.pixmap: <filename> window\&.stick\&.unfocus\&.pixmap: <filename>
window\&.stuck\&.pixmap: <filename> window\&.stuck\&.pixmap: <filename>
window\&.stuck\&.unfocus\&.pixmap: <filename> window\&.stuck\&.unfocus\&.pixmap: <filename>
window\&.lhalf\&.pixmap: <filename>
window\&.lhalf\&.unfocus\&.pixmap: <filename>
window\&.rhalf\&.pixmap: <filename>
window\&.rhalf\&.unfocus\&.pixmap: <filename>
window\&.title\&.focus: <texture type> window\&.title\&.focus: <texture type>
window\&.title\&.focus\&.color: <color> window\&.title\&.focus\&.color: <color>
window\&.title\&.focus\&.colorTo: <color> window\&.title\&.focus\&.colorTo: <color>
@ -430,37 +434,37 @@ toolbar\&.bevelWidth: <integer (0\-255)>
toolbar\&.borderColor: <color> toolbar\&.borderColor: <color>
toolbar\&.borderWidth: <integer> toolbar\&.borderWidth: <integer>
toolbar\&.button\&.scale: <integer> toolbar\&.button\&.scale: <integer>
toolbar\&.color: <color> toolbar\&.color: <color>
toolbar\&.colorTo: <color> toolbar\&.colorTo: <color>
toolbar\&.clock: <texture type> toolbar\&.clock: <texture type>
toolbar\&.clock\&.borderColor: <color> toolbar\&.clock\&.borderColor: <color>
toolbar\&.clock\&.borderWidth: <integer> toolbar\&.clock\&.borderWidth: <integer>
toolbar\&.clock\&.font: <font> toolbar\&.clock\&.font: <font>
toolbar\&.clock\&.justify: <{Left|Right|Center}> toolbar\&.clock\&.justify: <{Left|Right|Center}>
toolbar\&.clock\&.pixmap: <filename> toolbar\&.clock\&.pixmap: <filename>
toolbar\&.clock\&.color: <color> toolbar\&.clock\&.color: <color>
toolbar\&.clock\&.colorTo: <color> toolbar\&.clock\&.colorTo: <color>
toolbar\&.clock\&.textColor: <color> toolbar\&.clock\&.textColor: <color>
toolbar\&.height: <integer> toolbar\&.height: <integer>
toolbar\&.iconbar\&.focused: <texture type> toolbar\&.iconbar\&.focused: <texture type>
toolbar\&.iconbar\&.focused\&.color: <color> toolbar\&.iconbar\&.focused\&.color: <color>
toolbar\&.iconbar\&.focused\&.colorTo:<color> toolbar\&.iconbar\&.focused\&.colorTo:<color>
toolbar\&.iconbar\&.focused\&.pixmap: <filename> toolbar\&.iconbar\&.focused\&.pixmap: <filename>
toolbar\&.iconbar\&.unfocused: <texture type> toolbar\&.iconbar\&.unfocused: <texture type>
toolbar\&.iconbar\&.unfocused\&.color: <color> toolbar\&.iconbar\&.unfocused\&.color: <color>
toolbar\&.iconbar\&.unfocused\&.colorTo: <color> toolbar\&.iconbar\&.unfocused\&.colorTo: <color>
toolbar\&.iconbar\&.unfocused\&.pixmap: <filename> toolbar\&.iconbar\&.unfocused\&.pixmap: <filename>
toolbar\&.iconbar\&.empty: <texture type> toolbar\&.iconbar\&.empty: <texture type>
toolbar\&.iconbar\&.empty\&.color: <color> toolbar\&.iconbar\&.empty\&.color: <color>
toolbar\&.iconbar\&.empty\&.colorTo: <color> toolbar\&.iconbar\&.empty\&.colorTo: <color>
toolbar\&.iconbar\&.empty\&.pixmap: <filename> toolbar\&.iconbar\&.empty\&.pixmap: <filename>
toolbar\&.iconbar\&.focused\&.borderColor: <color> toolbar\&.iconbar\&.focused\&.borderColor: <color>
toolbar\&.iconbar\&.focused\&.borderWidth: <integer> toolbar\&.iconbar\&.focused\&.borderWidth: <integer>
toolbar\&.iconbar\&.unfocused\&.borderColor: <color> toolbar\&.iconbar\&.unfocused\&.borderColor: <color>
toolbar\&.iconbar\&.unfocused\&.borderWidth: <integer> toolbar\&.iconbar\&.unfocused\&.borderWidth: <integer>
toolbar\&.iconbar\&.borderColor: <color> toolbar\&.iconbar\&.borderColor: <color>
toolbar\&.iconbar\&.borderWidth: <integer> toolbar\&.iconbar\&.borderWidth: <integer>
toolbar\&.iconbar\&.focused\&.font: <font> toolbar\&.iconbar\&.focused\&.font: <font>
toolbar\&.iconbar\&.focused\&.justify: <{Left|Right|Center}> toolbar\&.iconbar\&.focused\&.justify: <{Left|Right|Center}>
toolbar\&.iconbar\&.focused\&.textColor: <color> toolbar\&.iconbar\&.focused\&.textColor: <color>
toolbar\&.iconbar\&.unfocused\&.font: <font> toolbar\&.iconbar\&.unfocused\&.font: <font>

View file

@ -2,12 +2,12 @@
.\" Title: fluxbox .\" Title: fluxbox
.\" Author: Henrik Kinnunen <fluxgen@fluxbox.org> .\" Author: Henrik Kinnunen <fluxgen@fluxbox.org>
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Date: 30 December 2012 .\" Date: 10 February 2013
.\" Manual: Fluxbox Manual .\" Manual: Fluxbox Manual
.\" Source: fluxbox.txt .\" Source: fluxbox.txt
.\" Language: English .\" Language: English
.\" .\"
.TH "FLUXBOX" "1" "30 December 2012" "fluxbox\&.txt" "Fluxbox Manual" .TH "FLUXBOX" "1" "10 February 2013" "fluxbox\&.txt" "Fluxbox Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -1966,6 +1966,8 @@ The available options are:
\fBMinimize\fR \fBMinimize\fR
\fBShade\fR \fBShade\fR
\fBStick\fR \fBStick\fR
\fBLHalf\fR
\fBRHalf\fR
.RE .RE
.sp .sp
Default left: Default left:
@ -1973,6 +1975,11 @@ Default left:
.sp .sp
Default right: Default right:
\fBShade Minimize Maximize Close\fR \fBShade Minimize Maximize Close\fR
.sp
\fILHalf\fR
and
\fIRHalf\fR
are buttons to quickly place a window into the left and right half of the current monitor\&.
.RE .RE
.sp .sp
All of the \fIlocation\fR resources following require a pathname to their specific files\&. This is where you can specify different files\&. Most of the defaults will be located in the user\(cqs \fB~/\&.fluxbox\fR directory\&. All of the \fIlocation\fR resources following require a pathname to their specific files\&. This is where you can specify different files\&. Most of the defaults will be located in the user\(cqs \fB~/\&.fluxbox\fR directory\&.

View file

@ -2,12 +2,12 @@
.\" Title: startfluxbox .\" Title: startfluxbox
.\" Author: Jim Ramsay <i.am@jimramsay.com> .\" Author: Jim Ramsay <i.am@jimramsay.com>
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\" Date: 30 December 2012 .\" Date: 10 February 2013
.\" Manual: Fluxbox Manual .\" Manual: Fluxbox Manual
.\" Source: startfluxbox.txt .\" Source: startfluxbox.txt
.\" Language: English .\" Language: English
.\" .\"
.TH "STARTFLUXBOX" "1" "30 December 2012" "startfluxbox\&.txt" "Fluxbox Manual" .TH "STARTFLUXBOX" "1" "10 February 2013" "startfluxbox\&.txt" "Fluxbox Manual"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * Define some portability stuff .\" * Define some portability stuff
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------