mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
Update to 1.0.10
PR: ports/157747 Submitted by: Christian Mangin <cmangin at arobas.net>
This commit is contained in:
parent
2059327040
commit
598979f1c4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=275672
@ -6,17 +6,16 @@
|
||||
#
|
||||
|
||||
PORTNAME= xfce4-power-manager
|
||||
PORTVERSION= 0.8.2
|
||||
PORTREVISION= 6
|
||||
PORTVERSION= 1.0.10
|
||||
CATEGORIES= sysutils xfce
|
||||
MASTER_SITES= ${MASTER_SITE_XFCE}
|
||||
MASTER_SITE_SUBDIR=/src/apps/${PORTNAME}/${PORTVERSION:R}
|
||||
MASTER_SITE_SUBDIR= src/xfce/${PORTNAME}/${PORTVERSION:R}
|
||||
DIST_SUBDIR= xfce4
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= XFce4 power manager
|
||||
|
||||
IGNORE= new versions does not operate correctly on FreeBSD/hal, see ports/154064
|
||||
LIB_DEPENDS= notify.1:${PORTSDIR}/devel/libnotify
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_BZIP2= yes
|
||||
@ -24,6 +23,9 @@ USE_GETTEXT= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= gnometarget gtk20 intltool intlhack pkgconfig
|
||||
USE_XFCE= configenv libutil libgui panel
|
||||
INSTALLS_ICONS= yes
|
||||
CONFIGURE_ARGS= --disable-network-manager \
|
||||
--enable-polkit
|
||||
|
||||
MAN1= xfce4-power-manager.1 xfce4-power-manager-settings.1
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (xfce4/xfce4-power-manager-0.8.2.tar.bz2) = 6b56989b6b2d35cc4c6e3711b1d8d480d1143d83dba7774ed785f4f2323d5868
|
||||
SIZE (xfce4/xfce4-power-manager-0.8.2.tar.bz2) = 664701
|
||||
SHA256 (xfce4/xfce4-power-manager-1.0.10.tar.bz2) = 80e4bb44f81c485ec09654dde432d6e28667d49a787625632a4413aac30422f0
|
||||
SIZE (xfce4/xfce4-power-manager-1.0.10.tar.bz2) = 1032881
|
||||
|
11
sysutils/xfce4-power-manager/files/patch-configure
Normal file
11
sysutils/xfce4-power-manager/files/patch-configure
Normal file
@ -0,0 +1,11 @@
|
||||
--- ./configure.orig 2011-02-20 08:29:29.000000000 -0500
|
||||
+++ ./configure 2011-05-29 14:46:28.718111537 -0400
|
||||
@@ -18690,7 +18690,7 @@
|
||||
======================================
|
||||
|
||||
prefix: ${prefix}
|
||||
- xdg autostart: ${sysconfdir/xdg/autostart}
|
||||
+ xdg autostart: ${sysconfdir}/xdg/autostart
|
||||
POLKIT: ${polkit}
|
||||
DPMS: ${have_dpms}
|
||||
Network manager: ${ac_network_manager}
|
45
sysutils/xfce4-power-manager/files/patch-src__xfpm-battery.c
Normal file
45
sysutils/xfce4-power-manager/files/patch-src__xfpm-battery.c
Normal file
@ -0,0 +1,45 @@
|
||||
--- ./src/xfpm-battery.c.orig 2011-02-15 08:58:47.000000000 -0500
|
||||
+++ ./src/xfpm-battery.c 2011-05-29 14:46:28.720111315 -0400
|
||||
@@ -144,6 +144,8 @@
|
||||
visible = FALSE;
|
||||
else visible = TRUE;
|
||||
}
|
||||
+ if ( battery->priv->state == XFPM_DEVICE_STATE_UNKNOWN )
|
||||
+ visible = FALSE;
|
||||
|
||||
XFPM_DEBUG_ENUM (show_icon, XFPM_TYPE_SHOW_ICON, "visible=%s", xfpm_bool_to_string (visible));
|
||||
|
||||
@@ -537,13 +539,18 @@
|
||||
}
|
||||
|
||||
state = g_value_get_uint (value);
|
||||
+
|
||||
if ( state != battery->priv->state )
|
||||
{
|
||||
battery->priv->state = state;
|
||||
xfpm_battery_refresh_visible (battery);
|
||||
xfpm_battery_notify_state (battery);
|
||||
}
|
||||
-
|
||||
+ else {
|
||||
+ if ( battery->priv->state == XFPM_DEVICE_STATE_UNKNOWN )
|
||||
+ goto out;
|
||||
+ }
|
||||
+
|
||||
value = g_hash_table_lookup (props, "Percentage");
|
||||
|
||||
if ( value == NULL )
|
||||
@@ -896,6 +903,13 @@
|
||||
return battery->priv->battery_name;
|
||||
}
|
||||
|
||||
+XfpmDeviceState xfpm_battery_get_device_state (XfpmBattery *battery)
|
||||
+{
|
||||
+ g_return_val_if_fail (XFPM_IS_BATTERY (battery), XFPM_DEVICE_STATE_UNKNOWN);
|
||||
+
|
||||
+ return battery->priv->state;
|
||||
+}
|
||||
+
|
||||
gchar *xfpm_battery_get_time_left (XfpmBattery *battery)
|
||||
{
|
||||
g_return_val_if_fail (XFPM_IS_BATTERY (battery), NULL);
|
11
sysutils/xfce4-power-manager/files/patch-src__xfpm-battery.h
Normal file
11
sysutils/xfce4-power-manager/files/patch-src__xfpm-battery.h
Normal file
@ -0,0 +1,11 @@
|
||||
--- ./src/xfpm-battery.h.orig 2011-02-15 04:53:05.000000000 -0500
|
||||
+++ ./src/xfpm-battery.h 2011-05-29 14:46:28.721112321 -0400
|
||||
@@ -62,6 +62,8 @@
|
||||
|
||||
XfpmDeviceType xfpm_battery_get_device_type (XfpmBattery *battery);
|
||||
|
||||
+XfpmDeviceState xfpm_battery_get_device_state (XfpmBattery *battery);
|
||||
+
|
||||
XfpmBatteryCharge xfpm_battery_get_charge (XfpmBattery *battery);
|
||||
|
||||
const gchar *xfpm_battery_get_battery_name(XfpmBattery *battery);
|
12
sysutils/xfce4-power-manager/files/patch-src__xfpm-polkit.c
Normal file
12
sysutils/xfce4-power-manager/files/patch-src__xfpm-polkit.c
Normal file
@ -0,0 +1,12 @@
|
||||
--- ./src/xfpm-polkit.c.orig 2011-01-07 09:23:26.000000000 -0500
|
||||
+++ ./src/xfpm-polkit.c 2011-05-29 14:46:28.722111372 -0400
|
||||
@@ -37,8 +37,8 @@
|
||||
#else
|
||||
#include <sys/param.h>
|
||||
#include <sys/sysctl.h>
|
||||
-#include <sys/user.h>
|
||||
#endif
|
||||
+#include <sys/user.h>
|
||||
|
||||
#include <errno.h>
|
||||
|
56
sysutils/xfce4-power-manager/files/patch-src__xfpm-power.c
Normal file
56
sysutils/xfce4-power-manager/files/patch-src__xfpm-power.c
Normal file
@ -0,0 +1,56 @@
|
||||
--- ./src/xfpm-power.c.orig 2011-02-15 15:30:04.000000000 -0500
|
||||
+++ ./src/xfpm-power.c 2011-05-29 19:25:21.634588113 -0400
|
||||
@@ -1028,6 +1028,9 @@
|
||||
g_signal_connect (battery, "battery-charge-changed",
|
||||
G_CALLBACK (xfpm_power_battery_charge_changed_cb), power);
|
||||
|
||||
+ g_signal_connect_swapped (battery, "battery-charge-changed",
|
||||
+ G_CALLBACK (xfpm_power_refresh_adaptor_visible), power);
|
||||
+
|
||||
xfpm_power_refresh_adaptor_visible (power);
|
||||
}
|
||||
else if ( device_type != XFPM_DEVICE_TYPE_LINE_POWER )
|
||||
@@ -1144,6 +1147,11 @@
|
||||
xfpm_power_refresh_adaptor_visible (XfpmPower *power)
|
||||
{
|
||||
XfpmShowIcon show_icon;
|
||||
+ XfpmDeviceState state;
|
||||
+ GtkStatusIcon *battery = NULL;
|
||||
+ gboolean show_adapter_icon;
|
||||
+ guint i, len;
|
||||
+ GList *list;
|
||||
|
||||
g_object_get (G_OBJECT (power->priv->conf),
|
||||
SHOW_TRAY_ICON_CFG, &show_icon,
|
||||
@@ -1153,8 +1161,30 @@
|
||||
|
||||
if ( show_icon == SHOW_ICON_ALWAYS )
|
||||
{
|
||||
- if ( g_hash_table_size (power->priv->hash) == 0 )
|
||||
+ show_adapter_icon = TRUE;
|
||||
+ if ( g_hash_table_size (power->priv->hash) != 0 )
|
||||
{
|
||||
+ /*
|
||||
+ * Make sure that a least one battery has a valid state before disabling
|
||||
+ * the adapter icon.
|
||||
+ */
|
||||
+ list = g_hash_table_get_values (power->priv->hash);
|
||||
+ len = g_list_length (list);
|
||||
+
|
||||
+ for ( i = 0; i < len; i++)
|
||||
+ {
|
||||
+ battery = g_list_nth_data (list, i);
|
||||
+ state = xfpm_battery_get_device_state(XFPM_BATTERY (battery));
|
||||
+ if ( state != XFPM_DEVICE_STATE_UNKNOWN )
|
||||
+ {
|
||||
+ show_adapter_icon = FALSE;
|
||||
+ break;
|
||||
+ }
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
+ if ( show_adapter_icon )
|
||||
+ {
|
||||
xfpm_power_show_adapter_icon (power);
|
||||
#if GTK_CHECK_VERSION (2, 16, 0)
|
||||
gtk_status_icon_set_tooltip_text (power->priv->adapter_icon,
|
@ -1,11 +0,0 @@
|
||||
--- src/xfpm-dpms.c.orig 2010-05-04 10:58:28.000000000 +0200
|
||||
+++ src/xfpm-dpms.c 2010-05-04 11:24:33.000000000 +0200
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
#include <X11/Xproto.h>
|
||||
#include <X11/extensions/dpms.h>
|
||||
-#include <X11/extensions/dpmsstr.h>
|
||||
+#include <X11/extensions/dpmsproto.h>
|
||||
|
||||
#include <libxfce4util/libxfce4util.h>
|
||||
|
@ -1,8 +1,192 @@
|
||||
bin/xfce4-power-information
|
||||
bin/xfce4-power-manager
|
||||
bin/xfce4-power-manager-settings
|
||||
etc/xdg/autostart/xfce4-power-manager.desktop
|
||||
libexec/xfce4/panel-plugins/xfce4-brightness-plugin
|
||||
lib/xfce4/panel-plugins/xfce4-brightness-plugin
|
||||
sbin/xfpm-power-backlight-helper
|
||||
share/applications/xfce4-power-manager-settings.desktop
|
||||
share/icons/hicolor/128x128/devices/processor.png
|
||||
share/icons/hicolor/16x16/actions/xfpm-hibernate.png
|
||||
share/icons/hicolor/16x16/actions/xfpm-suspend.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ac-adapter.png
|
||||
share/icons/hicolor/16x16/status/xfpm-brightness-lcd-invalid.png
|
||||
share/icons/hicolor/16x16/status/xfpm-brightness-lcd.png
|
||||
share/icons/hicolor/16x16/status/xfpm-keyboard-000.png
|
||||
share/icons/hicolor/16x16/status/xfpm-keyboard-030.png
|
||||
share/icons/hicolor/16x16/status/xfpm-keyboard-060.png
|
||||
share/icons/hicolor/16x16/status/xfpm-keyboard-100.png
|
||||
share/icons/hicolor/16x16/status/xfpm-mouse-000.png
|
||||
share/icons/hicolor/16x16/status/xfpm-mouse-030.png
|
||||
share/icons/hicolor/16x16/status/xfpm-mouse-060.png
|
||||
share/icons/hicolor/16x16/status/xfpm-mouse-100.png
|
||||
share/icons/hicolor/16x16/status/xfpm-phone-000.png
|
||||
share/icons/hicolor/16x16/status/xfpm-phone-030.png
|
||||
share/icons/hicolor/16x16/status/xfpm-phone-060.png
|
||||
share/icons/hicolor/16x16/status/xfpm-phone-100.png
|
||||
share/icons/hicolor/16x16/status/xfpm-primary-000-charging.png
|
||||
share/icons/hicolor/16x16/status/xfpm-primary-000.png
|
||||
share/icons/hicolor/16x16/status/xfpm-primary-020-charging.png
|
||||
share/icons/hicolor/16x16/status/xfpm-primary-020.png
|
||||
share/icons/hicolor/16x16/status/xfpm-primary-040-charging.png
|
||||
share/icons/hicolor/16x16/status/xfpm-primary-040.png
|
||||
share/icons/hicolor/16x16/status/xfpm-primary-060-charging.png
|
||||
share/icons/hicolor/16x16/status/xfpm-primary-060.png
|
||||
share/icons/hicolor/16x16/status/xfpm-primary-080-charging.png
|
||||
share/icons/hicolor/16x16/status/xfpm-primary-080.png
|
||||
share/icons/hicolor/16x16/status/xfpm-primary-100-charging.png
|
||||
share/icons/hicolor/16x16/status/xfpm-primary-100.png
|
||||
share/icons/hicolor/16x16/status/xfpm-primary-charged.png
|
||||
share/icons/hicolor/16x16/status/xfpm-primary-missing.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ups-000-charging.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ups-000.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ups-020-charging.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ups-020.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ups-040-charging.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ups-040.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ups-060-charging.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ups-060.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ups-080-charging.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ups-080.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ups-100-charging.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ups-100.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ups-charged.png
|
||||
share/icons/hicolor/16x16/status/xfpm-ups-missing.png
|
||||
share/icons/hicolor/22x22/actions/xfpm-hibernate.png
|
||||
share/icons/hicolor/22x22/actions/xfpm-suspend.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ac-adapter.png
|
||||
share/icons/hicolor/22x22/status/xfpm-brightness-lcd-invalid.png
|
||||
share/icons/hicolor/22x22/status/xfpm-brightness-lcd.png
|
||||
share/icons/hicolor/22x22/status/xfpm-keyboard-000.png
|
||||
share/icons/hicolor/22x22/status/xfpm-keyboard-030.png
|
||||
share/icons/hicolor/22x22/status/xfpm-keyboard-060.png
|
||||
share/icons/hicolor/22x22/status/xfpm-keyboard-100.png
|
||||
share/icons/hicolor/22x22/status/xfpm-mouse-000.png
|
||||
share/icons/hicolor/22x22/status/xfpm-mouse-030.png
|
||||
share/icons/hicolor/22x22/status/xfpm-mouse-060.png
|
||||
share/icons/hicolor/22x22/status/xfpm-mouse-100.png
|
||||
share/icons/hicolor/22x22/status/xfpm-phone-000.png
|
||||
share/icons/hicolor/22x22/status/xfpm-phone-030.png
|
||||
share/icons/hicolor/22x22/status/xfpm-phone-060.png
|
||||
share/icons/hicolor/22x22/status/xfpm-phone-100.png
|
||||
share/icons/hicolor/22x22/status/xfpm-primary-000-charging.png
|
||||
share/icons/hicolor/22x22/status/xfpm-primary-000.png
|
||||
share/icons/hicolor/22x22/status/xfpm-primary-020-charging.png
|
||||
share/icons/hicolor/22x22/status/xfpm-primary-020.png
|
||||
share/icons/hicolor/22x22/status/xfpm-primary-040-charging.png
|
||||
share/icons/hicolor/22x22/status/xfpm-primary-040.png
|
||||
share/icons/hicolor/22x22/status/xfpm-primary-060-charging.png
|
||||
share/icons/hicolor/22x22/status/xfpm-primary-060.png
|
||||
share/icons/hicolor/22x22/status/xfpm-primary-080-charging.png
|
||||
share/icons/hicolor/22x22/status/xfpm-primary-080.png
|
||||
share/icons/hicolor/22x22/status/xfpm-primary-100-charging.png
|
||||
share/icons/hicolor/22x22/status/xfpm-primary-100.png
|
||||
share/icons/hicolor/22x22/status/xfpm-primary-charged.png
|
||||
share/icons/hicolor/22x22/status/xfpm-primary-missing.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ups-000-charging.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ups-000.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ups-020-charging.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ups-020.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ups-040-charging.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ups-040.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ups-060-charging.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ups-060.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ups-080-charging.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ups-080.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ups-100-charging.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ups-100.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ups-charged.png
|
||||
share/icons/hicolor/22x22/status/xfpm-ups-missing.png
|
||||
share/icons/hicolor/24x24/actions/xfpm-hibernate.png
|
||||
share/icons/hicolor/24x24/actions/xfpm-suspend.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ac-adapter.png
|
||||
share/icons/hicolor/24x24/status/xfpm-brightness-lcd-invalid.png
|
||||
share/icons/hicolor/24x24/status/xfpm-brightness-lcd.png
|
||||
share/icons/hicolor/24x24/status/xfpm-keyboard-000.png
|
||||
share/icons/hicolor/24x24/status/xfpm-keyboard-030.png
|
||||
share/icons/hicolor/24x24/status/xfpm-keyboard-060.png
|
||||
share/icons/hicolor/24x24/status/xfpm-keyboard-100.png
|
||||
share/icons/hicolor/24x24/status/xfpm-mouse-000.png
|
||||
share/icons/hicolor/24x24/status/xfpm-mouse-030.png
|
||||
share/icons/hicolor/24x24/status/xfpm-mouse-060.png
|
||||
share/icons/hicolor/24x24/status/xfpm-mouse-100.png
|
||||
share/icons/hicolor/24x24/status/xfpm-phone-000.png
|
||||
share/icons/hicolor/24x24/status/xfpm-phone-030.png
|
||||
share/icons/hicolor/24x24/status/xfpm-phone-060.png
|
||||
share/icons/hicolor/24x24/status/xfpm-phone-100.png
|
||||
share/icons/hicolor/24x24/status/xfpm-primary-000-charging.png
|
||||
share/icons/hicolor/24x24/status/xfpm-primary-000.png
|
||||
share/icons/hicolor/24x24/status/xfpm-primary-020-charging.png
|
||||
share/icons/hicolor/24x24/status/xfpm-primary-020.png
|
||||
share/icons/hicolor/24x24/status/xfpm-primary-040-charging.png
|
||||
share/icons/hicolor/24x24/status/xfpm-primary-040.png
|
||||
share/icons/hicolor/24x24/status/xfpm-primary-060-charging.png
|
||||
share/icons/hicolor/24x24/status/xfpm-primary-060.png
|
||||
share/icons/hicolor/24x24/status/xfpm-primary-080-charging.png
|
||||
share/icons/hicolor/24x24/status/xfpm-primary-080.png
|
||||
share/icons/hicolor/24x24/status/xfpm-primary-100-charging.png
|
||||
share/icons/hicolor/24x24/status/xfpm-primary-100.png
|
||||
share/icons/hicolor/24x24/status/xfpm-primary-charged.png
|
||||
share/icons/hicolor/24x24/status/xfpm-primary-missing.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ups-000-charging.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ups-000.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ups-020-charging.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ups-020.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ups-040-charging.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ups-040.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ups-060-charging.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ups-060.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ups-080-charging.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ups-080.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ups-100-charging.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ups-100.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ups-charged.png
|
||||
share/icons/hicolor/24x24/status/xfpm-ups-missing.png
|
||||
share/icons/hicolor/48x48/actions/xfpm-hibernate.png
|
||||
share/icons/hicolor/48x48/actions/xfpm-suspend.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ac-adapter.png
|
||||
share/icons/hicolor/48x48/status/xfpm-brightness-lcd-invalid.png
|
||||
share/icons/hicolor/48x48/status/xfpm-brightness-lcd.png
|
||||
share/icons/hicolor/48x48/status/xfpm-keyboard-000.png
|
||||
share/icons/hicolor/48x48/status/xfpm-keyboard-030.png
|
||||
share/icons/hicolor/48x48/status/xfpm-keyboard-060.png
|
||||
share/icons/hicolor/48x48/status/xfpm-keyboard-100.png
|
||||
share/icons/hicolor/48x48/status/xfpm-mouse-000.png
|
||||
share/icons/hicolor/48x48/status/xfpm-mouse-030.png
|
||||
share/icons/hicolor/48x48/status/xfpm-mouse-060.png
|
||||
share/icons/hicolor/48x48/status/xfpm-mouse-100.png
|
||||
share/icons/hicolor/48x48/status/xfpm-phone-000.png
|
||||
share/icons/hicolor/48x48/status/xfpm-phone-030.png
|
||||
share/icons/hicolor/48x48/status/xfpm-phone-060.png
|
||||
share/icons/hicolor/48x48/status/xfpm-phone-100.png
|
||||
share/icons/hicolor/48x48/status/xfpm-primary-000-charging.png
|
||||
share/icons/hicolor/48x48/status/xfpm-primary-000.png
|
||||
share/icons/hicolor/48x48/status/xfpm-primary-020-charging.png
|
||||
share/icons/hicolor/48x48/status/xfpm-primary-020.png
|
||||
share/icons/hicolor/48x48/status/xfpm-primary-040-charging.png
|
||||
share/icons/hicolor/48x48/status/xfpm-primary-040.png
|
||||
share/icons/hicolor/48x48/status/xfpm-primary-060-charging.png
|
||||
share/icons/hicolor/48x48/status/xfpm-primary-060.png
|
||||
share/icons/hicolor/48x48/status/xfpm-primary-080-charging.png
|
||||
share/icons/hicolor/48x48/status/xfpm-primary-080.png
|
||||
share/icons/hicolor/48x48/status/xfpm-primary-100-charging.png
|
||||
share/icons/hicolor/48x48/status/xfpm-primary-100.png
|
||||
share/icons/hicolor/48x48/status/xfpm-primary-charged.png
|
||||
share/icons/hicolor/48x48/status/xfpm-primary-missing.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ups-000-charging.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ups-000.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ups-020-charging.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ups-020.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ups-040-charging.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ups-040.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ups-060-charging.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ups-060.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ups-080-charging.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ups-080.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ups-100-charging.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ups-100.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ups-charged.png
|
||||
share/icons/hicolor/48x48/status/xfpm-ups-missing.png
|
||||
share/icons/hicolor/icon-theme.cache
|
||||
share/icons/hicolor/scalable/actions/xfpm-hibernate.svg
|
||||
share/icons/hicolor/scalable/actions/xfpm-suspend.svg
|
||||
share/icons/hicolor/scalable/status/xfpm-ac-adapter.svg
|
||||
@ -48,31 +232,40 @@ share/icons/hicolor/scalable/status/xfpm-ups-100-charging.svg
|
||||
share/icons/hicolor/scalable/status/xfpm-ups-100.svg
|
||||
share/icons/hicolor/scalable/status/xfpm-ups-charged.svg
|
||||
share/icons/hicolor/scalable/status/xfpm-ups-missing.svg
|
||||
share/locale/ast/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/ca/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/cs/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/da/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/de/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/el/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/en_GB/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/es/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/et/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/eu/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/fi/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/fr/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/gl/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/hu/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/id/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/it/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/ja/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/kk/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/nb/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/nl/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/pa/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/pt/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/ru/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/si/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/sk/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/sv/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/tr/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/ug/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/uk/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/ur/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/ur_PK/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/xfce4-power-manager.mo
|
||||
share/polkit-1/actions/org.xfce.power.policy
|
||||
share/xfce4/doc/C/images/xfpm-brightness-plugin.png
|
||||
share/xfce4/doc/C/images/xfpm-context-menu.png
|
||||
share/xfce4/doc/C/images/xfpm-extended-settings.png
|
||||
@ -84,12 +277,41 @@ share/xfce4/panel-plugins/xfce4-brightness-plugin.desktop
|
||||
@dirrmtry share/xfce4/doc/C
|
||||
@dirrmtry share/xfce4/doc
|
||||
@dirrmtry share/xfce4
|
||||
@dirrmtry share/polkit-1/actions
|
||||
@dirrmtry share/polkit-1
|
||||
@dirrmtry share/locale/ur_PK/LC_MESSAGES
|
||||
@dirrmtry share/locale/ur_PK
|
||||
@dirrmtry share/locale/ur/LC_MESSAGES
|
||||
@dirrmtry share/locale/ur
|
||||
@dirrmtry share/locale/ug/LC_MESSAGES
|
||||
@dirrmtry share/locale/ug
|
||||
@dirrmtry share/locale/si/LC_MESSAGES
|
||||
@dirrmtry share/locale/si
|
||||
@dirrmtry share/locale/kk/LC_MESSAGES
|
||||
@dirrmtry share/locale/kk
|
||||
@dirrmtry share/locale/ast/LC_MESSAGES
|
||||
@dirrmtry share/locale/ast
|
||||
@dirrmtry share/icons/hicolor/scalable/status
|
||||
@dirrmtry share/icons/hicolor/scalable/actions
|
||||
@dirrmtry share/icons/hicolor/scalable
|
||||
@dirrmtry share/icons/hicolor/48x48/status
|
||||
@dirrmtry share/icons/hicolor/48x48/actions
|
||||
@dirrmtry share/icons/hicolor/48x48
|
||||
@dirrmtry share/icons/hicolor/24x24/status
|
||||
@dirrmtry share/icons/hicolor/24x24/actions
|
||||
@dirrmtry share/icons/hicolor/24x24
|
||||
@dirrmtry share/icons/hicolor/22x22/status
|
||||
@dirrmtry share/icons/hicolor/22x22/actions
|
||||
@dirrmtry share/icons/hicolor/22x22
|
||||
@dirrmtry share/icons/hicolor/16x16/status
|
||||
@dirrmtry share/icons/hicolor/16x16/actions
|
||||
@dirrmtry share/icons/hicolor/16x16
|
||||
@dirrmtry share/icons/hicolor/128x128/devices
|
||||
@dirrmtry share/icons/hicolor/128x128
|
||||
@dirrmtry share/icons/hicolor
|
||||
@dirrmtry share/icons
|
||||
@dirrmtry share/applications
|
||||
@dirrmtry libexec/xfce4/panel-plugins
|
||||
@dirrmtry libexec/xfce4
|
||||
@dirrmtry lib/xfce4/panel-plugins
|
||||
@dirrmtry lib/xfce4
|
||||
@dirrmtry etc/xdg/autostart
|
||||
@dirrmtry etc/xdg
|
||||
|
Loading…
Reference in New Issue
Block a user