2008-02-20 20:30:45 +00:00
|
|
|
/* Conky, a system monitor, based on torsmo
|
2005-08-05 01:06:17 +00:00
|
|
|
*
|
2007-08-10 19:53:44 +00:00
|
|
|
* Any original torsmo code is licensed under the BSD license
|
|
|
|
*
|
|
|
|
* All code written since the fork of torsmo is licensed under the GPL
|
|
|
|
*
|
|
|
|
* Please see COPYING for details
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
|
2008-02-20 20:30:45 +00:00
|
|
|
* Copyright (c) 2005-2007 Brenden Matthews, Philip Kovacs, et. al.
|
|
|
|
* (see AUTHORS)
|
2007-08-10 19:53:44 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 3 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
|
2008-02-20 20:30:45 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-08-05 01:06:17 +00:00
|
|
|
*
|
2008-03-18 00:23:16 +00:00
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
2005-08-05 01:06:17 +00:00
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
#ifndef _conky_h_
|
|
|
|
#define _conky_h_
|
|
|
|
|
2005-08-23 06:10:25 +00:00
|
|
|
#if defined(HAS_MCHECK_H)
|
2005-08-12 04:34:06 +00:00
|
|
|
#include <mcheck.h>
|
2005-08-23 06:10:25 +00:00
|
|
|
#endif /* HAS_MCHECK_H */
|
2008-02-20 20:30:45 +00:00
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2006-11-12 06:38:21 +00:00
|
|
|
#include <string.h>
|
2005-07-24 23:08:51 +00:00
|
|
|
#include <locale.h>
|
|
|
|
#include <langinfo.h>
|
|
|
|
#include <wchar.h>
|
2005-10-16 11:53:36 +00:00
|
|
|
#include <sys/param.h>
|
2008-02-20 20:30:45 +00:00
|
|
|
|
2007-12-31 00:00:35 +00:00
|
|
|
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
2005-10-16 11:53:36 +00:00
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/ucred.h>
|
2006-03-22 19:27:31 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <kvm.h>
|
2008-02-20 20:30:45 +00:00
|
|
|
#if (defined(i386) || defined(__i386__))
|
2005-08-30 04:19:16 +00:00
|
|
|
#include <machine/apm_bios.h>
|
2008-02-20 20:30:45 +00:00
|
|
|
#endif /* i386 || __i386__ */
|
2005-08-30 04:19:16 +00:00
|
|
|
#endif /* __FreeBSD__ */
|
|
|
|
|
2007-03-01 01:43:43 +00:00
|
|
|
#if defined(__OpenBSD__)
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/sensors.h>
|
2007-05-06 12:13:38 +00:00
|
|
|
#include <machine/apmvar.h>
|
2007-03-01 01:43:43 +00:00
|
|
|
#endif /* __OpenBSD__ */
|
|
|
|
|
2006-11-03 20:54:52 +00:00
|
|
|
#ifdef AUDACIOUS
|
|
|
|
#include "audacious.h"
|
|
|
|
#endif
|
|
|
|
|
2006-03-25 21:21:07 +00:00
|
|
|
#ifdef XMMS2
|
|
|
|
#include <xmmsclient/xmmsclient.h>
|
|
|
|
#endif
|
|
|
|
|
2007-05-06 12:17:13 +00:00
|
|
|
#ifdef RSS
|
2007-06-01 10:42:57 +00:00
|
|
|
#include "prss.h"
|
2007-05-06 12:17:13 +00:00
|
|
|
#endif
|
|
|
|
|
2008-03-18 00:23:16 +00:00
|
|
|
#ifdef SMAPI
|
|
|
|
#include "smapi.h"
|
|
|
|
#endif
|
|
|
|
|
2007-02-14 19:45:18 +00:00
|
|
|
#include "mboxscan.h"
|
2006-11-15 01:20:49 +00:00
|
|
|
#include "timed_thread.h"
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
#define TOP_CPU 1
|
|
|
|
#define TOP_NAME 2
|
|
|
|
#define TOP_PID 3
|
|
|
|
#define TOP_MEM 4
|
2008-01-06 01:35:14 +00:00
|
|
|
#define TOP_TIME 5
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2008-03-19 22:28:23 +00:00
|
|
|
#define DEFAULT_TEXT_BUFFER_SIZE 128
|
|
|
|
extern unsigned int large_text_buffer_size;
|
|
|
|
extern unsigned int small_text_buffer_size;
|
|
|
|
extern unsigned int p_max_size;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2006-11-22 21:53:54 +00:00
|
|
|
/* maximum number of special things, e.g. fonts, offsets, aligns, etc. */
|
|
|
|
#define MAX_SPECIALS_DEFAULT 512
|
|
|
|
|
2006-11-09 00:33:46 +00:00
|
|
|
/* maximum size of config TEXT buffer, i.e. below TEXT line. */
|
|
|
|
#define MAX_USER_TEXT_DEFAULT 16384
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
#define ERR(s, varargs...) fprintf(stderr, "Conky: " s "\n", ##varargs)
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
/* critical error */
|
|
|
|
#define CRIT_ERR(s, varargs...) \
|
2008-02-20 20:30:45 +00:00
|
|
|
{ fprintf(stderr, "Conky: " s "\n", ##varargs); exit(EXIT_FAILURE); }
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2005-08-30 14:59:37 +00:00
|
|
|
struct i8k_struct {
|
2005-08-27 07:15:44 +00:00
|
|
|
char *version;
|
|
|
|
char *bios;
|
|
|
|
char *serial;
|
|
|
|
char *cpu_temp;
|
|
|
|
char *left_fan_status;
|
|
|
|
char *right_fan_status;
|
|
|
|
char *left_fan_rpm;
|
|
|
|
char *right_fan_rpm;
|
|
|
|
char *ac_status;
|
|
|
|
char *buttons_status;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct i8k_struct i8k;
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
struct net_stat {
|
|
|
|
const char *dev;
|
|
|
|
int up;
|
|
|
|
long long last_read_recv, last_read_trans;
|
|
|
|
long long recv, trans;
|
|
|
|
double recv_speed, trans_speed;
|
|
|
|
struct sockaddr addr;
|
2008-03-18 00:23:16 +00:00
|
|
|
char* addrs;
|
2005-07-20 00:30:40 +00:00
|
|
|
double net_rec[15], net_trans[15];
|
2007-08-07 12:51:08 +00:00
|
|
|
// wireless extensions
|
|
|
|
char essid[32];
|
|
|
|
char bitrate[16];
|
|
|
|
char mode[16];
|
|
|
|
int link_qual;
|
|
|
|
int link_qual_max;
|
2007-10-17 20:31:27 +00:00
|
|
|
char ap[18];
|
2005-07-20 00:30:40 +00:00
|
|
|
};
|
|
|
|
|
2005-08-26 02:52:54 +00:00
|
|
|
unsigned int diskio_value;
|
2006-12-29 23:14:31 +00:00
|
|
|
unsigned int diskio_read_value;
|
|
|
|
unsigned int diskio_write_value;
|
2005-08-26 02:52:54 +00:00
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
struct fs_stat {
|
2008-03-19 22:28:23 +00:00
|
|
|
char path[DEFAULT_TEXT_BUFFER_SIZE];
|
|
|
|
char type[DEFAULT_TEXT_BUFFER_SIZE];
|
2005-07-20 00:30:40 +00:00
|
|
|
long long size;
|
|
|
|
long long avail;
|
2005-12-01 06:32:14 +00:00
|
|
|
long long free;
|
2008-03-19 22:28:23 +00:00
|
|
|
char set;
|
2005-07-20 00:30:40 +00:00
|
|
|
};
|
|
|
|
|
2008-02-09 02:21:06 +00:00
|
|
|
#include "diskio.h"
|
|
|
|
|
2006-05-08 22:34:38 +00:00
|
|
|
struct mail_s { // for imap and pop3
|
2006-05-13 19:51:26 +00:00
|
|
|
unsigned long unseen;
|
|
|
|
unsigned long messages;
|
|
|
|
unsigned long used;
|
|
|
|
unsigned long quota;
|
|
|
|
unsigned long port;
|
2006-05-08 22:34:38 +00:00
|
|
|
float interval;
|
|
|
|
double last_update;
|
|
|
|
char host[128];
|
|
|
|
char user[128];
|
|
|
|
char pass[128];
|
|
|
|
char command[1024];
|
|
|
|
char folder[128];
|
2006-11-15 01:20:49 +00:00
|
|
|
timed_thread *p_timed_thread;
|
2007-10-17 20:31:27 +00:00
|
|
|
char secure;
|
2006-05-08 22:34:38 +00:00
|
|
|
} mail;
|
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
/* struct cpu_stat {
|
2005-07-20 00:30:40 +00:00
|
|
|
unsigned int user, nice, system, idle, iowait, irq, softirq;
|
|
|
|
int cpu_avg_samples;
|
2008-02-20 20:30:45 +00:00
|
|
|
}; */
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
#ifdef MPD
|
|
|
|
struct mpd_s {
|
|
|
|
char *title;
|
|
|
|
char *artist;
|
|
|
|
char *album;
|
|
|
|
char *status;
|
2005-10-11 01:37:46 +00:00
|
|
|
char *random;
|
|
|
|
char *repeat;
|
|
|
|
char *track;
|
2006-01-31 03:32:26 +00:00
|
|
|
char *name;
|
|
|
|
char *file;
|
2005-07-20 00:30:40 +00:00
|
|
|
int volume;
|
|
|
|
unsigned int port;
|
2005-07-24 23:08:51 +00:00
|
|
|
char host[128];
|
2006-01-31 03:32:26 +00:00
|
|
|
char password[128];
|
2005-07-20 00:30:40 +00:00
|
|
|
float progress;
|
|
|
|
int bitrate;
|
2005-07-28 04:48:27 +00:00
|
|
|
int length;
|
|
|
|
int elapsed;
|
2007-08-05 04:47:21 +00:00
|
|
|
int max_title_len; /* e.g. ${mpd_title 50} */
|
2005-07-20 00:30:40 +00:00
|
|
|
};
|
2007-08-27 20:26:58 +00:00
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
#endif
|
|
|
|
|
2006-03-25 21:21:07 +00:00
|
|
|
#ifdef XMMS2
|
|
|
|
struct xmms2_s {
|
2008-02-20 20:30:45 +00:00
|
|
|
char *artist;
|
|
|
|
char *album;
|
|
|
|
char *title;
|
|
|
|
char *genre;
|
|
|
|
char *comment;
|
|
|
|
char *url;
|
|
|
|
char *date;
|
2008-03-18 00:23:16 +00:00
|
|
|
char* playlist;
|
2008-02-20 20:30:45 +00:00
|
|
|
int tracknr;
|
|
|
|
int bitrate;
|
|
|
|
unsigned int id;
|
|
|
|
int duration;
|
|
|
|
int elapsed;
|
2008-03-18 00:23:16 +00:00
|
|
|
int timesplayed;
|
2008-02-20 20:30:45 +00:00
|
|
|
float size;
|
|
|
|
|
|
|
|
float progress;
|
|
|
|
char *status;
|
2006-03-25 21:21:07 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2006-11-03 20:54:52 +00:00
|
|
|
#ifdef AUDACIOUS
|
|
|
|
struct audacious_s {
|
2008-02-20 20:30:45 +00:00
|
|
|
audacious_t items; /* e.g. items[AUDACIOUS_STATUS] */
|
|
|
|
int max_title_len; /* e.g. ${audacious_title 50} */
|
2006-11-15 01:20:49 +00:00
|
|
|
timed_thread *p_timed_thread;
|
2006-11-03 20:54:52 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2005-12-30 09:44:40 +00:00
|
|
|
#ifdef BMPX
|
2006-01-02 03:39:51 +00:00
|
|
|
void update_bmpx();
|
2005-12-30 09:44:40 +00:00
|
|
|
struct bmpx_s {
|
|
|
|
char *title;
|
|
|
|
char *artist;
|
|
|
|
char *album;
|
|
|
|
char *uri;
|
|
|
|
int bitrate;
|
|
|
|
int track;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2006-11-30 20:46:34 +00:00
|
|
|
void update_entropy();
|
|
|
|
struct entropy_s {
|
|
|
|
unsigned int entropy_avail;
|
|
|
|
unsigned int poolsize;
|
|
|
|
};
|
|
|
|
|
2008-03-18 00:23:16 +00:00
|
|
|
struct usr_info {
|
|
|
|
char *names;
|
|
|
|
char *times;
|
|
|
|
char *terms;
|
|
|
|
int number;
|
|
|
|
};
|
|
|
|
|
2005-10-31 05:17:06 +00:00
|
|
|
#ifdef TCP_PORT_MONITOR
|
|
|
|
#include "libtcp-portmon.h"
|
2006-12-09 05:40:08 +00:00
|
|
|
#define MAX_PORT_MONITOR_CONNECTIONS_DEFAULT 256
|
2005-10-31 05:17:06 +00:00
|
|
|
#endif
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
enum {
|
|
|
|
INFO_CPU = 0,
|
|
|
|
INFO_MAIL = 1,
|
|
|
|
INFO_MEM = 2,
|
|
|
|
INFO_NET = 3,
|
2006-11-05 00:23:18 +00:00
|
|
|
INFO_PROCS = 4,
|
|
|
|
INFO_RUN_PROCS = 5,
|
|
|
|
INFO_UPTIME = 6,
|
|
|
|
INFO_BUFFERS = 7,
|
|
|
|
INFO_FS = 8,
|
2007-08-13 23:14:01 +00:00
|
|
|
INFO_SYSFS = 9,
|
2006-11-05 00:23:18 +00:00
|
|
|
INFO_MIXER = 10,
|
|
|
|
INFO_LOADAVG = 11,
|
|
|
|
INFO_UNAME = 12,
|
|
|
|
INFO_FREQ = 13,
|
2005-07-20 00:30:40 +00:00
|
|
|
#ifdef MPD
|
2006-11-05 00:23:18 +00:00
|
|
|
INFO_MPD = 14,
|
2005-07-20 00:30:40 +00:00
|
|
|
#endif
|
2006-11-05 00:23:18 +00:00
|
|
|
INFO_TOP = 15,
|
|
|
|
INFO_WIFI = 16,
|
|
|
|
INFO_DISKIO = 17,
|
|
|
|
INFO_I8K = 18,
|
2005-10-31 05:17:06 +00:00
|
|
|
#ifdef TCP_PORT_MONITOR
|
2008-02-20 20:30:45 +00:00
|
|
|
INFO_TCP_PORT_MONITOR = 19,
|
2005-10-31 05:17:06 +00:00
|
|
|
#endif
|
2006-11-03 20:54:52 +00:00
|
|
|
#ifdef AUDACIOUS
|
2006-11-05 00:23:18 +00:00
|
|
|
INFO_AUDACIOUS = 20,
|
2006-11-03 20:54:52 +00:00
|
|
|
#endif
|
2006-01-08 08:02:37 +00:00
|
|
|
#ifdef BMPX
|
2006-11-05 00:23:18 +00:00
|
|
|
INFO_BMPX = 21,
|
2006-01-07 07:01:22 +00:00
|
|
|
#endif
|
2006-03-25 21:21:07 +00:00
|
|
|
#ifdef XMMS2
|
2006-11-05 00:23:18 +00:00
|
|
|
INFO_XMMS2 = 22,
|
2006-03-25 21:21:07 +00:00
|
|
|
#endif
|
2006-11-30 20:46:34 +00:00
|
|
|
INFO_ENTROPY = 23,
|
2007-05-06 12:17:13 +00:00
|
|
|
#ifdef RSS
|
|
|
|
INFO_RSS = 24,
|
|
|
|
#endif
|
2008-03-18 00:23:16 +00:00
|
|
|
#ifdef SMAPI
|
|
|
|
INFO_SMAPI = 25,
|
|
|
|
#endif
|
|
|
|
INFO_USERS = 26,
|
2005-07-20 00:30:40 +00:00
|
|
|
};
|
|
|
|
|
2006-12-12 23:21:14 +00:00
|
|
|
/* get_battery_stuff() item selector */
|
|
|
|
enum {
|
|
|
|
BATTERY_STATUS,
|
|
|
|
BATTERY_TIME
|
|
|
|
};
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
#ifdef MPD
|
|
|
|
#include "libmpdclient.h"
|
|
|
|
#endif
|
|
|
|
|
2006-12-23 06:01:16 +00:00
|
|
|
/* Update interval */
|
|
|
|
double update_interval;
|
|
|
|
|
2005-11-01 06:51:48 +00:00
|
|
|
volatile int g_signal_pending;
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
struct information {
|
|
|
|
unsigned int mask;
|
|
|
|
|
|
|
|
struct utsname uname_s;
|
|
|
|
|
|
|
|
char freq[10];
|
|
|
|
|
|
|
|
double uptime;
|
|
|
|
|
|
|
|
/* memory information in kilobytes */
|
2006-11-15 03:28:37 +00:00
|
|
|
unsigned long long mem, memmax, swap, swapmax;
|
|
|
|
unsigned long long bufmem, buffers, cached;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2005-11-27 06:56:35 +00:00
|
|
|
unsigned short procs;
|
|
|
|
unsigned short run_procs;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2005-08-27 09:29:24 +00:00
|
|
|
float *cpu_usage;
|
2008-02-20 20:30:45 +00:00
|
|
|
/* struct cpu_stat cpu_summed; what the hell is this? */
|
2005-07-20 00:30:40 +00:00
|
|
|
unsigned int cpu_count;
|
|
|
|
unsigned int cpu_avg_samples;
|
|
|
|
|
|
|
|
unsigned int net_avg_samples;
|
|
|
|
|
|
|
|
float loadavg[3];
|
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
struct mail_s *mail;
|
2006-05-08 22:34:38 +00:00
|
|
|
int mail_running;
|
2005-07-20 00:30:40 +00:00
|
|
|
#ifdef MPD
|
|
|
|
struct mpd_s mpd;
|
|
|
|
mpd_Connection *conn;
|
2005-12-30 09:44:40 +00:00
|
|
|
#endif
|
2006-03-25 21:21:07 +00:00
|
|
|
#ifdef XMMS2
|
|
|
|
struct xmms2_s xmms2;
|
|
|
|
int xmms2_conn_state;
|
2008-02-20 20:30:45 +00:00
|
|
|
xmms_socket_t xmms2_fd;
|
2006-03-25 21:21:07 +00:00
|
|
|
fd_set xmms2_fdset;
|
|
|
|
xmmsc_connection_t *xmms2_conn;
|
|
|
|
#endif
|
2006-11-03 20:54:52 +00:00
|
|
|
#ifdef AUDACIOUS
|
|
|
|
struct audacious_s audacious;
|
|
|
|
#endif
|
2005-12-30 09:44:40 +00:00
|
|
|
#ifdef BMPX
|
|
|
|
struct bmpx_s bmpx;
|
2005-07-20 00:30:40 +00:00
|
|
|
#endif
|
2008-03-18 00:23:16 +00:00
|
|
|
struct usr_info users;
|
2005-07-25 00:22:16 +00:00
|
|
|
struct process *cpu[10];
|
|
|
|
struct process *memu[10];
|
2005-11-10 04:19:43 +00:00
|
|
|
struct process *first_process;
|
2005-07-20 00:30:40 +00:00
|
|
|
unsigned long looped;
|
2005-10-31 05:17:06 +00:00
|
|
|
#ifdef TCP_PORT_MONITOR
|
2008-02-20 20:30:45 +00:00
|
|
|
tcp_port_monitor_collection_t *p_tcp_port_monitor_collection;
|
2005-10-31 05:17:06 +00:00
|
|
|
#endif
|
2006-11-30 20:46:34 +00:00
|
|
|
struct entropy_s entropy;
|
2008-02-20 20:30:45 +00:00
|
|
|
double music_player_interval;
|
2007-10-17 20:31:27 +00:00
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
short kflags; /* kernel settings, see enum KFLAG */
|
2005-07-20 00:30:40 +00:00
|
|
|
};
|
|
|
|
|
2005-11-27 06:56:35 +00:00
|
|
|
enum {
|
2008-02-20 20:30:45 +00:00
|
|
|
/* set to true if kernel uses "long" format for /proc/stats */
|
|
|
|
KFLAG_IS_LONGSTAT = 0x01,
|
|
|
|
/* set to true if kernel shows # of threads for the proc value
|
|
|
|
* in sysinfo() call */
|
|
|
|
KFLAG_PROC_IS_THREADS = 0x02
|
|
|
|
/* bits 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 available for future use */
|
|
|
|
/* KFLAG_NEXT_ONE = 0x04 */
|
|
|
|
};
|
2005-11-27 06:56:35 +00:00
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
#define KFLAG_SETON(a) info.kflags |= a
|
2005-11-27 06:56:35 +00:00
|
|
|
#define KFLAG_SETOFF(a) info.kflags &= (~a)
|
|
|
|
#define KFLAG_FLIP(a) info.kflags ^= a
|
|
|
|
#define KFLAG_ISSET(a) info.kflags & a
|
|
|
|
|
2005-08-08 01:18:52 +00:00
|
|
|
int out_to_console;
|
|
|
|
|
|
|
|
int top_cpu;
|
|
|
|
int top_mem;
|
|
|
|
|
|
|
|
int use_spacer;
|
|
|
|
|
2008-02-09 02:21:06 +00:00
|
|
|
enum spacer_opts { NO_SPACER = 0, LEFT_SPACER, RIGHT_SPACER };
|
|
|
|
|
2008-03-19 22:28:23 +00:00
|
|
|
char *tmpstring1;
|
|
|
|
char *tmpstring2;
|
2005-08-02 05:06:53 +00:00
|
|
|
|
2005-08-08 01:18:52 +00:00
|
|
|
#ifdef X11
|
2005-07-20 00:30:40 +00:00
|
|
|
/* in x11.c */
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
|
|
|
|
#ifdef XFT
|
|
|
|
#include <X11/Xft/Xft.h>
|
|
|
|
#endif
|
|
|
|
|
2006-11-07 01:19:32 +00:00
|
|
|
#ifdef HAVE_XDBE
|
2005-07-20 00:30:40 +00:00
|
|
|
#include <X11/extensions/Xdbe.h>
|
|
|
|
#endif
|
|
|
|
|
2006-03-07 04:47:30 +00:00
|
|
|
#define ATOM(a) XInternAtom(display, #a, False)
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2006-03-06 23:35:41 +00:00
|
|
|
#ifdef OWN_WINDOW
|
2006-03-08 22:17:27 +00:00
|
|
|
enum _window_type {
|
2008-02-20 20:30:45 +00:00
|
|
|
TYPE_NORMAL = 0,
|
|
|
|
TYPE_DESKTOP,
|
2006-03-09 02:28:38 +00:00
|
|
|
TYPE_OVERRIDE
|
2006-03-08 22:17:27 +00:00
|
|
|
};
|
|
|
|
|
2006-03-06 23:35:41 +00:00
|
|
|
enum _window_hints {
|
|
|
|
HINT_UNDECORATED = 0,
|
|
|
|
HINT_BELOW,
|
|
|
|
HINT_ABOVE,
|
|
|
|
HINT_STICKY,
|
|
|
|
HINT_SKIP_TASKBAR,
|
|
|
|
HINT_SKIP_PAGER
|
|
|
|
};
|
2008-02-20 20:30:45 +00:00
|
|
|
|
|
|
|
#define SET_HINT(mask, hint) (mask |= (1 << hint))
|
|
|
|
#define TEST_HINT(mask, hint) (mask & (1 << hint))
|
2006-03-06 23:35:41 +00:00
|
|
|
#endif
|
2008-02-20 20:30:45 +00:00
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
struct conky_window {
|
2008-02-20 20:30:45 +00:00
|
|
|
Window root, window, desktop;
|
2005-07-20 00:30:40 +00:00
|
|
|
Drawable drawable;
|
|
|
|
GC gc;
|
2006-11-07 02:19:58 +00:00
|
|
|
#ifdef HAVE_XDBE
|
2005-07-20 00:30:40 +00:00
|
|
|
XdbeBackBuffer back_buffer;
|
|
|
|
#endif
|
|
|
|
#ifdef XFT
|
|
|
|
XftDraw *xftdraw;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
#ifdef OWN_WINDOW
|
2006-12-23 06:01:16 +00:00
|
|
|
char class_name[256];
|
2008-02-20 20:30:45 +00:00
|
|
|
char title[256];
|
2005-07-20 00:30:40 +00:00
|
|
|
int x;
|
|
|
|
int y;
|
2006-03-08 22:17:27 +00:00
|
|
|
unsigned int type;
|
2006-03-06 23:35:41 +00:00
|
|
|
unsigned long hints;
|
2005-07-20 00:30:40 +00:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2006-11-07 02:19:58 +00:00
|
|
|
#ifdef HAVE_XDBE
|
2005-07-20 00:30:40 +00:00
|
|
|
extern int use_xdbe;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XFT
|
|
|
|
extern int use_xft;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern Display *display;
|
|
|
|
extern int display_width;
|
|
|
|
extern int display_height;
|
|
|
|
extern int screen;
|
|
|
|
|
|
|
|
extern int workarea[4];
|
|
|
|
|
|
|
|
extern struct conky_window window;
|
|
|
|
|
|
|
|
void init_X11();
|
2008-02-20 20:30:45 +00:00
|
|
|
void init_window(int use_own_window, int width, int height, int set_trans,
|
|
|
|
int back_colour, char **argv, int argc);
|
2005-07-20 00:30:40 +00:00
|
|
|
void create_gc();
|
|
|
|
void set_transparent_background(Window win);
|
|
|
|
long get_x11_color(const char *);
|
|
|
|
|
2005-08-08 01:18:52 +00:00
|
|
|
#endif /* X11 */
|
|
|
|
|
2008-01-06 01:35:14 +00:00
|
|
|
int cpu_separate;
|
2008-02-09 02:21:06 +00:00
|
|
|
int short_units;
|
2008-01-06 01:35:14 +00:00
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
/* in common.c */
|
|
|
|
|
|
|
|
/* struct that has all info */
|
|
|
|
struct information info;
|
|
|
|
|
2005-11-01 06:51:48 +00:00
|
|
|
void signal_handler(int);
|
|
|
|
void reload_config(void);
|
|
|
|
void clean_up(void);
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
void update_uname();
|
|
|
|
double get_time(void);
|
|
|
|
FILE *open_file(const char *file, int *reported);
|
|
|
|
void variable_substitute(const char *s, char *dest, unsigned int n);
|
|
|
|
void format_seconds(char *buf, unsigned int n, long t);
|
|
|
|
void format_seconds_short(char *buf, unsigned int n, long t);
|
|
|
|
struct net_stat *get_net_stat(const char *dev);
|
2006-12-23 06:01:16 +00:00
|
|
|
void clear_net_stats(void);
|
2008-03-18 00:23:16 +00:00
|
|
|
void update_users();
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
void update_stuff();
|
|
|
|
|
2005-08-30 14:59:37 +00:00
|
|
|
int round_to_int(float f);
|
|
|
|
|
2005-07-30 11:23:26 +00:00
|
|
|
extern unsigned long long need_mask;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
extern double current_update_time, last_update_time;
|
|
|
|
|
|
|
|
extern int no_buffers;
|
|
|
|
|
|
|
|
/* system dependant (in linux.c) */
|
|
|
|
|
2007-08-05 04:47:21 +00:00
|
|
|
int check_mount(char *s);
|
2005-08-26 02:52:54 +00:00
|
|
|
void update_diskio(void);
|
2005-07-20 00:30:40 +00:00
|
|
|
void prepare_update(void);
|
|
|
|
void update_uptime(void);
|
|
|
|
void update_meminfo(void);
|
|
|
|
void update_net_stats(void);
|
|
|
|
void update_cpu_usage(void);
|
|
|
|
void update_total_processes(void);
|
|
|
|
void update_running_processes(void);
|
2005-08-27 07:15:44 +00:00
|
|
|
void update_i8k(void);
|
2008-02-20 20:30:45 +00:00
|
|
|
char get_freq(char *, size_t, char *, int, unsigned int);
|
|
|
|
void get_freq_dynamic(char *, size_t, char *, int);
|
|
|
|
char get_voltage(char *, size_t, char *, int, unsigned int); /* ptarjan */
|
2005-07-20 00:30:40 +00:00
|
|
|
void update_load_average();
|
2008-03-19 22:28:23 +00:00
|
|
|
int interface_up(const char *dev);
|
2007-08-13 00:28:48 +00:00
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
int open_sysfs_sensor(const char *dir, const char *dev, const char *type, int n,
|
|
|
|
int *div, char *devtype);
|
2007-08-13 00:28:48 +00:00
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
#define open_i2c_sensor(dev, type, n, div, devtype) \
|
|
|
|
open_sysfs_sensor("/sys/bus/i2c/devices/", dev, type, n, div, devtype)
|
|
|
|
#define open_platform_sensor(dev, type, n, div, devtype) \
|
|
|
|
open_sysfs_sensor("/sys/bus/platform/devices/", dev, type, n, div, devtype)
|
|
|
|
#define open_hwmon_sensor(dev, type, n, div, devtype) \
|
|
|
|
open_sysfs_sensor("/sys/class/hwmon/", dev, type, n, div, devtype)
|
2007-08-13 23:14:01 +00:00
|
|
|
|
|
|
|
double get_sysfs_info(int *fd, int arg, char *devtype, char *type);
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
void get_adt746x_cpu(char *, size_t);
|
|
|
|
void get_adt746x_fan(char *, size_t);
|
2005-08-26 02:16:35 +00:00
|
|
|
unsigned int get_diskio(void);
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
int open_acpi_temperature(const char *name);
|
|
|
|
double get_acpi_temperature(int fd);
|
2008-02-20 20:30:45 +00:00
|
|
|
void get_acpi_ac_adapter(char *, size_t);
|
|
|
|
void get_acpi_fan(char *, size_t);
|
2006-12-12 23:21:14 +00:00
|
|
|
void get_battery_stuff(char *buf, unsigned int n, const char *bat, int item);
|
2007-04-06 06:11:53 +00:00
|
|
|
int get_battery_perct(const char *bat);
|
|
|
|
int get_battery_perct_bar(const char *bat);
|
2006-04-15 18:00:39 +00:00
|
|
|
void get_ibm_acpi_fan(char *buf, size_t client_buffer_size);
|
|
|
|
void get_ibm_acpi_temps(void);
|
|
|
|
void get_ibm_acpi_volume(char *buf, size_t client_buffer_size);
|
|
|
|
void get_ibm_acpi_brightness(char *buf, size_t client_buffer_size);
|
2006-05-22 03:26:44 +00:00
|
|
|
void get_cpu_count();
|
2006-04-15 18:00:39 +00:00
|
|
|
|
|
|
|
struct ibm_acpi_struct {
|
2008-02-20 20:30:45 +00:00
|
|
|
unsigned int temps[8];
|
2006-04-15 18:00:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ibm_acpi_struct ibm_acpi;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2007-03-01 01:43:43 +00:00
|
|
|
#if defined(__OpenBSD__)
|
|
|
|
void update_obsd_sensors(void);
|
|
|
|
void get_obsd_vendor(char *buf, size_t client_buffer_size);
|
|
|
|
void get_obsd_product(char *buf, size_t client_buffer_size);
|
|
|
|
|
|
|
|
#define OBSD_MAX_SENSORS 256
|
|
|
|
struct obsd_sensors_struct {
|
|
|
|
int device;
|
|
|
|
float temp[MAXSENSORDEVICES][OBSD_MAX_SENSORS];
|
|
|
|
unsigned int fan[MAXSENSORDEVICES][OBSD_MAX_SENSORS];
|
|
|
|
float volt[MAXSENSORDEVICES][OBSD_MAX_SENSORS];
|
|
|
|
};
|
|
|
|
struct obsd_sensors_struct obsd_sensors;
|
|
|
|
#endif /* __OpenBSD__ */
|
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
enum { PB_BATT_STATUS, PB_BATT_PERCENT, PB_BATT_TIME };
|
|
|
|
void get_powerbook_batt_info(char *, size_t, int);
|
2006-04-23 21:35:31 +00:00
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
struct process {
|
|
|
|
struct process *next;
|
|
|
|
struct process *previous;
|
|
|
|
|
|
|
|
pid_t pid;
|
|
|
|
char *name;
|
|
|
|
float amount;
|
2005-11-08 23:03:25 +00:00
|
|
|
unsigned long user_time;
|
|
|
|
unsigned long total;
|
|
|
|
unsigned long kernel_time;
|
|
|
|
unsigned long previous_user_time;
|
|
|
|
unsigned long previous_kernel_time;
|
2008-01-06 01:35:14 +00:00
|
|
|
unsigned long total_cpu_time;
|
2005-07-20 00:30:40 +00:00
|
|
|
unsigned int vsize;
|
|
|
|
unsigned int rss;
|
|
|
|
unsigned int time_stamp;
|
|
|
|
unsigned int counted;
|
|
|
|
unsigned int changed;
|
|
|
|
float totalmem;
|
|
|
|
};
|
|
|
|
|
2007-10-02 23:57:41 +00:00
|
|
|
struct local_mail_s {
|
|
|
|
char *box;
|
|
|
|
int mail_count;
|
|
|
|
int new_mail_count;
|
|
|
|
float interval;
|
|
|
|
time_t last_mtime;
|
|
|
|
double last_update;
|
|
|
|
};
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
void update_top();
|
2005-11-10 04:19:43 +00:00
|
|
|
void free_all_processes();
|
|
|
|
struct process *get_first_process();
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
/* fs-stuff is possibly system dependant (in fs.c) */
|
|
|
|
|
|
|
|
void update_fs_stats(void);
|
|
|
|
struct fs_stat *prepare_fs_stat(const char *path);
|
|
|
|
void clear_fs_stats(void);
|
|
|
|
|
|
|
|
/* in mixer.c */
|
|
|
|
|
|
|
|
int mixer_init(const char *);
|
|
|
|
int mixer_get_avg(int);
|
|
|
|
int mixer_get_left(int);
|
|
|
|
int mixer_get_right(int);
|
|
|
|
|
|
|
|
/* in mail.c */
|
|
|
|
|
|
|
|
extern char *current_mail_spool;
|
|
|
|
|
|
|
|
void update_mail_count();
|
|
|
|
|
2005-08-30 04:19:16 +00:00
|
|
|
/* in freebsd.c */
|
2007-12-31 00:00:35 +00:00
|
|
|
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
2006-03-22 19:27:31 +00:00
|
|
|
kvm_t *kd;
|
|
|
|
#endif
|
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
#if (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) \
|
|
|
|
|| defined(__OpenBSD__)) && (defined(i386) || defined(__i386__))
|
2007-05-06 12:13:38 +00:00
|
|
|
#ifdef __OpenBSD__
|
|
|
|
typedef struct apm_power_info *apm_info_t;
|
2007-05-06 09:32:21 +00:00
|
|
|
#endif
|
2007-05-06 12:13:38 +00:00
|
|
|
int apm_getinfo(int fd, apm_info_t aip);
|
2005-08-30 04:19:16 +00:00
|
|
|
char *get_apm_adapter(void);
|
|
|
|
char *get_apm_battery_life(void);
|
|
|
|
char *get_apm_battery_time(void);
|
|
|
|
#endif
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2006-03-25 21:21:07 +00:00
|
|
|
/* in mpd.c */
|
2005-07-20 00:30:40 +00:00
|
|
|
#ifdef MPD
|
2007-08-31 23:45:41 +00:00
|
|
|
extern void init_mpd_stats(struct information *current_info);
|
2007-08-30 17:21:30 +00:00
|
|
|
void *update_mpd(void);
|
|
|
|
extern timed_thread *mpd_timed_thread;
|
2008-03-19 22:28:23 +00:00
|
|
|
void free_mpd_vars(struct information *current_info);
|
2007-08-30 17:21:30 +00:00
|
|
|
#endif /* MPD */
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2006-11-05 00:23:18 +00:00
|
|
|
/* in xmms2.c */
|
2006-03-25 21:21:07 +00:00
|
|
|
#ifdef XMMS2
|
|
|
|
void update_xmms2();
|
|
|
|
#endif
|
|
|
|
|
2006-08-10 16:56:13 +00:00
|
|
|
/* in hddtemp.c */
|
|
|
|
#ifdef HDDTEMP
|
|
|
|
int scan_hddtemp(const char *arg, char **dev, char **addr, int *port);
|
|
|
|
char *get_hddtemp_info(char *dev, char *addr, int port, char *unit);
|
|
|
|
#endif /* HDDTEMP */
|
|
|
|
|
2007-05-06 12:17:13 +00:00
|
|
|
/* in rss.c */
|
|
|
|
#ifdef RSS
|
2008-02-20 20:30:45 +00:00
|
|
|
PRSS *get_rss_info(char *uri, int delay);
|
2007-06-03 11:20:47 +00:00
|
|
|
void init_rss_info();
|
|
|
|
void free_rss_info();
|
2007-05-06 12:17:13 +00:00
|
|
|
#endif /* RSS */
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
/* in linux.c */
|
|
|
|
|
|
|
|
#endif
|