![]() |
![]() |
wmoo |
![]() |
Introduction
Getting the Software
Compiling and Installation
Using wmoo
Configuring
Contributors
Download wmoo as tgz 
binary
Extract the archive:
tar -xvzf wmoo-0.1.tgz
Enter the wmoo directory and edit the Makefile:
cd wmoo-0.1/
vi Makefile
The Makefile should be fairly straight forward. You may need
to change the INCDIR and LIBDIR variables to point to their
correct locations.
Particular libraries required:
libgtop1 (to run)
libgtop1-devel (to compile)
XFree86-devel (to compile)
Make the binary:
make
Install the binary:
make install
This will copy the binary to /usr/X11R6/bin with appropriate
permissions. This destination directory may be changed by
changing the DESTDIR variable at the top of the Makefile.
Usage: wmoo [OPTIONS] -f, --rcfile [arg] absolute path of configuration file -i, --iconpath [arg] path to search for icons (paths separated by :'s) -d, --debug dump debug information to stderr -V, --version show version information -w, --window causes the dockapp to be run in windowed mode -h, --help show usage information (this info) Defaults: rcfile=~/.wmoorc iconpath=/usr/share/icons/wmoo
[quickstart]
icon = name of the bottom icon.
command = launches the application in background.
check = string to check if the background is alive.
[swriter][scalc][simpress][sdraw]
icon = name of the command icon.
command = program that starts when you click on the icon.
# /home/piera/.wmoorc
[quickstart]
icon = oo_logo.xpm
command = /usr/lib/office60/program/soffice -plugin -quickstart &
check = soffice.bin
[swriter]
icon = oo_swriter.xpm
command = /usr/lib/office60/program/soffice private:factory/swriter &
[scalc]
icon = oo_scalc.xpm
command = /usr/lib/office60/program/soffice private:factory/scalc &
[simpress]
icon = oo_simpress.xpm
command = /usr/lib/office60/program/soffice private:factory/simpress &
[sdraw]
icon = oo_sdraw.xpm
command = /usr/lib/office60/program/soffice private:factory/sdraw &
  |