Obtained from [1]. [1] http://http.debian.net/debian/pool/main/w/wmtop/wmtop_0.84.orig.tar.gz --- wmtop/.cvsignore | 1 + wmtop/BUGS | 13 + wmtop/CHANGES | 101 +++++ wmtop/COPYING | 344 +++++++++++++++ wmtop/Makefile | 46 ++ wmtop/README | 71 ++++ wmtop/TODO | 13 + wmtop/wmgeneral/list.c | 169 ++++++++ wmtop/wmgeneral/list.h | 59 +++ wmtop/wmgeneral/misc.c | 164 ++++++++ wmtop/wmgeneral/misc.h | 9 + wmtop/wmgeneral/wmgeneral.c | 481 +++++++++++++++++++++ wmtop/wmgeneral/wmgeneral.h | 59 +++ wmtop/wmtop.1 | 84 ++++ wmtop/wmtop.c | 996 ++++++++++++++++++++++++++++++++++++++++++++ wmtop/xpm/wmtop-default.xpm | 174 ++++++++ wmtop/xpm/wmtop-lcd.xpm | 118 ++++++ wmtop/xpm/wmtop-neon1.xpm | 172 ++++++++ wmtop/xpm/wmtop-neon2.xpm | 174 ++++++++ wmtop/xpm/wmtop-rainbow.xpm | 174 ++++++++ 20 files changed, 3422 insertions(+) create mode 100644 wmtop/.cvsignore create mode 100644 wmtop/BUGS create mode 100644 wmtop/CHANGES create mode 100644 wmtop/COPYING create mode 100644 wmtop/Makefile create mode 100644 wmtop/README create mode 100644 wmtop/TODO create mode 100644 wmtop/wmgeneral/list.c create mode 100644 wmtop/wmgeneral/list.h create mode 100644 wmtop/wmgeneral/misc.c create mode 100644 wmtop/wmgeneral/misc.h create mode 100644 wmtop/wmgeneral/wmgeneral.c create mode 100644 wmtop/wmgeneral/wmgeneral.h create mode 100644 wmtop/wmtop.1 create mode 100644 wmtop/wmtop.c create mode 100644 wmtop/xpm/wmtop-default.xpm create mode 100644 wmtop/xpm/wmtop-lcd.xpm create mode 100644 wmtop/xpm/wmtop-neon1.xpm create mode 100644 wmtop/xpm/wmtop-neon2.xpm create mode 100644 wmtop/xpm/wmtop-rainbow.xpm
diff --git a/wmtop/.cvsignore b/wmtop/.cvsignore new file mode 100644 index 0000000..eb1004c --- /dev/null +++ b/wmtop/.cvsignore @@ -0,0 +1 @@ +wmtop diff --git a/wmtop/BUGS b/wmtop/BUGS new file mode 100644 index 0000000..2c3cebc --- /dev/null +++ b/wmtop/BUGS @@ -0,0 +1,13 @@ +* It's still occasionally bombing out under FreeBSD. + +* I've had the colour of the bars go funny on me. I'm inclined to + blame this on X rather than my code. I've seen other dockapps to + this too. + +* Under FreeBSD /proc seems to be updated at a low sample rate so + the bars can be a bit misleading with processes fluctuating + between 0% and 100%. It still gives a correct overall idea of + what's using CPU. + +* A process that appears and disappears between samples will never + show up. I don't anticipate this ever getting fixed. diff --git a/wmtop/CHANGES b/wmtop/CHANGES new file mode 100644 index 0000000..decba51 --- /dev/null +++ b/wmtop/CHANGES @@ -0,0 +1,101 @@ +$Log: CHANGES,v $ +Revision 1.3 2001/03/06 21:29:46 mrolig + +added support for stripping kdeinit, and displaying something useful for KDE apps. + +Revision 1.3 2001/03/05 22:15:00 mrolig +Added ability to strip kdeinit from kde proc names + +Revision 1.2 2000/04/29 18:16:07 sigfpe +Minor changes. +This version will be release 0.8 + +Revision 1.1 2000/04/08 01:38:00 sigfpe +Added change log. + +Revision 1.2 2000/04/05 05:36:14 sigfpe +Updated usage information and manual page. + +Revision 1.1.1.1 2000/04/05 04:40:57 sigfpe +Importing wmtop into CVS on sourcefourge for the first time. + +Revision 1.26 2000/04/03 22:14:29 dan +Reintroduced some changes lost in the incorporation of Alan Swanson's +changes. Tested under FreeBSD. + +Revision 1.25 2000/04/03 17:27:02 dan +Incorporated some changes from Alan Swanson. Had to redo some changes that +were made after the version Alan was using. + +Revision 1.23 2000/03/12 08:39:17 dan +Fixed process name nontracking bug. + +Revision 1.21 1999/10/13 03:05:29 dan +Fixed missing final '0' to execlp(). Only apparent under FreeBSD. + +Revision 1.20 1999/10/06 21:48:11 dan +Beta release of 0.6 + +Revision 1.19 1999/10/05 20:15:17 dan +Tidied up a bit. + +Revision 1.18 1999/10/05 04:25:21 dan +Replaced ptable[] with find_process() fixing FreeBSD core dumps + +Revision 1.17 1999/10/03 10:05:34 dan +CPU time now supported under FreeBSD + +Revision 1.16 1999/10/03 08:43:41 dan +Last purely Linux version. Starting on FreeBSD port. + +Revision 1.15 1999/09/26 20:14:57 dan +*** empty log message *** + +Revision 1.14 1999/09/26 05:07:41 dan +Major rearrangement. + +Revision 1.13 1999/09/26 04:53:07 dan +*** empty log message *** + +Revision 1.11 1999/09/18 01:06:00 dan +Improved process object. Moving towards platform independence. +Changed Makefile using changes from Brian Servis. + +Revision 1.10 1999/09/14 06:50:18 dan +Created process process structure + +Revision 1.9 1999/08/04 18:33:08 dan +Tidied up source code a tiny bit. +Added CHANGES log and TODO file. + +Revision 1.8 1999/07/27 04:51:02 dan +Added manual page. + +Revision 1.7 1999/07/26 23:26:39 dan +Fixed problems with zombies thanks to the UNIX FAQ at +http://www.erlenstar.demon.co.uk/unix/faq_toc.html + +Revision 1.6 1999/07/23 18:09:02 dan +Using exec() instead of system(). Still getting zombies. Must learn some +system programming :-) + +Revision 1.5 1999/07/19 21:31:46 dan +Added -c option + +Revision 1.4 1999/07/19 20:52:13 dan +Removing files that are now unnecessary + +Revision 1.3 1999/07/11 17:43:04 dan +Added -x <regexp> +Added -U + +Revision 1.2 1999/06/15 23:48:39 dan +Tidying up. Removed some inherited code no longer used. Indenting the way I +like it. + +Revision 1.1 1999/06/15 23:10:17 dan +Complete rearrangement + +Revision 1.4 1999/06/11 20:21:58 dan +Added logging information 'cos the GPL says you have to have the date of +modification stored in your file diff --git a/wmtop/COPYING b/wmtop/COPYING new file mode 100644 index 0000000..4a3e20a --- /dev/null +++ b/wmtop/COPYING @@ -0,0 +1,344 @@ +What follows does not necessarily represent my personal views in +any way. I am legally obliged to include it. + - Dan Piponi + d...@tanelorn.demon.co.uk +-------------------------------------------------------------------------------- + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 675 Mass Ave, Cambridge, MA 02139, USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + Appendix: How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) 19yy <name of author> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + <signature of Ty Coon>, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/wmtop/Makefile b/wmtop/Makefile new file mode 100644 index 0000000..eedf30b --- /dev/null +++ b/wmtop/Makefile @@ -0,0 +1,46 @@ +DEBUG = -DPARANOID +LIBDIR = -L/usr/X11R6/lib +LIBS = -lXpm -lXext -lX11 +INCS = -I/usr/X11R6/share/include -I/usr/X11R6/include +OBJS = wmtop.o wmgeneral/wmgeneral.o wmgeneral/misc.o wmgeneral/list.o +OPTS = -O3 -g -Wall +FLAGS = $(DEBUG) $(OPTS) -D$(OS) +MAKE = make +CC = cc +PREFIX ?= /usr/local + +default: + @echo Use '"make os"' where '"os"' is one of: + @echo " freebsd" + @echo " linux" + @echo Then '"make install"' + +freebsd: + $(MAKE) OS=FREEBSD all + +linux: + $(MAKE) OS=LINUX all + +.c.o: + $(CC) $(FLAGS) $(INCS) -c $< -o $*.o + +wmtop: $(OBJS) wmtop.o + $(CC) $(FLAGS) -o wmtop $(OBJS) $(LIBDIR) $(LIBS) + @echo Now you can do a '"make install"' + +all: wmtop + +clean: + for i in $(OBJS) ; do \ + rm -f $$i ; \ + done + rm -f wmtop + rm -f *~ + +install: wmtop + strip wmtop + cp -f wmtop $(PREFIX)/bin/ + chmod 755 $(PREFIX)/bin/wmtop + cp -f wmtop.1 $(PREFIX)/man/man1 + chmod 644 $(PREFIX)/man/man1/wmtop.1 + @echo "wmtop Installation finished..." diff --git a/wmtop/README b/wmtop/README new file mode 100644 index 0000000..d8c27ae --- /dev/null +++ b/wmtop/README @@ -0,0 +1,71 @@ +Introduction +------------ + +Wmtop maintains a view of the 3 top CPU (or memory) consuming +processes displaying the amount of CPU used as a horizontal bar. +Very useful for spotting those rogue Netscape processes! + +To compile: +Type 'make linux' or 'make freebsd' depending on which operating system you +are using. (Type uname if you don't know :-) + +To install: +If you are superuser type 'make install' + +Instructions +------------ + +Invoke wmtop using the command 'wmtop' + +Use -display and -geometry options in the usual way. + +Use the command line option '-s <time in milliseconds>' to control the +frequency of sampling of the processes and '-r <time in milliseconds>' to +control how often the display is updated. + +Use -U to watch only your own processes rather than all of them. While +running, a middle mouse click changes between the display of user processes +and all processes. + +Use -x <regexp> to exclude processes whose name matches a given pattern +from the list. + +Use -m to display physical memory usage instead of CPU, but is currently +only supported under Linux. While running, a left mouse click changes +between cpu and memory display. + +Use -c 'command' to have a command executed when you right click on wmtop. +For example you could launch a window with the real 'top' command for a closer +look at a rogue process. + +Use -a <1..X> to choose a theme for wmtop. + +Example +------- + +wmtop -U -x '^wm' -c "xterm -e top" + +Means list my own processes that are not dockapps. Launch top on a right +click. + +Caveats +------- +As far as I know this only works under Linux or FreeBSD with a +/proc filesystem. Tested by me under Linux 2.2.5 and FreeBSD 3.2 +(PAO) and FreeBSD 4.0 on a Sony Vaio 505TX. Reportedly works also +on other platforms including various combnations of Linux and +FreeBSD on Intel and Alpha CPU machines. See TODO file for information +about porting progress. + +Credits +------- + +I have liberally borrowed code from wmsysmon by Dave Clark. Thanks! + +Thanks to Cyrille Mars (mailto:cm...@club-internet.fr) for some +new pixmaps and beta testing. +Thanks to Thomas C Sobczyns for beta testing (mailto:t...@mit.edu). +Thanks to Brian Servis (mailto:ser...@purdue.edu) for improvements to the +Makefile (that I have since ruined...). +Thanks to Alan Swanson (mailto:swan...@uklinux.net) for some bugfixes and +improvements. diff --git a/wmtop/TODO b/wmtop/TODO new file mode 100644 index 0000000..9ac4846 --- /dev/null +++ b/wmtop/TODO @@ -0,0 +1,13 @@ +* Sort out the CHANGES file which is a mess right now. + +* Make it use less CPU time. + +* Port to IRIX. I know how to do this but it means using the + computers at work... + +* Port to SunOS. Need to find a suitable volunteer to help! + +* More safety checks (eg. around mallocs) and get rid of some of + those fixed length arrays. + +* Make a gnome applet version. diff --git a/wmtop/wmgeneral/list.c b/wmtop/wmgeneral/list.c new file mode 100644 index 0000000..f804b2c --- /dev/null +++ b/wmtop/wmgeneral/list.c @@ -0,0 +1,169 @@ +/* Generic single linked list to keep various information + Copyright (C) 1993, 1994 Free Software Foundation, Inc. + + +Author: Kresten Krab Thorup + +Many modifications by Alfredo K. Kojima + + +This file is part of GNU CC. + +GNU CC is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU CC is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU CC; see the file COPYING. If not, write to +the Free Software Foundation, 59 Temple Place - Suite 330, +Boston, MA 02111-1307, USA. */ + +/* As a special exception, if you link this library with files compiled with + GCC to produce an executable, this does not cause the resulting executable + to be covered by the GNU General Public License. This exception does not + however invalidate any other reasons why the executable file might be + covered by the GNU General Public License. */ + +#include "list.h" +#ifdef HAVE_SYS_TYPES_H +# include <sys/types.h> +#endif +#include <stdlib.h> + +/* Return a cons cell produced from (head . tail) */ + +INLINE LinkedList* +list_cons(void* head, LinkedList* tail) +{ + LinkedList* cell; + + cell = (LinkedList*)malloc(sizeof(LinkedList)); + cell->head = head; + cell->tail = tail; + return cell; +} + +/* Return the length of a list, list_length(NULL) returns zero */ + +INLINE int +list_length(LinkedList* list) +{ + int i = 0; + while(list) + { + i += 1; + list = list->tail; + } + return i; +} + +/* Return the Nth element of LIST, where N count from zero. If N + larger than the list length, NULL is returned */ + +INLINE void* +list_nth(int index, LinkedList* list) +{ + while(index-- != 0) + { + if(list->tail) + list = list->tail; + else + return 0; + } + return list->head; +} + +/* Remove the element at the head by replacing it by its successor */ + +INLINE void +list_remove_head(LinkedList** list) +{ + if (!*list) return; + if ((*list)->tail) + { + LinkedList* tail = (*list)->tail; /* fetch next */ + *(*list) = *tail; /* copy next to list head */ + free(tail); /* free next */ + } + else /* only one element in list */ + { + free(*list); + (*list) = 0; + } +} + + +/* Remove the element with `car' set to ELEMENT */ +/* +INLINE void +list_remove_elem(LinkedList** list, void* elem) +{ + while (*list) + { + if ((*list)->head == elem) + list_remove_head(list); + *list = (*list ? (*list)->tail : NULL); + } +}*/ + +INLINE LinkedList * +list_remove_elem(LinkedList* list, void* elem) +{ + LinkedList *tmp; + + if (list) { + if (list->head == elem) { + tmp = list->tail; + free(list); + return tmp; + } + list->tail = list_remove_elem(list->tail, elem); + return list; + } + return NULL; +} + + +/* Return element that has ELEM as car */ + +INLINE LinkedList* +list_find(LinkedList* list, void* elem) +{ + while(list) + { + if (list->head == elem) + return list; + list = list->tail; + } + return NULL; +} + +/* Free list (backwards recursive) */ + +INLINE void +list_free(LinkedList* list) +{ + if(list) + { + list_free(list->tail); + free(list); + } +} + +/* Map FUNCTION over all elements in LIST */ + +INLINE void +list_mapcar(LinkedList* list, void(*function)(void*)) +{ + while(list) + { + (*function)(list->head); + list = list->tail; + } +} diff --git a/wmtop/wmgeneral/list.h b/wmtop/wmgeneral/list.h new file mode 100644 index 0000000..af0f22c --- /dev/null +++ b/wmtop/wmgeneral/list.h @@ -0,0 +1,59 @@ +/* Generic single linked list to keep various information + Copyright (C) 1993, 1994 Free Software Foundation, Inc. + +Author: Kresten Krab Thorup + +This file is part of GNU CC. + +GNU CC is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU CC is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU CC; see the file COPYING. If not, write to +the Free Software Foundation, 59 Temple Place - Suite 330, +Boston, MA 02111-1307, USA. */ + +/* As a special exception, if you link this library with files compiled with + GCC to produce an executable, this does not cause the resulting executable + to be covered by the GNU General Public License. This exception does not + however invalidate any other reasons why the executable file might be + covered by the GNU General Public License. */ + +#ifndef __LIST_H_ +#define __LIST_H_ + +#if defined(__GNUC__) && !defined(__STRICT_ANSI__) +# define INLINE inline +#else +# define INLINE +#endif + +typedef struct LinkedList { + void *head; + struct LinkedList *tail; +} LinkedList; + +INLINE LinkedList* list_cons(void* head, LinkedList* tail); + +INLINE int list_length(LinkedList* list); + +INLINE void* list_nth(int index, LinkedList* list); + +INLINE void list_remove_head(LinkedList** list); + +INLINE LinkedList *list_remove_elem(LinkedList* list, void* elem); + +INLINE void list_mapcar(LinkedList* list, void(*function)(void*)); + +INLINE LinkedList*list_find(LinkedList* list, void* elem); + +INLINE void list_free(LinkedList* list); + +#endif diff --git a/wmtop/wmgeneral/misc.c b/wmtop/wmgeneral/misc.c new file mode 100644 index 0000000..34281e2 --- /dev/null +++ b/wmtop/wmgeneral/misc.c @@ -0,0 +1,164 @@ +/* dock.c- built-in Dock module for WindowMaker + * + * WindowMaker window manager + * + * Copyright (c) 1997 Alfredo K. Kojima + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +#include <stdlib.h> +#include <string.h> +#include "list.h" +#include "misc.h" + +/* + *---------------------------------------------------------------------- + * parse_command-- + * Divides a command line into a argv/argc pair. + *---------------------------------------------------------------------- + */ +#define PRC_ALPHA 0 +#define PRC_BLANK 1 +#define PRC_ESCAPE 2 +#define PRC_DQUOTE 3 +#define PRC_EOS 4 +#define PRC_SQUOTE 5 + +typedef struct { + short nstate; + short output; +} DFA; + + +static DFA mtable[9][6] = { + {{3,1},{0,0},{4,0},{1,0},{8,0},{6,0}}, + {{1,1},{1,1},{2,0},{3,0},{5,0},{1,1}}, + {{1,1},{1,1},{1,1},{1,1},{5,0},{1,1}}, + {{3,1},{5,0},{4,0},{1,0},{5,0},{6,0}}, + {{3,1},{3,1},{3,1},{3,1},{5,0},{3,1}}, + {{-1,-1},{0,0},{0,0},{0,0},{0,0},{0,0}}, /* final state */ + {{6,1},{6,1},{7,0},{6,1},{5,0},{3,0}}, + {{6,1},{6,1},{6,1},{6,1},{5,0},{6,1}}, + {{-1,-1},{0,0},{0,0},{0,0},{0,0},{0,0}}, /* final state */ +}; + +char* +next_token(char *word, char **next) +{ + char *ptr; + char *ret, *t; + int state, ctype; + + t = ret = malloc(strlen(word)+1); + ptr = word; + + state = 0; + *t = 0; + while (1) { + if (*ptr==0) + ctype = PRC_EOS; + else if (*ptr=='\\') + ctype = PRC_ESCAPE; + else if (*ptr=='"') + ctype = PRC_DQUOTE; + else if (*ptr=='\'') + ctype = PRC_SQUOTE; + else if (*ptr==' ' || *ptr=='\t') + ctype = PRC_BLANK; + else + ctype = PRC_ALPHA; + + if (mtable[state][ctype].output) { + *t = *ptr; t++; + *t = 0; + } + state = mtable[state][ctype].nstate; + ptr++; + if (mtable[state][0].output<0) { + break; + } + } + + if (*ret==0) + t = NULL; + else + t = strdup(ret); + + free(ret); + + if (ctype==PRC_EOS) + *next = NULL; + else + *next = ptr; + + return t; +} + + +extern void +parse_command(char *command, char ***argv, int *argc) +{ + LinkedList *list = NULL; + char *token, *line; + int count, i; + + line = command; + do { + token = next_token(line, &line); + if (token) { + list = list_cons(token, list); + } + } while (token!=NULL && line!=NULL); + + count = list_length(list); + *argv = malloc(sizeof(char*)*count); + i = count; + while (list!=NULL) { + (*argv)[--i] = list->head; + list_remove_head(&list); + } + *argc = count; +} + +extern pid_t +execCommand(char *command) +{ + pid_t pid; + char **argv; + int argc; + + parse_command(command, &argv, &argc); + + if (argv==NULL) { + return 0; + } + + if ((pid=fork())==0) { + char **args; + int i; + + args = malloc(sizeof(char*)*(argc+1)); + if (!args) + exit(10); + for (i=0; i<argc; i++) { + args[i] = argv[i]; + } + args[argc] = NULL; + execvp(argv[0], args); + exit(10); + } + return pid; +} diff --git a/wmtop/wmgeneral/misc.h b/wmtop/wmgeneral/misc.h new file mode 100644 index 0000000..602e1b7 --- /dev/null +++ b/wmtop/wmgeneral/misc.h @@ -0,0 +1,9 @@ +#ifndef __MISC_H +#define __MISC_H + +#include <unistd.h> + +extern void parse_command(char *, char ***, int *); + +extern pid_t execCommand(char *); +#endif /* __MISC_H */ diff --git a/wmtop/wmgeneral/wmgeneral.c b/wmtop/wmgeneral/wmgeneral.c new file mode 100644 index 0000000..56b7bd6 --- /dev/null +++ b/wmtop/wmgeneral/wmgeneral.c @@ -0,0 +1,481 @@ +/* + Best viewed with vim5, using ts=4 + + wmgeneral was taken from wmppp. + + It has a lot of routines which most of the wm* programs use. + + ------------------------------------------------------------ + + Author: Martijn Pieterse (piete...@xs4all.nl) + + --- + CHANGES: + --- + 14/09/1998 (Dave Clark, cla...@skyia.com) + * Updated createXBMfromXPM routine + * Now supports >256 colors + 11/09/1998 (Martijn Pieterse, piete...@xs4all.nl) + * Removed a bug from parse_rcfile. You could + not use "start" in a command if a label was + also start. + * Changed the needed geometry string. + We don't use window size, and don't support + negative positions. + 03/09/1998 (Martijn Pieterse, piete...@xs4all.nl) + * Added parse_rcfile2 + 02/09/1998 (Martijn Pieterse, piete...@xs4all.nl) + * Added -geometry support (untested) + 28/08/1998 (Martijn Pieterse, piete...@xs4all.nl) + * Added createXBMfromXPM routine + * Saves a lot of work with changing xpm's. + 02/05/1998 (Martijn Pieterse, piete...@xs4all.nl) + * changed the read_rc_file to parse_rcfile, as suggested by Marcelo E. Magallon + * debugged the parse_rc file. + 30/04/1998 (Martijn Pieterse, piete...@xs4all.nl) + * Ripped similar code from all the wm* programs, + and put them in a single file. + +*/ + +#include <stdlib.h> +#include <stdio.h> +#include <string.h> +#include <unistd.h> +#include <ctype.h> +#include <stdarg.h> + +#include <X11/Xlib.h> +#include <X11/xpm.h> +#include <X11/extensions/shape.h> + +#include "wmgeneral.h" + + /*****************/ + /* X11 Variables */ +/*****************/ + +Window Root; +int screen; +int x_fd; +int d_depth; +XSizeHints mysizehints; +XWMHints mywmhints; +Pixel back_pix, fore_pix; +char *Geometry = ""; +Window iconwin, win; +GC NormalGC; +XpmIcon wmgen; +Pixmap pixmask; + + /*****************/ + /* Mouse Regions */ +/*****************/ + +typedef struct { + int enable; + int top; + int bottom; + int left; + int right; +} MOUSE_REGION; + +MOUSE_REGION mouse_region[MAX_MOUSE_REGION]; + + /***********************/ + /* Function Prototypes */ +/***********************/ + +static void GetXPM(XpmIcon *, char **); +static Pixel GetColor(char *); +void RedrawWindow(void); +void AddMouseRegion(int, int, int, int, int); +int CheckMouseRegion(int, int); + +/*******************************************************************************\ +|* parse_rcfile *| +\*******************************************************************************/ + +void parse_rcfile(const char *filename, rckeys *keys) { + + char *p,*q; + char temp[128]; + char *tokens = " :\t\n"; + FILE *fp; + int i,key; + + fp = fopen(filename, "r"); + if (fp) { + while (fgets(temp, 128, fp)) { + key = 0; + q = strdup(temp); + q = strtok(q, tokens); + while (key >= 0 && keys[key].label) { + if ((!strcmp(q, keys[key].label))) { + p = strstr(temp, keys[key].label); + p += strlen(keys[key].label); + p += strspn(p, tokens); + if ((i = strcspn(p, "#\n"))) p[i] = 0; + free(*keys[key].var); + *keys[key].var = strdup(p); + key = -1; + } else key++; + } + free(q); + } + fclose(fp); + } +} + +/*******************************************************************************\ +|* parse_rcfile2 *| +\*******************************************************************************/ + +void parse_rcfile2(const char *filename, rckeys2 *keys) { + + char *p; + char temp[128]; + char *tokens = " :\t\n"; + FILE *fp; + int i,key; + char *family = NULL; + + fp = fopen(filename, "r"); + if (fp) { + while (fgets(temp, 128, fp)) { + key = 0; + while (key >= 0 && keys[key].label) { + if ((p = strstr(temp, keys[key].label))) { + p += strlen(keys[key].label); + p += strspn(p, tokens); + if ((i = strcspn(p, "#\n"))) p[i] = 0; + free(*keys[key].var); + *keys[key].var = strdup(p); + key = -1; + } else key++; + } + } + fclose(fp); + } + free(family); +} + + +/*******************************************************************************\ +|* GetXPM *| +\*******************************************************************************/ + +static void GetXPM(XpmIcon *wmgen, char *pixmap_bytes[]) { + + XWindowAttributes attributes; + int err; + + /* For the colormap */ + XGetWindowAttributes(display, Root, &attributes); + + wmgen->attributes.valuemask |= (XpmReturnPixels | XpmReturnExtensions); + + err = XpmCreatePixmapFromData(display, Root, pixmap_bytes, &(wmgen->pixmap), + &(wmgen->mask), &(wmgen->attributes)); + + if (err != XpmSuccess) { + fprintf(stderr, "Not enough free colorcells.\n"); + exit(1); + } +} + +/*******************************************************************************\ +|* GetColor *| +\*******************************************************************************/ + +static Pixel GetColor(char *name) { + + XColor color; + XWindowAttributes attributes; + + XGetWindowAttributes(display, Root, &attributes); + + color.pixel = 0; + if (!XParseColor(display, attributes.colormap, name, &color)) { + fprintf(stderr, "wm.app: can't parse %s.\n", name); + } else if (!XAllocColor(display, attributes.colormap, &color)) { + fprintf(stderr, "wm.app: can't allocate %s.\n", name); + } + return color.pixel; +} + +/*******************************************************************************\ +|* flush_expose *| +\*******************************************************************************/ + +static int flush_expose(Window w) { + + XEvent dummy; + int i=0; + + while (XCheckTypedWindowEvent(display, w, Expose, &dummy)) + i++; + + return i; +} + +/*******************************************************************************\ +|* RedrawWindow *| +\*******************************************************************************/ + +void RedrawWindow(void) { + + flush_expose(iconwin); + XCopyArea(display, wmgen.pixmap, iconwin, NormalGC, + 0,0, wmgen.attributes.width, wmgen.attributes.height, 0,0); + flush_expose(win); + XCopyArea(display, wmgen.pixmap, win, NormalGC, + 0,0, wmgen.attributes.width, wmgen.attributes.height, 0,0); +} + +/*******************************************************************************\ +|* RedrawWindowXY *| +\*******************************************************************************/ + +void RedrawWindowXY(int x, int y) { + + flush_expose(iconwin); + XCopyArea(display, wmgen.pixmap, iconwin, NormalGC, + x,y, wmgen.attributes.width, wmgen.attributes.height, 0,0); + flush_expose(win); + XCopyArea(display, wmgen.pixmap, win, NormalGC, + x,y, wmgen.attributes.width, wmgen.attributes.height, 0,0); +} + +/*******************************************************************************\ +|* AddMouseRegion *| +\*******************************************************************************/ + +void AddMouseRegion(int index, int left, int top, int right, int bottom) { + + if (index < MAX_MOUSE_REGION) { + mouse_region[index].enable = 1; + mouse_region[index].top = top; + mouse_region[index].left = left; + mouse_region[index].bottom = bottom; + mouse_region[index].right = right; + } +} + +/*******************************************************************************\ +|* CheckMouseRegion *| +\*******************************************************************************/ + +int CheckMouseRegion(int x, int y) { + + int i; + int found; + + found = 0; + + for (i=0; i<MAX_MOUSE_REGION && !found; i++) { + if (mouse_region[i].enable && + x <= mouse_region[i].right && + x >= mouse_region[i].left && + y <= mouse_region[i].bottom && + y >= mouse_region[i].top) + found = 1; + } + if (!found) return -1; + return (i-1); +} + +/*******************************************************************************\ +|* createXBMfromXPM *| +\*******************************************************************************/ +void createXBMfromXPM(char *xbm, char **xpm, int sx, int sy) { + + int i,j,k; + int width, height, numcol, depth; + int zero=0; + unsigned char bwrite; + int bcount; + int curpixel; + + sscanf(*xpm, "%d %d %d %d", &width, &height, &numcol, &depth); + + + for (k=0; k!=depth; k++) + { + zero <<=8; + zero |= xpm[1][k]; + } + + for (i=numcol+1; i < numcol+sy+1; i++) { + bcount = 0; + bwrite = 0; + for (j=0; j<sx*depth; j+=depth) { + bwrite >>= 1; + + curpixel=0; + for (k=0; k!=depth; k++) + { + curpixel <<=8; + curpixel |= xpm[i][j+k]; + } + + if ( curpixel != zero ) { + bwrite += 128; + } + bcount++; + if (bcount == 8) { + *xbm = bwrite; + xbm++; + bcount = 0; + bwrite = 0; + } + } + } +} + +/*******************************************************************************\ +|* copyXPMArea *| +\*******************************************************************************/ + +void copyXPMArea(int x, int y, int sx, int sy, int dx, int dy) { + + XCopyArea(display, wmgen.pixmap, wmgen.pixmap, NormalGC, x, y, sx, sy, dx, dy); + +} + +/*******************************************************************************\ +|* copyXBMArea *| +\*******************************************************************************/ + +void copyXBMArea(int x, int y, int sx, int sy, int dx, int dy) { + + XCopyArea(display, wmgen.mask, wmgen.pixmap, NormalGC, x, y, sx, sy, dx, dy); +} + + +/*******************************************************************************\ +|* setMaskXY *| +\*******************************************************************************/ + +void setMaskXY(int x, int y) { + + XShapeCombineMask(display, win, ShapeBounding, x, y, pixmask, ShapeSet); + XShapeCombineMask(display, iconwin, ShapeBounding, x, y, pixmask, ShapeSet); +} + +/*******************************************************************************\ +|* openXwindow *| +\*******************************************************************************/ +void openXwindow(int argc, char *argv[], char *pixmap_bytes[], char *pixmask_bits, int pixmask_width, int pixmask_height) { + + unsigned int borderwidth = 1; + XClassHint classHint; + char *display_name = NULL; + char *wname = argv[0]; + XTextProperty name; + + XGCValues gcv; + unsigned long gcm; + + char *geometry = NULL; + + int dummy=0; + int i, wx, wy; + + for (i=1; argv[i]; i++) { + if (!strcmp(argv[i], "-display")) { + display_name = argv[i+1]; + i++; + } + if (!strcmp(argv[i], "-geometry")) { + geometry = argv[i+1]; + i++; + } + } + + if (!(display = XOpenDisplay(display_name))) { + fprintf(stderr, "%s: can't open display %s\n", + wname, XDisplayName(display_name)); + exit(1); + } + screen = DefaultScreen(display); + Root = RootWindow(display, screen); + d_depth = DefaultDepth(display, screen); + x_fd = XConnectionNumber(display); + + /* Convert XPM to XImage */ + GetXPM(&wmgen, pixmap_bytes); + + /* Create a window to hold the stuff */ + mysizehints.flags = USSize | USPosition; + mysizehints.x = 0; + mysizehints.y = 0; + + back_pix = GetColor("white"); + fore_pix = GetColor("black"); + + XWMGeometry(display, screen, Geometry, NULL, borderwidth, &mysizehints, + &mysizehints.x, &mysizehints.y,&mysizehints.width,&mysizehints.height, &dummy); + + mysizehints.width = 64; + mysizehints.height = 64; + + win = XCreateSimpleWindow(display, Root, mysizehints.x, mysizehints.y, + mysizehints.width, mysizehints.height, borderwidth, fore_pix, back_pix); + + iconwin = XCreateSimpleWindow(display, win, mysizehints.x, mysizehints.y, + mysizehints.width, mysizehints.height, borderwidth, fore_pix, back_pix); + + /* Activate hints */ + XSetWMNormalHints(display, win, &mysizehints); + classHint.res_name = wname; + classHint.res_class = wname; + XSetClassHint(display, win, &classHint); + + XSelectInput(display, win, ButtonPressMask | ExposureMask | ButtonReleaseMask | PointerMotionMask | StructureNotifyMask); + XSelectInput(display, iconwin, ButtonPressMask | ExposureMask | ButtonReleaseMask | PointerMotionMask | StructureNotifyMask); + + if (XStringListToTextProperty(&wname, 1, &name) == 0) { + fprintf(stderr, "%s: can't allocate window name\n", wname); + exit(1); + } + + XSetWMName(display, win, &name); + + /* Create GC for drawing */ + + gcm = GCForeground | GCBackground | GCGraphicsExposures; + gcv.foreground = fore_pix; + gcv.background = back_pix; + gcv.graphics_exposures = 0; + NormalGC = XCreateGC(display, Root, gcm, &gcv); + + /* ONLYSHAPE ON */ + + pixmask = XCreateBitmapFromData(display, win, pixmask_bits, pixmask_width, pixmask_height); + + XShapeCombineMask(display, win, ShapeBounding, 0, 0, pixmask, ShapeSet); + XShapeCombineMask(display, iconwin, ShapeBounding, 0, 0, pixmask, ShapeSet); + + /* ONLYSHAPE OFF */ + + mywmhints.initial_state = WithdrawnState; + mywmhints.icon_window = iconwin; + mywmhints.icon_x = mysizehints.x; + mywmhints.icon_y = mysizehints.y; + mywmhints.window_group = win; + mywmhints.flags = StateHint | IconWindowHint | IconPositionHint | WindowGroupHint; + + XSetWMHints(display, win, &mywmhints); + + XSetCommand(display, win, argv, argc); + XMapWindow(display, win); + + if (geometry) { + if (sscanf(geometry, "+%d+%d", &wx, &wy) != 2) { + fprintf(stderr, "Bad geometry string.\n"); + exit(1); + } + XMoveWindow(display, win, wx, wy); + } +} diff --git a/wmtop/wmgeneral/wmgeneral.h b/wmtop/wmgeneral/wmgeneral.h new file mode 100644 index 0000000..e9d6ca6 --- /dev/null +++ b/wmtop/wmgeneral/wmgeneral.h @@ -0,0 +1,59 @@ +#ifndef WMGENERAL_H_INCLUDED +#define WMGENERAL_H_INCLUDED + + /***********/ + /* Defines */ +/***********/ + +#define MAX_MOUSE_REGION (16) + + /************/ + /* Typedefs */ +/************/ + +typedef struct _rckeys rckeys; + +struct _rckeys { + const char *label; + char **var; +}; + +typedef struct _rckeys2 rckeys2; + +struct _rckeys2 { + const char *family; + const char *label; + char **var; +}; + +typedef struct { + Pixmap pixmap; + Pixmap mask; + XpmAttributes attributes; +} XpmIcon; + + /*******************/ + /* Global variable */ +/*******************/ + +Display *display; + + /***********************/ + /* Function Prototypes */ +/***********************/ + +void AddMouseRegion(int index, int left, int top, int right, int bottom); +int CheckMouseRegion(int x, int y); + +void openXwindow(int argc, char *argv[], char **, char *, int, int); +void RedrawWindow(void); +void RedrawWindowXY(int x, int y); + +void createXBMfromXPM(char *, char **, int, int); +void copyXPMArea(int, int, int, int, int, int); +void copyXBMArea(int, int, int, int, int, int); +void setMaskXY(int, int); + +void parse_rcfile(const char *, rckeys *); + +#endif diff --git a/wmtop/wmtop.1 b/wmtop/wmtop.1 new file mode 100644 index 0000000..21823a1 --- /dev/null +++ b/wmtop/wmtop.1 @@ -0,0 +1,84 @@ +.\" Man Page for WMTOP +.\" groff -man -Tascii wmtop.1 +.\" +.TH WMTOP 1 "JUNE 1999" Linux "User Manuals" + +.SH NAME +wmtop - WindowMaker dockapp + +.SH SYNOPSIS +.B wmtop +[\-c command] +[\-U] +[\-x regexp] +[-m] + + +.SH DESCRIPTION +.B wmtop +displays the CPU or physical memory (under Linux only) usage of the +top three processes. These may be refined by user supplied criteria, +either via the command line or by clicking on the application. + +.SH OPTIONS +While running a left click alternates between CPU and memory +display. A right click launches the appliction specfied at the +command line. Middle clicking changes between displaying all +and user only processes. +.TP +.B \-v +Displays program version. +.TP +.B \-geometry +The standard X geometry specifications. Only X and Y position +requests are honoured. Any height and width specifications +will be ignored. +.TP +.B \-display +Specify an X server other than the local display. +.TP +.B \-U +Displays processes only owned by the user. +.TP +.B \-c \fIcommand +Execute \fIcommand\fP when application is right clicked. +.TP +.B \-x \fIregexp +Exclude processes whose name matches the given regular expression. The regular +expression need only match part of the process name. Use '^' to mean the start +of the name and '$' to mean the end. +.TP +.B \-m +Show memory usage rather than CPU usage on start-up. +.TP +.B \-a \fItheme +Choose an artisitc style or theme for wmtop to use. +.TP +.B \-s +Set interval between process samples in milliseconds. +.TP +.B \-r +Set interval between screen updates in milliseconds. + +.SH EXAMPLES +Monitor only users processes, exclude WindowMaker dock apps and +pop up xps when double clicked: +.IP +wmtop -c xps -U -x '^wm' +.LP +where we assume dock apps all have names starting with 'wm'. + +.SH BUGS +Please report any bugs you may find to: +.TP +.B wmtop-b...@tanelorn.demon.co.uk + +.SH AUTHOR +Dan Piponi <d...@tanelorn.demon.co.uk> +.LP +http://www.tanelorn.demon.co.uk +.LP +http://wmtop.sourceforge.net + +.SH "SEE ALSO" +.BR top (1) diff --git a/wmtop/wmtop.c b/wmtop/wmtop.c new file mode 100644 index 0000000..1c0895f --- /dev/null +++ b/wmtop/wmtop.c @@ -0,0 +1,996 @@ +/******************************************/ +/* WMTOP - Mini top in a dock app */ +/******************************************/ + +/* + * wmtop.c -- WindowMaker process view dock app + * Derived by Dan Piponi d...@tanelorn.demon.co.uk + * http://www.tanelorn.demon.co.uk + * http://wmtop.sourceforge.net + * from code originally contained in wmsysmon by Dave Clark (cla...@skynet.ca) + * This software is licensed through the GNU General Public License. + */ + +/* + * Ensure there's an operating system defined. There is *no* default + * because every OS has it's own way of revealing CPU/memory usage. + */ +#if defined(FREEBSD) +#define OS_DEFINED +#endif /* defined(FREEBSD) */ + +#if defined(LINUX) +#define OS_DEFINED +#endif /* defined(LINUX) */ + +#if !defined(OS_DEFINED) +#error No operating system selected +#endif /* !defined(OS_DEFINED) */ + +/******************************************/ +/* Includes */ +/******************************************/ + +#include <stdlib.h> +#include <stdio.h> +#include <time.h> +#include <dirent.h> +#include <string.h> +#include <fcntl.h> +#include <unistd.h> +#include <ctype.h> +#include <math.h> +#include <limits.h> +#include <errno.h> +#include <signal.h> + +#if defined(PARANOID) +#include <assert.h> +#endif /* defined(PARANOID) */ + +#include <sys/wait.h> +#include <sys/stat.h> +#include <sys/param.h> +#include <sys/types.h> +#include <sys/ioctl.h> +#include <sys/time.h> + +#include <X11/Xlib.h> +#include <X11/xpm.h> +#include <X11/extensions/shape.h> +#include <X11/keysym.h> + +#include <regex.h> + +#include "wmgeneral/wmgeneral.h" +#include "wmgeneral/misc.h" +#include "xpm/wmtop-default.xpm" +#include "xpm/wmtop-lcd.xpm" +#include "xpm/wmtop-neon1.xpm" +#include "xpm/wmtop-neon2.xpm" +#include "xpm/wmtop-rainbow.xpm" + +/******************************************/ +/* Defines */ +/******************************************/ + +#define WMTOP_VERSION "0.9" + +/* + * XXX: I shouldn't really use this WMTOP_BUFLENGTH variable but scanf is so + * lame and it'll take me a while to write a replacement. + */ +#define WMTOP_BUFLENGTH 1024 + +#if defined(LINUX) +#define PROCFS_TEMPLATE "/proc/%d/stat" +#define PROCFS_CMDLINE_TEMPLATE "/proc/%d/cmdline" +#endif /* defined(LINUX) */ + +#if defined(FREEBSD) +#define PROCFS_TEMPLATE "/proc/%d/status" +#endif /* defined(FREEBSD) */ + +/******************************************/ +/* Globals */ +/******************************************/ + +regex_t *exclusion_expression = 0; +int user = -1; +char *process_command = 0; +/* + * Default mode: zero=cpu one=memory + */ +int mode = 0; + +/* + * Number and default artistic styles. + */ +int nstyles = 5; +int style = 0; + +char wmtop_mask_bits[64*64]; +int wmtop_mask_width = 64; +int wmtop_mask_height = 64; + +int update_rate = 1000000; +int refresh_rate = 100000; + +extern char **environ; + +char *ProgName; + +/******************************************/ +/* Debug */ +/******************************************/ + +#if defined(DEBUG) +/* + * Memory handler + */ +int g_malloced = 0; + +void *wmtop_malloc(int n) { + int *p = (int *)malloc(sizeof(int)+n); + p[0] = n; + g_malloced += n; + return (void *)(p+1); +} + +void wmtop_free(void *n) { + int *p = (int *)n; + g_malloced -= p[-1]; + free(p-1); +} + +void show_memory() { + fprintf(stderr,"%d bytes allocated\n",g_malloced); +} +#else /* defined(DEBUG) */ +#define wmtop_malloc malloc +#define wmtop_free free +#endif /* defined(DEBUG) */ + +char *wmtop_strdup(const char *s) { + return strcpy((char *)wmtop_malloc(strlen(s)+1),s); +} + +/******************************************/ +/* Structures */ +/******************************************/ + +struct { + char **pixmap; + char *description; +} styles[] = { + { wmtop_default_xpm, "Light emitting diode (default)" }, + { wmtop_lcd_xpm, "Liquid crystal display" }, + { wmtop_rainbow_xpm, "Rainbow display" }, + { wmtop_neon1_xpm, "Neon lights" }, + { wmtop_neon2_xpm, "More neon lights" }, +}; + +struct process { +#if defined(PARANOID) + long id; +#endif /* defined(PARANOID) */ + /* + * Store processes in a doubly linked list + */ + struct process *next; + struct process *previous; + + pid_t pid; + char *name; + float amount; + int user_time; + int kernel_time; + int previous_user_time; + int previous_kernel_time; + int vsize; + int rss; + int time_stamp; + int counted; +}; + +/******************************************/ +/* Process class */ +/******************************************/ + +/* + * Global pointer to head of process list + */ +struct process *first_process = 0; + +int g_time = 0; + +struct process *find_process(pid_t pid) { + struct process *p = first_process; + while (p) { + if (p->pid==pid) + return p; + p = p->next; + } + return 0; +} + +/* + * Create a new process object and insert it into the process list + */ +struct process *new_process(int p) { + struct process *process; + process = wmtop_malloc(sizeof(struct process)); + +#if defined(PARANOID) + process->id = 0x0badfeed; +#endif /* defined(PARANOID) */ + + /* + * Do stitching necessary for doubly linked list + */ + process->name = 0; + process->previous = 0; + process->next = first_process; + if (process->next) + process->next->previous = process; + first_process = process; + + process->pid = p; + process->time_stamp = 0; + process->previous_user_time = INT_MAX; + process->previous_kernel_time = INT_MAX; + process->counted = 1; + +/* process_find_name(process);*/ + + return process; +} + +/******************************************/ +/* Functions */ +/******************************************/ + +void wmtop_routine(int, char **); +int process_parse_procfs(struct process *); +int update_process_table(void); +int calculate_cpu(struct process *); +void process_cleanup(void); +void delete_process(struct process *); +inline void draw_processes(void); +int calc_cpu_total(void); +void calc_cpu_each(int); +#if defined(LINUX) +int calc_mem_total(void); +void calc_mem_each(int); +#endif +int process_find_top_three(struct process **); +void draw_bar(int, int, int, int, float, int, int); +inline void blit_string(char *, int, int); +void usage(void); +inline void printversion(void); + +/******************************************/ +/* Main */ +/******************************************/ + +int main(int argc, char *argv[]) { + int i; + struct stat sbuf; + + /* + * Make sure we have a /proc filesystem. No point in continuing if we + * haven't! + */ + if (stat("/proc",&sbuf)<0) { + fprintf(stderr, + "No /proc filesystem present. Unable to obtain processor info.\n"); + exit(1); + } + + /* + * Parse Command Line + */ + + ProgName = argv[0]; + if (strlen(ProgName) >= 5) + ProgName += strlen(ProgName) - 5; + + for (i = 1; i<argc; i++) { + char *arg = argv[i]; + + if (*arg=='-') { + switch (arg[1]) { + case 'x' : + if (argc>i+1) { + static regex_t reg; + exclusion_expression = ® + regcomp(exclusion_expression,argv[i+1],REG_EXTENDED); + i++; + } else { + usage(); + exit(1); + } + break; + case 'c' : + if (argc>i+1) { + process_command = argv[i+1]; + i++; + break; + } else { + usage(); + exit(1); + } +#if defined(LINUX) + case 'm': + /* + * Display memory + */ + mode = 1; + break; +#endif /* defined(LINUX) */ + case 'd' : + if (strcmp(arg+1, "display")) { + usage(); + exit(1); + } + break; + case 'g' : + if (strcmp(arg+1, "geometry")) { + usage(); + exit(1); + } + break; + case 'v' : + printversion(); + exit(0); + break; + case 'U' : + user = getuid(); + break; + case 's': + if (argc > (i+1)) { + update_rate = (atoi(argv[i+1]) * 1000); + i++; + } + break; + case 'r': + if (argc > (i+1)) { + refresh_rate = (atoi(argv[i+1]) * 1000); + i++; + } + break; + case 'a': + if (argc > (i+1)) { + if (atoi(argv[i+1]) < 1 || atoi(argv[i+1]) > nstyles) { + usage(); + exit(1); + } + style = atoi(argv[i+1]) - 1; + i++; + } + break; + default: + usage(); + exit(0); + break; + } + } + } + + wmtop_routine(argc, argv); + + return 0; +} + +/******************************************/ +/* Main routine */ +/******************************************/ + +void wmtop_routine(int argc, char **argv) { + XEvent Event; + struct timeval tv={0,0}; + struct timeval last={0,0}; + int count = update_rate; + + createXBMfromXPM(wmtop_mask_bits, styles[style].pixmap, wmtop_mask_width, wmtop_mask_height); + + openXwindow(argc, argv, styles[style].pixmap, wmtop_mask_bits, wmtop_mask_width, wmtop_mask_height); + + + while (1) { + + waitpid(0, NULL, WNOHANG); + + if (count>=update_rate) { + memcpy(&last,&tv,sizeof(tv)); + + /* + * Update display + */ + draw_processes(); + + RedrawWindow(); + count = 0; + } + + /* + * X Events + */ + while (XPending(display)) { + XNextEvent(display, &Event); + switch (Event.type) { + case Expose: + RedrawWindow(); + break; + case DestroyNotify: + XCloseDisplay(display); + exit(0); + case ButtonPress: +#if defined(LINUX) + if (Event.xbutton.button==1) + mode = !mode; +#endif + if (Event.xbutton.button==2) { + if (user==-1) + user=getuid(); + else + user=-1; + } + if (Event.xbutton.button==3 && process_command) + execCommand(process_command); + break; + } + } + usleep(refresh_rate); + count = count + refresh_rate; + } +} + +/******************************************/ +/* Extract information from /proc */ +/******************************************/ + +/* + * These are the guts that extract information out of /proc. + * Anyone hoping to port wmtop should look here first. + */ +int process_parse_procfs(struct process *process) { + char line[WMTOP_BUFLENGTH],filename[WMTOP_BUFLENGTH],procname[WMTOP_BUFLENGTH]; + int ps; + struct stat sbuf; + int user_time,kernel_time; + int rc; +#if defined(LINUX) + char *r,*q; + char deparenthesised_name[WMTOP_BUFLENGTH]; + int endl; +#endif /* defined(LINUX) */ +#if defined(FREEBSD) + int us,um,ks,km; +#endif /* defined(FREEBSD) */ + +#if defined(PARANOID) + assert(process->id==0x0badfeed); +#endif /* defined(PARANOID) */ + + sprintf(filename,PROCFS_TEMPLATE,process->pid); + + /* + * Permissions of /proc filesystem are permissions of process too + */ + if (user>=0) { + stat(filename,&sbuf); + if (sbuf.st_uid!=user) + return 1; + } + + ps = open(filename,O_RDONLY); + if (ps<0) + /* + * The process must have finished in the last few jiffies! + */ + return 1; + + /* + * Mark process as up-to-date. + */ + process->time_stamp = g_time; + + rc = read(ps,line,sizeof(line)); + close(ps); + if (rc<0) + return 1; + +#if defined(LINUX) + /* + * Extract cpu times from data in /proc filesystem + */ + rc = sscanf(line,"%*s %s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %*s %d %d %*s %*s %*s %*s %*s %*s %*s %d %d", + procname, + &process->user_time,&process->kernel_time, + &process->vsize,&process->rss); + if (rc<5) + return 1; + /* + * Remove parentheses from the process name stored in /proc/ under Linux... + */ + r = procname+1; + /* remove any "kdeinit: " */ + if (r == strstr(r, "kdeinit")) + { + sprintf(filename,PROCFS_CMDLINE_TEMPLATE,process->pid); + + /* + * Permissions of /proc filesystem are permissions of process too + */ + if (user>=0) { + stat(filename,&sbuf); + if (sbuf.st_uid!=user) + return 1; + } + + ps = open(filename,O_RDONLY); + if (ps<0) + /* + * The process must have finished in the last few jiffies! + */ + return 1; + + endl = read(ps,line,sizeof(line)); + close(ps); + + /* null terminate the input */ + line[endl]=0; + /* account for "kdeinit: " */ + if ((char*)line == strstr(line, "kdeinit: ")) + r = ((char*)line)+9; + else + r = (char*)line; + + q = deparenthesised_name; + /* stop at space */ + while (*r && *r!=' ') + *q++ = *r++; + *q = 0; + } + else + { + q = deparenthesised_name; + while (*r && *r!=')') + *q++ = *r++; + *q = 0; + } + + if (process->name) + wmtop_free(process->name); + process->name = wmtop_strdup(deparenthesised_name); +#endif /* defined(LINUX) */ + +#if defined(FREEBSD) + /* + * Extract cpu times from data in /proc/<pid>/stat + * XXX: Process name extractor for FreeBSD is untested right now. + */ + rc = sscanf(line,"%s %*s %*s %*s %*s %*s %*s %*s %d,%d %d,%d", + procname, + &us,&um,&ks,&km); + if (rc<5) + return 1; + if (process->name) + wmtop_free(process->name); + process->name = wmtop_strdup(procname); + process->user_time = us*1000+um/1000; + process->kernel_time = ks*1000+km/1000; +#endif /* defined(FREEBSD) */ + + process->rss *= getpagesize(); + + if (process->previous_user_time==INT_MAX) + process->previous_user_time = process->user_time; + if (process->previous_kernel_time==INT_MAX) + process->previous_kernel_time = process->kernel_time; + + user_time = process->user_time-process->previous_user_time; + kernel_time = process->kernel_time-process->previous_kernel_time; + + process->previous_user_time = process->user_time; + process->previous_kernel_time = process->kernel_time; + + process->user_time = user_time; + process->kernel_time = kernel_time; + + return 0; +} + +/******************************************/ +/* Update process table */ +/******************************************/ + +int update_process_table() { + DIR *dir; + struct dirent *entry; + + if (!(dir = opendir("/proc"))) + return 1; + + /* + * Get list of processes from /proc directory + */ + while ((entry = readdir(dir))) { + pid_t pid; + + if (!entry) { + /* + * Problem reading list of processes + */ + closedir(dir); + return 1; + } + + if (sscanf(entry->d_name,"%d",&pid)>0) { + struct process *p; + p = find_process(pid); + if (!p) + p = new_process(pid); + + calculate_cpu(p); + } + } + + closedir(dir); + + return 0; +} + +/******************************************/ +/* Get process structure for process pid */ +/******************************************/ + +/* + * This function seems to hog all of the CPU time. I can't figure out why - it + * doesn't do much. + */ +int calculate_cpu(struct process *process) { + int rc; + +#if defined(PARANOID) + assert(process->id==0x0badfeed); +#endif /* defined(PARANOID) */ + + rc = process_parse_procfs(process); + if (rc) + return 1; + + /* + * Check name against the exclusion list + */ + if (process->counted && exclusion_expression && !regexec(exclusion_expression,process->name,0,0,0)) + process->counted = 0; + + return 0; +} + +/******************************************/ +/* Strip dead process entries */ +/******************************************/ + +void process_cleanup() { + + struct process *p = first_process; + while (p) { + struct process *current = p; + +#if defined(PARANOID) + assert(p->id==0x0badfeed); +#endif /* defined(PARANOID) */ + + p = p->next; + /* + * Delete processes that have died + */ + if (current->time_stamp!=g_time) + delete_process(current); + } +} + +/******************************************/ +/* Destroy and remove a process */ +/******************************************/ + +void delete_process(struct process *p) { +#if defined(PARANOID) + assert(p->id==0x0badfeed); + + /* + * Ensure that deleted processes aren't reused. + */ + p->id = 0x007babe; +#endif /* defined(PARANOID) */ + + /* + * Maintain doubly linked list. + */ + if (p->next) + p->next->previous = p->previous; + if (p->previous) + p->previous->next = p->next; + else + first_process = p->next; + + if (p->name) + wmtop_free(p->name); + wmtop_free(p); +} + +/******************************************/ +/* Generate display */ +/******************************************/ + +void draw_processes() { + int i,n; + struct process *best[3] = { 0, 0, 0 }; + int total; + + /* + * Invalidate time stamps + */ + ++g_time; + + update_process_table(); + + switch (mode) { + case 0: + total = calc_cpu_total(); + calc_cpu_each(total); + break; +#if defined(LINUX) + case 1: + total = calc_mem_total(); + calc_mem_each(total); + break; +#endif + } + + process_cleanup(); + + /* + * Find the top three! + */ + n = process_find_top_three(best); + + for (i = 0; i<3; ++i) { + int j; + char s[10]; + strcpy(s," "); + if (i<n) { + for (j = 0; j<9; ++j) { + char c; + c = best[i]->name[j]; + if (c) + s[j] = c; + else + break; + } + draw_bar(0, 97, 55, 6, best[i]->amount, 4, 13+i*20); + } else + draw_bar(0, 97, 55, 6, 0, 4, 13+i*20); + blit_string(s,4,4+i*20); + } + +#if defined(DEBUG) + show_memory(); +#endif +} + +/******************************************/ +/* Calculate cpu total */ +/******************************************/ + +int calc_cpu_total() { + int total,t; + static int previous_total = INT_MAX; +#if defined(LINUX) + int rc; + int ps; + char line[WMTOP_BUFLENGTH]; + int cpu,nice,system,idle; + + ps = open("/proc/stat",O_RDONLY); + rc = read(ps,line,sizeof(line)); + close(ps); + if (rc<0) + return 0; + sscanf(line,"%*s %d %d %d %d",&cpu,&nice,&system,&idle); + total = cpu+nice+system+idle; +#endif /* defined(LINUX) */ + +#if defined(FREEBSD) + struct timeval tv; + + gettimeofday(&tv,0); + total = tv.tv_sec*1000+tv.tv_usec/1000; +#endif /* defined(FREEBSD) */ + + t = total-previous_total; + previous_total = total; + if (t<0) + t = 0; + + return t; +} + +/******************************************/ +/* Calculate each processes cpu */ +/******************************************/ + +void calc_cpu_each(int total) { + struct process *p = first_process; + while (p) { + +#if defined(PARANOID) + assert(p->id==0x0badfeed); +#endif /* defined(PARANOID) */ + + p->amount = total ? 100*(float)(p->user_time+p->kernel_time)/total : 0; + p = p->next; + } +} + +/******************************************/ +/* Calculate total memory */ +/******************************************/ + +#if defined(LINUX) +int calc_mem_total() { + int ps; + char line[512]; + char *ptr; + int rc; + + ps = open("/proc/meminfo",O_RDONLY); + rc = read(ps,line,sizeof(line)); + close(ps); + if (rc<0) + return 0; + + if ((ptr = strstr(line, "Mem:")) == NULL) { + return 0; + } else { + ptr += 4; + return atoi(ptr); + } + +} +#endif /* defined(LINUX) */ + +/******************************************/ +/* Calculate each processes memory */ +/******************************************/ + +#if defined(LINUX) +void calc_mem_each(int total) { + struct process *p = first_process; + while (p) { + p->amount = 100*(float)p->rss/total; + p = p->next; + } +} +#endif /* defined(LINUX) */ + +/******************************************/ +/* Find the top three processes */ +/******************************************/ + +/* + * Result is stored in decreasing order in best[0-2]. + */ +int process_find_top_three(struct process **best) { + struct process *p = first_process; + int n = 0; + + /* + * Insertion sort approach to skim top 3 + */ + while (p) { + if (p->counted && p->amount>0 && (!best[0] || p->amount>best[0]->amount)) { + best[2] = best[1]; + best[1] = best[0]; + best[0] = p; + ++n; + } else if (p->counted && p->amount>0 && (!best[1] || p->amount>best[1]->amount)) { + best[2] = best[1]; + best[1] = p; + ++n; + } else if (p->counted && p->amount>0 && (!best[2] || p->amount>best[2]->amount)) { + ++n; + best[2] = p; + } + + p = p->next; + } + + return n>3 ? 3 : n; +} + +/******************************************/ +/* Blit bar at co-ordinates */ +/******************************************/ + +void draw_bar(int sx, int sy, int w, int h, float percent, int dx, int dy) { + int tx; + + if (percent<=100) + tx = w * (float)percent / 100; + else + tx = w; + + if (tx>0) + copyXPMArea(sx, sy, tx, h, dx, dy); + if (tx<w) + copyXPMArea(sx+tx, sy+h, w-tx, h, dx+tx, dy); +} + +/******************************************/ +/* Blit string at co-ordinates */ +/******************************************/ + +void blit_string(char *name, int x, int y) { + int i; + int c; + int k; + + k = x; + for ( i = 0; name[i]; i++) { + c = toupper(name[i]); + if (c >= 'A' && c <= 'J') { + c -= 'A'; + copyXPMArea(c*6,73,6,7,k,y); + } else if (c>='K' && c<='T') { + c -= 'K'; + copyXPMArea(c*6,81,6,7,k,y); + } else if (c>='U' && c<='Z') { + c -= 'U'; + copyXPMArea(c*6,89,6,7,k,y); + } else if (c>='0' && c<='9') { + c -= '0'; + copyXPMArea(c*6,65,6,7,k,y); + } else { + copyXPMArea(36,89,6,7,k,y); + } + k += 6; + } +} + +/******************************************/ +/* Usage */ +/******************************************/ + +void usage(void) { + int i; + fprintf(stderr,"\nWMtop - Dan Piponi <d...@tanelorn.demon.co.uk> http://www.tanelorn.demon.co.uk\n\n"); + fprintf(stderr,"usage:\n"); + fprintf(stderr," -display <display name>\n"); + fprintf(stderr," -geometry +XPOS+YPOS initial window position\n"); + fprintf(stderr," -s <...> sample rate in milliseconds (default:%d)\n", update_rate/1000); + fprintf(stderr," -r <...> refresh rate in milliseconds (default:%d)\n", refresh_rate/1000); + fprintf(stderr," -U display user processes only\n"); + fprintf(stderr," -x <...> exclude matching processes\n"); + fprintf(stderr," -c <...> command\n"); +#if defined(LINUX) + fprintf(stderr," -m display memory usage\n"); +#endif /* defined(LINUX) */ + fprintf(stderr," -v print version number\n"); + fprintf(stderr," -a <1..%d> select artistic style\n", nstyles); + fprintf(stderr,"\n"); + fprintf(stderr,"The artistic style is one of:\n"); + for (i = 0; i<nstyles; ++i) + fprintf(stderr," %d - %s\n",i+1,styles[i].description); +} + +/******************************************/ +/* Print version */ +/******************************************/ + +void printversion(void) { + fprintf(stderr, "wmtop v%s\n",WMTOP_VERSION); +} diff --git a/wmtop/xpm/wmtop-default.xpm b/wmtop/xpm/wmtop-default.xpm new file mode 100644 index 0000000..f061fec --- /dev/null +++ b/wmtop/xpm/wmtop-default.xpm @@ -0,0 +1,174 @@ +/* XPM */ +static char * wmtop_default_xpm[] = { +"64 109 62 1", +". c #0000FF", +" c None", +"+ c #202020", +"@ c #C7C5C8", +"# c #20B2AE", +"$ c #004941", +"% c #007D71", +"& c #00FF00", +"* c #04FA00", +"= c #09F600", +"- c #0DF100", +"; c #12ED00", +"> c #17E800", +", c #1BE400", +"' c #20DF00", +") c #25DB00", +"! c #29D600", +"~ c #2ED200", +"{ c #32CD00", +"] c #37C900", +"^ c #3CC400", +"/ c #40C000", +"( c #45BC00", +"_ c #4AB700", +": c #4EB300", +"< c #53AE00", +"[ c #57AA00", +"} c #5CA500", +"| c #61A100", +"1 c #659C00", +"2 c #6A9800", +"3 c #6F9300", +"4 c #738F00", +"5 c #788A00", +"6 c #7C8600", +"7 c #818100", +"8 c #867D00", +"9 c #8A7900", +"0 c #8F7400", +"a c #947000", +"b c #986B00", +"c c #9D6700", +"d c #A26200", +"e c #A65E00", +"f c #AB5900", +"g c #B05500", +"h c #B45000", +"i c #B94C00", +"j c #BD4700", +"k c #C24300", +"l c #C73E00", +"m c #CB3A00", +"n c #D03500", +"o c #D53100", +"p c #D92C00", +"q c #DE2800", +"r c #E32300", +"s c #E71F00", +"t c #EC1A00", +"u c #F11600", +"v c #F51100", +"w c #FA0D00", +"................................................................", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"................................................................", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"++###+++$$$%+%###%+%###%+%$$$%+%###%+%###%+%###%+%###%+%###%++++", +"+#+++#+$+++#+$+++#+$+++#+#+++#+#+++$+#+++$+$+++#+#+++#+#+++#++++", +"+#+++#+$+++#+$+++#+$+++#+#+++#+#+++$+#+++$+$+++#+#+++#+#+++#++++", +"+%$$$%++$$$%+%###%++###%+%###%+%###%+%###%++$$$%+$###$+%###%++++", +"+#+++#+$+++#+#+++$+$+++#+$+++#+$+++#+#+++#+$+++#+#+++#+$+++#++++", +"+#+++#+$+++#+#+++$+$+++#+$+++#+$+++#+#+++#+$+++#+#+++#+$+++#++++", +"++###+++$$$#+%###%+%###%++$$$%+%###%+%###%++$$$%+%###%+%###%++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+$###$+%###++%###%+%###++%###%+%###%+%###%+%$$$%++$$$%++$$$%++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++$+#+++#+$+++#+$+++#++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++$+#+++#+$+++#+$+++#++++", +"+%###%+%###++%$$$++%$$$%+%###++%###++%$##%+%###%++$$$%++$$$%++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++#+#+++#+$+++#+$+++#++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++#+#+++#+$+++#+$+++#++++", +"+%$$$%+%###++%###%+####++%###%+#$$$++%###%+%$$$%++$$$#+%###%++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+%$$$%+%$$$++#$$$#+%###++%###%+%###%+%###%+%###%+%###%+%###%++++", +"+#+++#+#+++$+##+##+#+++#+#+++#+#+++#+#+++#+#+++#+#+++$+$+#+$++++", +"+#++#$+#+++$+#+#+#+#+++#+#+++#+#+++#+#+++#+#+++#+#+++$+$+#+$++++", +"+%##$++%$$$++%$$$%+%$$$%+%$$$%+%###%+%#$$%+%###++%###%++$%$+++++", +"+#++#$+#+++$+#+++#+#+++#+#+++#+#+++$+#+#+#+#+++#+$+++#+$+#+$++++", +"+#+++#+#+++$+#+++#+#+++#+#+++#+#+++$+#++##+#+++#+$+++#+$+#+$++++", +"+%$$$%+%###$+%$$$%+#$$$#+%###%+%$$$++%###%+%$$$%+%###%++$%$+++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+%$$$%+%$$$%+%$$$%+%$$$%+%$$$%+%###%++$$$+++++++++++++++++++++++", +"+#+++#+#+++#+#+++#+#+++#+#+++#+$+++#+$+++$++++++++++++++++++++++", +"+#+++#+#+++#+#+++#+$#+#$+#+++#+$++#$+$+++$++++++++++++++++++++++", +"+%$$$%+%$$$%+%$$$%++$#$++%###%++$#$+++$$$+++++++++++++++++++++++", +"+#+++#+#+++#+#+#+#+$#+#$+$+++#+$#++$+$+++$++++++++++++++++++++++", +"+#+++#+#+++#+##+##+#+++#+$+++#+#+++$+$+++$++++++++++++++++++++++", +"+$####++###++#$$$#+%$$$#%%###%+%###%++$$$+++++++++++++++++++++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++........."}; diff --git a/wmtop/xpm/wmtop-lcd.xpm b/wmtop/xpm/wmtop-lcd.xpm new file mode 100644 index 0000000..d1817f4 --- /dev/null +++ b/wmtop/xpm/wmtop-lcd.xpm @@ -0,0 +1,118 @@ +/* XPM */ +static char * wmtop_lcd_xpm[] = { +"64 109 6 1", +". c #0000FF", +" c None", +"+ c #8E8E69", +"@ c #C7C5C8", +"# c #000000", +"$ c #616551", +"................................................................", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"................................................................", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"++###+++$$$$+$###$+$###$+$$$$$+$###$+$###$+$###$+$###$+$###$++++", +"+#+++#+$+++#+$+++#+$+++#+#+++#+#+++$+#+++$+$+++#+#+++#+#+++#++++", +"+#+++#+$+++#+$+++#+$+++#+#+++#+#+++$+#+++$+$+++#+#+++#+#+++#++++", +"+$$$$$++$$$$+$###$++###$+$###$+$###$+$###$++$$$$+$###$+$###$++++", +"+#+++#+$+++#+#+++$+$+++#+$+++#+$+++#+#+++#+$+++#+#+++#+$+++#++++", +"+#+++#+$+++#+#+++$+$+++#+$+++#+$+++#+#+++#+$+++#+#+++#+$+++#++++", +"++###+++$$$#+$###$+$###$++$$$$+$###$+$###$++$$$$+$###$+$###$++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+$###$+####++$###++####+++###++$###$+$###$+#$$$#++$$$#++$$$#++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++$+#+++#+$+++#+$+++#++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++$+#+++#+$+++#+$+++#++++", +"+$###$+####++$$$$++#$$$#+$###++$###++$$##$+$###$++$$$$++$$$#++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++#+#+++#+$+++#+$+++#++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++#+#+++#+$+++#+$+++#++++", +"+#$$$#+####++$###++####++$###$+#$$$++$###$+#$$$#++$$$#+$###$++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+#$$$#+##$$++#$$$#+$###++$###$+$###$+$###$+####$+$###$+#$$$+++++", +"+#+++#+#+++$+##+##+#+++#+#+++#+#+++#+#+++#+#+++#+#+++$+#+++$++++", +"+#++#$+#+++$+#+#+#+#+++#+#+++#+#+++#+#+++#+#+++#+#+++$+#+++$++++", +"+$##$++$$$$++$$$$$+$$$$$+$$$$$+$###$+$#$$$+$###++$###$+$###+++++", +"+#++#$+#+++$+#+++#+#+++#+#+++#+#+++$+#+#+#+#+++#+$+++#+#+++$++++", +"+#+++#+#+++$+#+++#+#+++#+#+++#+#+++$+#++##+#+++#+$+++#+#+++$++++", +"+#$$$#+$###$+#$$$#+#$$$#+$###$+#$$$++$###$+#$$$#+$###$+$###$++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+$$$$$+$$$$$+$$$$$+#$$$#+#$$$#+####$++$$$+++++++++++++++++++++++", +"+#+++#+#+++#+#+++#+#+++#+#+++#+$+++#+$+++$++++++++++++++++++++++", +"+#+++#+#+++#+#+++#+$#+#$+#+++#+$++#$+$+++$++++++++++++++++++++++", +"+$$$$$+$$$$$+$$$$$++$#$++$###$++$#$+++$$$+++++++++++++++++++++++", +"+#+++#+#+++#+#+#+#+$#+#$+$+++#+$#++$+$+++$++++++++++++++++++++++", +"+#+++#+#+++#+##+##+#+++#+$+++#+#+++$+$+++$++++++++++++++++++++++", +"+$####++###++#$$$#+#$$$#+$###$+$####++$$$+++++++++++++++++++++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+.........", +"+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+.........", +"+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+.........", +"+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+.........", +"+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+.........", +"+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+##+.........", +"+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+.........", +"+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+.........", +"+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+.........", +"+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+.........", +"+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+.........", +"+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+$$+........."}; diff --git a/wmtop/xpm/wmtop-neon1.xpm b/wmtop/xpm/wmtop-neon1.xpm new file mode 100644 index 0000000..cff5355 --- /dev/null +++ b/wmtop/xpm/wmtop-neon1.xpm @@ -0,0 +1,172 @@ +/* XPM */ +static char * wmtop_neon1_xpm[] = { +"64 109 60 1", +". c #0000FF", +" c None", +"+ c #000000", +"@ c #C7C5C8", +"# c #218DBA", +"$ c #168FD9", +"% c #1A8FD6", +"& c #1E90D2", +"* c #2291CF", +"= c #2592CB", +"- c #2992C7", +"; c #2D93C4", +"> c #3194C0", +", c #3495BC", +"' c #3895B9", +") c #3C96B5", +"! c #3F97B1", +"~ c #4398AE", +"{ c #4798AA", +"] c #4B99A6", +"^ c #4E9AA3", +"/ c #529B9F", +"( c #569B9B", +"_ c #5A9C98", +": c #5D9D94", +"< c #619E90", +"[ c #659F8D", +"} c #699F89", +"| c #6CA085", +"1 c #70A182", +"2 c #74A27E", +"3 c #77A27A", +"4 c #7BA377", +"5 c #7FA473", +"6 c #83A570", +"7 c #86A56C", +"8 c #8AA668", +"9 c #8EA765", +"0 c #91A861", +"a c #95A85D", +"b c #99A95A", +"c c #9DAA56", +"d c #A0AB52", +"e c #A4AC4F", +"f c #A8AC4B", +"g c #ACAD47", +"h c #AFAE44", +"i c #B3AF40", +"j c #B7AF3C", +"k c #BBB039", +"l c #BEB135", +"m c #C2B231", +"n c #C6B22E", +"o c #C9B32A", +"p c #CDB426", +"q c #D1B523", +"r c #D5B51F", +"s c #D8B61B", +"t c #DCB718", +"u c #E0B814", +"................................................................", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"................................................................", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"++###++++#++++###++#####++++#++#####++###++#####++###+++###+++++", +"+#+++#++##+++#+++#++++#++++##++#+++++#+++#+++++#+#+++#+#+++#++++", +"+#+++#+#+#+++++++#+++#++++#+#++#+##++#++++++++#++#+++#+#+++#++++", +"+#+++#+++#++++++#+++###++#++#++##++#+####++++#++++###+++####++++", +"+#+++#+++#+++++#+++++++#+#####+++++#+#+++#+++#+++#+++#+++++#++++", +"+#+++#+++#++++#++++#+++#++++#++#+++#+#+++#++#++++#+++#+#+++#++++", +"++###++#####+#####++###+++++#+++###+++###+++#+++++###+++###+++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"++###++####+++###++####++####+++####++###++#+++#+++#++++++#+++++", +"+#+++#+#+++#+#+++#+#+++#+#++++++#++++#+++#+#+++#+++#++++++#+++++", +"+#+++#+#+++#+#+++++#+++#+#++++++#++++#+++++#+++#+++#++++++#+++++", +"+#+++#+####++#+++++#+++#+#++++++#++++#+++++#+++#+++#++++++#+++++", +"+#####+#+++#+#+++++#+++#+###++++###++#++##+#####+++#++++++#+++++", +"+#+++#+#+++#+#+++#+#+++#+#++++++#++++#+++#+#+++#+++#+++#++#+++++", +"+#+++#+####+++###++####++#####++#+++++###++#+++#+++#++++##++++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+#+++#++#++++#+++#+#+++#++###++####+++###++####+++###++#####++++", +"+#+++#++#++++#+++#+#+++#+#+++#+#+++#+#+++#+#+++#+#+++#+++#++++++", +"+#+++#++#++++##+##+#+++#+#+++#+#+++#+#+++#+#+++#+#+++++++#++++++", +"+#++#+++#++++#+#+#+##++#+#+++#+#+++#+#+++#+#+++#++###++++#++++++", +"+###++++#++++#+#+#+#+#+#+#+++#+####++#+#+#+####++++++#+++#++++++", +"+#++#+++#++++#+++#+#++##+#+++#+#+++++#++##+#+++#+#+++#+++#++++++", +"+#+++#++####+#+++#+#+++#++###++#++++++###++#+++#++###++++#++++++", +"+++++++++++++++++++++++++++++++++++++++++#++++++++++++++++++++++", +"+#+++#+#+++#+#+++#+#+++#+#+++#+#####++++++++++++++++++++++++++++", +"+#+++#+#+++#+#+++#+#+++#+#+++#+++++#++++++++++++++++++++++++++++", +"+#+++#+#+++#+#+++#+#+++#+#+++#++++#+++++++++++++++++++++++++++++", +"+#+++#+#+++#+#+++#++#+#++#+++#+++#++++++++++++++++++++++++++++++", +"+#+++#+#+++#+#+#+#+++#++++###+++#+++++++++++++++++++++++++++++++", +"+#+++#++#+#++#+#+#++#+#++++#+++#++++++++++++++++++++++++++++++++", +"++###++++#+++##+##+#+++#+++#+++#####++++++++++++++++++++++++++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"$%&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstu.........", +"$%&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstu.........", +"$%&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstu.........", +"$%&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstu.........", +"$%&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstu.........", +"$%&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstu.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++........."}; diff --git a/wmtop/xpm/wmtop-neon2.xpm b/wmtop/xpm/wmtop-neon2.xpm new file mode 100644 index 0000000..4865e00 --- /dev/null +++ b/wmtop/xpm/wmtop-neon2.xpm @@ -0,0 +1,174 @@ +/* XPM */ +static char * wmtop_neon2_xpm[] = { +"64 109 62 1", +". c #0000FF", +" c None", +"+ c #282828", +"@ c #C7C5C8", +"# c #218DBA", +"$ c #004658", +"% c #006B8A", +"& c #168FD9", +"* c #1A8FD6", +"= c #1E90D2", +"- c #2291CF", +"; c #2592CB", +"> c #2992C7", +", c #2D93C4", +"' c #3194C0", +") c #3495BC", +"! c #3895B9", +"~ c #3C96B5", +"{ c #3F97B1", +"] c #4398AE", +"^ c #4798AA", +"/ c #4B99A6", +"( c #4E9AA3", +"_ c #529B9F", +": c #569B9B", +"< c #5A9C98", +"[ c #5D9D94", +"} c #619E90", +"| c #659F8D", +"1 c #699F89", +"2 c #6CA085", +"3 c #70A182", +"4 c #74A27E", +"5 c #77A27A", +"6 c #7BA377", +"7 c #7FA473", +"8 c #83A570", +"9 c #86A56C", +"0 c #8AA668", +"a c #8EA765", +"b c #91A861", +"c c #95A85D", +"d c #99A95A", +"e c #9DAA56", +"f c #A0AB52", +"g c #A4AC4F", +"h c #A8AC4B", +"i c #ACAD47", +"j c #AFAE44", +"k c #B3AF40", +"l c #B7AF3C", +"m c #BBB039", +"n c #BEB135", +"o c #C2B231", +"p c #C6B22E", +"q c #C9B32A", +"r c #CDB426", +"s c #D1B523", +"t c #D5B51F", +"u c #D8B61B", +"v c #DCB718", +"w c #E0B814", +"................................................................", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"................................................................", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"++###+++$$$%+%###%+%###%+%$$$%+%###%+%###%+%###%+%###%+%###%++++", +"+#+++#+$+++#+$+++#+$+++#+#+++#+#+++$+#+++$+$+++#+#+++#+#+++#++++", +"+#+++#+$+++#+$+++#+$+++#+#+++#+#+++$+#+++$+$+++#+#+++#+#+++#++++", +"+%$$$%++$$$%+%###%++###%+%###%+%###%+%###%++$$$%+$###$+%###%++++", +"+#+++#+$+++#+#+++$+$+++#+$+++#+$+++#+#+++#+$+++#+#+++#+$+++#++++", +"+#+++#+$+++#+#+++$+$+++#+$+++#+$+++#+#+++#+$+++#+#+++#+$+++#++++", +"++###+++$$$#+%###%+%###%++$$$%+%###%+%###%++$$$%+%###%+%###%++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+$###$+%###++%###%+%###++%###%+%###%+%###%+%$$$%++$$$%++$$$%++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++$+#+++#+$+++#+$+++#++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++$+#+++#+$+++#+$+++#++++", +"+%###%+%###++%$$$++%$$$%+%###++%###++%$##%+%###%++$$$%++$$$%++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++#+#+++#+$+++#+$+++#++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++#+#+++#+$+++#+$+++#++++", +"+%$$$%+%###++%###%+####++%###%+#$$$++%###%+%$$$%++$$$#+%###%++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+%$$$%+%$$$++#$$$#+%###++%###%+%###%+%###%+%###%+%###%+%###%++++", +"+#+++#+#+++$+##+##+#+++#+#+++#+#+++#+#+++#+#+++#+#+++$+$+#+$++++", +"+#++#$+#+++$+#+#+#+#+++#+#+++#+#+++#+#+++#+#+++#+#+++$+$+#+$++++", +"+%##$++%$$$++%$$$%+%$$$%+%$$$%+%###%+%#$$%+%###++%###%++$%$+++++", +"+#++#$+#+++$+#+++#+#+++#+#+++#+#+++$+#+#+#+#+++#+$+++#+$+#+$++++", +"+#+++#+#+++$+#+++#+#+++#+#+++#+#+++$+#++##+#+++#+$+++#+$+#+$++++", +"+%$$$%+%###$+%$$$%+#$$$#+%###%+%$$$++%###%+%$$$%+%###%++$%$+++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+%$$$%+%$$$%+%$$$%+%$$$%+%$$$%+%###%++$$$+++++++++++++++++++++++", +"+#+++#+#+++#+#+++#+#+++#+#+++#+$+++#+$+++$++++++++++++++++++++++", +"+#+++#+#+++#+#+++#+$#+#$+#+++#+$++#$+$+++$++++++++++++++++++++++", +"+%$$$%+%$$$%+%$$$%++$#$++%###%++$#$+++$$$+++++++++++++++++++++++", +"+#+++#+#+++#+#+#+#+$#+#$+$+++#+$#++$+$+++$++++++++++++++++++++++", +"+#+++#+#+++#+##+##+#+++#+$+++#+#+++$+$+++$++++++++++++++++++++++", +"+$####++###++#$$$#+%$$$#%%###%+%###%++$$$+++++++++++++++++++++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++........."}; diff --git a/wmtop/xpm/wmtop-rainbow.xpm b/wmtop/xpm/wmtop-rainbow.xpm new file mode 100644 index 0000000..69e0980 --- /dev/null +++ b/wmtop/xpm/wmtop-rainbow.xpm @@ -0,0 +1,174 @@ +/* XPM */ +static char * wmtop_rainbow_xpm[] = { +"64 109 62 1", +". c #0000FF", +" c None", +"+ c #202020", +"@ c #C7C5C8", +"# c #20B2AE", +"$ c #004941", +"% c #007D71", +"& c #00FF00", +"* c #09FF00", +"= c #12FF00", +"- c #1BFF00", +"; c #24FF00", +"> c #2DFF00", +", c #36FF00", +"' c #3FFF00", +") c #48FF00", +"! c #51FF00", +"~ c #5BFF00", +"{ c #64FF00", +"] c #6DFF00", +"^ c #76FF00", +"/ c #7FFF00", +"( c #88FF00", +"_ c #91FF00", +": c #9AFF00", +"< c #A3FF00", +"[ c #ADFF00", +"} c #B6FF00", +"| c #BFFF00", +"1 c #C8FF00", +"2 c #D1FF00", +"3 c #DAFF00", +"4 c #E3FF00", +"5 c #ECFF00", +"6 c #F5FF00", +"7 c #FFFE00", +"8 c #FFF500", +"9 c #FFEC00", +"0 c #FFE300", +"a c #FFDA00", +"b c #FFD100", +"c c #FFC800", +"d c #FFBF00", +"e c #FFB600", +"f c #FFAC00", +"g c #FFA300", +"h c #FF9A00", +"i c #FF9100", +"j c #FF8800", +"k c #FF7F00", +"l c #FF7600", +"m c #FF6D00", +"n c #FF6400", +"o c #FF5A00", +"p c #FF5100", +"q c #FF4800", +"r c #FF3F00", +"s c #FF3600", +"t c #FF2D00", +"u c #FF2400", +"v c #FF1B00", +"w c #FF1200", +"................................................................", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...+++++++++++++++++++++++++++++++++++++++++++++++++++++++++@...", +"...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...", +"................................................................", +"................................................................", +"................................................................", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"++###+++$$$%+%###%+%###%+%$$$%+%###%+%###%+%###%+%###%+%###%++++", +"+#+++#+$+++#+$+++#+$+++#+#+++#+#+++$+#+++$+$+++#+#+++#+#+++#++++", +"+#+++#+$+++#+$+++#+$+++#+#+++#+#+++$+#+++$+$+++#+#+++#+#+++#++++", +"+%$$$%++$$$%+%###%++###%+%###%+%###%+%###%++$$$%+$###$+%###%++++", +"+#+++#+$+++#+#+++$+$+++#+$+++#+$+++#+#+++#+$+++#+#+++#+$+++#++++", +"+#+++#+$+++#+#+++$+$+++#+$+++#+$+++#+#+++#+$+++#+#+++#+$+++#++++", +"++###+++$$$#+%###%+%###%++$$$%+%###%+%###%++$$$%+%###%+%###%++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+$###$+%###++%###%+%###++%###%+%###%+%###%+%$$$%++$$$%++$$$%++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++$+#+++#+$+++#+$+++#++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++$+#+++#+$+++#+$+++#++++", +"+%###%+%###++%$$$++%$$$%+%###++%###++%$##%+%###%++$$$%++$$$%++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++#+#+++#+$+++#+$+++#++++", +"+#+++#+#+++#+#+++$+#+++#+#+++$+#+++$+#+++#+#+++#+$+++#+$+++#++++", +"+%$$$%+%###++%###%+####++%###%+#$$$++%###%+%$$$%++$$$#+%###%++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+%$$$%+%$$$++#$$$#+%###++%###%+%###%+%###%+%###%+%###%+%###%++++", +"+#+++#+#+++$+##+##+#+++#+#+++#+#+++#+#+++#+#+++#+#+++$+$+#+$++++", +"+#++#$+#+++$+#+#+#+#+++#+#+++#+#+++#+#+++#+#+++#+#+++$+$+#+$++++", +"+%##$++%$$$++%$$$%+%$$$%+%$$$%+%###%+%#$$%+%###++%###%++$%$+++++", +"+#++#$+#+++$+#+++#+#+++#+#+++#+#+++$+#+#+#+#+++#+$+++#+$+#+$++++", +"+#+++#+#+++$+#+++#+#+++#+#+++#+#+++$+#++##+#+++#+$+++#+$+#+$++++", +"+%$$$%+%###$+%$$$%+#$$$#+%###%+%$$$++%###%+%$$$%+%###%++$%$+++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"+%$$$%+%$$$%+%$$$%+%$$$%+%$$$%+%###%++$$$+++++++++++++++++++++++", +"+#+++#+#+++#+#+++#+#+++#+#+++#+$+++#+$+++$++++++++++++++++++++++", +"+#+++#+#+++#+#+++#+$#+#$+#+++#+$++#$+$+++$++++++++++++++++++++++", +"+%$$$%+%$$$%+%$$$%++$#$++%###%++$#$+++$$$+++++++++++++++++++++++", +"+#+++#+#+++#+#+#+#+$#+#$+$+++#+$#++$+$+++$++++++++++++++++++++++", +"+#+++#+#+++#+##+##+#+++#+$+++#+#+++$+$+++$++++++++++++++++++++++", +"+$####++###++#$$$#+%$$$#%%###%+%###%++$$$+++++++++++++++++++++++", +"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"&*=-;>,')!~{]^/(_:<[}|1234567890abcdefghijklmnopqrstuvw.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++.........", +"+++++++++++++++++++++++++++++++++++++++++++++++++++++++........."}; -- 2.5.0 -- To unsubscribe, send mail to wmaker-dev-unsubscr...@lists.windowmaker.org.