mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-16 10:05:22 +00:00
9a85812e06
Some statics are now defined by configure.ac.in, conky.h got a lot smaller, which I see as a positive sign. This patch should not change any functionality, just change what's defined where. Some features I did/could not test are probably broken, also compiling for any other OS surely won't complete now. Though I think fixing these problems is as easy as including some missing headers. I've done compile checks with the following configure options: ./configure --enable-eve --enable-rss --enable-smapi --enable-wlan --enable-debug --enable-testing So what needs to be tested is: - audacious - BMPx - xmms2 - nvidia
95 lines
2.8 KiB
C
95 lines
2.8 KiB
C
#ifndef _COMMON_H
|
|
#define _COMMON_H
|
|
|
|
#include <stdio.h>
|
|
#include <sys/socket.h>
|
|
|
|
int check_mount(char *s);
|
|
void update_diskio(void);
|
|
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_uname(void);
|
|
void update_running_processes(void);
|
|
void update_i8k(void);
|
|
void update_stuff(void);
|
|
char get_freq(char *, size_t, const char *, int, unsigned int);
|
|
void get_freq_dynamic(char *, size_t, const char *, int);
|
|
char get_voltage(char *, size_t, const char *, int, unsigned int); /* ptarjan */
|
|
void update_load_average(void);
|
|
void update_top(void);
|
|
void free_all_processes(void);
|
|
struct process *get_first_process(void);
|
|
void get_cpu_count(void);
|
|
double get_time(void);
|
|
|
|
FILE *open_file(const char *, int *);
|
|
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);
|
|
|
|
#ifdef X11
|
|
void update_x11info(void);
|
|
#endif
|
|
|
|
int round_to_int(float);
|
|
|
|
extern unsigned long long need_mask;
|
|
extern int no_buffers;
|
|
|
|
struct dns_data {
|
|
int nscount;
|
|
char **ns_list;
|
|
};
|
|
void free_dns_data(void);
|
|
|
|
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;
|
|
char* addrs;
|
|
double net_rec[15], net_trans[15];
|
|
// wireless extensions
|
|
char essid[32];
|
|
char bitrate[16];
|
|
char mode[16];
|
|
int link_qual;
|
|
int link_qual_max;
|
|
char ap[18];
|
|
};
|
|
void clear_net_stats(void);
|
|
struct net_stat *get_net_stat(const char *);
|
|
|
|
int open_sysfs_sensor(const char *dir, const char *dev, const char *type, int n,
|
|
int *divisor, char *devtype);
|
|
|
|
#define open_i2c_sensor(dev, type, n, divisor, devtype) \
|
|
open_sysfs_sensor("/sys/bus/i2c/devices/", dev, type, n, divisor, devtype)
|
|
#define open_platform_sensor(dev, type, n, divisor, devtype) \
|
|
open_sysfs_sensor("/sys/bus/platform/devices/", dev, type, n, divisor, devtype)
|
|
#define open_hwmon_sensor(dev, type, n, divisor, devtype) \
|
|
open_sysfs_sensor("/sys/class/hwmon/", dev, type, n, divisor, devtype)
|
|
|
|
double get_sysfs_info(int *fd, int arg, char *devtype, char *type);
|
|
|
|
void get_adt746x_cpu(char *, size_t);
|
|
void get_adt746x_fan(char *, size_t);
|
|
unsigned int get_diskio(void);
|
|
|
|
int open_acpi_temperature(const char *name);
|
|
double get_acpi_temperature(int fd);
|
|
void get_acpi_ac_adapter(char *, size_t);
|
|
void get_acpi_fan(char *, size_t);
|
|
void get_battery_stuff(char *buf, unsigned int n, const char *bat, int item);
|
|
int get_battery_perct(const char *bat);
|
|
int get_battery_perct_bar(const char *bat);
|
|
|
|
#endif /* _COMMON_H */
|