View | Details | Raw Unified | Return to bug 157747
Collapse All | Expand All

(-)xfce4-power-manager/Makefile (-4 / +5 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	xfce4-power-manager
8
PORTNAME=	xfce4-power-manager
9
PORTVERSION=	0.8.2
9
PORTVERSION=	1.0.10
10
PORTREVISION=	6
11
CATEGORIES=	sysutils xfce
10
CATEGORIES=	sysutils xfce
12
MASTER_SITES=	${MASTER_SITE_XFCE}
11
MASTER_SITES=	${MASTER_SITE_XFCE}
13
MASTER_SITE_SUBDIR=/src/apps/${PORTNAME}/${PORTVERSION:R}
12
MASTER_SITE_SUBDIR=/src/apps/${PORTNAME}/${PORTVERSION:R}
Lines 16-23 Link Here
16
MAINTAINER=	ports@FreeBSD.org
15
MAINTAINER=	ports@FreeBSD.org
17
COMMENT=	XFce4 power manager
16
COMMENT=	XFce4 power manager
18
17
19
IGNORE=		new versions does not operate correctly on FreeBSD/hal, see ports/154064
18
INSTALLS_ICONS=	yes
20
21
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
22
USE_BZIP2=	yes
20
USE_BZIP2=	yes
23
USE_GETTEXT=	yes
21
USE_GETTEXT=	yes
Lines 25-30 Link Here
25
USE_GNOME=	gnometarget gtk20 intltool intlhack pkgconfig
23
USE_GNOME=	gnometarget gtk20 intltool intlhack pkgconfig
26
USE_XFCE=	configenv libutil libgui panel
24
USE_XFCE=	configenv libutil libgui panel
27
25
26
CONFIGURE_ARGS=	--disable-network-manager\
27
		--enable-polkit
28
28
MAN1=		xfce4-power-manager.1 xfce4-power-manager-settings.1
29
MAN1=		xfce4-power-manager.1 xfce4-power-manager-settings.1
29
30
30
post-patch:
31
post-patch:
(-)xfce4-power-manager/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (xfce4/xfce4-power-manager-0.8.2.tar.bz2) = 6b56989b6b2d35cc4c6e3711b1d8d480d1143d83dba7774ed785f4f2323d5868
1
SHA256 (xfce4/xfce4-power-manager-1.0.10.tar.bz2) = 80e4bb44f81c485ec09654dde432d6e28667d49a787625632a4413aac30422f0
2
SIZE (xfce4/xfce4-power-manager-0.8.2.tar.bz2) = 664701
2
SIZE (xfce4/xfce4-power-manager-1.0.10.tar.bz2) = 1032881
(-)xfce4-power-manager/files/patch-configure (+11 lines)
Line 0 Link Here
1
--- ./configure.orig	2011-02-20 08:29:29.000000000 -0500
2
+++ ./configure	2011-05-29 14:46:28.718111537 -0400
3
@@ -18690,7 +18690,7 @@
4
 	======================================
5
 
6
 	prefix:			${prefix}
7
-	xdg autostart:		${sysconfdir/xdg/autostart}
8
+	xdg autostart:		${sysconfdir}/xdg/autostart
9
 	POLKIT:			${polkit}
10
    	DPMS:   		${have_dpms}
11
 	Network manager:	${ac_network_manager}
(-)xfce4-power-manager/files/patch-src__xfpm-battery.c (+45 lines)
Line 0 Link Here
1
--- ./src/xfpm-battery.c.orig	2011-02-15 08:58:47.000000000 -0500
2
+++ ./src/xfpm-battery.c	2011-05-29 14:46:28.720111315 -0400
3
@@ -144,6 +144,8 @@
4
 	    visible = FALSE;
5
 	else visible = TRUE;
6
     }
7
+    if ( battery->priv->state == XFPM_DEVICE_STATE_UNKNOWN )
8
+	    visible = FALSE;
9
 
10
     XFPM_DEBUG_ENUM (show_icon, XFPM_TYPE_SHOW_ICON, "visible=%s", xfpm_bool_to_string (visible));
11
 			  
12
@@ -537,13 +539,18 @@
13
     }
14
     
15
     state = g_value_get_uint (value);
16
+
17
     if ( state != battery->priv->state )
18
     {
19
 	battery->priv->state = state;
20
 	xfpm_battery_refresh_visible (battery);
21
 	xfpm_battery_notify_state (battery);
22
     }
23
-    
24
+    else {
25
+        if ( battery->priv->state == XFPM_DEVICE_STATE_UNKNOWN )
26
+	    goto out;
27
+    } 
28
+
29
     value = g_hash_table_lookup (props, "Percentage");
30
     
31
     if ( value == NULL )
32
@@ -896,6 +903,13 @@
33
     return battery->priv->battery_name;
34
 }
35
 
36
+XfpmDeviceState xfpm_battery_get_device_state (XfpmBattery *battery)
37
+{
38
+    g_return_val_if_fail (XFPM_IS_BATTERY (battery), XFPM_DEVICE_STATE_UNKNOWN);
39
+    
40
+    return battery->priv->state;
41
+}
42
+
43
 gchar *xfpm_battery_get_time_left (XfpmBattery *battery)
44
 {
45
     g_return_val_if_fail (XFPM_IS_BATTERY (battery), NULL);
(-)xfce4-power-manager/files/patch-src__xfpm-battery.h (+11 lines)
Line 0 Link Here
1
--- ./src/xfpm-battery.h.orig	2011-02-15 04:53:05.000000000 -0500
2
+++ ./src/xfpm-battery.h	2011-05-29 14:46:28.721112321 -0400
3
@@ -62,6 +62,8 @@
4
 
5
 XfpmDeviceType	   	    xfpm_battery_get_device_type (XfpmBattery *battery);
6
 
7
+XfpmDeviceState		    xfpm_battery_get_device_state (XfpmBattery *battery);
8
+
9
 XfpmBatteryCharge	    xfpm_battery_get_charge      (XfpmBattery *battery);
10
 
11
 const gchar 		   *xfpm_battery_get_battery_name(XfpmBattery *battery);
(-)xfce4-power-manager/files/patch-src__xfpm-polkit.c (+12 lines)
Line 0 Link Here
1
--- ./src/xfpm-polkit.c.orig	2011-01-07 09:23:26.000000000 -0500
2
+++ ./src/xfpm-polkit.c	2011-05-29 14:46:28.722111372 -0400
3
@@ -37,8 +37,8 @@
4
 #else
5
 #include <sys/param.h>
6
 #include <sys/sysctl.h>
7
-#include <sys/user.h>
8
 #endif
9
+#include <sys/user.h>
10
 
11
 #include <errno.h>
12
 
(-)xfce4-power-manager/files/patch-src__xfpm-power.c (+56 lines)
Line 0 Link Here
1
--- ./src/xfpm-power.c.orig	2011-02-15 15:30:04.000000000 -0500
2
+++ ./src/xfpm-power.c	2011-05-29 19:25:21.634588113 -0400
3
@@ -1028,6 +1028,9 @@
4
 	g_signal_connect (battery, "battery-charge-changed",
5
 			  G_CALLBACK (xfpm_power_battery_charge_changed_cb), power);
6
 			  
7
+        g_signal_connect_swapped (battery, "battery-charge-changed",
8
+			      G_CALLBACK (xfpm_power_refresh_adaptor_visible), power);
9
+
10
 	xfpm_power_refresh_adaptor_visible (power);
11
     }
12
     else if ( device_type != XFPM_DEVICE_TYPE_LINE_POWER )
13
@@ -1144,6 +1147,11 @@
14
 xfpm_power_refresh_adaptor_visible (XfpmPower *power)
15
 {
16
     XfpmShowIcon show_icon;
17
+    XfpmDeviceState state;
18
+    GtkStatusIcon *battery = NULL;
19
+    gboolean show_adapter_icon;
20
+    guint i, len;
21
+    GList *list;
22
     
23
     g_object_get (G_OBJECT (power->priv->conf),
24
 		  SHOW_TRAY_ICON_CFG, &show_icon,
25
@@ -1153,8 +1161,30 @@
26
     
27
     if ( show_icon == SHOW_ICON_ALWAYS )
28
     {
29
-	if ( g_hash_table_size (power->priv->hash) == 0 )
30
+	show_adapter_icon = TRUE;
31
+	if ( g_hash_table_size (power->priv->hash) != 0 )
32
 	{
33
+            /*
34
+             *  Make sure that a least one battery has a valid state before disabling 
35
+             *  the adapter icon.
36
+             */
37
+            list = g_hash_table_get_values (power->priv->hash);
38
+            len = g_list_length (list);
39
+            
40
+            for ( i = 0; i < len; i++)
41
+            {
42
+        	battery = g_list_nth_data (list, i);
43
+        	state = xfpm_battery_get_device_state(XFPM_BATTERY (battery));
44
+                if ( state != XFPM_DEVICE_STATE_UNKNOWN )
45
+                {
46
+		     show_adapter_icon = FALSE;
47
+        	     break;
48
+                }
49
+            }
50
+        }
51
+ 
52
+	if ( show_adapter_icon )
53
+        {
54
 	    xfpm_power_show_adapter_icon (power);
55
 #if GTK_CHECK_VERSION (2, 16, 0)
56
 	    gtk_status_icon_set_tooltip_text (power->priv->adapter_icon, 
(-)xfce4-power-manager/files/patch-src_xfpm-dpms.c (-11 lines)
Lines 1-11 Link Here
1
--- src/xfpm-dpms.c.orig	2010-05-04 10:58:28.000000000 +0200
2
+++ src/xfpm-dpms.c	2010-05-04 11:24:33.000000000 +0200
3
@@ -32,7 +32,7 @@
4
 
5
 #include <X11/Xproto.h>
6
 #include <X11/extensions/dpms.h>
7
-#include <X11/extensions/dpmsstr.h>
8
+#include <X11/extensions/dpmsproto.h>
9
 
10
 #include <libxfce4util/libxfce4util.h>
11
 
(-)xfce4-power-manager/pkg-plist (-3 / +225 lines)
Lines 1-8 Link Here
1
bin/xfce4-power-information
1
bin/xfce4-power-manager
2
bin/xfce4-power-manager
2
bin/xfce4-power-manager-settings
3
bin/xfce4-power-manager-settings
3
etc/xdg/autostart/xfce4-power-manager.desktop
4
etc/xdg/autostart/xfce4-power-manager.desktop
4
libexec/xfce4/panel-plugins/xfce4-brightness-plugin
5
lib/xfce4/panel-plugins/xfce4-brightness-plugin
6
sbin/xfpm-power-backlight-helper
5
share/applications/xfce4-power-manager-settings.desktop
7
share/applications/xfce4-power-manager-settings.desktop
8
share/icons/hicolor/128x128/devices/processor.png
9
share/icons/hicolor/16x16/actions/xfpm-hibernate.png
10
share/icons/hicolor/16x16/actions/xfpm-suspend.png
11
share/icons/hicolor/16x16/status/xfpm-ac-adapter.png
12
share/icons/hicolor/16x16/status/xfpm-brightness-lcd-invalid.png
13
share/icons/hicolor/16x16/status/xfpm-brightness-lcd.png
14
share/icons/hicolor/16x16/status/xfpm-keyboard-000.png
15
share/icons/hicolor/16x16/status/xfpm-keyboard-030.png
16
share/icons/hicolor/16x16/status/xfpm-keyboard-060.png
17
share/icons/hicolor/16x16/status/xfpm-keyboard-100.png
18
share/icons/hicolor/16x16/status/xfpm-mouse-000.png
19
share/icons/hicolor/16x16/status/xfpm-mouse-030.png
20
share/icons/hicolor/16x16/status/xfpm-mouse-060.png
21
share/icons/hicolor/16x16/status/xfpm-mouse-100.png
22
share/icons/hicolor/16x16/status/xfpm-phone-000.png
23
share/icons/hicolor/16x16/status/xfpm-phone-030.png
24
share/icons/hicolor/16x16/status/xfpm-phone-060.png
25
share/icons/hicolor/16x16/status/xfpm-phone-100.png
26
share/icons/hicolor/16x16/status/xfpm-primary-000-charging.png
27
share/icons/hicolor/16x16/status/xfpm-primary-000.png
28
share/icons/hicolor/16x16/status/xfpm-primary-020-charging.png
29
share/icons/hicolor/16x16/status/xfpm-primary-020.png
30
share/icons/hicolor/16x16/status/xfpm-primary-040-charging.png
31
share/icons/hicolor/16x16/status/xfpm-primary-040.png
32
share/icons/hicolor/16x16/status/xfpm-primary-060-charging.png
33
share/icons/hicolor/16x16/status/xfpm-primary-060.png
34
share/icons/hicolor/16x16/status/xfpm-primary-080-charging.png
35
share/icons/hicolor/16x16/status/xfpm-primary-080.png
36
share/icons/hicolor/16x16/status/xfpm-primary-100-charging.png
37
share/icons/hicolor/16x16/status/xfpm-primary-100.png
38
share/icons/hicolor/16x16/status/xfpm-primary-charged.png
39
share/icons/hicolor/16x16/status/xfpm-primary-missing.png
40
share/icons/hicolor/16x16/status/xfpm-ups-000-charging.png
41
share/icons/hicolor/16x16/status/xfpm-ups-000.png
42
share/icons/hicolor/16x16/status/xfpm-ups-020-charging.png
43
share/icons/hicolor/16x16/status/xfpm-ups-020.png
44
share/icons/hicolor/16x16/status/xfpm-ups-040-charging.png
45
share/icons/hicolor/16x16/status/xfpm-ups-040.png
46
share/icons/hicolor/16x16/status/xfpm-ups-060-charging.png
47
share/icons/hicolor/16x16/status/xfpm-ups-060.png
48
share/icons/hicolor/16x16/status/xfpm-ups-080-charging.png
49
share/icons/hicolor/16x16/status/xfpm-ups-080.png
50
share/icons/hicolor/16x16/status/xfpm-ups-100-charging.png
51
share/icons/hicolor/16x16/status/xfpm-ups-100.png
52
share/icons/hicolor/16x16/status/xfpm-ups-charged.png
53
share/icons/hicolor/16x16/status/xfpm-ups-missing.png
54
share/icons/hicolor/22x22/actions/xfpm-hibernate.png
55
share/icons/hicolor/22x22/actions/xfpm-suspend.png
56
share/icons/hicolor/22x22/status/xfpm-ac-adapter.png
57
share/icons/hicolor/22x22/status/xfpm-brightness-lcd-invalid.png
58
share/icons/hicolor/22x22/status/xfpm-brightness-lcd.png
59
share/icons/hicolor/22x22/status/xfpm-keyboard-000.png
60
share/icons/hicolor/22x22/status/xfpm-keyboard-030.png
61
share/icons/hicolor/22x22/status/xfpm-keyboard-060.png
62
share/icons/hicolor/22x22/status/xfpm-keyboard-100.png
63
share/icons/hicolor/22x22/status/xfpm-mouse-000.png
64
share/icons/hicolor/22x22/status/xfpm-mouse-030.png
65
share/icons/hicolor/22x22/status/xfpm-mouse-060.png
66
share/icons/hicolor/22x22/status/xfpm-mouse-100.png
67
share/icons/hicolor/22x22/status/xfpm-phone-000.png
68
share/icons/hicolor/22x22/status/xfpm-phone-030.png
69
share/icons/hicolor/22x22/status/xfpm-phone-060.png
70
share/icons/hicolor/22x22/status/xfpm-phone-100.png
71
share/icons/hicolor/22x22/status/xfpm-primary-000-charging.png
72
share/icons/hicolor/22x22/status/xfpm-primary-000.png
73
share/icons/hicolor/22x22/status/xfpm-primary-020-charging.png
74
share/icons/hicolor/22x22/status/xfpm-primary-020.png
75
share/icons/hicolor/22x22/status/xfpm-primary-040-charging.png
76
share/icons/hicolor/22x22/status/xfpm-primary-040.png
77
share/icons/hicolor/22x22/status/xfpm-primary-060-charging.png
78
share/icons/hicolor/22x22/status/xfpm-primary-060.png
79
share/icons/hicolor/22x22/status/xfpm-primary-080-charging.png
80
share/icons/hicolor/22x22/status/xfpm-primary-080.png
81
share/icons/hicolor/22x22/status/xfpm-primary-100-charging.png
82
share/icons/hicolor/22x22/status/xfpm-primary-100.png
83
share/icons/hicolor/22x22/status/xfpm-primary-charged.png
84
share/icons/hicolor/22x22/status/xfpm-primary-missing.png
85
share/icons/hicolor/22x22/status/xfpm-ups-000-charging.png
86
share/icons/hicolor/22x22/status/xfpm-ups-000.png
87
share/icons/hicolor/22x22/status/xfpm-ups-020-charging.png
88
share/icons/hicolor/22x22/status/xfpm-ups-020.png
89
share/icons/hicolor/22x22/status/xfpm-ups-040-charging.png
90
share/icons/hicolor/22x22/status/xfpm-ups-040.png
91
share/icons/hicolor/22x22/status/xfpm-ups-060-charging.png
92
share/icons/hicolor/22x22/status/xfpm-ups-060.png
93
share/icons/hicolor/22x22/status/xfpm-ups-080-charging.png
94
share/icons/hicolor/22x22/status/xfpm-ups-080.png
95
share/icons/hicolor/22x22/status/xfpm-ups-100-charging.png
96
share/icons/hicolor/22x22/status/xfpm-ups-100.png
97
share/icons/hicolor/22x22/status/xfpm-ups-charged.png
98
share/icons/hicolor/22x22/status/xfpm-ups-missing.png
99
share/icons/hicolor/24x24/actions/xfpm-hibernate.png
100
share/icons/hicolor/24x24/actions/xfpm-suspend.png
101
share/icons/hicolor/24x24/status/xfpm-ac-adapter.png
102
share/icons/hicolor/24x24/status/xfpm-brightness-lcd-invalid.png
103
share/icons/hicolor/24x24/status/xfpm-brightness-lcd.png
104
share/icons/hicolor/24x24/status/xfpm-keyboard-000.png
105
share/icons/hicolor/24x24/status/xfpm-keyboard-030.png
106
share/icons/hicolor/24x24/status/xfpm-keyboard-060.png
107
share/icons/hicolor/24x24/status/xfpm-keyboard-100.png
108
share/icons/hicolor/24x24/status/xfpm-mouse-000.png
109
share/icons/hicolor/24x24/status/xfpm-mouse-030.png
110
share/icons/hicolor/24x24/status/xfpm-mouse-060.png
111
share/icons/hicolor/24x24/status/xfpm-mouse-100.png
112
share/icons/hicolor/24x24/status/xfpm-phone-000.png
113
share/icons/hicolor/24x24/status/xfpm-phone-030.png
114
share/icons/hicolor/24x24/status/xfpm-phone-060.png
115
share/icons/hicolor/24x24/status/xfpm-phone-100.png
116
share/icons/hicolor/24x24/status/xfpm-primary-000-charging.png
117
share/icons/hicolor/24x24/status/xfpm-primary-000.png
118
share/icons/hicolor/24x24/status/xfpm-primary-020-charging.png
119
share/icons/hicolor/24x24/status/xfpm-primary-020.png
120
share/icons/hicolor/24x24/status/xfpm-primary-040-charging.png
121
share/icons/hicolor/24x24/status/xfpm-primary-040.png
122
share/icons/hicolor/24x24/status/xfpm-primary-060-charging.png
123
share/icons/hicolor/24x24/status/xfpm-primary-060.png
124
share/icons/hicolor/24x24/status/xfpm-primary-080-charging.png
125
share/icons/hicolor/24x24/status/xfpm-primary-080.png
126
share/icons/hicolor/24x24/status/xfpm-primary-100-charging.png
127
share/icons/hicolor/24x24/status/xfpm-primary-100.png
128
share/icons/hicolor/24x24/status/xfpm-primary-charged.png
129
share/icons/hicolor/24x24/status/xfpm-primary-missing.png
130
share/icons/hicolor/24x24/status/xfpm-ups-000-charging.png
131
share/icons/hicolor/24x24/status/xfpm-ups-000.png
132
share/icons/hicolor/24x24/status/xfpm-ups-020-charging.png
133
share/icons/hicolor/24x24/status/xfpm-ups-020.png
134
share/icons/hicolor/24x24/status/xfpm-ups-040-charging.png
135
share/icons/hicolor/24x24/status/xfpm-ups-040.png
136
share/icons/hicolor/24x24/status/xfpm-ups-060-charging.png
137
share/icons/hicolor/24x24/status/xfpm-ups-060.png
138
share/icons/hicolor/24x24/status/xfpm-ups-080-charging.png
139
share/icons/hicolor/24x24/status/xfpm-ups-080.png
140
share/icons/hicolor/24x24/status/xfpm-ups-100-charging.png
141
share/icons/hicolor/24x24/status/xfpm-ups-100.png
142
share/icons/hicolor/24x24/status/xfpm-ups-charged.png
143
share/icons/hicolor/24x24/status/xfpm-ups-missing.png
144
share/icons/hicolor/48x48/actions/xfpm-hibernate.png
145
share/icons/hicolor/48x48/actions/xfpm-suspend.png
146
share/icons/hicolor/48x48/status/xfpm-ac-adapter.png
147
share/icons/hicolor/48x48/status/xfpm-brightness-lcd-invalid.png
148
share/icons/hicolor/48x48/status/xfpm-brightness-lcd.png
149
share/icons/hicolor/48x48/status/xfpm-keyboard-000.png
150
share/icons/hicolor/48x48/status/xfpm-keyboard-030.png
151
share/icons/hicolor/48x48/status/xfpm-keyboard-060.png
152
share/icons/hicolor/48x48/status/xfpm-keyboard-100.png
153
share/icons/hicolor/48x48/status/xfpm-mouse-000.png
154
share/icons/hicolor/48x48/status/xfpm-mouse-030.png
155
share/icons/hicolor/48x48/status/xfpm-mouse-060.png
156
share/icons/hicolor/48x48/status/xfpm-mouse-100.png
157
share/icons/hicolor/48x48/status/xfpm-phone-000.png
158
share/icons/hicolor/48x48/status/xfpm-phone-030.png
159
share/icons/hicolor/48x48/status/xfpm-phone-060.png
160
share/icons/hicolor/48x48/status/xfpm-phone-100.png
161
share/icons/hicolor/48x48/status/xfpm-primary-000-charging.png
162
share/icons/hicolor/48x48/status/xfpm-primary-000.png
163
share/icons/hicolor/48x48/status/xfpm-primary-020-charging.png
164
share/icons/hicolor/48x48/status/xfpm-primary-020.png
165
share/icons/hicolor/48x48/status/xfpm-primary-040-charging.png
166
share/icons/hicolor/48x48/status/xfpm-primary-040.png
167
share/icons/hicolor/48x48/status/xfpm-primary-060-charging.png
168
share/icons/hicolor/48x48/status/xfpm-primary-060.png
169
share/icons/hicolor/48x48/status/xfpm-primary-080-charging.png
170
share/icons/hicolor/48x48/status/xfpm-primary-080.png
171
share/icons/hicolor/48x48/status/xfpm-primary-100-charging.png
172
share/icons/hicolor/48x48/status/xfpm-primary-100.png
173
share/icons/hicolor/48x48/status/xfpm-primary-charged.png
174
share/icons/hicolor/48x48/status/xfpm-primary-missing.png
175
share/icons/hicolor/48x48/status/xfpm-ups-000-charging.png
176
share/icons/hicolor/48x48/status/xfpm-ups-000.png
177
share/icons/hicolor/48x48/status/xfpm-ups-020-charging.png
178
share/icons/hicolor/48x48/status/xfpm-ups-020.png
179
share/icons/hicolor/48x48/status/xfpm-ups-040-charging.png
180
share/icons/hicolor/48x48/status/xfpm-ups-040.png
181
share/icons/hicolor/48x48/status/xfpm-ups-060-charging.png
182
share/icons/hicolor/48x48/status/xfpm-ups-060.png
183
share/icons/hicolor/48x48/status/xfpm-ups-080-charging.png
184
share/icons/hicolor/48x48/status/xfpm-ups-080.png
185
share/icons/hicolor/48x48/status/xfpm-ups-100-charging.png
186
share/icons/hicolor/48x48/status/xfpm-ups-100.png
187
share/icons/hicolor/48x48/status/xfpm-ups-charged.png
188
share/icons/hicolor/48x48/status/xfpm-ups-missing.png
189
share/icons/hicolor/icon-theme.cache
6
share/icons/hicolor/scalable/actions/xfpm-hibernate.svg
190
share/icons/hicolor/scalable/actions/xfpm-hibernate.svg
7
share/icons/hicolor/scalable/actions/xfpm-suspend.svg
191
share/icons/hicolor/scalable/actions/xfpm-suspend.svg
8
share/icons/hicolor/scalable/status/xfpm-ac-adapter.svg
192
share/icons/hicolor/scalable/status/xfpm-ac-adapter.svg
Lines 48-78 Link Here
48
share/icons/hicolor/scalable/status/xfpm-ups-100.svg
232
share/icons/hicolor/scalable/status/xfpm-ups-100.svg
49
share/icons/hicolor/scalable/status/xfpm-ups-charged.svg
233
share/icons/hicolor/scalable/status/xfpm-ups-charged.svg
50
share/icons/hicolor/scalable/status/xfpm-ups-missing.svg
234
share/icons/hicolor/scalable/status/xfpm-ups-missing.svg
235
share/locale/ast/LC_MESSAGES/xfce4-power-manager.mo
51
share/locale/ca/LC_MESSAGES/xfce4-power-manager.mo
236
share/locale/ca/LC_MESSAGES/xfce4-power-manager.mo
52
share/locale/cs/LC_MESSAGES/xfce4-power-manager.mo
237
share/locale/cs/LC_MESSAGES/xfce4-power-manager.mo
53
share/locale/da/LC_MESSAGES/xfce4-power-manager.mo
238
share/locale/da/LC_MESSAGES/xfce4-power-manager.mo
54
share/locale/de/LC_MESSAGES/xfce4-power-manager.mo
239
share/locale/de/LC_MESSAGES/xfce4-power-manager.mo
55
share/locale/el/LC_MESSAGES/xfce4-power-manager.mo
240
share/locale/el/LC_MESSAGES/xfce4-power-manager.mo
241
share/locale/en_GB/LC_MESSAGES/xfce4-power-manager.mo
56
share/locale/es/LC_MESSAGES/xfce4-power-manager.mo
242
share/locale/es/LC_MESSAGES/xfce4-power-manager.mo
57
share/locale/et/LC_MESSAGES/xfce4-power-manager.mo
243
share/locale/et/LC_MESSAGES/xfce4-power-manager.mo
58
share/locale/eu/LC_MESSAGES/xfce4-power-manager.mo
244
share/locale/eu/LC_MESSAGES/xfce4-power-manager.mo
59
share/locale/fi/LC_MESSAGES/xfce4-power-manager.mo
245
share/locale/fi/LC_MESSAGES/xfce4-power-manager.mo
60
share/locale/fr/LC_MESSAGES/xfce4-power-manager.mo
246
share/locale/fr/LC_MESSAGES/xfce4-power-manager.mo
61
share/locale/gl/LC_MESSAGES/xfce4-power-manager.mo
247
share/locale/gl/LC_MESSAGES/xfce4-power-manager.mo
248
share/locale/hu/LC_MESSAGES/xfce4-power-manager.mo
62
share/locale/id/LC_MESSAGES/xfce4-power-manager.mo
249
share/locale/id/LC_MESSAGES/xfce4-power-manager.mo
63
share/locale/it/LC_MESSAGES/xfce4-power-manager.mo
250
share/locale/it/LC_MESSAGES/xfce4-power-manager.mo
64
share/locale/ja/LC_MESSAGES/xfce4-power-manager.mo
251
share/locale/ja/LC_MESSAGES/xfce4-power-manager.mo
252
share/locale/kk/LC_MESSAGES/xfce4-power-manager.mo
65
share/locale/nb/LC_MESSAGES/xfce4-power-manager.mo
253
share/locale/nb/LC_MESSAGES/xfce4-power-manager.mo
66
share/locale/nl/LC_MESSAGES/xfce4-power-manager.mo
254
share/locale/nl/LC_MESSAGES/xfce4-power-manager.mo
255
share/locale/pa/LC_MESSAGES/xfce4-power-manager.mo
67
share/locale/pt/LC_MESSAGES/xfce4-power-manager.mo
256
share/locale/pt/LC_MESSAGES/xfce4-power-manager.mo
68
share/locale/pt_BR/LC_MESSAGES/xfce4-power-manager.mo
257
share/locale/pt_BR/LC_MESSAGES/xfce4-power-manager.mo
69
share/locale/ru/LC_MESSAGES/xfce4-power-manager.mo
258
share/locale/ru/LC_MESSAGES/xfce4-power-manager.mo
259
share/locale/si/LC_MESSAGES/xfce4-power-manager.mo
260
share/locale/sk/LC_MESSAGES/xfce4-power-manager.mo
70
share/locale/sv/LC_MESSAGES/xfce4-power-manager.mo
261
share/locale/sv/LC_MESSAGES/xfce4-power-manager.mo
71
share/locale/tr/LC_MESSAGES/xfce4-power-manager.mo
262
share/locale/tr/LC_MESSAGES/xfce4-power-manager.mo
263
share/locale/ug/LC_MESSAGES/xfce4-power-manager.mo
72
share/locale/uk/LC_MESSAGES/xfce4-power-manager.mo
264
share/locale/uk/LC_MESSAGES/xfce4-power-manager.mo
73
share/locale/ur/LC_MESSAGES/xfce4-power-manager.mo
265
share/locale/ur/LC_MESSAGES/xfce4-power-manager.mo
74
share/locale/ur_PK/LC_MESSAGES/xfce4-power-manager.mo
266
share/locale/ur_PK/LC_MESSAGES/xfce4-power-manager.mo
75
share/locale/zh_CN/LC_MESSAGES/xfce4-power-manager.mo
267
share/locale/zh_CN/LC_MESSAGES/xfce4-power-manager.mo
268
share/polkit-1/actions/org.xfce.power.policy
76
share/xfce4/doc/C/images/xfpm-brightness-plugin.png
269
share/xfce4/doc/C/images/xfpm-brightness-plugin.png
77
share/xfce4/doc/C/images/xfpm-context-menu.png
270
share/xfce4/doc/C/images/xfpm-context-menu.png
78
share/xfce4/doc/C/images/xfpm-extended-settings.png
271
share/xfce4/doc/C/images/xfpm-extended-settings.png
Lines 84-95 Link Here
84
@dirrmtry share/xfce4/doc/C
277
@dirrmtry share/xfce4/doc/C
85
@dirrmtry share/xfce4/doc
278
@dirrmtry share/xfce4/doc
86
@dirrmtry share/xfce4
279
@dirrmtry share/xfce4
280
@dirrmtry share/polkit-1/actions
281
@dirrmtry share/polkit-1
87
@dirrmtry share/locale/ur_PK/LC_MESSAGES
282
@dirrmtry share/locale/ur_PK/LC_MESSAGES
88
@dirrmtry share/locale/ur_PK
283
@dirrmtry share/locale/ur_PK
89
@dirrmtry share/locale/ur/LC_MESSAGES
284
@dirrmtry share/locale/ur/LC_MESSAGES
90
@dirrmtry share/locale/ur
285
@dirrmtry share/locale/ur
286
@dirrmtry share/locale/ug/LC_MESSAGES
287
@dirrmtry share/locale/ug
288
@dirrmtry share/locale/si/LC_MESSAGES
289
@dirrmtry share/locale/si
290
@dirrmtry share/locale/kk/LC_MESSAGES
291
@dirrmtry share/locale/kk
292
@dirrmtry share/locale/ast/LC_MESSAGES
293
@dirrmtry share/locale/ast
294
@dirrmtry share/icons/hicolor/scalable/status
295
@dirrmtry share/icons/hicolor/scalable/actions
296
@dirrmtry share/icons/hicolor/scalable
297
@dirrmtry share/icons/hicolor/48x48/status
298
@dirrmtry share/icons/hicolor/48x48/actions
299
@dirrmtry share/icons/hicolor/48x48
300
@dirrmtry share/icons/hicolor/24x24/status
301
@dirrmtry share/icons/hicolor/24x24/actions
302
@dirrmtry share/icons/hicolor/24x24
303
@dirrmtry share/icons/hicolor/22x22/status
304
@dirrmtry share/icons/hicolor/22x22/actions
305
@dirrmtry share/icons/hicolor/22x22
306
@dirrmtry share/icons/hicolor/16x16/status
307
@dirrmtry share/icons/hicolor/16x16/actions
308
@dirrmtry share/icons/hicolor/16x16
309
@dirrmtry share/icons/hicolor/128x128/devices
310
@dirrmtry share/icons/hicolor/128x128
311
@dirrmtry share/icons/hicolor
312
@dirrmtry share/icons
91
@dirrmtry share/applications
313
@dirrmtry share/applications
92
@dirrmtry libexec/xfce4/panel-plugins
314
@dirrmtry lib/xfce4/panel-plugins
93
@dirrmtry libexec/xfce4
315
@dirrmtry lib/xfce4
94
@dirrmtry etc/xdg/autostart
316
@dirrmtry etc/xdg/autostart
95
@dirrmtry etc/xdg
317
@dirrmtry etc/xdg

Return to bug 157747