Changeset 203
- Timestamp:
- 04/09/2008 10:40:38 PM (9 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
. (modified) (3 props)
-
plwm/__init__.py (modified) (1 diff)
-
plwm/border.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property
bzr:revision-id:v3-trunk0 set
to
158 david.bronke@g33xnexus.com-20080410033651-t6ztiogf838wo17v
-
Property
bzr:revision-info set
to
timestamp: 2008-04-09 23:36:51.361999989 -0400
committer: David Bronke <David.Bronke@g33xnexus.com>
properties:
branch-nick: plwm
-
Property
bzr:revision-id:v3-trunk0 set
to
-
trunk/plwm/__init__.py
r201 r203 17 17 # along with this program; if not, write to the Free Software 18 18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 20 """PLWM - The Pointless Window Manager 21 22 This module provides various window manager components, allowing you to build 23 your own window manager. 24 """ 25 26 __version_number__ = (2, 6) 27 28 __version_extra__ = 'a' 29 30 __version__ = '.'.join(map(str, __version_number__)) + __version_extra__ 19 31 20 32 __all__ = [ 'border', -
trunk/plwm/border.py
r201 r203 42 42 border_default_color = None 43 43 44 # These two attributes are for backward comp itability, and is44 # These two attributes are for backward compatability, and are 45 45 # equivalent to this: 46 46 # border_default_color = FixedBorderColor(border_color_name, 47 # border_focuscolor_name)47 # border_focuscolor_name) 48 48 border_color_name = None 49 49 border_focuscolor_name = None
