blob: 0cadcd2f2c46ae69531571354b0d14ba01ce4c6a (
plain)
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
71
72
73
74
75
76
77
78
79
80
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*-
*
* * Copyright (C) 2008 Ali <aliov@xfce.org>
*
* Licensed under the GNU General Public License Version 2
*
* 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 2 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
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __XFPM_CONFIG_H
#define __XFPM_CONFIG_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#if defined(__linux__)
#define SYSTEM_IS_LINUX 1
#endif
G_BEGIN_DECLS
/* Configuration */
#define XFPM_CHANNEL_CFG "xfce4-power-manager"
#define CRITICAL_BATT_ACTION_CFG "/xfce4-power-manager/critical-battery-action"
#define CRITICAL_POWER_LEVEL "/xfce4-power-manager/critical-power-level"
#define POWER_SAVE_ON_BATTERY "/xfce4-power-manager/power-save-on-battery"
#define CPU_FREQ_CONTROL "/xfce4-power-manager/cpu-freq-control"
#define LOCK_SCREEN_ON_SLEEP "/xfce4-power-manager/lock-screen-suspend-hibernate"
#define LCD_BRIGHTNESS_CFG "/xfce4-power-manager/lcd-brightness"
#define BRIGHTNESS_ON_AC "/xfce4-power-manager/brightness-on-ac"
#define BRIGHTNESS_ON_BATTERY "/xfce4-power-manager/brightness-on-battery"
#define LID_SWITCH_ON_AC_CFG "/xfce4-power-manager/lid-action-on-ac"
#define LID_SWITCH_ON_BATTERY_CFG "/xfce4-power-manager/lid-action-on-battery"
#define POWER_SWITCH_CFG "/xfce4-power-manager/power-switch-action"
#define HIBERNATE_SWITCH_CFG "/xfce4-power-manager/hibernate-switch-action"
#define SLEEP_SWITCH_CFG "/xfce4-power-manager/sleep-switch-action"
#define ON_AC_INACTIVITY_TIMEOUT "/xfce4-power-manager/inactivity-on-ac"
#define ON_BATTERY_INACTIVITY_TIMEOUT "/xfce4-power-manager/inactivity-on-battery"
#define INACTIVITY_SLEEP_MODE "/xfce4-power-manager/inactivity-sleep-mode"
#define GENERAL_NOTIFICATION_CFG "/xfce4-power-manager/general-notification"
#define BATT_STATE_NOTIFICATION_CFG "/xfce4-power-manager/battery-state-notification" /* default TRUE */
#define SHOW_SLEEP_ERRORS_CFG "/xfce4-power-manager/show-sleep-errors"
#define SHOW_POWER_MANAGEMENT_ERROR "/xfce4-power-manager/show-power-management-error"
#define SHOW_TRAY_ICON_CFG "/xfce4-power-manager/show-tray-icon" /* default 0 = always,1 = when charging or discharging, 2 = when battery is present */
#ifdef HAVE_DPMS
#define DPMS_ENABLED_CFG "/xfce4-power-manager/dpms-enabled"
#define ON_BATT_DPMS_SLEEP "/xfce4-power-manager/on-battery-dpms-sleep"
#define ON_BATT_DPMS_OFF "/xfce4-power-manager/on-battery-dpms-off"
#define ON_AC_DPMS_SLEEP "/xfce4-power-manager/on-ac-dpms-sleep"
#define ON_AC_DPMS_OFF "/xfce4-power-manager/on-ac-dpms-off"
#define DPMS_SLEEP_MODE "/xfce4-power-manager/dpms-sleep-mode" /* 0= sleep, 1=suspend */
#endif
#define ENABLE_BRIGHTNESS_CONTROL "/xfce4-power-manager/change-brightness-on-key-events"
G_END_DECLS
#endif /* __XFPM_CONFIG_H */
|