Changeset 149
- Timestamp:
- 03/27/2004 12:39:29 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 removed
- 7 modified
-
INSTALL (modified) (4 diffs)
-
Manifest (modified) (3 diffs)
-
examples/examplewm.py (modified) (1 diff)
-
examples/hrwwm.py (modified) (1 diff)
-
examples/petliwm.py (modified) (1 diff)
-
examples/plpwm.py (modified) (1 diff)
-
examples/senapwm.py (modified) (1 diff)
-
install-plwm.sh.in (deleted)
-
install-sh (deleted)
-
setup.py (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/INSTALL
r44 r149 4 4 * Requirements 5 5 6 PLWM requires Python 1.5.2or newer, which can be downloaded from7 http://www.python.org/. It has been tested with Python 1.5.2, 2.0 and8 2.1. 6 PLWM requires Python 2.0 or newer, which can be downloaded from 7 http://www.python.org/. It has been tested with Python 2.0, 2.1, 2.2 8 and 2.3. 9 9 10 10 It also requires the Python X Library 0.8 or newer, which can be … … 14 14 * Configuring 15 15 16 PLWM uses autoconf to make installation fairly painless. Simply run 17 ./configure to install with defaults (plwm and wmm in 18 /usr/local/bin, Python modules in whatever directory Python is 19 installed in). 20 21 22 To install in another program directory, use --prefix, --exec-prefix 23 or --bindir. 24 25 To install the modules in some other directory than a the default 26 site-packages (typically /usr/lib/python1.5/site-packages) specify 27 that directory as an argument to --with-python-path. 28 29 If the Python X Library isn't in Python's module path (PYTHONPATH or 30 sys.path), the location can be specified with --with-python-xlib. 31 32 Normally examples/examplewm.py is installed as plwm, but this can be changed 33 with --enable-plwm. To install examples/petliwm.py instead, use: 34 35 ./configure --enable-plwm=examples/petliwm.py 36 37 To inhibit installation of the program plwm use --disable-plwm. 38 39 40 The Window Manager Manager is installed as wmm, this can be disabled 41 by using --disable-wmm. 42 16 Configuration is done by the Python distutils package as part of the 17 isntallation process. 43 18 44 19 * Building … … 51 26 Just type: 52 27 53 make install 28 python setup.py install 29 30 * Using it. 54 31 55 32 There are a number of example window managers in examples/. Running 33 the examples will start that window manager. Examing the examples is 34 the best way to get a feel for how to configure a plwm window manager. 35 56 36 * Using plwm without installing 57 37 … … 60 40 in /home/foo): 61 41 62 /home/foo/plwm-2. 0/examples/examplewm.py42 /home/foo/plwm-2.6/examples/examplewm.py 63 43 -
trunk/Manifest
r114 r149 5 5 INSTALL 6 6 README 7 Makefile.in8 7 NEWS 9 8 ONEWS 10 configure11 configure.in12 install-plwm.sh.in13 install-sh14 9 doc/.cvsignore 15 10 doc/Makefile … … 23 18 examples/petliwm.py 24 19 examples/plpwm.py 20 examples/hrwwm.py 21 examples/senapwm.py 22 examples/test.py 25 23 plwm/ChangeLog 26 24 plwm/.cvsignore … … 40 38 plwm/message.py 41 39 plwm/misc.py 40 plwm/mixer.py 42 41 plwm/modestatus.py 43 42 plwm/modewindow.py -
trunk/examples/examplewm.py
r114 r149 1 #!/usr/bin/ python1 #!/usr/bin/env python 2 2 # 3 3 # petliwm.py -- Example PLWM window manager "configuration" -
trunk/examples/hrwwm.py
r5 r149 1 #!/usr/ local/bin/python1 #!/usr/bin/env python 2 2 # 3 3 # hrwwm.py -- Example PLWM window manager "configuration" -
trunk/examples/petliwm.py
r143 r149 1 #!/usr/bin/ python1 #!/usr/bin/env python 2 2 # 3 3 # petliwm.py -- My PLWM "configuration" -
trunk/examples/plpwm.py
r147 r149 1 #!/usr/bin/ python2 # $Id: plpwm.py,v 1.3 3 2004-03-15 00:15:46mwm Exp $1 #!/usr/bin/env python 2 # $Id: plpwm.py,v 1.34 2004-03-27 18:39:29 mwm Exp $ 3 3 # 4 4 # plpwm.py -- Exemple PLWM window manager configuration with panes. -
trunk/examples/senapwm.py
r5 r149 1 #!/usr/bin/ python1 #!/usr/bin/env python 2 2 # 3 3 # senapwm.py -- Example PLWM window manager "configuration"
