From 1c9e1b1da7a3ae2a5f76069e06bdc0d88767749a Mon Sep 17 00:00:00 2001 From: kostix Date: Fri, 23 Jan 2009 02:28:49 +0000 Subject: urgent/urgent.tcl: * Really fixed getting the right X Window ids for the chat windows in the non-tabbed UI mode. * Fixed an error in formatting the error message for the case of unusable helper program. * We now hold the urgency flag status in the per-chat-window state to eliminate excessive calls to the helper program on message floods and focus flipping (in WMs using focus-follows-mouse/sloppy focus policy). * The helper program is now called in background. * "xwinids" array renamed to "state". * Improved descriptions of Customize options. urgent/urgent.c: Fixed build command example. urgent/INSTALL: Added installation/building instructions. Added "urgent" to the list of ignored files. git-svn-id: http://svn.xmpp.ru/repos/tkabber-3rd-party/trunk/plugins/urgent@168 cc602e41-bd33-0410-9637-a208f32f1443 --- INSTALL | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 INSTALL (limited to 'INSTALL') diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..7d7d240 --- /dev/null +++ b/INSTALL @@ -0,0 +1,26 @@ +To use this plugin you will need to build the provided +helper C program, see below. + +To install the plugin, as usually, copy this directory +under the Tkabber's plugins directory ~/.tkabber/plugins +so that you get a hierarchy like this: + ~/.tkabber/plugins + ~/.tkabber/plugins/urgent/ + ~/.tkabber/plugins/urgent/urgent.tcl + +Ensure you have a C compiler and X11 development files installed +("gcc" and "libx11-dev" packages on Debian systems), +then change to the plugin's directory: +$ cd ~/.tkabber/plugins/urgent/ +and build the helper C program: +$ gcc -lX11 -o urgent -urgent.c + +On older systems you might need to add an appropriate library +path to the gcc's search path using the -L command line +parameter, something like +$ gcc -L/usr/X11R6/lib -lX11 -o urgent -urgent.c + +Restart Tkabber, to get the plugin loaded. +Visit the Cutsomize->Plugins->Urgent group of settings. +Consult the README file for the details about using this plugin. + -- cgit v1.2.3