blob: fa2f5d5a2238c9c915903a3586579789a94ec1e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
const char *wlan_interface = "wlan0";
const char *eth_interface = "eth0";
/* wmii_path has to be terminated by slash */
const char *wmii_path = "/mnt/wmii/rbar/";
const char *time_format = "%d.%m.%Y %H:%M:%S";
const char *battery = "/sys/class/power_supply/BAT0/uevent";
const char *run_watches[] = {"DHCP", "/var/run/dhclient.pid",
"VPN", "/var/run/vpnc*.pid"};
#define ORDER_RUN "0"
#define ORDER_WLAN "1"
#define ORDER_ETH "2"
#define ORDER_BATTERY "3"
#define ORDER_LOAD "4"
#define ORDER_TIME "5"
#define USE_COLORS
|