/usr/share/doc/gtrayicon/README is in gtrayicon 1.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | Copyright (C) 2008 Javier Valencia
======== README =====================
===============================
Contents:
1) What is "gtrayicon"?
2) Requirements
3) Compiling
4) Installing
5) Uninstalling
6) Bugs / Contact
===============================
1) What is "gtrayicon"?
gtrayicon is a generic status icon (user configurable) for the Gnome Desktop.
You can set the actions and icons for each state (activate / deactivate).
Check included help with "--help" parameter.
Example:
Activate action: start webfs (web server) setting a pid file
Deactivate action: kill that webfs instance
gtrayicon \
--activate="/usr/bin/webfsd -k /tmp/pid.file -r /var/www" \
--deactivate="cat /tmp/pid.file | xargs -ipid kill -TERM pid" \
It's coded in C and Gtk+/Glade and it's very small, about 150 C lines.
2) Requirements
gtrayicon needs the following packages:
- Linux operating system and compatibles
- Gcc compiler
- Gtk+2 (runtime and dev)
- libglade-2 (runtime and dev)
3) Compiling
gtrayicon includes a simple makefile. To compile gtrayicon type the following command:
- make
4) Installing
gtrayicon will be installed in /usr prefix by default. To install type:
- sudo make install
The installed binary is called "gtrayicon".
5) Uninstalling
To uninstall type:
- sudo make uninstall
6) If you find a bug or want to send a patch, just send an email at:
- javiervalencia80@gmail.com
|