wmmon-1.1+20131205/0000755000175000017500000000000012250421751011550 5ustar kixkixwmmon-1.1+20131205/INSTALL0000644000175000017500000000065112250421751012603 0ustar kixkixInstallation instructions for WMMon. Requirements -------------------------------------------------------------- Nothing particular :) Installation -------------------------------------------------------------- 1) % tar -zxvf wmmon-1.0b.tar.gz 2) % cd wmmon.app/wmmon 3) % make 4) copy 'wmmon' somewhere in your $PATH like /usr/local/bin; 5) % wmmon & (or wmmon -h for help) Be sure to read the HINTS and TODO files too! wmmon-1.1+20131205/README0000644000175000017500000000516012250421751012432 0ustar kixkixWMMon-1.0b2 - Public BETA release -------------------------------------------------------------- Authors...: Martijn Pieterse (pieterse@xs4all.nl) Antoine Nulle (warp@xs4all.nl) Note......: WMMon has it's own mailbox, as our pop3 accounts are already way too crowded :) Please mail bugreports, comments, suggestions, requests and flames to: dockapps@windowmaker.mezaway.org The official WMMon support website address: http://windowmaker.mezaway.org Credits...: Bobby Mezaway (bobby@mezaway.org) for generously hosting our website! Dave Harden (dharden@wisewire.com) for the major speedup diffs! Description -------------------------------------------------------------- WMMon monitors the realtime CPU load as well the average system load and gives you some nice additional features too... WMMon currently provides: * Realtime CPU 'stress' meter; * Average systemload, like xload & wmavgload; * Average systemload graphic is autoscaling; * Realtime Disk I/O 'stress' meter; * Average Disk I/O load grapic (autoscaling); * Realtime total Mem & Swap usage meters; * System uptime display; * Realtime cycling through all monitor modes; * Can lauch 3 user definable commands through ~/.wmmonrc; * Can be started multiple times; * Commandline options for help (-h), version (-v), start mode (-i & -s) and display (-d); There are some 'known' unfinished parts, be sure to read the TODO file, but we decided to release it early because of the high demand and many requests we got for this one ;) WMMon is being developped on DEC Alpha machines running Linux/RedHat-5.0, but, WMMon has been intensively tested on x86 and 68K Linux machines too ;-) p.s. WMMon is still a Linux ONLY app, sorry about that :( Files -------------------------------------------------------------- README This file. INSTALL Installation instructions. HINTS Hints about what you can do with WMMon. BUGS Things you don't want to know ;-) CHANGES Description of changes. COPYING GNU General Public License Version 2. TODO Stuff we've planned for future WMMon releases. Bugs -------------------------------------------------------------- If you discover any bugs in this software, please send a bugreport to dockapps@windowmaker.mezaway.org and describe the problem as detailed as you can. Copyright -------------------------------------------------------------- WMMon.app is copyright (c) 1997, 1998 by Martijn Pieterse and Antoine Nulle and licensed through the GNU General Public License. Read the COPYING file for the complete GNU license. wmmon-1.1+20131205/HINTS0000644000175000017500000000306412250421751012363 0ustar kixkixHints for WMMon Generic -------------------------------------------------------------- WMMon supports 5 commandline options: -h (help); -v (prints); -d (display); -i (startup in DiskI/O mode); -s (startup in SysInfo mode); WMMon can lauch 3 user definable commands for left, middle and right mouse button clicks, which you can define in ~/.wmmonrc, left: mycommand-1 & middle: mycommand-2 & right: mycommand-3 & If wmmon detects a ~/.wmmonrc file, it will launch your defined command(s) when you click in the average load display area. WMMon can cycle in realtime between CPU, Disk I/O and the SysInfo displays by simply left clicking on the upperleft gadget (which displays CPU info by default). Be sure to drag WMMon on it's outer edges, WMMon is a bit picky due to the large gfx pixmap it keeps ;-) WindowMaker -------------------------------------------------------------- WindowMaker users simply drag and drop the WMMon dock.app on the WindowMaker Dock (preferred) or on the Fiend and select 'autolaunch' from the rightmouse button popupmenu. Afterstep -------------------------------------------------------------- Afterstep users put the following in their .steprc "Wharf wmmon - MaxSwallow "wmmon" wmmon &". Note: AfterStep's Wharf has a problem with pixmaps that are larger than 60x60 pixels. Please tell the AfterStep authors to fix this, this is not our fault, but a Wharf problem! Other WindowManagers -------------------------------------------------------------- For other windowmanagers, WMMon runs nicely as a 64x64 shaped icon on your desktop. wmmon-1.1+20131205/wmgeneral/0000755000175000017500000000000012250421751013531 5ustar kixkixwmmon-1.1+20131205/wmgeneral/misc.h0000644000175000017500000000024512250421751014636 0ustar kixkix#ifndef __MISC_H #define __MISC_H #include extern void parse_command(char *, char ***, int *); extern pid_t execCommand(char *); #endif /* __MISC_H */ wmmon-1.1+20131205/wmgeneral/wmgeneral.c0000644000175000017500000002504712250421751015666 0ustar kixkix/* 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 (pieterse@xs4all.nl) --- CHANGES: --- 10/10/2003 (Simon Law, sfllaw@debian.org) * changed the parse_rcfile function to use getline instead of fgets. 02/05/1998 (Martijn Pieterse, pieterse@xs4all.nl) * changed the read_rc_file to parse_rcfile, as suggester by Marcelo E. Magallon * debugged the parse_rc file. 30/04/1998 (Martijn Pieterse, pieterse@xs4all.nl) * Ripped similar code from all the wm* programs, and put them in a single file. */ #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #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; #define MAX_MOUSE_REGION (8) 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); /*******************************************************************************\ |* read_rc_file *| \*******************************************************************************/ void parse_rcfile(const char *filename, rckeys *keys) { char *p; char *line = NULL; size_t line_size = 0; char *tokens = " :\t\n"; FILE *fp; int i,key; fp = fopen(filename, "r"); if (fp) { while (getline(&line, &line_size, fp) >= 0) { key = 0; while (key >= 0 && keys[key].label) { if ((p = strstr(line, 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); } } /*******************************************************************************\ |* 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= mouse_region[i].left && y <= mouse_region[i].bottom && y >= mouse_region[i].top) found = 1; } if (!found) return -1; return (i-1); } /*******************************************************************************\ |* 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 *geometry = NULL; char *wname = argv[0]; XTextProperty name; XGCValues gcv; unsigned long gcm; int dummy=0; int i; for (i=1; argv[i]; i++) { if (!strcmp(argv[i], "-display")) display_name = argv[++i]; else if (!strcmp(argv[i], "-geometry")) geometry = argv[++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); if (geometry) XParseGeometry(geometry, &mysizehints.x, &mysizehints.y, (unsigned int *) &mysizehints.width, (unsigned int *) &mysizehints.height); 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); } /* vim: sw=4 ts=4 columns=82 */ wmmon-1.1+20131205/wmgeneral/list.c0000644000175000017500000000705012250421751014652 0ustar kixkix/* 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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 #endif #include /* 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; } } wmmon-1.1+20131205/wmgeneral/wmgeneral.h0000644000175000017500000000166412250421751015672 0ustar kixkix#ifndef WMGENERAL_H_INCLUDED #define WMGENERAL_H_INCLUDED /***********/ /* Defines */ /***********/ #define MAX_MOUSE_REGION (8) /************/ /* Typedefs */ /************/ typedef struct _rckeys rckeys; struct _rckeys { 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 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 wmmon-1.1+20131205/wmgeneral/list.h0000644000175000017500000000352712250421751014664 0ustar kixkix/* 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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 wmmon-1.1+20131205/wmgeneral/misc.c0000644000175000017500000000705712250421751014641 0ustar kixkix/* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include #include #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 warp); * GUI jumps back to the default CPU display if monitoring Disk I/O and/or System Info when you stop/restart X; * No real bugs in WMMon so far, mostly unfinished business ;) wmmon-1.1+20131205/wmmon/0000755000175000017500000000000012250421751012705 5ustar kixkixwmmon-1.1+20131205/wmmon/Makefile0000755000175000017500000000057412250421751014356 0ustar kixkixLIBDIR = -L/usr/X11R6/lib LIBS = -lXpm -lXext -lX11 OBJS = wmmon.o \ ../wmgeneral/wmgeneral.o \ ../wmgeneral/misc.o \ ../wmgeneral/list.o CFLAGS = -O2 CC = cc .c.o: $(CC) $(CFLAGS) -c -Wall $< -o $*.o wmmon: $(OBJS) $(CC) $(LDFLAGS) -o wmmon $^ $(LIBDIR) $(LIBS) debug: CFLAGS = -g3 debug: wmmon clean:: for i in $(OBJS) ; do \ rm -f $$i;\ done rm -f wmmon wmmon-1.1+20131205/wmmon/wmmon.10000644000175000017500000001105312250421751014124 0ustar kixkix'\" t .\" Man page for wmmon .\" Copyright (c) 2003 Software in the Public Interest, Inc. .\" .\" 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. .\" .TH wmmon 1 "May 1998" "WMMON 1.0b2" .SH NAME wmmon \- Window Maker dockapp for monitoring system information .SH SYNOPSIS .B wmmon [ .I OPTION ] .SH DESCRIPTION .B WMMon monitors the realtime CPU load as well as the average system load, and gives you some nice additional features too. It is intended for docking in Window Maker. It currently provides: .IP \(bu 4 a realtime CPU stress meter; .IP \(bu an auto-scaled average system load meter, like .B xload and .BR wmavgload ; .IP \(bu a realtime disk I/O stress meter; .IP \(bu auto-scaled disk I/O load meter; .IP \(bu realtime memory and swap usage meters; .IP \(bu a display for system uptime; .IP \(bu three user-defined commands to launch. .SH OPTIONS .TP .BI \-display \ display This option specifies the X server to contact; see .IR X(7x) . .TP .BI \-geometry \ geometry This option specifies the preferred position of clock; see .IR X(7x) . .TP .BR \-l Lock the mode, so that it cannot be cycled by clicking on the upper-left widget. You can use this to open multiple copies of .BR WMMon , each set to a different mode. .TP .BR \-i Start in disk I/O mode, which displays instantaneous disk usage and average disk load. .TP .BR \-b Include buffers and cache in memory usage calculations. The trend in recent years has been to not include this in memory load monitors, but it can be useful information. .TP .BR \-s Start in system information mode, which displays memory usage, swap usage, and uptime. .TP .B \-h Show help information. .TP .B \-v Print the version number. .SH USAGE The .B WMMon display can be cycled between CPU, disk I/O, and system information displays by clicking on the upper-left widget. This displays CPU information by default. WMMon can also be used to launch programs. You may click either left, middle, or right mouse buttons in the average-load section of the window. The pre-configured program will be launched according to the mouse button clicked. (see .B CONFIGURATION FILE below.) In order to move .BR WMMon , drag on the outer edges. These are not sensitive to mouse clicks. .SH "DOCKING IN WINDOW MANAGERS" .TP Window Maker Window Maker users should drag and drop the .B WMMon window on the Dock. Then, right-click on the border of the window and select \*(lqSettings...\*(rq. Check \*(lqStart when Window Maker is started\*(rq. .TP AfterStep AfterStep users should put the following in their .I $HOME/.steprc .RS 16 Wharf wmmon \- MaxSwallow "wmmon" wmmon & .RE .TP Other window managers .B WMMon runs nicely as a 64x64 shaped icon on your desktop. .SH "CONFIGURATION FILE" .B WMMon can launch three user-defined commands, triggered by left, middle and right mouse button clicks. You can define the commands to launch in .I $HOME/.wmmonrc .RS .PD 0 left: xterm .PP middle: xload .PP right: xcalc .PP .PD .RE If .B WMMon detects a .I $HOME/.wmmonrc file, it will launch the appropriate command when you click on the clock. The system administrator can define default commands in .IR /etc/wmmonrc . The administrator may also choose to \*(lqfix\*(rq particular commands, making it impossible for users to change. These commands can be defined in .IR /etc/wmmonrc.fixed , although this isn't a nice thing to do. .SH FILES .I /etc/wmmonrc .br .I $HOME/.wmmonrc .br .I /etc/wmmonrc.fixed .SH AUTHORS .B WMMon was written by Martijn Pieterse and Antoine Nulle. This manual page was written by Simon Law for the .B Debian system (but may be used by others). It is based on the documentation provided by the original program. This manual 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. wmmon-1.1+20131205/wmmon/wmmon.c0000644000175000017500000006552412250421751014222 0ustar kixkix/* Code based on wmppp/wmifs [Orig WMPPP comments] This code was mainly put together by looking at the following programs: asclock A neat piece of equip, used to display the date and time on the screen. Comes with every AfterStep installation. Source used: How do I create a not so solid window? How do I open a window? How do I use pixmaps? ------------------------------------------------------------ Authors: Martijn Pieterse (pieterse@xs4all.nl) Antoine Nulle (warp@xs4all.nl) This program is distributed under the GPL license. (as were asclock and pppstats) ---- Changes: ---- 17/06/2012 (Rodolfo García Peñas (kix), ) * Code style. 13/3/2012 (Barry Kelly (wbk), ) * Fixed get_statistics() I/O features to work with newer /proc/diskstats instead of the old /proc/stat. * Fixes to graph/meter scaling for I/O. Original code let the scaling grow out of control due to inappropriate static data. * Eliminated rounding down relatively low stats in getWidth() and DrawStats_io() by using double and float types instead of ints. We now round up tiny values to prevent the system appearing idle when it's not. * Style/readbility edits. * TODO: Merge in Gentoo and possibly BSD local patches. This should aid in fixing I/O monitoring on non-Linux systems. * TODO: Color swapping. User supplies color values in .rc, and app modifies pixmap in memory on startup. Should be simple. * TODO: address compiler warnings (GCC has gotten pickier over the years). 17/10/2009 (Romuald Delavergne, romuald.delavergne@free.fr) * Support SMP processors in realtime CPU stress meter 15/05/2004 (Simon Law, sfllaw@debian.org) * Support disabling of mode-cycling 23/10/2003 (Simon Law, sfllaw@debian.org) * Eliminated exploitable static buffers * Added -geometry support. * /proc/meminfo support for Linux 2.6 18/05/1998 (Antoine Nulle, warp@xs4all.nl) * MEM/SWAP/UPTIME only updated when visible * Using global file descriptors to reduce file system overhead, both updates are based on a diff supplied by Dave Harden (dharden@wisewire.com) 15/05/1998 (Antoine Nulle, warp@xs4all.nl) * Fixed memory overflow in the MEM gaugebar * MEM gauge displays now real used mem (buffered + cached mem removed) 14/05/1998 (Antoine Nulle, warp@xs4all.nl) * Added -i & -s kludge for selecting startupmode, tijno, don't hate me for this :) 12/05/1998 (Antoine Nulle, warp@xs4all.nl) * Finetuned master-xpm, tijno don't worry, no reprogramming needed this time ;-) 07/05/1998 (Martijn Pieterse, pieterse@xs4all.nl) * Added disk i/o 03/05/1998 (Antoine Nulle, warp@xs4all.nl) * Added new master-xpm which contains the gfx for the upcoming SysInfo part :P 02/05/1998 (Martijn Pieterse, pieterse@xs4all.nl) * Removed a lot of code, that was put in wmgeneral 23/04/1998 (Martijn Pieterse, pieterse@xs4all.nl) * Added zombie destroying code (aka wait :) ) 18/04/1998 (Martijn Pieterse, pieterse@xs4all.nl) * Added CPU-on-screen. * Added -display command line 15/04/1998 (Martijn Pieterse, pieterse@xs4all.nl) * Fixed a bug in the stats routine (Top 3 bright pixels were not shown when 100% loaded) * Changed xpm to a no-title one. This included the reprogramming of all positions. warpstah, i hate you! ;) 05/04/1998 (Martijn Pieterse, pieterse@xs4all.nl) * First Working Version */ #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include "../wmgeneral/wmgeneral.h" #include "../wmgeneral/misc.h" #include "wmmon-master.xpm" #include "wmmon-mask.xbm" /***********/ /* Defines */ /***********/ #define WMMON_VERSION "1.2.b2" #define HISTORY_ENTRIES 55 #define HISTORY_ENTRIES 55 #define MAX_CPU (10) /* depends on graph height */ #define MAX_STAT_DEVICES (4) /********************/ /* Global Variables */ /********************/ int stat_current = 0; /* now global */ int mode_cycling = 1; /* Allow mode-cycling */ int cpu_avg_max = 0; /* CPU stress meter with average and max for SMP */ int show_buffers = 0; /* wbk adding per Gentoo -b enhancement. */ FILE *fp_meminfo; FILE *fp_stat; FILE *fp_loadavg; FILE *fp_diskstats; /* wbk new io stats API */ /* functions */ void usage(char*); void printversion(void); void DrawStats(int *, int, int, int, int); void DrawStats_io(int *, int, int, int, int); void wmmon_routine(int, char **); int main(int argc, char *argv[]) { int i; char *name = argv[0]; /* Parse Command Line */ for (i = 1; i < argc; i++) { char *arg = argv[i]; if (*arg=='-') switch (arg[1]) { case 'd' : if (strcmp(arg+1, "display")) { usage(name); return 1; } break; case 'g' : if (strcmp(arg+1, "geometry")) { usage(name); return 1; } case 'l' : mode_cycling = 0; break; case 'c' : cpu_avg_max = 1; break; case 'i' : stat_current = 1; break; case 'b' : show_buffers = 1; break; case 's' : stat_current = 2; break; case 'v' : printversion(); return 0; default: usage(name); return 1; } } wmmon_routine(argc, argv); exit(0); } /*******************************************************************************\ |* wmmon_routine *| \*******************************************************************************/ typedef struct { char name[5]; /* "cpu0..cpuz", eventually.. :) */ int his[HISTORY_ENTRIES]; int hisaddcnt; long rt_stat; long statlast; long rt_idle; long idlelast; /* Processors stats */ long *cpu_stat; long *cpu_last; long *idle_stat; long *idle_last; } stat_dev; stat_dev stat_device[MAX_STAT_DEVICES]; char *left_action, *right_action, *middle_action; int nb_cpu, cpu_max; int getNbCPU(void); unsigned long getWidth(long, long); int checksysdevs(void); void get_statistics(char *, long *, long *, long *, long *, long *); void DrawActive(char *); void update_stat_cpu(stat_dev *, long *, long *); void update_stat_io(stat_dev *); void update_stat_mem(stat_dev *st, stat_dev *st2); void update_stat_swp(stat_dev *); void wmmon_routine(int argc, char **argv) { rckeys wmmon_keys[] = { { "left", &left_action }, { "right", &right_action }, { "middle", &middle_action }, { NULL, NULL } }; unsigned long i, j; long k; XEvent Event; int but_stat = -1; int stat_online; long starttime, curtime, nexttime; long istat, idle, *istat2, *idle2; FILE *fp; char *conffile = NULL; int xpm_X = 0, xpm_Y = 0; long online_time = 0; long ref_time = 0; long cnt_time; fp = fopen("/proc/uptime", "r"); fp_meminfo = fopen("/proc/meminfo", "r"); fp_loadavg = fopen("/proc/loadavg", "r"); fp_stat = fopen("/proc/stat", "r"); fp_diskstats = fopen("/proc/diskstats", "r"); if (fp) { if (fscanf(fp, "%ld", &online_time) == EOF) perror("Error! fscanf() of /proc/uptime failed!\n"); ref_time = time(0); fclose(fp); } for (i = 0; i < MAX_STAT_DEVICES; i++) { for (j = 0; j < HISTORY_ENTRIES; j++) stat_device[i].his[j] = 0; stat_device[i].hisaddcnt = 0; } /* wbk - I don't fully understand this. Probably just a means of providing * test cases. ifdef'ing to clear compiler warnings. TODO: remove. */ #ifdef LEFT_ACTION if (LEFT_ACTION) left_action = strdup(LEFT_ACTION); #endif #ifdef RIGHT_ACTION if (RIGHT_ACTION) right_action = strdup(RIGHT_ACTION); #endif #ifdef MIDDLE_ACTION if (MIDDLE_ACTION) middle_action = strdup(MIDDLE_ACTION); #endif /* Scan through the .rc files */ if (asprintf(&conffile, "/etc/wmmonrc") >= 0) { parse_rcfile(conffile, wmmon_keys); free(conffile); } if (asprintf(&conffile, "%s/.wmmonrc", getenv("HOME")) >= 0) { parse_rcfile(conffile, wmmon_keys); free(conffile); } if (asprintf(&conffile, "/etc/wmmonrc.fixed") >= 0) { parse_rcfile(conffile, wmmon_keys); free(conffile); } stat_online = checksysdevs(); nb_cpu = getNbCPU(); stat_device[0].cpu_stat = calloc(nb_cpu, sizeof(long)); stat_device[0].cpu_last = calloc(nb_cpu, sizeof(long)); stat_device[0].idle_stat = calloc(nb_cpu, sizeof(long)); stat_device[0].idle_last = calloc(nb_cpu, sizeof(long)); if (!stat_device[0].cpu_stat || !stat_device[0].cpu_last || !stat_device[0].idle_stat || !stat_device[0].idle_last) { fprintf(stderr, "%s: Unable to alloc memory !\n", argv[0]); exit(1); } istat2 = calloc(nb_cpu, sizeof(long)); idle2 = calloc(nb_cpu, sizeof(long)); if (!istat2 || !idle2) { fprintf(stderr, "%s: Unable to alloc memory !!\n", argv[0]); exit(1); } openXwindow(argc, argv, wmmon_master_xpm, wmmon_mask_bits, wmmon_mask_width, wmmon_mask_height); /* add mouse region */ AddMouseRegion(0, 12, 13, 58, 57); AddMouseRegion(1, 5, 5, 24, 14); starttime = time(0); nexttime = starttime + 10; /* Collect information on each panel */ for (i = 0; i < stat_online; i++) { get_statistics(stat_device[i].name, &k, &istat, &idle, istat2, idle2); stat_device[i].statlast = istat; stat_device[i].idlelast = idle; if (i == 0 && nb_cpu > 1) { int cpu; for (cpu = 0; cpu < nb_cpu; cpu++) { stat_device[i].cpu_last[cpu] = istat2[cpu]; stat_device[i].idle_last[cpu] = idle2[cpu]; } } } /* Set the mask for the current window */ switch (stat_current) { case 0: case 1: xpm_X = 0; setMaskXY(0, 0); break; case 2: xpm_X = 64; setMaskXY(-64, 0); default: break; } /* Draw statistics */ if (stat_current == 0) { DrawStats(stat_device[stat_current].his, HISTORY_ENTRIES-1, 40, 5, 58); } else if (stat_current == 1) { DrawStats_io(stat_device[stat_current].his, HISTORY_ENTRIES, 40, 5, 58); } DrawActive(stat_device[stat_current].name); while (1) { curtime = time(NULL); waitpid(0, NULL, WNOHANG); update_stat_cpu(&stat_device[0], istat2, idle2); update_stat_io(&stat_device[1]); if(stat_current == 2) update_stat_mem(&stat_device[2], &stat_device[3]); if (stat_current < 2) { i = stat_current; /* Load ding is 45 pixels hoog */ copyXPMArea(0, 64, 32, 12, 28, 4); if (i == 0 && nb_cpu > 1) { if (nb_cpu > MAX_CPU || cpu_avg_max) { /* show average CPU */ j = getWidth(stat_device[i].rt_stat, stat_device[i].rt_idle); copyXPMArea(32, 64, j, 6, 28, 4); /* Show max CPU */ j = getWidth(stat_device[i].cpu_stat[cpu_max], stat_device[i].idle_stat[cpu_max]); copyXPMArea(32, 70, j, 6, 28, 10); } else { int cpu; for (cpu = 0; cpu < nb_cpu; cpu++) { j = getWidth(stat_device[i].cpu_stat[cpu], stat_device[i].idle_stat[cpu]); copyXPMArea(32, 65, j, MAX_CPU / nb_cpu, 28, 5 + (MAX_CPU / nb_cpu) * cpu); } } } else { j = getWidth(stat_device[i].rt_stat, stat_device[i].rt_idle); copyXPMArea(32, 64, j, 12, 28, 4); } } else { /* Nu zal ie wel 3 zijn. */ copyXPMArea(0, 64, 32, 12, 28+64, 4); copyXPMArea(0, 64, 32, 12, 28+64, 18); j = stat_device[2].rt_idle; if (j != 0) { j = (stat_device[2].rt_stat * 100) / j; } j = j * 0.32; if (j > 32) j = 32; copyXPMArea(32, 64, j, 12, 28+64, 4); /*--------------------- swap? ------------------*/ j = stat_device[3].rt_idle; if (j != 0) j = (stat_device[3].rt_stat * 100) / j; j = j * 0.32; if (j > 32) j = 32; copyXPMArea(32, 64, j, 12, 28+64, 18); /*----------- online tijd neerzetten! ----------*/ cnt_time = time(0) - ref_time + online_time; /* cnt_time = uptime in seconden */ /* secs = 108,47 mins = 89,47 uren = 70,47 digits = 40,78, 6breed, 9hoog */ i = cnt_time % 60; cnt_time /= 60; copyXPMArea(40 + (i % 10)*7, 78, 6, 9, 115, 47); copyXPMArea(40 + (i / 10)*7, 78, 6, 9, 108, 47); i = cnt_time % 60; cnt_time /= 60; copyXPMArea(40 + (i % 10)*7, 78, 6, 9, 96, 47); copyXPMArea(40 + (i / 10)*7, 78, 6, 9, 89, 47); i = cnt_time % 24; cnt_time /= 24; copyXPMArea(40 + (i % 10)*7, 78, 6, 9, 77, 47); copyXPMArea(40 + (i / 10)*7, 78, 6, 9, 70, 47); /* De rest is dagen! 5x7*/ i = cnt_time; copyXPMArea(66 + (i % 10)*6, 66, 5, 7, 88, 35); i /= 10; copyXPMArea(66 + (i % 10)*6, 66, 5, 7, 82, 35); i /= 10; copyXPMArea(66 + (i % 10)*6, 66, 5, 7, 76, 35); i /= 10; copyXPMArea(66 + (i % 10)*6, 66, 5, 7, 70, 35); } if (curtime >= nexttime) { nexttime+=10; if (curtime > nexttime) /* dont let APM suspends make this crazy */ nexttime = curtime; for (i=0; ihis[HISTORY_ENTRIES-1]) sd->his[HISTORY_ENTRIES-1] /= sd->hisaddcnt; for (j = 1; j < HISTORY_ENTRIES; j++) sd->his[j-1] = sd->his[j]; if (i == stat_current) { if (i == 0) DrawStats(sd->his, HISTORY_ENTRIES - 1, 40, 5, 58); else if (i == 1) DrawStats_io(sd->his, HISTORY_ENTRIES - 1, 40, 5, 58); } sd->his[HISTORY_ENTRIES-1] = 0; sd->hisaddcnt = 0; } } RedrawWindowXY(xpm_X, xpm_Y); while (XPending(display)) { XNextEvent(display, &Event); switch (Event.type) { case Expose: RedrawWindowXY(xpm_X, xpm_Y); break; case DestroyNotify: XCloseDisplay(display); exit(0); break; case ButtonPress: but_stat = CheckMouseRegion(Event.xbutton.x, Event.xbutton.y); break; case ButtonRelease: i = CheckMouseRegion(Event.xbutton.x, Event.xbutton.y); if (but_stat == i && but_stat >= 0) { switch (but_stat) { case 0: switch (Event.xbutton.button) { case 1: if (left_action) execCommand(left_action); break; case 2: if (middle_action) execCommand(middle_action); break; case 3: if (right_action) execCommand(right_action); break; } break; case 1: if (mode_cycling) { stat_current++; if (stat_current == stat_online) stat_current = 0; DrawActive(stat_device[stat_current].name); if (stat_current == 0) DrawStats(stat_device[stat_current].his, HISTORY_ENTRIES-1, 40, 5, 58); if (stat_current == 1) DrawStats_io(stat_device[stat_current].his, HISTORY_ENTRIES-1, 40, 5, 58); if (stat_current == 2) { xpm_X = 64; setMaskXY(-64, 0); } else { xpm_X = 0; setMaskXY(0, 0); } RedrawWindowXY(xpm_X, xpm_Y); } break; } } break; } } usleep(250000L); } } void update_stat_cpu(stat_dev *st, long *istat2, long *idle2) { long k, istat, idle; get_statistics(st->name, &k, &istat, &idle, istat2, idle2); st->rt_idle = idle - st->idlelast; st->idlelast = idle; st->rt_stat = istat - st->statlast; st->statlast = istat; if (nb_cpu > 1) { int cpu; unsigned long max, j; cpu_max = 0; max = 0; for (cpu = 0; cpu < nb_cpu; cpu++) { st->idle_stat[cpu] = idle2[cpu] - st->idle_last[cpu]; st->idle_last[cpu] = idle2[cpu]; st->cpu_stat[cpu] = istat2[cpu] - st->cpu_last[cpu]; st->cpu_last[cpu] = istat2[cpu]; j = st->cpu_stat[cpu] + st->idle_stat[cpu]; if (j != 0) j = (st->cpu_stat[cpu] << 7) / j; if (j > max) { max = j; cpu_max = cpu; } } } st->his[HISTORY_ENTRIES-1] += k; st->hisaddcnt += 1; } void update_stat_io(stat_dev *st) { long j, k, istat, idle; /* Periodically re-sample. Sometimes we get anomalously high readings; * this discards them. */ static int stalemax = 300; static long maxdiskio = 0; if (--stalemax <= 0) { maxdiskio = 0; stalemax = 300; } get_statistics(st->name, &k, &istat, &idle, NULL, NULL); st->rt_idle = idle - st->idlelast; st->idlelast = idle; st->rt_stat = istat - st->statlast; st->statlast = istat; /* remember peak for scaling of upper-right meter. */ j = st->rt_stat; if (maxdiskio < j) maxdiskio = j; /* Calculate scaling factor for upper-right meter. "/ 5" will clip * the highest peaks, but makes moderate values more visible. We are * compensating for wild fluctuations which are probably caused by * kernel I/O buffering. */ st->rt_idle = (maxdiskio - j) / 5; if (j > 0 && st->rt_idle < 1) st->rt_idle = 1; /* scale up tiny values so they are visible */ st->his[HISTORY_ENTRIES-1] += st->rt_stat; st->hisaddcnt += 1; } void update_stat_mem(stat_dev *st, stat_dev *st2) { static char *line = NULL; static size_t line_size = 0; unsigned long swapfree; unsigned long free, shared, buffers, cached; if (freopen("/proc/meminfo", "r", fp_meminfo) == NULL) perror("freopen() of /proc/meminfo failed!)\n"); while ((getline(&line, &line_size, fp_meminfo)) > 0) { /* The original format for the first two lines of /proc/meminfo was * Mem: total used free shared buffers cached * Swap: total used free * * As of at least 2.5.47 these two lines were removed, so that the * required information has to come from the rest of the lines. * On top of that, used is no longer recorded - you have to work * this out yourself, from total - free. * * So, these changes below should work. They should also work with * older kernels, too, since the new format has been available for * ages. */ if (strstr(line, "MemTotal:")) sscanf(line, "MemTotal: %ld", &st->rt_idle); else if (strstr(line, "MemFree:")) sscanf(line, "MemFree: %ld", &free); else if (strstr(line, "MemShared:")) sscanf(line, "MemShared: %ld", &shared); else if (strstr(line, "Buffers:")) sscanf(line, "Buffers: %ld", &buffers); else if (strstr(line, "Cached:")) sscanf(line, "Cached: %ld", &cached); else if (strstr(line, "SwapTotal:")) sscanf(line, "SwapTotal: %ld", &st2->rt_idle); else if (strstr(line, "SwapFree:")) sscanf(line, "SwapFree: %ld", &swapfree); } /* memory use - rt_stat is the amount used, it seems, and this isn't * recorded in current version of /proc/meminfo (as of 2.5.47), so we * calculate it from MemTotal - MemFree */ st->rt_stat = st->rt_idle - free; /* wbk -b flag (from Gentoo patchkit) */ if (!show_buffers) st->rt_stat -= buffers+cached; /* As with the amount of memory used, it's not recorded any more, so * we have to calculate it ourselves. */ st2->rt_stat = st2->rt_idle - swapfree; } void update_stat_swp(stat_dev *st) { static char *line = NULL; static size_t line_size = 0; unsigned long swapfree; fseek(fp_meminfo, 0, SEEK_SET); while ((getline(&line, &line_size, fp_meminfo)) > 0) { /* As with update_stat_mem(), the format change to /proc/meminfo has * forced some changes here. */ if (strstr(line, "SwapTotal:")) sscanf(line, "SwapTotal: %ld", &st->rt_idle); else if (strstr(line, "SwapFree:")) sscanf(line, "SwapFree: %ld", &swapfree); } st->rt_stat = st->rt_idle - swapfree; } /*******************************************************************************\ |* get_statistics *| \*******************************************************************************/ void get_statistics(char *devname, long *is, long *ds, long *idle, long *ds2, long *idle2) { int i; static char *line = NULL; static size_t line_size = 0; char *p; char *tokens = " \t\n"; float f; *is = 0; *ds = 0; *idle = 0; if (!strncmp(devname, "cpu", 3)) { fseek(fp_stat, 0, SEEK_SET); while ((getline(&line, &line_size, fp_stat)) > 0) { if (strstr(line, "cpu")) { int cpu = -1; /* by default, cumul stats => average */ if (!strstr(line, "cpu ")) { sscanf(line, "cpu%d", &cpu); ds2[cpu] = 0; idle2[cpu] = 0; } p = strtok(line, tokens); /* 1..3, 4 == idle, we don't want idle! */ for (i=0; i<3; i++) { p = strtok(NULL, tokens); if (cpu == -1) *ds += atol(p); else ds2[cpu] += atol(p); } p = strtok(NULL, tokens); if (cpu == -1) *idle = atol(p); else idle2[cpu] = atol(p); } } if ((fp_loadavg = freopen("/proc/loadavg", "r", fp_loadavg)) == NULL) perror("ger_statistics(): freopen(proc/loadavg) failed!\n"); if (fscanf(fp_loadavg, "%f", &f) == EOF) perror("fscanf() failed to read f\n"); *is = (long) (100 * f); } if (!strncmp(devname, "i/o", 3)) { if (fseek(fp_diskstats, 0, SEEK_SET) == -1) perror("get_statistics() seek failed\n"); /* wbk 20120308 These are no longer in /proc/stat. /proc/diskstats * seems to be the closest replacement. Under modern BSD's, /proc is * now deprecated, so iostat() might be the answer. * http://www.gossamer-threads.com/lists/linux/kernel/314618 * has good info on this being removed from kernel. Also see * kernel sources Documentation/iostats.txt * * TODO: We will end up with doubled values. We are adding the * aggregate to the individual partition, due to device selection * logic. Either grab devices' stats with numbers, or without (sda * OR sda[1..10]. Could use strstr() return plus offset, but would * have to be careful with bounds checking since we're in a * limited buffer. Or just divide by 2 (inefficient). Shouldn't * matter for graphing (we care about proportions, not numbers). */ while ((getline(&line, &line_size, fp_diskstats)) > 0) { if (strstr(line, "sd") || strstr(line, "sr")) { p = strtok(line, tokens); /* skip 3 tokens, then use fields from `* linux/Documentation/iostats.txt */ for (i = 1; i <= 6; i++) p = strtok(NULL, tokens); *ds += atol(p); for (i = 7; i <= 10; i++) p = strtok(NULL, tokens); *ds += atol(p); } } } } /*******************************************************************************\ |* getWidth *| \*******************************************************************************/ unsigned long getWidth(long actif, long idle) { /* wbk - work with a decimal value so we don't round < 1 down to zero. */ double j = 0; unsigned long r = 0; j = (actif + idle); if (j != 0) j = (actif * 100) / j; j = j * 0.32; /* round up very low positive values so they are visible. */ if (actif > 0 && j < 2) j = 2; if (j > 32) j = 32; r = (unsigned long) j; return r; } /*******************************************************************************\ |* getNbCPU *| \*******************************************************************************/ int getNbCPU(void) { static char *line = NULL; static size_t line_size = 0; int cpu = 0; fseek(fp_stat, 0, SEEK_SET); while ((getline(&line, &line_size, fp_stat)) > 0) { if (strstr(line, "cpu") && !strstr(line, "cpu ")) sscanf(line, "cpu%d", &cpu); } return cpu+1; } /*******************************************************************************\ |* checksysdevs *| \*******************************************************************************/ int checksysdevs(void) { strcpy(stat_device[0].name, "cpu0"); strcpy(stat_device[1].name, "i/o"); strcpy(stat_device[2].name, "sys"); return 3; } /*******************************************************************************\ |* void DrawActive(char *) *| \*******************************************************************************/ void DrawActive(char *name) { /* Alles op X,77 CPU: 0 I/O: 21 20 Breed, 10 hoog Destinatie: 5,5 */ if (name[0] == 'c') copyXPMArea(0, 77, 19, 10, 5, 5); else if (name[0] == 'i') copyXPMArea(19, 77, 19, 10, 5, 5); } /*******************************************************************************\ |* DrawStats *| \*******************************************************************************/ void DrawStats(int *his, int num, int size, int x_left, int y_bottom) { int pixels_per_byte, j, k, *p, d; pixels_per_byte = 100; p = his; for (j=0; j pixels_per_byte) pixels_per_byte += 100; p += 1; } p = his; for (k=0; k 0; j-=100) { for (k=0; k io_scale) io_scale = p[j]; pixels_per_byte = 1.0 * io_scale / size; if (pixels_per_byte == 0) pixels_per_byte = 1; for (k=0; k 0 && d < 1) { d = 3; border = 2; } else { border = 3; } for (j=0; j c #2081B2CAAEBA", ", c #000049244103", "< c #104079E779E7", "1 c #18618A288617", "2 c #2081D34C0000", "3 c #30C2CB2B0000", "4 c #38E3BEFB0000", "5 c #4103B6DA0000", "6 c #4924AAAA0000", "7 c #5965A2890000", "8 c #618596580000", "9 c #69A68E380000", "0 c #71C682070000", "q c #861779E70000", "w c #8E386DB60000", "e c #965865950000", "r c #9E7959650000", "t c #AEBA51440000", "y c #B6DA45140000", "u c #BEFB3CF30000", "i c #C71B30C20000", "p c #10407DF779E7", "a c #00007DF771C6", "s c #2081B6DAAEBA", "d c #71C6E38D71C6", " ", " ", " ", " ", " ...................... ................................ ...................... ................................ ", " .XXXXXXXXXXXXXXXXXXXXo .OOOO++@##$$$$%%%&&&&****=--;;:o .XXXXXXXXXXXXXXXXXXXXo .OOOO++@##$$$$%%%&&&&****=--;;:o ", " .XXXXXXXXXXXXXXXXXXXXo .OOOO++@##$$$$%%%&&&&****=--;;:o .X>,,,>X<>>>,,,>XXo .OOOO++@##$$$$%%%&&&&****=--;;:o ", " .XXXXXXXXXXXXXXXXXXXXo .OOOO++@##$$$$%%%&&&&****=--;;:o .X>>X>>X>XXX,X>>X>>XXo .OOOO++@##$$$$%%%&&&&****=--;;:o ", " .XXXXXXXXXXXXXXXXXXXXo .OOOO++@##$$$$%%%&&&&****=--;;:o .X>X>X>X>XXX,X>X>X>XXo .OOOO++@##$$$$%%%&&&&****=--;;:o ", " .XXXXXXXXXXXXXXXXXXXXo .OOOO++@##$$$$%%%&&&&****=--;;:o .X<,,,>>XX<,,,XXX>X>XXX,X>XXX>XXo .OOOO++@##$$$$%%%&&&&****=--;;:o ", " .XXXXXXXXXXXXXXXXXXXXo .OOOO++@##$$$$%%%&&&&****=--;;:o .X>XXX>X>XXX,X>XXX>XXo .OOOO++@##$$$$%%%&&&&****=--;;:o ", " .XXXXXXXXXXXXXXXXXXXXo .OOOO++@##$$$$%%%&&&&****=--;;:o .X<,,,>>>>>>XXX,X>XXX>X>XXX>XXo .OOOO++@##$$$$%%%&&&&****=--;;:o ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .X>XXX,X>XXX>X>XXX>XXo .OOOO++@##$$$$%%%&&&&****=--;;:o ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .X<>>>>>X>X>X>X>XXX,XXo .OOOO++@##$$$$%%%&&&&****=--;;:o ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .X,XXX>X>>X>>X>XXX,XXo .OOOO++@##$$$$%%%&&&&****=--;;:o ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .X<>>>,,,>X<,,,XXXo .OOOO++@##$$$$%%%&&&&****=--;;:o ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XXXXXXXXXXXXXXXXXXXXo .OOOO++@##$$$$%%%&&&&****=--;;:o ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XXXXXXXXXXXXXXXXXXXXo .OOOO++@##$$$$%%%&&&&****=--;;:o ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo oooooooooooooooooooooo oooooooooooooooooooooooooooooooo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo ........................................................ ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XX,,,XXX,,,XXX,,,XXX,,,XXXXXXXX>XXXXXXXXXXXXXXXXXXXXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .X,XXX,X,XXX,X,XXX,X,XXX,XXXXXXX>XXXXXXXXXXXXXXXXXXXXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .X,XXX,X,XXX,X,XXX,X,XXX,XXXX>>>>X>>>>XX>XXX>XX>>>XXXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XX,,,XXX,,,XXX,,,XXX,,,XXXX>XXX>XXXXX>X>XXX>X>XXXXXXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .X,XXX,X,XXX,X,XXX,X,XXX,XXX>XXX>X>>>>>XX>>>>X>>>>>XXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .X,XXX,X,XXX,X,XXX,X,XXX,XXX>XXX>X>XXX>XXXXX>XXXXX>XXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XX,,,XXX,,,XXX,,,XXX,,,XXXXX>>>>X>>>>>X>>>>XXX>>>>X>XXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX>XXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XX,,,,XXX,,,,XXXXXXXX,,,,XXX,,,,XXXXXXXX,,,,XXX,,,,XXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .X,XXXX,X,XXXX,XX1>XX,XXXX,X,XXXX,XX1>XX,XXXX,X,XXXX,XXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .X,XXXX,X,XXXX,XX<>XX,XXXX,X,XXXX,XX<>XX,XXXX,X,XXXX,XXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .X,XXXX,X,XXXX,XXXXXX,XXXX,X,XXXX,XXXXXX,XXXX,X,XXXX,XXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XX,,,,XXX,,,,XXXXXXXX,,,,XXX,,,,XXXXXXXX,,,,XXX,,,,XXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .X,XXXX,X,XXXX,XXXXXX,XXXX,X,XXXX,XXXXXX,XXXX,X,XXXX,XXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .X,XXXX,X,XXXX,XX1>XX,XXXX,X,XXXX,XX1>XX,XXXX,X,XXXX,XXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .X,XXXX,X,XXXX,XX<>XX,XXXX,X,XXXX,XX<>XX,XXXX,X,XXXX,XXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XX,,,,XXX,,,,XXXXXXXX,,,,XXX,,,,XXXXXXXX,,,,XXX,,,,XXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo ", " .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXo ", " oooooooooooooooooooooooooooooooooooooooooooooooooooooooo oooooooooooooooooooooooooooooooooooooooooooooooooooooooo ", " ", " ", " ", " ", "................................................................ ", ".OOOO++@##$$$$%%%&&&&****=--;;:o.2233445667788990qqwweerrtyyuuio XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ", ".OOOO++@##$$$$%%%&&&&****=--;;:o.2233445667788990qqwweerrtyyuuio XX>>>XXX,,,1X1>>>1X1>>>1X>,,,>X1>>>1X1>>>1X1>>>1X1>>>1X1>>>1X ", ".OOOO++@##$$$$%%%&&&&****=--;;:o.2233445667788990qqwweerrtyyuuio X>XXX>X,XXX>X,XXX>X,XXX>X>XXX>X>XXX,X>XXX,X,XXX>X>XXX>X>XXX>X ", ".OOOO++@##$$$$%%%&&&&****=--;;:o.2233445667788990qqwweerrtyyuuio X>XXX>X,XXX>X,XXX>X,XXX>X>XXX>X>XXX,X>XXX,X,XXX>X>XXX>X>XXX>X ", ".OOOO++@##$$$$%%%&&&&****=--;;:o.2233445667788990qqwweerrtyyuuio X1,,,1XX,,,1X1>>>1XX>>>1X1>>>1X>>>>1X1>>>1XX,,,1X1>>>1Xp>>>1X ", ".OOOO++@##$$$$%%%&&&&****=--;;:o.2233445667788990qqwweerrtyyuuio X>XXX>X,XXX>X>XXX,X,XXX>X,XXX>X,XXX>X>XXX>X,XXX>X>XXX>X,XXX>X ", ".OOOO++@##$$$$%%%&&&&****=--;;:o.2233445667788990qqwweerrtyyuuio X>XXX>X,XXX>X>XXX,X,XXX>X,XXX>X,XXX>X>XXX>X,XXX>X>XXX>X,XXX>X ", ".OOOO++@##$$$$%%%&&&&****=--;;:o.2233445667788990qqwweerrtyyuuio XX>>>XXX,,,>X1>>>1X1>>>1XX,,,1X1>>>1X1>>>1XX,,,>X1>>>1X1>>>1X ", ".OOOO++@##$$$$%%%&&&&****=--;;:o.2233445667788990qqwweerrtyyuuio XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ", ".OOOO++@##$$$$%%%&&&&****=--;;:o.2233445667788990qqwweerrtyyuuio ", "oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo ", " ", "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ", "XasssaXasssaXa,,,aXXX,,,aXXXXXXasssaXX XX>>>>XXX,,,,pXp>>>>1Xp>>>>pXp,,,,pXp>>>>pXp>>>>1Xp>>>>pXp>>>>1Xp>>>>1XXXXXX ", "XsXXX,XsXXXsXsXXXsXX,XXXsXXXXsXsXXXsXX X>XXXX>X,XXXX>X,XXXX>X,XXXX>X>XXXX>X>XXXX,X>XXXX,X,XXXX>X>XXXX>X>XXXX>XX1>XX ", "XsXXX,XsXXXsXsXXXsXX,XXXsXXXXsXsXXXsXX X>XXXX>X,XXXX>X,XXXX>X,XXXX>X>XXXX>X>XXXX,X>XXXX,X,XXXX>X>XXXX>X>XXXX>XXp>XX ", "Xa,,,XXasssaXa,,,aXXX,,,aXXXsXXa,,,aXX X>XXXX>X,XXXX>X,XXXX>X,XXXX>X>XXXX>X>XXXX,X>XXXX,X,XXXX>X>XXXX>X>XXXX>XXXXXX ", "XsXXX,XsXXX,XsXXXsXX,XXXsXXXsXXsXXXsXX Xp,,,,pXX,,,,pXp>>>>pXp>>>>pXp>>>>pXp>>>>pXp>>>>pXX,,,,pXp>>>>pXp>>>>pXXXXXX ", "XsXXX,XsXXX,XsXXXsXX,XXXsXXsXXXsXXXsXX X>XXXX>X,XXXX>X>XXXX,X,XXXX>X,XXXX>X,XXXX>X>XXXX>X,XXXX>X>XXXX>X,XXXX>XXXXXX ", "XasssaXa,,,XXasssaXXX,,,aXXaXXXasssaXX X>XXXX>X,XXXX>X>XXXX,X,XXXX>X,XXXX>X,XXXX>X>XXXX>X,XXXX>X>XXXX>X,XXXX>XX1>XX ", "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX X>XXXX>X,XXXX>X>XXXX,X,XXXX>X,XXXX>X,XXXX>X>XXXX>X,XXXX>X>XXXX>X,XXXX>XXp>XX ", "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XX>>>>XXX,,,,pXp>>>>pXp>>>>pXX,,,,pXp>>>>pXp>>>>pXX,,,,pXp>>>>pXp>>>>pXXXXXX ", " XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ", " a ", " s ", " X ", " d ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " "}; wmmon-1.1+20131205/wmmon/wmmon-mask.xbm0000644000175000017500000001440712250421751015511 0ustar kixkix#define wmmon_mask_width 128 #define wmmon_mask_height 64 static char wmmon_mask_bits[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; wmmon-1.1+20131205/COPYING0000644000175000017500000004325412250421751012613 0ustar kixkix GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 Lesser 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 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. Copyright (C) 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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) year 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. , 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 Lesser General Public License instead of this License.