├── .build.yml ├── .github ├── FUNDING.yml └── issue_template.md ├── .travis.yml ├── .tx └── config ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── applets ├── Makefile.am ├── brightness │ ├── Makefile.am │ ├── brightness-applet-menu.xml │ ├── brightness-applet.c │ ├── gpm-common.c │ ├── gpm-common.h │ ├── meson.build │ ├── org.mate.BrightnessApplet.mate-panel-applet.desktop.in.in │ └── org.mate.panel.applet.BrightnessAppletFactory.service.in └── inhibit │ ├── Makefile.am │ ├── gpm-common.c │ ├── gpm-common.h │ ├── inhibit-applet-menu.xml │ ├── inhibit-applet.c │ ├── meson.build │ ├── org.mate.InhibitApplet.mate-panel-applet.desktop.in.in │ └── org.mate.panel.applet.InhibitAppletFactory.service.in ├── autogen.sh ├── configure.ac ├── data ├── Makefile.am ├── acme.ui ├── gpm-prefs.ui ├── gpm-statistics.ui ├── icons │ ├── 128x128 │ │ ├── actions │ │ │ ├── gpm-hibernate.png │ │ │ └── gpm-suspend.png │ │ ├── apps │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-inhibit-applet.png │ │ │ ├── mate-power-manager.png │ │ │ └── mate-power-statistics.png │ │ └── status │ │ │ ├── gpm-ac-adapter.png │ │ │ ├── gpm-battery-000-charging.png │ │ │ ├── gpm-battery-000.png │ │ │ ├── gpm-battery-020-charging.png │ │ │ ├── gpm-battery-020.png │ │ │ ├── gpm-battery-040-charging.png │ │ │ ├── gpm-battery-040.png │ │ │ ├── gpm-battery-060-charging.png │ │ │ ├── gpm-battery-060.png │ │ │ ├── gpm-battery-080-charging.png │ │ │ ├── gpm-battery-080.png │ │ │ ├── gpm-battery-100-charging.png │ │ │ ├── gpm-battery-100.png │ │ │ ├── gpm-battery-charged.png │ │ │ ├── gpm-battery-empty.png │ │ │ ├── gpm-battery-missing.png │ │ │ ├── gpm-brightness-kbd-disabled.png │ │ │ ├── gpm-brightness-kbd-invalid.png │ │ │ ├── gpm-brightness-kbd.png │ │ │ ├── gpm-brightness-lcd-disabled.png │ │ │ ├── gpm-brightness-lcd-invalid.png │ │ │ ├── gpm-brightness-lcd.png │ │ │ ├── gpm-gaming-input-000.png │ │ │ ├── gpm-gaming-input-020.png │ │ │ ├── gpm-gaming-input-040.png │ │ │ ├── gpm-gaming-input-060.png │ │ │ ├── gpm-gaming-input-080.png │ │ │ ├── gpm-gaming-input-100.png │ │ │ ├── gpm-inhibit-invalid.png │ │ │ ├── gpm-inhibit.png │ │ │ ├── gpm-keyboard-000.png │ │ │ ├── gpm-keyboard-020.png │ │ │ ├── gpm-keyboard-040.png │ │ │ ├── gpm-keyboard-060.png │ │ │ ├── gpm-keyboard-080.png │ │ │ ├── gpm-keyboard-100.png │ │ │ ├── gpm-monitor.png │ │ │ ├── gpm-mouse-000.png │ │ │ ├── gpm-mouse-020.png │ │ │ ├── gpm-mouse-040.png │ │ │ ├── gpm-mouse-060.png │ │ │ ├── gpm-mouse-080.png │ │ │ ├── gpm-mouse-100.png │ │ │ ├── gpm-phone-000.png │ │ │ ├── gpm-phone-020.png │ │ │ ├── gpm-phone-040.png │ │ │ ├── gpm-phone-060.png │ │ │ ├── gpm-phone-080.png │ │ │ ├── gpm-phone-100.png │ │ │ ├── gpm-ups-000-charging.png │ │ │ ├── gpm-ups-000.png │ │ │ ├── gpm-ups-020-charging.png │ │ │ ├── gpm-ups-020.png │ │ │ ├── gpm-ups-040-charging.png │ │ │ ├── gpm-ups-040.png │ │ │ ├── gpm-ups-060-charging.png │ │ │ ├── gpm-ups-060.png │ │ │ ├── gpm-ups-080-charging.png │ │ │ ├── gpm-ups-080.png │ │ │ ├── gpm-ups-100-charging.png │ │ │ ├── gpm-ups-100.png │ │ │ └── gpm-ups-missing.png │ ├── 16x16 │ │ ├── actions │ │ │ ├── gpm-hibernate.png │ │ │ └── gpm-suspend.png │ │ ├── apps │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-inhibit-applet.png │ │ │ ├── mate-power-manager.png │ │ │ └── mate-power-statistics.png │ │ └── status │ │ │ ├── gpm-ac-adapter.png │ │ │ ├── gpm-battery-000-charging.png │ │ │ ├── gpm-battery-000.png │ │ │ ├── gpm-battery-020-charging.png │ │ │ ├── gpm-battery-020.png │ │ │ ├── gpm-battery-040-charging.png │ │ │ ├── gpm-battery-040.png │ │ │ ├── gpm-battery-060-charging.png │ │ │ ├── gpm-battery-060.png │ │ │ ├── gpm-battery-080-charging.png │ │ │ ├── gpm-battery-080.png │ │ │ ├── gpm-battery-100-charging.png │ │ │ ├── gpm-battery-100.png │ │ │ ├── gpm-battery-charged.png │ │ │ ├── gpm-battery-empty.png │ │ │ ├── gpm-battery-missing.png │ │ │ ├── gpm-brightness-kbd-disabled.png │ │ │ ├── gpm-brightness-kbd-invalid.png │ │ │ ├── gpm-brightness-kbd.png │ │ │ ├── gpm-brightness-lcd-disabled.png │ │ │ ├── gpm-brightness-lcd-invalid.png │ │ │ ├── gpm-brightness-lcd.png │ │ │ ├── gpm-gaming-input-000.png │ │ │ ├── gpm-gaming-input-020.png │ │ │ ├── gpm-gaming-input-040.png │ │ │ ├── gpm-gaming-input-060.png │ │ │ ├── gpm-gaming-input-080.png │ │ │ ├── gpm-gaming-input-100.png │ │ │ ├── gpm-inhibit-invalid.png │ │ │ ├── gpm-inhibit.png │ │ │ ├── gpm-keyboard-000.png │ │ │ ├── gpm-keyboard-020.png │ │ │ ├── gpm-keyboard-040.png │ │ │ ├── gpm-keyboard-060.png │ │ │ ├── gpm-keyboard-080.png │ │ │ ├── gpm-keyboard-100.png │ │ │ ├── gpm-mouse-000.png │ │ │ ├── gpm-mouse-020.png │ │ │ ├── gpm-mouse-040.png │ │ │ ├── gpm-mouse-060.png │ │ │ ├── gpm-mouse-080.png │ │ │ ├── gpm-mouse-100.png │ │ │ ├── gpm-phone-000.png │ │ │ ├── gpm-phone-020.png │ │ │ ├── gpm-phone-040.png │ │ │ ├── gpm-phone-060.png │ │ │ ├── gpm-phone-080.png │ │ │ ├── gpm-phone-100.png │ │ │ ├── gpm-ups-000-charging.png │ │ │ ├── gpm-ups-000.png │ │ │ ├── gpm-ups-020-charging.png │ │ │ ├── gpm-ups-020.png │ │ │ ├── gpm-ups-040-charging.png │ │ │ ├── gpm-ups-040.png │ │ │ ├── gpm-ups-060-charging.png │ │ │ ├── gpm-ups-060.png │ │ │ ├── gpm-ups-080-charging.png │ │ │ ├── gpm-ups-080.png │ │ │ ├── gpm-ups-100-charging.png │ │ │ ├── gpm-ups-100.png │ │ │ └── gpm-ups-missing.png │ ├── 22x22 │ │ ├── actions │ │ │ ├── gpm-hibernate.png │ │ │ └── gpm-suspend.png │ │ ├── apps │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-inhibit-applet.png │ │ │ ├── mate-power-manager.png │ │ │ └── mate-power-statistics.png │ │ └── status │ │ │ ├── gpm-ac-adapter.png │ │ │ ├── gpm-battery-000-charging.png │ │ │ ├── gpm-battery-000.png │ │ │ ├── gpm-battery-020-charging.png │ │ │ ├── gpm-battery-020.png │ │ │ ├── gpm-battery-040-charging.png │ │ │ ├── gpm-battery-040.png │ │ │ ├── gpm-battery-060-charging.png │ │ │ ├── gpm-battery-060.png │ │ │ ├── gpm-battery-080-charging.png │ │ │ ├── gpm-battery-080.png │ │ │ ├── gpm-battery-100-charging.png │ │ │ ├── gpm-battery-100.png │ │ │ ├── gpm-battery-charged.png │ │ │ ├── gpm-battery-empty.png │ │ │ ├── gpm-battery-missing.png │ │ │ ├── gpm-brightness-kbd-disabled.png │ │ │ ├── gpm-brightness-kbd-invalid.png │ │ │ ├── gpm-brightness-kbd.png │ │ │ ├── gpm-brightness-lcd-disabled.png │ │ │ ├── gpm-brightness-lcd-invalid.png │ │ │ ├── gpm-brightness-lcd.png │ │ │ ├── gpm-gaming-input-000.png │ │ │ ├── gpm-gaming-input-020.png │ │ │ ├── gpm-gaming-input-040.png │ │ │ ├── gpm-gaming-input-060.png │ │ │ ├── gpm-gaming-input-080.png │ │ │ ├── gpm-gaming-input-100.png │ │ │ ├── gpm-inhibit-invalid.png │ │ │ ├── gpm-inhibit.png │ │ │ ├── gpm-keyboard-000.png │ │ │ ├── gpm-keyboard-020.png │ │ │ ├── gpm-keyboard-040.png │ │ │ ├── gpm-keyboard-060.png │ │ │ ├── gpm-keyboard-080.png │ │ │ ├── gpm-keyboard-100.png │ │ │ ├── gpm-mouse-000.png │ │ │ ├── gpm-mouse-020.png │ │ │ ├── gpm-mouse-040.png │ │ │ ├── gpm-mouse-060.png │ │ │ ├── gpm-mouse-080.png │ │ │ ├── gpm-mouse-100.png │ │ │ ├── gpm-phone-000.png │ │ │ ├── gpm-phone-020.png │ │ │ ├── gpm-phone-040.png │ │ │ ├── gpm-phone-060.png │ │ │ ├── gpm-phone-080.png │ │ │ ├── gpm-phone-100.png │ │ │ ├── gpm-ups-000-charging.png │ │ │ ├── gpm-ups-000.png │ │ │ ├── gpm-ups-020-charging.png │ │ │ ├── gpm-ups-020.png │ │ │ ├── gpm-ups-040-charging.png │ │ │ ├── gpm-ups-040.png │ │ │ ├── gpm-ups-060-charging.png │ │ │ ├── gpm-ups-060.png │ │ │ ├── gpm-ups-080-charging.png │ │ │ ├── gpm-ups-080.png │ │ │ ├── gpm-ups-100-charging.png │ │ │ ├── gpm-ups-100.png │ │ │ └── gpm-ups-missing.png │ ├── 24x24 │ │ ├── actions │ │ │ ├── gpm-hibernate.png │ │ │ └── gpm-suspend.png │ │ ├── apps │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-inhibit-applet.png │ │ │ ├── mate-power-manager.png │ │ │ └── mate-power-statistics.png │ │ └── status │ │ │ ├── gpm-ac-adapter.png │ │ │ ├── gpm-battery-000-charging.png │ │ │ ├── gpm-battery-000.png │ │ │ ├── gpm-battery-020-charging.png │ │ │ ├── gpm-battery-020.png │ │ │ ├── gpm-battery-040-charging.png │ │ │ ├── gpm-battery-040.png │ │ │ ├── gpm-battery-060-charging.png │ │ │ ├── gpm-battery-060.png │ │ │ ├── gpm-battery-080-charging.png │ │ │ ├── gpm-battery-080.png │ │ │ ├── gpm-battery-100-charging.png │ │ │ ├── gpm-battery-100.png │ │ │ ├── gpm-battery-charged.png │ │ │ ├── gpm-battery-empty.png │ │ │ ├── gpm-battery-missing.png │ │ │ ├── gpm-brightness-kbd-disabled.png │ │ │ ├── gpm-brightness-kbd-invalid.png │ │ │ ├── gpm-brightness-kbd.png │ │ │ ├── gpm-brightness-lcd-disabled.png │ │ │ ├── gpm-brightness-lcd-invalid.png │ │ │ ├── gpm-brightness-lcd.png │ │ │ ├── gpm-gaming-input-000.png │ │ │ ├── gpm-gaming-input-020.png │ │ │ ├── gpm-gaming-input-040.png │ │ │ ├── gpm-gaming-input-060.png │ │ │ ├── gpm-gaming-input-080.png │ │ │ ├── gpm-gaming-input-100.png │ │ │ ├── gpm-inhibit-invalid.png │ │ │ ├── gpm-inhibit.png │ │ │ ├── gpm-keyboard-000.png │ │ │ ├── gpm-keyboard-020.png │ │ │ ├── gpm-keyboard-040.png │ │ │ ├── gpm-keyboard-060.png │ │ │ ├── gpm-keyboard-080.png │ │ │ ├── gpm-keyboard-100.png │ │ │ ├── gpm-mouse-000.png │ │ │ ├── gpm-mouse-020.png │ │ │ ├── gpm-mouse-040.png │ │ │ ├── gpm-mouse-060.png │ │ │ ├── gpm-mouse-080.png │ │ │ ├── gpm-mouse-100.png │ │ │ ├── gpm-phone-000.png │ │ │ ├── gpm-phone-020.png │ │ │ ├── gpm-phone-040.png │ │ │ ├── gpm-phone-060.png │ │ │ ├── gpm-phone-080.png │ │ │ ├── gpm-phone-100.png │ │ │ ├── gpm-ups-000-charging.png │ │ │ ├── gpm-ups-000.png │ │ │ ├── gpm-ups-020-charging.png │ │ │ ├── gpm-ups-020.png │ │ │ ├── gpm-ups-040-charging.png │ │ │ ├── gpm-ups-040.png │ │ │ ├── gpm-ups-060-charging.png │ │ │ ├── gpm-ups-060.png │ │ │ ├── gpm-ups-080-charging.png │ │ │ ├── gpm-ups-080.png │ │ │ ├── gpm-ups-100-charging.png │ │ │ ├── gpm-ups-100.png │ │ │ └── gpm-ups-missing.png │ ├── 256x256 │ │ ├── actions │ │ │ ├── gpm-hibernate.png │ │ │ └── gpm-suspend.png │ │ ├── apps │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-inhibit-applet.png │ │ │ ├── mate-power-manager.png │ │ │ └── mate-power-statistics.png │ │ └── status │ │ │ ├── gpm-ac-adapter.png │ │ │ ├── gpm-battery-000-charging.png │ │ │ ├── gpm-battery-000.png │ │ │ ├── gpm-battery-020-charging.png │ │ │ ├── gpm-battery-020.png │ │ │ ├── gpm-battery-040-charging.png │ │ │ ├── gpm-battery-040.png │ │ │ ├── gpm-battery-060-charging.png │ │ │ ├── gpm-battery-060.png │ │ │ ├── gpm-battery-080-charging.png │ │ │ ├── gpm-battery-080.png │ │ │ ├── gpm-battery-100-charging.png │ │ │ ├── gpm-battery-100.png │ │ │ ├── gpm-battery-charged.png │ │ │ ├── gpm-battery-empty.png │ │ │ ├── gpm-battery-missing.png │ │ │ ├── gpm-brightness-kbd-disabled.png │ │ │ ├── gpm-brightness-kbd-invalid.png │ │ │ ├── gpm-brightness-kbd.png │ │ │ ├── gpm-brightness-lcd-disabled.png │ │ │ ├── gpm-brightness-lcd-invalid.png │ │ │ ├── gpm-brightness-lcd.png │ │ │ ├── gpm-gaming-input-000.png │ │ │ ├── gpm-gaming-input-020.png │ │ │ ├── gpm-gaming-input-040.png │ │ │ ├── gpm-gaming-input-060.png │ │ │ ├── gpm-gaming-input-080.png │ │ │ ├── gpm-gaming-input-100.png │ │ │ ├── gpm-inhibit-invalid.png │ │ │ ├── gpm-inhibit.png │ │ │ ├── gpm-keyboard-000.png │ │ │ ├── gpm-keyboard-020.png │ │ │ ├── gpm-keyboard-040.png │ │ │ ├── gpm-keyboard-060.png │ │ │ ├── gpm-keyboard-080.png │ │ │ ├── gpm-keyboard-100.png │ │ │ ├── gpm-monitor.png │ │ │ ├── gpm-mouse-000.png │ │ │ ├── gpm-mouse-020.png │ │ │ ├── gpm-mouse-040.png │ │ │ ├── gpm-mouse-060.png │ │ │ ├── gpm-mouse-080.png │ │ │ ├── gpm-mouse-100.png │ │ │ ├── gpm-phone-000.png │ │ │ ├── gpm-phone-020.png │ │ │ ├── gpm-phone-040.png │ │ │ ├── gpm-phone-060.png │ │ │ ├── gpm-phone-080.png │ │ │ ├── gpm-phone-100.png │ │ │ ├── gpm-ups-000-charging.png │ │ │ ├── gpm-ups-000.png │ │ │ ├── gpm-ups-020-charging.png │ │ │ ├── gpm-ups-020.png │ │ │ ├── gpm-ups-040-charging.png │ │ │ ├── gpm-ups-040.png │ │ │ ├── gpm-ups-060-charging.png │ │ │ ├── gpm-ups-060.png │ │ │ ├── gpm-ups-080-charging.png │ │ │ ├── gpm-ups-080.png │ │ │ ├── gpm-ups-100-charging.png │ │ │ ├── gpm-ups-100.png │ │ │ └── gpm-ups-missing.png │ ├── 32x32 │ │ ├── actions │ │ │ ├── gpm-hibernate.png │ │ │ └── gpm-suspend.png │ │ ├── apps │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-inhibit-applet.png │ │ │ ├── mate-power-manager.png │ │ │ └── mate-power-statistics.png │ │ └── status │ │ │ ├── gpm-ac-adapter.png │ │ │ ├── gpm-battery-000-charging.png │ │ │ ├── gpm-battery-000.png │ │ │ ├── gpm-battery-020-charging.png │ │ │ ├── gpm-battery-020.png │ │ │ ├── gpm-battery-040-charging.png │ │ │ ├── gpm-battery-040.png │ │ │ ├── gpm-battery-060-charging.png │ │ │ ├── gpm-battery-060.png │ │ │ ├── gpm-battery-080-charging.png │ │ │ ├── gpm-battery-080.png │ │ │ ├── gpm-battery-100-charging.png │ │ │ ├── gpm-battery-100.png │ │ │ ├── gpm-battery-charged.png │ │ │ ├── gpm-battery-empty.png │ │ │ ├── gpm-battery-missing.png │ │ │ ├── gpm-brightness-kbd-disabled.png │ │ │ ├── gpm-brightness-kbd-invalid.png │ │ │ ├── gpm-brightness-kbd.png │ │ │ ├── gpm-brightness-lcd-disabled.png │ │ │ ├── gpm-brightness-lcd-invalid.png │ │ │ ├── gpm-brightness-lcd.png │ │ │ ├── gpm-gaming-input-000.png │ │ │ ├── gpm-gaming-input-020.png │ │ │ ├── gpm-gaming-input-040.png │ │ │ ├── gpm-gaming-input-060.png │ │ │ ├── gpm-gaming-input-080.png │ │ │ ├── gpm-gaming-input-100.png │ │ │ ├── gpm-inhibit-invalid.png │ │ │ ├── gpm-inhibit.png │ │ │ ├── gpm-keyboard-000.png │ │ │ ├── gpm-keyboard-020.png │ │ │ ├── gpm-keyboard-040.png │ │ │ ├── gpm-keyboard-060.png │ │ │ ├── gpm-keyboard-080.png │ │ │ ├── gpm-keyboard-100.png │ │ │ ├── gpm-mouse-000.png │ │ │ ├── gpm-mouse-020.png │ │ │ ├── gpm-mouse-040.png │ │ │ ├── gpm-mouse-060.png │ │ │ ├── gpm-mouse-080.png │ │ │ ├── gpm-mouse-100.png │ │ │ ├── gpm-phone-000.png │ │ │ ├── gpm-phone-020.png │ │ │ ├── gpm-phone-040.png │ │ │ ├── gpm-phone-060.png │ │ │ ├── gpm-phone-080.png │ │ │ ├── gpm-phone-100.png │ │ │ ├── gpm-ups-000-charging.png │ │ │ ├── gpm-ups-000.png │ │ │ ├── gpm-ups-020-charging.png │ │ │ ├── gpm-ups-020.png │ │ │ ├── gpm-ups-040-charging.png │ │ │ ├── gpm-ups-040.png │ │ │ ├── gpm-ups-060-charging.png │ │ │ ├── gpm-ups-060.png │ │ │ ├── gpm-ups-080-charging.png │ │ │ ├── gpm-ups-080.png │ │ │ ├── gpm-ups-100-charging.png │ │ │ ├── gpm-ups-100.png │ │ │ └── gpm-ups-missing.png │ ├── 48x48 │ │ ├── actions │ │ │ ├── gpm-hibernate.png │ │ │ └── gpm-suspend.png │ │ ├── apps │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-inhibit-applet.png │ │ │ ├── mate-power-manager.png │ │ │ └── mate-power-statistics.png │ │ └── status │ │ │ ├── gpm-ac-adapter.png │ │ │ ├── gpm-battery-000-charging.png │ │ │ ├── gpm-battery-000.png │ │ │ ├── gpm-battery-020-charging.png │ │ │ ├── gpm-battery-020.png │ │ │ ├── gpm-battery-040-charging.png │ │ │ ├── gpm-battery-040.png │ │ │ ├── gpm-battery-060-charging.png │ │ │ ├── gpm-battery-060.png │ │ │ ├── gpm-battery-080-charging.png │ │ │ ├── gpm-battery-080.png │ │ │ ├── gpm-battery-100-charging.png │ │ │ ├── gpm-battery-100.png │ │ │ ├── gpm-battery-charged.png │ │ │ ├── gpm-battery-empty.png │ │ │ ├── gpm-battery-missing.png │ │ │ ├── gpm-brightness-kbd-disabled.png │ │ │ ├── gpm-brightness-kbd-invalid.png │ │ │ ├── gpm-brightness-kbd.png │ │ │ ├── gpm-brightness-lcd-disabled.png │ │ │ ├── gpm-brightness-lcd-invalid.png │ │ │ ├── gpm-brightness-lcd.png │ │ │ ├── gpm-gaming-input-000.png │ │ │ ├── gpm-gaming-input-020.png │ │ │ ├── gpm-gaming-input-040.png │ │ │ ├── gpm-gaming-input-060.png │ │ │ ├── gpm-gaming-input-080.png │ │ │ ├── gpm-gaming-input-100.png │ │ │ ├── gpm-inhibit-invalid.png │ │ │ ├── gpm-inhibit.png │ │ │ ├── gpm-keyboard-000.png │ │ │ ├── gpm-keyboard-020.png │ │ │ ├── gpm-keyboard-040.png │ │ │ ├── gpm-keyboard-060.png │ │ │ ├── gpm-keyboard-080.png │ │ │ ├── gpm-keyboard-100.png │ │ │ ├── gpm-monitor.png │ │ │ ├── gpm-mouse-000.png │ │ │ ├── gpm-mouse-020.png │ │ │ ├── gpm-mouse-040.png │ │ │ ├── gpm-mouse-060.png │ │ │ ├── gpm-mouse-080.png │ │ │ ├── gpm-mouse-100.png │ │ │ ├── gpm-phone-000.png │ │ │ ├── gpm-phone-020.png │ │ │ ├── gpm-phone-040.png │ │ │ ├── gpm-phone-060.png │ │ │ ├── gpm-phone-080.png │ │ │ ├── gpm-phone-100.png │ │ │ ├── gpm-ups-000-charging.png │ │ │ ├── gpm-ups-000.png │ │ │ ├── gpm-ups-020-charging.png │ │ │ ├── gpm-ups-020.png │ │ │ ├── gpm-ups-040-charging.png │ │ │ ├── gpm-ups-040.png │ │ │ ├── gpm-ups-060-charging.png │ │ │ ├── gpm-ups-060.png │ │ │ ├── gpm-ups-080-charging.png │ │ │ ├── gpm-ups-080.png │ │ │ ├── gpm-ups-100-charging.png │ │ │ ├── gpm-ups-100.png │ │ │ └── gpm-ups-missing.png │ ├── 64x64 │ │ ├── actions │ │ │ ├── gpm-hibernate.png │ │ │ └── gpm-suspend.png │ │ ├── apps │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-inhibit-applet.png │ │ │ ├── mate-power-manager.png │ │ │ └── mate-power-statistics.png │ │ └── status │ │ │ ├── gpm-ac-adapter.png │ │ │ ├── gpm-battery-000-charging.png │ │ │ ├── gpm-battery-000.png │ │ │ ├── gpm-battery-020-charging.png │ │ │ ├── gpm-battery-020.png │ │ │ ├── gpm-battery-040-charging.png │ │ │ ├── gpm-battery-040.png │ │ │ ├── gpm-battery-060-charging.png │ │ │ ├── gpm-battery-060.png │ │ │ ├── gpm-battery-080-charging.png │ │ │ ├── gpm-battery-080.png │ │ │ ├── gpm-battery-100-charging.png │ │ │ ├── gpm-battery-100.png │ │ │ ├── gpm-battery-charged.png │ │ │ ├── gpm-battery-empty.png │ │ │ ├── gpm-battery-missing.png │ │ │ ├── gpm-brightness-kbd-disabled.png │ │ │ ├── gpm-brightness-kbd-invalid.png │ │ │ ├── gpm-brightness-kbd.png │ │ │ ├── gpm-brightness-lcd-disabled.png │ │ │ ├── gpm-brightness-lcd-invalid.png │ │ │ ├── gpm-brightness-lcd.png │ │ │ ├── gpm-gaming-input-000.png │ │ │ ├── gpm-gaming-input-020.png │ │ │ ├── gpm-gaming-input-040.png │ │ │ ├── gpm-gaming-input-060.png │ │ │ ├── gpm-gaming-input-080.png │ │ │ ├── gpm-gaming-input-100.png │ │ │ ├── gpm-inhibit-invalid.png │ │ │ ├── gpm-inhibit.png │ │ │ ├── gpm-keyboard-000.png │ │ │ ├── gpm-keyboard-020.png │ │ │ ├── gpm-keyboard-040.png │ │ │ ├── gpm-keyboard-060.png │ │ │ ├── gpm-keyboard-080.png │ │ │ ├── gpm-keyboard-100.png │ │ │ ├── gpm-monitor.png │ │ │ ├── gpm-mouse-000.png │ │ │ ├── gpm-mouse-020.png │ │ │ ├── gpm-mouse-040.png │ │ │ ├── gpm-mouse-060.png │ │ │ ├── gpm-mouse-080.png │ │ │ ├── gpm-mouse-100.png │ │ │ ├── gpm-phone-000.png │ │ │ ├── gpm-phone-020.png │ │ │ ├── gpm-phone-040.png │ │ │ ├── gpm-phone-060.png │ │ │ ├── gpm-phone-080.png │ │ │ ├── gpm-phone-100.png │ │ │ ├── gpm-ups-000-charging.png │ │ │ ├── gpm-ups-000.png │ │ │ ├── gpm-ups-020-charging.png │ │ │ ├── gpm-ups-020.png │ │ │ ├── gpm-ups-040-charging.png │ │ │ ├── gpm-ups-040.png │ │ │ ├── gpm-ups-060-charging.png │ │ │ ├── gpm-ups-060.png │ │ │ ├── gpm-ups-080-charging.png │ │ │ ├── gpm-ups-080.png │ │ │ ├── gpm-ups-100-charging.png │ │ │ ├── gpm-ups-100.png │ │ │ └── gpm-ups-missing.png │ ├── 96x96 │ │ ├── actions │ │ │ ├── gpm-hibernate.png │ │ │ └── gpm-suspend.png │ │ ├── apps │ │ │ ├── mate-brightness-applet.png │ │ │ ├── mate-inhibit-applet.png │ │ │ ├── mate-power-manager.png │ │ │ └── mate-power-statistics.png │ │ └── status │ │ │ ├── gpm-ac-adapter.png │ │ │ ├── gpm-battery-000-charging.png │ │ │ ├── gpm-battery-000.png │ │ │ ├── gpm-battery-020-charging.png │ │ │ ├── gpm-battery-020.png │ │ │ ├── gpm-battery-040-charging.png │ │ │ ├── gpm-battery-040.png │ │ │ ├── gpm-battery-060-charging.png │ │ │ ├── gpm-battery-060.png │ │ │ ├── gpm-battery-080-charging.png │ │ │ ├── gpm-battery-080.png │ │ │ ├── gpm-battery-100-charging.png │ │ │ ├── gpm-battery-100.png │ │ │ ├── gpm-battery-charged.png │ │ │ ├── gpm-battery-empty.png │ │ │ ├── gpm-battery-missing.png │ │ │ ├── gpm-brightness-kbd-disabled.png │ │ │ ├── gpm-brightness-kbd-invalid.png │ │ │ ├── gpm-brightness-kbd.png │ │ │ ├── gpm-brightness-lcd-disabled.png │ │ │ ├── gpm-brightness-lcd-invalid.png │ │ │ ├── gpm-brightness-lcd.png │ │ │ ├── gpm-gaming-input-000.png │ │ │ ├── gpm-gaming-input-020.png │ │ │ ├── gpm-gaming-input-040.png │ │ │ ├── gpm-gaming-input-060.png │ │ │ ├── gpm-gaming-input-080.png │ │ │ ├── gpm-gaming-input-100.png │ │ │ ├── gpm-inhibit-invalid.png │ │ │ ├── gpm-inhibit.png │ │ │ ├── gpm-keyboard-000.png │ │ │ ├── gpm-keyboard-020.png │ │ │ ├── gpm-keyboard-040.png │ │ │ ├── gpm-keyboard-060.png │ │ │ ├── gpm-keyboard-080.png │ │ │ ├── gpm-keyboard-100.png │ │ │ ├── gpm-monitor.png │ │ │ ├── gpm-mouse-000.png │ │ │ ├── gpm-mouse-020.png │ │ │ ├── gpm-mouse-040.png │ │ │ ├── gpm-mouse-060.png │ │ │ ├── gpm-mouse-080.png │ │ │ ├── gpm-mouse-100.png │ │ │ ├── gpm-phone-000.png │ │ │ ├── gpm-phone-020.png │ │ │ ├── gpm-phone-040.png │ │ │ ├── gpm-phone-060.png │ │ │ ├── gpm-phone-080.png │ │ │ ├── gpm-phone-100.png │ │ │ ├── gpm-ups-000-charging.png │ │ │ ├── gpm-ups-000.png │ │ │ ├── gpm-ups-020-charging.png │ │ │ ├── gpm-ups-020.png │ │ │ ├── gpm-ups-040-charging.png │ │ │ ├── gpm-ups-040.png │ │ │ ├── gpm-ups-060-charging.png │ │ │ ├── gpm-ups-060.png │ │ │ ├── gpm-ups-080-charging.png │ │ │ ├── gpm-ups-080.png │ │ │ ├── gpm-ups-100-charging.png │ │ │ ├── gpm-ups-100.png │ │ │ └── gpm-ups-missing.png │ ├── Makefile.am │ ├── meson.build │ └── scalable │ │ ├── actions │ │ ├── gpm-hibernate.svg │ │ └── gpm-suspend.svg │ │ ├── apps │ │ ├── mate-brightness-applet.svg │ │ ├── mate-inhibit-applet.svg │ │ ├── mate-power-manager.svg │ │ └── mate-power-statistics.svg │ │ └── status │ │ ├── gpm-ac-adapter.svg │ │ ├── gpm-battery-000-charging.svg │ │ ├── gpm-battery-000.svg │ │ ├── gpm-battery-020-charging.svg │ │ ├── gpm-battery-020.svg │ │ ├── gpm-battery-040-charging.svg │ │ ├── gpm-battery-040.svg │ │ ├── gpm-battery-060-charging.svg │ │ ├── gpm-battery-060.svg │ │ ├── gpm-battery-080-charging.svg │ │ ├── gpm-battery-080.svg │ │ ├── gpm-battery-100-charging.svg │ │ ├── gpm-battery-100.svg │ │ ├── gpm-battery-charged.svg │ │ ├── gpm-battery-empty.svg │ │ ├── gpm-battery-missing.svg │ │ ├── gpm-brightness-kbd-disabled.svg │ │ ├── gpm-brightness-kbd-invalid.svg │ │ ├── gpm-brightness-kbd.svg │ │ ├── gpm-brightness-lcd-disabled.svg │ │ ├── gpm-brightness-lcd-invalid.svg │ │ ├── gpm-brightness-lcd.svg │ │ ├── gpm-gaming-input-000.svg │ │ ├── gpm-gaming-input-020.svg │ │ ├── gpm-gaming-input-040.svg │ │ ├── gpm-gaming-input-060.svg │ │ ├── gpm-gaming-input-080.svg │ │ ├── gpm-gaming-input-100.svg │ │ ├── gpm-inhibit-invalid.svg │ │ ├── gpm-inhibit.svg │ │ ├── gpm-keyboard-000.svg │ │ ├── gpm-keyboard-020.svg │ │ ├── gpm-keyboard-040.svg │ │ ├── gpm-keyboard-060.svg │ │ ├── gpm-keyboard-080.svg │ │ ├── gpm-keyboard-100.svg │ │ ├── gpm-monitor.svg │ │ ├── gpm-mouse-000.svg │ │ ├── gpm-mouse-020.svg │ │ ├── gpm-mouse-040.svg │ │ ├── gpm-mouse-060.svg │ │ ├── gpm-mouse-080.svg │ │ ├── gpm-mouse-100.svg │ │ ├── gpm-phone-000.svg │ │ ├── gpm-phone-020.svg │ │ ├── gpm-phone-040.svg │ │ ├── gpm-phone-060.svg │ │ ├── gpm-phone-080.svg │ │ ├── gpm-phone-100.svg │ │ ├── gpm-ups-000-charging.svg │ │ ├── gpm-ups-000.svg │ │ ├── gpm-ups-020-charging.svg │ │ ├── gpm-ups-020.svg │ │ ├── gpm-ups-040-charging.svg │ │ ├── gpm-ups-040.svg │ │ ├── gpm-ups-060-charging.svg │ │ ├── gpm-ups-060.svg │ │ ├── gpm-ups-080-charging.svg │ │ ├── gpm-ups-080.svg │ │ ├── gpm-ups-100-charging.svg │ │ ├── gpm-ups-100.svg │ │ └── gpm-ups-missing.svg ├── mate-power-backlight-helper.1 ├── mate-power-manager.1 ├── mate-power-manager.about ├── mate-power-manager.desktop.in.in ├── mate-power-preferences.1 ├── mate-power-preferences.desktop.in.in ├── mate-power-statistics.1 ├── mate-power-statistics.desktop.in.in ├── meson.build ├── org.mate.PowerManager.service.in ├── org.mate.power-manager.gschema.xml.in ├── org.mate.power-manager.manager.gresource.xml ├── org.mate.power-manager.preferences.gresource.xml └── org.mate.power-manager.statistics.gresource.xml ├── git.mk ├── help ├── C │ ├── figures │ │ ├── applet-brightness.png │ │ ├── applet-inhibit.png │ │ ├── gpm-cell-capacity.png │ │ ├── gpm-charged.png │ │ ├── gpm-critical.png │ │ ├── gpm-low.png │ │ ├── gpm-prefs-ac.png │ │ ├── gpm-prefs-battery.png │ │ ├── gpm-prefs-general.png │ │ ├── gpm-stats-graph.png │ │ ├── gpm-suspend-problem.png │ │ ├── gpm-unplugged.png │ │ └── gs-prefs.png │ ├── index.docbook │ └── legal.xml ├── LINGUAS ├── Makefile.am ├── af │ └── af.po ├── am │ └── am.po ├── ar │ └── ar.po ├── as │ └── as.po ├── ast │ └── ast.po ├── az │ └── az.po ├── be │ └── be.po ├── bg │ └── bg.po ├── bn │ └── bn.po ├── bn_IN │ └── bn_IN.po ├── br │ └── br.po ├── bs │ └── bs.po ├── ca │ ├── ca.po │ └── figures │ │ ├── gpm-cell-capacity.png │ │ ├── gpm-charged.png │ │ ├── gpm-critical.png │ │ ├── gpm-low.png │ │ ├── gpm-prefs-ac.png │ │ ├── gpm-prefs-battery.png │ │ ├── gpm-prefs-general.png │ │ ├── gpm-unplugged.png │ │ └── gs-prefs.png ├── ca@valencia │ └── ca@valencia.po ├── cmn │ └── cmn.po ├── crh │ └── crh.po ├── cs │ └── cs.po ├── cy │ └── cy.po ├── da │ └── da.po ├── de │ ├── de.po │ └── figures │ │ ├── applet-inhibit.png │ │ ├── gpm-charged.png │ │ ├── gpm-critical.png │ │ ├── gpm-low.png │ │ ├── gpm-prefs-ac.png │ │ ├── gpm-prefs-battery.png │ │ ├── gpm-prefs-general.png │ │ ├── gpm-unplugged.png │ │ └── gs-prefs.png ├── dz │ └── dz.po ├── el │ └── el.po ├── en_AU │ └── en_AU.po ├── en_CA │ └── en_CA.po ├── en_GB │ └── en_GB.po ├── eo │ └── eo.po ├── es │ ├── es.po │ └── figures │ │ ├── applet-inhibit.png │ │ ├── gpm-cell-capacity.png │ │ ├── gpm-charged.png │ │ ├── gpm-critical.png │ │ ├── gpm-low.png │ │ ├── gpm-prefs-ac.png │ │ ├── gpm-prefs-battery.png │ │ ├── gpm-prefs-general.png │ │ ├── gpm-stats-graph.png │ │ ├── gpm-unplugged.png │ │ └── gs-prefs.png ├── es_AR │ └── es_AR.po ├── es_CL │ └── es_CL.po ├── es_CO │ └── es_CO.po ├── es_ES │ └── es_ES.po ├── es_MX │ └── es_MX.po ├── es_PR │ └── es_PR.po ├── et │ └── et.po ├── eu │ ├── eu.po │ └── figures │ │ ├── applet-brightness.png │ │ ├── applet-inhibit.png │ │ ├── gpm-cell-capacity.png │ │ ├── gpm-charged.png │ │ ├── gpm-critical.png │ │ ├── gpm-low.png │ │ ├── gpm-prefs-ac.png │ │ ├── gpm-prefs-battery.png │ │ ├── gpm-prefs-general.png │ │ ├── gpm-stats-graph.png │ │ ├── gpm-suspend-problem.png │ │ ├── gpm-unplugged.png │ │ └── gs-prefs.png ├── fa │ └── fa.po ├── fi │ └── fi.po ├── fr │ ├── figures │ │ ├── applet-inhibit.png │ │ ├── gpm-cell-capacity.png │ │ ├── gpm-charged.png │ │ ├── gpm-critical.png │ │ ├── gpm-low.png │ │ ├── gpm-prefs-ac.png │ │ ├── gpm-prefs-battery.png │ │ ├── gpm-prefs-general.png │ │ ├── gpm-suspend-problem.png │ │ ├── gpm-unplugged.png │ │ └── gs-prefs.png │ └── fr.po ├── frp │ └── frp.po ├── fur │ └── fur.po ├── fy │ └── fy.po ├── ga │ └── ga.po ├── gl │ └── gl.po ├── gu │ └── gu.po ├── ha │ └── ha.po ├── he │ └── he.po ├── hi │ └── hi.po ├── hr │ └── hr.po ├── hu │ └── hu.po ├── hy │ └── hy.po ├── ia │ └── ia.po ├── id │ └── id.po ├── ie │ └── ie.po ├── ig │ └── ig.po ├── is │ └── is.po ├── it │ └── it.po ├── ja │ └── ja.po ├── jv │ └── jv.po ├── ka │ └── ka.po ├── kab │ └── kab.po ├── kk │ └── kk.po ├── kn │ └── kn.po ├── ko │ └── ko.po ├── ku │ └── ku.po ├── ku_IQ │ └── ku_IQ.po ├── ky │ └── ky.po ├── la │ └── la.po ├── lt │ └── lt.po ├── lv │ └── lv.po ├── mai │ └── mai.po ├── mate-power-manager.omf.in ├── mate-power-manager.pot ├── meson.build ├── mg │ └── mg.po ├── mi │ └── mi.po ├── mk │ └── mk.po ├── ml │ └── ml.po ├── mn │ └── mn.po ├── mr │ └── mr.po ├── ms │ └── ms.po ├── nb │ └── nb.po ├── nds │ └── nds.po ├── ne │ └── ne.po ├── nl │ └── nl.po ├── nn │ └── nn.po ├── nso │ └── nso.po ├── oc │ └── oc.po ├── or │ └── or.po ├── pa │ ├── figures │ │ └── gpm-unplugged.png │ └── pa.po ├── pl │ └── pl.po ├── ps │ └── ps.po ├── pt │ └── pt.po ├── pt_BR │ └── pt_BR.po ├── ro │ └── ro.po ├── ru │ └── ru.po ├── si │ └── si.po ├── sk │ └── sk.po ├── sl │ └── sl.po ├── sq │ └── sq.po ├── sr │ └── sr.po ├── sr@latin │ └── sr@latin.po ├── sv │ ├── figures │ │ ├── applet-inhibit.png │ │ ├── gpm-charged.png │ │ ├── gpm-critical.png │ │ ├── gpm-low.png │ │ ├── gpm-prefs-ac.png │ │ ├── gpm-prefs-battery.png │ │ ├── gpm-prefs-general.png │ │ ├── gpm-stats-graph.png │ │ ├── gpm-unplugged.png │ │ └── gs-prefs.png │ └── sv.po ├── ta │ └── ta.po ├── te │ └── te.po ├── th │ └── th.po ├── tk │ └── tk.po ├── tr │ └── tr.po ├── ug │ └── ug.po ├── uk │ └── uk.po ├── ur │ └── ur.po ├── uz │ └── uz.po ├── vi │ └── vi.po ├── wa │ └── wa.po ├── xh │ └── xh.po ├── yo │ └── yo.po ├── zh-Hans │ └── zh-Hans.po ├── zh_CN │ └── zh_CN.po ├── zh_HK │ └── zh_HK.po ├── zh_TW │ └── zh_TW.po └── zu │ └── zu.po ├── makepot ├── mate-power-manager.pot ├── meson.build ├── meson_options.txt ├── meson_post_install.sh ├── po ├── LINGUAS ├── Makevars ├── POTFILES.in ├── POTFILES.skip ├── af.po ├── am.po ├── ar.po ├── as.po ├── ast.po ├── az.po ├── be.po ├── bg.po ├── bn.po ├── bn_IN.po ├── br.po ├── bs.po ├── ca.po ├── ca@valencia.po ├── cmn.po ├── crh.po ├── cs.po ├── cy.po ├── da.po ├── de.po ├── dz.po ├── el.po ├── en_AU.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── es_AR.po ├── es_CL.po ├── es_CO.po ├── es_CR.po ├── es_DO.po ├── es_EC.po ├── es_ES.po ├── es_MX.po ├── es_NI.po ├── es_PA.po ├── es_PE.po ├── es_PR.po ├── es_SV.po ├── es_UY.po ├── es_VE.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fr.po ├── frp.po ├── fur.po ├── fy.po ├── ga.po ├── gl.po ├── gnome-copyrights.txt ├── gu.po ├── ha.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── hy.po ├── ia.po ├── id.po ├── ie.po ├── ig.po ├── is.po ├── it.po ├── ja.po ├── jv.po ├── ka.po ├── kab.po ├── kk.po ├── kn.po ├── ko.po ├── ks.po ├── ku.po ├── ku_IQ.po ├── ky.po ├── li.po ├── lt.po ├── lv.po ├── mai.po ├── meson.build ├── mg.po ├── mk.po ├── ml.po ├── mn.po ├── mr.po ├── ms.po ├── nb.po ├── nds.po ├── ne.po ├── nl.po ├── nn.po ├── nso.po ├── oc.po ├── or.po ├── pa.po ├── pl.po ├── pms.po ├── ps.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── rw.po ├── sc.po ├── si.po ├── sk.po ├── sl.po ├── sq.po ├── sr.po ├── sr@latin.po ├── sv.po ├── ta.po ├── te.po ├── th.po ├── tk.po ├── tr.po ├── ug.po ├── uk.po ├── ur.po ├── uz.po ├── vi.po ├── wa.po ├── xh.po ├── yo.po ├── zh_CN.po ├── zh_HK.po ├── zh_TW.po └── zu.po ├── policy ├── Makefile.am ├── meson.build └── org.mate.power.policy.in2 ├── src ├── Makefile.am ├── egg-array-float.c ├── egg-array-float.h ├── egg-color.c ├── egg-color.h ├── egg-console-kit.c ├── egg-console-kit.h ├── egg-discrete.c ├── egg-discrete.h ├── egg-idletime.c ├── egg-idletime.h ├── egg-precision.c ├── egg-precision.h ├── egg-test.c ├── egg-test.h ├── gpm-backlight-helper.c ├── gpm-backlight.c ├── gpm-backlight.h ├── gpm-brightness.c ├── gpm-brightness.h ├── gpm-button.c ├── gpm-button.h ├── gpm-common.c ├── gpm-common.h ├── gpm-control.c ├── gpm-control.h ├── gpm-dpms.c ├── gpm-dpms.h ├── gpm-engine.c ├── gpm-engine.h ├── gpm-graph-widget.c ├── gpm-graph-widget.h ├── gpm-icon-names.h ├── gpm-idle.c ├── gpm-idle.h ├── gpm-kbd-backlight.c ├── gpm-kbd-backlight.h ├── gpm-load.c ├── gpm-load.h ├── gpm-main.c ├── gpm-manager.c ├── gpm-manager.h ├── gpm-marshal.list ├── gpm-networkmanager.c ├── gpm-networkmanager.h ├── gpm-phone.c ├── gpm-phone.h ├── gpm-point-obj.c ├── gpm-point-obj.h ├── gpm-prefs-core.c ├── gpm-prefs-core.h ├── gpm-prefs.c ├── gpm-screensaver.c ├── gpm-screensaver.h ├── gpm-self-test.c ├── gpm-session.c ├── gpm-session.h ├── gpm-statistics.c ├── gpm-tray-icon.c ├── gpm-tray-icon.h ├── gpm-upower.c ├── gpm-upower.h ├── gsd-media-keys-window.c ├── gsd-media-keys-window.h ├── meson.build ├── msd-osd-window.c ├── msd-osd-window.h ├── org.mate.PowerManager.Backlight.xml ├── org.mate.PowerManager.KbdBacklight.xml └── org.mate.PowerManager.xml └── update-authors.pl /.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/.build.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/README -------------------------------------------------------------------------------- /applets/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = brightness inhibit 2 | 3 | -include $(top_srcdir)/git.mk 4 | -------------------------------------------------------------------------------- /applets/brightness/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/applets/brightness/Makefile.am -------------------------------------------------------------------------------- /applets/brightness/brightness-applet-menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/applets/brightness/brightness-applet-menu.xml -------------------------------------------------------------------------------- /applets/brightness/brightness-applet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/applets/brightness/brightness-applet.c -------------------------------------------------------------------------------- /applets/brightness/gpm-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/applets/brightness/gpm-common.c -------------------------------------------------------------------------------- /applets/brightness/gpm-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/applets/brightness/gpm-common.h -------------------------------------------------------------------------------- /applets/brightness/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/applets/brightness/meson.build -------------------------------------------------------------------------------- /applets/inhibit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/applets/inhibit/Makefile.am -------------------------------------------------------------------------------- /applets/inhibit/gpm-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/applets/inhibit/gpm-common.c -------------------------------------------------------------------------------- /applets/inhibit/gpm-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/applets/inhibit/gpm-common.h -------------------------------------------------------------------------------- /applets/inhibit/inhibit-applet-menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/applets/inhibit/inhibit-applet-menu.xml -------------------------------------------------------------------------------- /applets/inhibit/inhibit-applet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/applets/inhibit/inhibit-applet.c -------------------------------------------------------------------------------- /applets/inhibit/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/applets/inhibit/meson.build -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/configure.ac -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/Makefile.am -------------------------------------------------------------------------------- /data/acme.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/acme.ui -------------------------------------------------------------------------------- /data/gpm-prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/gpm-prefs.ui -------------------------------------------------------------------------------- /data/gpm-statistics.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/gpm-statistics.ui -------------------------------------------------------------------------------- /data/icons/128x128/actions/gpm-hibernate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/actions/gpm-hibernate.png -------------------------------------------------------------------------------- /data/icons/128x128/actions/gpm-suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/actions/gpm-suspend.png -------------------------------------------------------------------------------- /data/icons/128x128/apps/mate-inhibit-applet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/apps/mate-inhibit-applet.png -------------------------------------------------------------------------------- /data/icons/128x128/apps/mate-power-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/apps/mate-power-manager.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-ac-adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-ac-adapter.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-battery-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-battery-000.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-battery-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-battery-020.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-battery-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-battery-040.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-battery-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-battery-060.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-battery-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-battery-080.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-battery-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-battery-100.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-battery-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-battery-empty.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-brightness-kbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-brightness-kbd.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-brightness-lcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-brightness-lcd.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-inhibit.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-keyboard-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-keyboard-000.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-keyboard-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-keyboard-020.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-keyboard-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-keyboard-040.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-keyboard-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-keyboard-060.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-keyboard-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-keyboard-080.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-keyboard-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-keyboard-100.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-monitor.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-mouse-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-mouse-000.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-mouse-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-mouse-020.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-mouse-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-mouse-040.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-mouse-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-mouse-060.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-mouse-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-mouse-080.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-mouse-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-mouse-100.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-phone-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-phone-000.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-phone-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-phone-020.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-phone-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-phone-040.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-phone-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-phone-060.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-phone-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-phone-080.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-phone-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-phone-100.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-ups-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-ups-000.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-ups-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-ups-020.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-ups-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-ups-040.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-ups-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-ups-060.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-ups-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-ups-080.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-ups-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-ups-100.png -------------------------------------------------------------------------------- /data/icons/128x128/status/gpm-ups-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/128x128/status/gpm-ups-missing.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/gpm-hibernate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/actions/gpm-hibernate.png -------------------------------------------------------------------------------- /data/icons/16x16/actions/gpm-suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/actions/gpm-suspend.png -------------------------------------------------------------------------------- /data/icons/16x16/apps/mate-brightness-applet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/apps/mate-brightness-applet.png -------------------------------------------------------------------------------- /data/icons/16x16/apps/mate-inhibit-applet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/apps/mate-inhibit-applet.png -------------------------------------------------------------------------------- /data/icons/16x16/apps/mate-power-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/apps/mate-power-manager.png -------------------------------------------------------------------------------- /data/icons/16x16/apps/mate-power-statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/apps/mate-power-statistics.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-ac-adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-ac-adapter.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-battery-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-battery-000.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-battery-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-battery-020.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-battery-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-battery-040.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-battery-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-battery-060.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-battery-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-battery-080.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-battery-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-battery-100.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-battery-charged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-battery-charged.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-battery-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-battery-empty.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-battery-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-battery-missing.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-brightness-kbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-brightness-kbd.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-brightness-lcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-brightness-lcd.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-gaming-input-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-gaming-input-000.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-gaming-input-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-gaming-input-020.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-gaming-input-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-gaming-input-040.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-gaming-input-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-gaming-input-060.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-gaming-input-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-gaming-input-080.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-gaming-input-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-gaming-input-100.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-inhibit-invalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-inhibit-invalid.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-inhibit.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-keyboard-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-keyboard-000.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-keyboard-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-keyboard-020.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-keyboard-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-keyboard-040.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-keyboard-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-keyboard-060.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-keyboard-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-keyboard-080.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-keyboard-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-keyboard-100.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-mouse-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-mouse-000.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-mouse-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-mouse-020.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-mouse-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-mouse-040.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-mouse-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-mouse-060.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-mouse-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-mouse-080.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-mouse-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-mouse-100.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-phone-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-phone-000.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-phone-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-phone-020.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-phone-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-phone-040.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-phone-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-phone-060.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-phone-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-phone-080.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-phone-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-phone-100.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-ups-000-charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-ups-000-charging.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-ups-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-ups-000.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-ups-020-charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-ups-020-charging.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-ups-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-ups-020.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-ups-040-charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-ups-040-charging.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-ups-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-ups-040.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-ups-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-ups-060.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-ups-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-ups-080.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-ups-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-ups-100.png -------------------------------------------------------------------------------- /data/icons/16x16/status/gpm-ups-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/16x16/status/gpm-ups-missing.png -------------------------------------------------------------------------------- /data/icons/22x22/actions/gpm-hibernate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/actions/gpm-hibernate.png -------------------------------------------------------------------------------- /data/icons/22x22/actions/gpm-suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/actions/gpm-suspend.png -------------------------------------------------------------------------------- /data/icons/22x22/apps/mate-inhibit-applet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/apps/mate-inhibit-applet.png -------------------------------------------------------------------------------- /data/icons/22x22/apps/mate-power-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/apps/mate-power-manager.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-ac-adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-ac-adapter.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-battery-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-battery-000.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-battery-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-battery-020.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-battery-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-battery-040.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-battery-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-battery-060.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-battery-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-battery-080.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-battery-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-battery-100.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-battery-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-battery-empty.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-inhibit.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-keyboard-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-keyboard-000.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-keyboard-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-keyboard-020.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-keyboard-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-keyboard-040.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-keyboard-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-keyboard-060.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-keyboard-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-keyboard-080.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-keyboard-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-keyboard-100.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-mouse-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-mouse-000.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-mouse-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-mouse-020.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-mouse-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-mouse-040.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-mouse-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-mouse-060.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-mouse-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-mouse-080.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-mouse-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-mouse-100.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-phone-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-phone-000.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-phone-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-phone-020.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-phone-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-phone-040.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-phone-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-phone-060.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-phone-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-phone-080.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-phone-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-phone-100.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-ups-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-ups-000.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-ups-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-ups-020.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-ups-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-ups-040.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-ups-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-ups-060.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-ups-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-ups-080.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-ups-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-ups-100.png -------------------------------------------------------------------------------- /data/icons/22x22/status/gpm-ups-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/22x22/status/gpm-ups-missing.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/gpm-hibernate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/actions/gpm-hibernate.png -------------------------------------------------------------------------------- /data/icons/24x24/actions/gpm-suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/actions/gpm-suspend.png -------------------------------------------------------------------------------- /data/icons/24x24/apps/mate-inhibit-applet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/apps/mate-inhibit-applet.png -------------------------------------------------------------------------------- /data/icons/24x24/apps/mate-power-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/apps/mate-power-manager.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-ac-adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-ac-adapter.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-battery-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-battery-000.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-battery-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-battery-020.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-battery-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-battery-040.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-battery-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-battery-060.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-battery-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-battery-080.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-battery-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-battery-100.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-battery-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-battery-empty.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-inhibit.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-keyboard-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-keyboard-000.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-keyboard-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-keyboard-020.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-keyboard-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-keyboard-040.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-keyboard-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-keyboard-060.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-keyboard-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-keyboard-080.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-keyboard-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-keyboard-100.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-mouse-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-mouse-000.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-mouse-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-mouse-020.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-mouse-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-mouse-040.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-mouse-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-mouse-060.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-mouse-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-mouse-080.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-mouse-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-mouse-100.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-phone-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-phone-000.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-phone-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-phone-020.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-phone-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-phone-040.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-phone-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-phone-060.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-phone-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-phone-080.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-phone-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-phone-100.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-ups-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-ups-000.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-ups-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-ups-020.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-ups-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-ups-040.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-ups-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-ups-060.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-ups-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-ups-080.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-ups-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-ups-100.png -------------------------------------------------------------------------------- /data/icons/24x24/status/gpm-ups-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/24x24/status/gpm-ups-missing.png -------------------------------------------------------------------------------- /data/icons/256x256/actions/gpm-hibernate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/actions/gpm-hibernate.png -------------------------------------------------------------------------------- /data/icons/256x256/actions/gpm-suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/actions/gpm-suspend.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-ac-adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-ac-adapter.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-battery-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-battery-000.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-battery-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-battery-020.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-battery-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-battery-040.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-battery-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-battery-060.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-battery-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-battery-080.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-battery-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-battery-100.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-inhibit.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-monitor.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-mouse-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-mouse-000.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-mouse-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-mouse-020.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-mouse-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-mouse-040.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-mouse-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-mouse-060.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-mouse-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-mouse-080.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-mouse-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-mouse-100.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-phone-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-phone-000.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-phone-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-phone-020.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-phone-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-phone-040.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-phone-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-phone-060.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-phone-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-phone-080.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-phone-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-phone-100.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-ups-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-ups-000.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-ups-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-ups-020.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-ups-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-ups-040.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-ups-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-ups-060.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-ups-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-ups-080.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-ups-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-ups-100.png -------------------------------------------------------------------------------- /data/icons/256x256/status/gpm-ups-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/256x256/status/gpm-ups-missing.png -------------------------------------------------------------------------------- /data/icons/32x32/actions/gpm-hibernate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/actions/gpm-hibernate.png -------------------------------------------------------------------------------- /data/icons/32x32/actions/gpm-suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/actions/gpm-suspend.png -------------------------------------------------------------------------------- /data/icons/32x32/apps/mate-inhibit-applet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/apps/mate-inhibit-applet.png -------------------------------------------------------------------------------- /data/icons/32x32/apps/mate-power-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/apps/mate-power-manager.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-ac-adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-ac-adapter.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-battery-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-battery-000.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-battery-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-battery-020.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-battery-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-battery-040.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-battery-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-battery-060.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-battery-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-battery-080.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-battery-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-battery-100.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-battery-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-battery-empty.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-inhibit.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-keyboard-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-keyboard-000.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-keyboard-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-keyboard-020.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-keyboard-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-keyboard-040.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-keyboard-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-keyboard-060.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-keyboard-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-keyboard-080.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-keyboard-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-keyboard-100.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-mouse-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-mouse-000.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-mouse-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-mouse-020.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-mouse-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-mouse-040.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-mouse-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-mouse-060.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-mouse-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-mouse-080.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-mouse-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-mouse-100.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-phone-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-phone-000.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-phone-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-phone-020.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-phone-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-phone-040.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-phone-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-phone-060.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-phone-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-phone-080.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-phone-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-phone-100.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-ups-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-ups-000.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-ups-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-ups-020.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-ups-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-ups-040.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-ups-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-ups-060.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-ups-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-ups-080.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-ups-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-ups-100.png -------------------------------------------------------------------------------- /data/icons/32x32/status/gpm-ups-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/32x32/status/gpm-ups-missing.png -------------------------------------------------------------------------------- /data/icons/48x48/actions/gpm-hibernate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/actions/gpm-hibernate.png -------------------------------------------------------------------------------- /data/icons/48x48/actions/gpm-suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/actions/gpm-suspend.png -------------------------------------------------------------------------------- /data/icons/48x48/apps/mate-inhibit-applet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/apps/mate-inhibit-applet.png -------------------------------------------------------------------------------- /data/icons/48x48/apps/mate-power-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/apps/mate-power-manager.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-ac-adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-ac-adapter.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-battery-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-battery-000.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-battery-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-battery-020.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-battery-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-battery-040.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-battery-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-battery-060.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-battery-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-battery-080.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-battery-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-battery-100.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-battery-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-battery-empty.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-inhibit.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-keyboard-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-keyboard-000.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-keyboard-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-keyboard-020.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-keyboard-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-keyboard-040.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-keyboard-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-keyboard-060.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-keyboard-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-keyboard-080.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-keyboard-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-keyboard-100.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-monitor.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-mouse-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-mouse-000.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-mouse-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-mouse-020.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-mouse-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-mouse-040.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-mouse-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-mouse-060.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-mouse-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-mouse-080.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-mouse-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-mouse-100.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-phone-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-phone-000.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-phone-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-phone-020.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-phone-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-phone-040.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-phone-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-phone-060.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-phone-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-phone-080.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-phone-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-phone-100.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-ups-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-ups-000.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-ups-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-ups-020.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-ups-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-ups-040.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-ups-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-ups-060.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-ups-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-ups-080.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-ups-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-ups-100.png -------------------------------------------------------------------------------- /data/icons/48x48/status/gpm-ups-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/48x48/status/gpm-ups-missing.png -------------------------------------------------------------------------------- /data/icons/64x64/actions/gpm-hibernate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/actions/gpm-hibernate.png -------------------------------------------------------------------------------- /data/icons/64x64/actions/gpm-suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/actions/gpm-suspend.png -------------------------------------------------------------------------------- /data/icons/64x64/apps/mate-inhibit-applet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/apps/mate-inhibit-applet.png -------------------------------------------------------------------------------- /data/icons/64x64/apps/mate-power-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/apps/mate-power-manager.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-ac-adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-ac-adapter.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-battery-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-battery-000.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-battery-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-battery-020.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-battery-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-battery-040.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-battery-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-battery-060.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-battery-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-battery-080.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-battery-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-battery-100.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-battery-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-battery-empty.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-inhibit.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-keyboard-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-keyboard-000.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-keyboard-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-keyboard-020.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-keyboard-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-keyboard-040.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-keyboard-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-keyboard-060.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-keyboard-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-keyboard-080.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-keyboard-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-keyboard-100.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-monitor.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-mouse-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-mouse-000.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-mouse-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-mouse-020.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-mouse-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-mouse-040.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-mouse-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-mouse-060.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-mouse-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-mouse-080.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-mouse-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-mouse-100.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-phone-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-phone-000.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-phone-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-phone-020.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-phone-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-phone-040.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-phone-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-phone-060.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-phone-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-phone-080.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-phone-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-phone-100.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-ups-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-ups-000.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-ups-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-ups-020.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-ups-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-ups-040.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-ups-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-ups-060.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-ups-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-ups-080.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-ups-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-ups-100.png -------------------------------------------------------------------------------- /data/icons/64x64/status/gpm-ups-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/64x64/status/gpm-ups-missing.png -------------------------------------------------------------------------------- /data/icons/96x96/actions/gpm-hibernate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/actions/gpm-hibernate.png -------------------------------------------------------------------------------- /data/icons/96x96/actions/gpm-suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/actions/gpm-suspend.png -------------------------------------------------------------------------------- /data/icons/96x96/apps/mate-inhibit-applet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/apps/mate-inhibit-applet.png -------------------------------------------------------------------------------- /data/icons/96x96/apps/mate-power-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/apps/mate-power-manager.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-ac-adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-ac-adapter.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-battery-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-battery-000.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-battery-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-battery-020.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-battery-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-battery-040.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-battery-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-battery-060.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-battery-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-battery-080.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-battery-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-battery-100.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-battery-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-battery-empty.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-inhibit.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-keyboard-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-keyboard-000.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-keyboard-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-keyboard-020.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-keyboard-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-keyboard-040.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-keyboard-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-keyboard-060.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-keyboard-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-keyboard-080.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-keyboard-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-keyboard-100.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-monitor.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-mouse-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-mouse-000.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-mouse-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-mouse-020.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-mouse-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-mouse-040.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-mouse-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-mouse-060.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-mouse-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-mouse-080.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-mouse-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-mouse-100.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-phone-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-phone-000.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-phone-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-phone-020.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-phone-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-phone-040.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-phone-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-phone-060.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-phone-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-phone-080.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-phone-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-phone-100.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-ups-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-ups-000.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-ups-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-ups-020.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-ups-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-ups-040.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-ups-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-ups-060.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-ups-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-ups-080.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-ups-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-ups-100.png -------------------------------------------------------------------------------- /data/icons/96x96/status/gpm-ups-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/96x96/status/gpm-ups-missing.png -------------------------------------------------------------------------------- /data/icons/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/Makefile.am -------------------------------------------------------------------------------- /data/icons/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/meson.build -------------------------------------------------------------------------------- /data/icons/scalable/actions/gpm-hibernate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/actions/gpm-hibernate.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/gpm-suspend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/actions/gpm-suspend.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-ac-adapter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-ac-adapter.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-inhibit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-inhibit.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-monitor.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-mouse-000.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-mouse-000.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-mouse-020.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-mouse-020.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-mouse-040.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-mouse-040.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-mouse-060.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-mouse-060.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-mouse-080.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-mouse-080.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-mouse-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-mouse-100.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-phone-000.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-phone-000.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-phone-020.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-phone-020.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-phone-040.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-phone-040.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-phone-060.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-phone-060.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-phone-080.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-phone-080.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-phone-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-phone-100.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-ups-000.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-ups-000.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-ups-020.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-ups-020.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-ups-040.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-ups-040.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-ups-060.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-ups-060.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-ups-080.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-ups-080.svg -------------------------------------------------------------------------------- /data/icons/scalable/status/gpm-ups-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/icons/scalable/status/gpm-ups-100.svg -------------------------------------------------------------------------------- /data/mate-power-backlight-helper.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/mate-power-backlight-helper.1 -------------------------------------------------------------------------------- /data/mate-power-manager.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/mate-power-manager.1 -------------------------------------------------------------------------------- /data/mate-power-manager.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/mate-power-manager.about -------------------------------------------------------------------------------- /data/mate-power-manager.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/mate-power-manager.desktop.in.in -------------------------------------------------------------------------------- /data/mate-power-preferences.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/mate-power-preferences.1 -------------------------------------------------------------------------------- /data/mate-power-preferences.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/mate-power-preferences.desktop.in.in -------------------------------------------------------------------------------- /data/mate-power-statistics.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/mate-power-statistics.1 -------------------------------------------------------------------------------- /data/mate-power-statistics.desktop.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/mate-power-statistics.desktop.in.in -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/org.mate.PowerManager.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/org.mate.PowerManager.service.in -------------------------------------------------------------------------------- /data/org.mate.power-manager.gschema.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/data/org.mate.power-manager.gschema.xml.in -------------------------------------------------------------------------------- /git.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/git.mk -------------------------------------------------------------------------------- /help/C/figures/applet-brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/figures/applet-brightness.png -------------------------------------------------------------------------------- /help/C/figures/applet-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/figures/applet-inhibit.png -------------------------------------------------------------------------------- /help/C/figures/gpm-cell-capacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/figures/gpm-cell-capacity.png -------------------------------------------------------------------------------- /help/C/figures/gpm-charged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/figures/gpm-charged.png -------------------------------------------------------------------------------- /help/C/figures/gpm-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/figures/gpm-critical.png -------------------------------------------------------------------------------- /help/C/figures/gpm-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/figures/gpm-low.png -------------------------------------------------------------------------------- /help/C/figures/gpm-prefs-ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/figures/gpm-prefs-ac.png -------------------------------------------------------------------------------- /help/C/figures/gpm-prefs-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/figures/gpm-prefs-battery.png -------------------------------------------------------------------------------- /help/C/figures/gpm-prefs-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/figures/gpm-prefs-general.png -------------------------------------------------------------------------------- /help/C/figures/gpm-stats-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/figures/gpm-stats-graph.png -------------------------------------------------------------------------------- /help/C/figures/gpm-suspend-problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/figures/gpm-suspend-problem.png -------------------------------------------------------------------------------- /help/C/figures/gpm-unplugged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/figures/gpm-unplugged.png -------------------------------------------------------------------------------- /help/C/figures/gs-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/figures/gs-prefs.png -------------------------------------------------------------------------------- /help/C/index.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/index.docbook -------------------------------------------------------------------------------- /help/C/legal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/C/legal.xml -------------------------------------------------------------------------------- /help/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/LINGUAS -------------------------------------------------------------------------------- /help/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/Makefile.am -------------------------------------------------------------------------------- /help/af/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/af/af.po -------------------------------------------------------------------------------- /help/am/am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/am/am.po -------------------------------------------------------------------------------- /help/ar/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ar/ar.po -------------------------------------------------------------------------------- /help/as/as.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/as/as.po -------------------------------------------------------------------------------- /help/ast/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ast/ast.po -------------------------------------------------------------------------------- /help/az/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/az/az.po -------------------------------------------------------------------------------- /help/be/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/be/be.po -------------------------------------------------------------------------------- /help/bg/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/bg/bg.po -------------------------------------------------------------------------------- /help/bn/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/bn/bn.po -------------------------------------------------------------------------------- /help/bn_IN/bn_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/bn_IN/bn_IN.po -------------------------------------------------------------------------------- /help/br/br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/br/br.po -------------------------------------------------------------------------------- /help/bs/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/bs/bs.po -------------------------------------------------------------------------------- /help/ca/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ca/ca.po -------------------------------------------------------------------------------- /help/ca/figures/gpm-cell-capacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ca/figures/gpm-cell-capacity.png -------------------------------------------------------------------------------- /help/ca/figures/gpm-charged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ca/figures/gpm-charged.png -------------------------------------------------------------------------------- /help/ca/figures/gpm-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ca/figures/gpm-critical.png -------------------------------------------------------------------------------- /help/ca/figures/gpm-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ca/figures/gpm-low.png -------------------------------------------------------------------------------- /help/ca/figures/gpm-prefs-ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ca/figures/gpm-prefs-ac.png -------------------------------------------------------------------------------- /help/ca/figures/gpm-prefs-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ca/figures/gpm-prefs-battery.png -------------------------------------------------------------------------------- /help/ca/figures/gpm-prefs-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ca/figures/gpm-prefs-general.png -------------------------------------------------------------------------------- /help/ca/figures/gpm-unplugged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ca/figures/gpm-unplugged.png -------------------------------------------------------------------------------- /help/ca/figures/gs-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ca/figures/gs-prefs.png -------------------------------------------------------------------------------- /help/ca@valencia/ca@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ca@valencia/ca@valencia.po -------------------------------------------------------------------------------- /help/cmn/cmn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/cmn/cmn.po -------------------------------------------------------------------------------- /help/crh/crh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/crh/crh.po -------------------------------------------------------------------------------- /help/cs/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/cs/cs.po -------------------------------------------------------------------------------- /help/cy/cy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/cy/cy.po -------------------------------------------------------------------------------- /help/da/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/da/da.po -------------------------------------------------------------------------------- /help/de/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/de/de.po -------------------------------------------------------------------------------- /help/de/figures/applet-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/de/figures/applet-inhibit.png -------------------------------------------------------------------------------- /help/de/figures/gpm-charged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/de/figures/gpm-charged.png -------------------------------------------------------------------------------- /help/de/figures/gpm-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/de/figures/gpm-critical.png -------------------------------------------------------------------------------- /help/de/figures/gpm-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/de/figures/gpm-low.png -------------------------------------------------------------------------------- /help/de/figures/gpm-prefs-ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/de/figures/gpm-prefs-ac.png -------------------------------------------------------------------------------- /help/de/figures/gpm-prefs-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/de/figures/gpm-prefs-battery.png -------------------------------------------------------------------------------- /help/de/figures/gpm-prefs-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/de/figures/gpm-prefs-general.png -------------------------------------------------------------------------------- /help/de/figures/gpm-unplugged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/de/figures/gpm-unplugged.png -------------------------------------------------------------------------------- /help/de/figures/gs-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/de/figures/gs-prefs.png -------------------------------------------------------------------------------- /help/dz/dz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/dz/dz.po -------------------------------------------------------------------------------- /help/el/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/el/el.po -------------------------------------------------------------------------------- /help/en_AU/en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/en_AU/en_AU.po -------------------------------------------------------------------------------- /help/en_CA/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/en_CA/en_CA.po -------------------------------------------------------------------------------- /help/en_GB/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/en_GB/en_GB.po -------------------------------------------------------------------------------- /help/eo/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eo/eo.po -------------------------------------------------------------------------------- /help/es/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es/es.po -------------------------------------------------------------------------------- /help/es/figures/applet-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es/figures/applet-inhibit.png -------------------------------------------------------------------------------- /help/es/figures/gpm-cell-capacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es/figures/gpm-cell-capacity.png -------------------------------------------------------------------------------- /help/es/figures/gpm-charged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es/figures/gpm-charged.png -------------------------------------------------------------------------------- /help/es/figures/gpm-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es/figures/gpm-critical.png -------------------------------------------------------------------------------- /help/es/figures/gpm-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es/figures/gpm-low.png -------------------------------------------------------------------------------- /help/es/figures/gpm-prefs-ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es/figures/gpm-prefs-ac.png -------------------------------------------------------------------------------- /help/es/figures/gpm-prefs-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es/figures/gpm-prefs-battery.png -------------------------------------------------------------------------------- /help/es/figures/gpm-prefs-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es/figures/gpm-prefs-general.png -------------------------------------------------------------------------------- /help/es/figures/gpm-stats-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es/figures/gpm-stats-graph.png -------------------------------------------------------------------------------- /help/es/figures/gpm-unplugged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es/figures/gpm-unplugged.png -------------------------------------------------------------------------------- /help/es/figures/gs-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es/figures/gs-prefs.png -------------------------------------------------------------------------------- /help/es_AR/es_AR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es_AR/es_AR.po -------------------------------------------------------------------------------- /help/es_CL/es_CL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es_CL/es_CL.po -------------------------------------------------------------------------------- /help/es_CO/es_CO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es_CO/es_CO.po -------------------------------------------------------------------------------- /help/es_ES/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es_ES/es_ES.po -------------------------------------------------------------------------------- /help/es_MX/es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es_MX/es_MX.po -------------------------------------------------------------------------------- /help/es_PR/es_PR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/es_PR/es_PR.po -------------------------------------------------------------------------------- /help/et/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/et/et.po -------------------------------------------------------------------------------- /help/eu/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eu/eu.po -------------------------------------------------------------------------------- /help/eu/figures/applet-brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eu/figures/applet-brightness.png -------------------------------------------------------------------------------- /help/eu/figures/applet-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eu/figures/applet-inhibit.png -------------------------------------------------------------------------------- /help/eu/figures/gpm-cell-capacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eu/figures/gpm-cell-capacity.png -------------------------------------------------------------------------------- /help/eu/figures/gpm-charged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eu/figures/gpm-charged.png -------------------------------------------------------------------------------- /help/eu/figures/gpm-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eu/figures/gpm-critical.png -------------------------------------------------------------------------------- /help/eu/figures/gpm-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eu/figures/gpm-low.png -------------------------------------------------------------------------------- /help/eu/figures/gpm-prefs-ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eu/figures/gpm-prefs-ac.png -------------------------------------------------------------------------------- /help/eu/figures/gpm-prefs-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eu/figures/gpm-prefs-battery.png -------------------------------------------------------------------------------- /help/eu/figures/gpm-prefs-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eu/figures/gpm-prefs-general.png -------------------------------------------------------------------------------- /help/eu/figures/gpm-stats-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eu/figures/gpm-stats-graph.png -------------------------------------------------------------------------------- /help/eu/figures/gpm-suspend-problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eu/figures/gpm-suspend-problem.png -------------------------------------------------------------------------------- /help/eu/figures/gpm-unplugged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eu/figures/gpm-unplugged.png -------------------------------------------------------------------------------- /help/eu/figures/gs-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/eu/figures/gs-prefs.png -------------------------------------------------------------------------------- /help/fa/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fa/fa.po -------------------------------------------------------------------------------- /help/fi/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fi/fi.po -------------------------------------------------------------------------------- /help/fr/figures/applet-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fr/figures/applet-inhibit.png -------------------------------------------------------------------------------- /help/fr/figures/gpm-cell-capacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fr/figures/gpm-cell-capacity.png -------------------------------------------------------------------------------- /help/fr/figures/gpm-charged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fr/figures/gpm-charged.png -------------------------------------------------------------------------------- /help/fr/figures/gpm-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fr/figures/gpm-critical.png -------------------------------------------------------------------------------- /help/fr/figures/gpm-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fr/figures/gpm-low.png -------------------------------------------------------------------------------- /help/fr/figures/gpm-prefs-ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fr/figures/gpm-prefs-ac.png -------------------------------------------------------------------------------- /help/fr/figures/gpm-prefs-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fr/figures/gpm-prefs-battery.png -------------------------------------------------------------------------------- /help/fr/figures/gpm-prefs-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fr/figures/gpm-prefs-general.png -------------------------------------------------------------------------------- /help/fr/figures/gpm-suspend-problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fr/figures/gpm-suspend-problem.png -------------------------------------------------------------------------------- /help/fr/figures/gpm-unplugged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fr/figures/gpm-unplugged.png -------------------------------------------------------------------------------- /help/fr/figures/gs-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fr/figures/gs-prefs.png -------------------------------------------------------------------------------- /help/fr/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fr/fr.po -------------------------------------------------------------------------------- /help/frp/frp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/frp/frp.po -------------------------------------------------------------------------------- /help/fur/fur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fur/fur.po -------------------------------------------------------------------------------- /help/fy/fy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/fy/fy.po -------------------------------------------------------------------------------- /help/ga/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ga/ga.po -------------------------------------------------------------------------------- /help/gl/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/gl/gl.po -------------------------------------------------------------------------------- /help/gu/gu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/gu/gu.po -------------------------------------------------------------------------------- /help/ha/ha.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ha/ha.po -------------------------------------------------------------------------------- /help/he/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/he/he.po -------------------------------------------------------------------------------- /help/hi/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/hi/hi.po -------------------------------------------------------------------------------- /help/hr/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/hr/hr.po -------------------------------------------------------------------------------- /help/hu/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/hu/hu.po -------------------------------------------------------------------------------- /help/hy/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/hy/hy.po -------------------------------------------------------------------------------- /help/ia/ia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ia/ia.po -------------------------------------------------------------------------------- /help/id/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/id/id.po -------------------------------------------------------------------------------- /help/ie/ie.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ie/ie.po -------------------------------------------------------------------------------- /help/ig/ig.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ig/ig.po -------------------------------------------------------------------------------- /help/is/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/is/is.po -------------------------------------------------------------------------------- /help/it/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/it/it.po -------------------------------------------------------------------------------- /help/ja/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ja/ja.po -------------------------------------------------------------------------------- /help/jv/jv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/jv/jv.po -------------------------------------------------------------------------------- /help/ka/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ka/ka.po -------------------------------------------------------------------------------- /help/kab/kab.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/kab/kab.po -------------------------------------------------------------------------------- /help/kk/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/kk/kk.po -------------------------------------------------------------------------------- /help/kn/kn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/kn/kn.po -------------------------------------------------------------------------------- /help/ko/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ko/ko.po -------------------------------------------------------------------------------- /help/ku/ku.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ku/ku.po -------------------------------------------------------------------------------- /help/ku_IQ/ku_IQ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ku_IQ/ku_IQ.po -------------------------------------------------------------------------------- /help/ky/ky.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ky/ky.po -------------------------------------------------------------------------------- /help/la/la.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/la/la.po -------------------------------------------------------------------------------- /help/lt/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/lt/lt.po -------------------------------------------------------------------------------- /help/lv/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/lv/lv.po -------------------------------------------------------------------------------- /help/mai/mai.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/mai/mai.po -------------------------------------------------------------------------------- /help/mate-power-manager.omf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/mate-power-manager.omf.in -------------------------------------------------------------------------------- /help/mate-power-manager.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/mate-power-manager.pot -------------------------------------------------------------------------------- /help/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/meson.build -------------------------------------------------------------------------------- /help/mg/mg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/mg/mg.po -------------------------------------------------------------------------------- /help/mi/mi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/mi/mi.po -------------------------------------------------------------------------------- /help/mk/mk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/mk/mk.po -------------------------------------------------------------------------------- /help/ml/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ml/ml.po -------------------------------------------------------------------------------- /help/mn/mn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/mn/mn.po -------------------------------------------------------------------------------- /help/mr/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/mr/mr.po -------------------------------------------------------------------------------- /help/ms/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ms/ms.po -------------------------------------------------------------------------------- /help/nb/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/nb/nb.po -------------------------------------------------------------------------------- /help/nds/nds.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/nds/nds.po -------------------------------------------------------------------------------- /help/ne/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ne/ne.po -------------------------------------------------------------------------------- /help/nl/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/nl/nl.po -------------------------------------------------------------------------------- /help/nn/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/nn/nn.po -------------------------------------------------------------------------------- /help/nso/nso.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/nso/nso.po -------------------------------------------------------------------------------- /help/oc/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/oc/oc.po -------------------------------------------------------------------------------- /help/or/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/or/or.po -------------------------------------------------------------------------------- /help/pa/figures/gpm-unplugged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/pa/figures/gpm-unplugged.png -------------------------------------------------------------------------------- /help/pa/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/pa/pa.po -------------------------------------------------------------------------------- /help/pl/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/pl/pl.po -------------------------------------------------------------------------------- /help/ps/ps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ps/ps.po -------------------------------------------------------------------------------- /help/pt/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/pt/pt.po -------------------------------------------------------------------------------- /help/pt_BR/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/pt_BR/pt_BR.po -------------------------------------------------------------------------------- /help/ro/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ro/ro.po -------------------------------------------------------------------------------- /help/ru/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ru/ru.po -------------------------------------------------------------------------------- /help/si/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/si/si.po -------------------------------------------------------------------------------- /help/sk/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sk/sk.po -------------------------------------------------------------------------------- /help/sl/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sl/sl.po -------------------------------------------------------------------------------- /help/sq/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sq/sq.po -------------------------------------------------------------------------------- /help/sr/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sr/sr.po -------------------------------------------------------------------------------- /help/sr@latin/sr@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sr@latin/sr@latin.po -------------------------------------------------------------------------------- /help/sv/figures/applet-inhibit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sv/figures/applet-inhibit.png -------------------------------------------------------------------------------- /help/sv/figures/gpm-charged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sv/figures/gpm-charged.png -------------------------------------------------------------------------------- /help/sv/figures/gpm-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sv/figures/gpm-critical.png -------------------------------------------------------------------------------- /help/sv/figures/gpm-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sv/figures/gpm-low.png -------------------------------------------------------------------------------- /help/sv/figures/gpm-prefs-ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sv/figures/gpm-prefs-ac.png -------------------------------------------------------------------------------- /help/sv/figures/gpm-prefs-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sv/figures/gpm-prefs-battery.png -------------------------------------------------------------------------------- /help/sv/figures/gpm-prefs-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sv/figures/gpm-prefs-general.png -------------------------------------------------------------------------------- /help/sv/figures/gpm-stats-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sv/figures/gpm-stats-graph.png -------------------------------------------------------------------------------- /help/sv/figures/gpm-unplugged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sv/figures/gpm-unplugged.png -------------------------------------------------------------------------------- /help/sv/figures/gs-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sv/figures/gs-prefs.png -------------------------------------------------------------------------------- /help/sv/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/sv/sv.po -------------------------------------------------------------------------------- /help/ta/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ta/ta.po -------------------------------------------------------------------------------- /help/te/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/te/te.po -------------------------------------------------------------------------------- /help/th/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/th/th.po -------------------------------------------------------------------------------- /help/tk/tk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/tk/tk.po -------------------------------------------------------------------------------- /help/tr/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/tr/tr.po -------------------------------------------------------------------------------- /help/ug/ug.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ug/ug.po -------------------------------------------------------------------------------- /help/uk/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/uk/uk.po -------------------------------------------------------------------------------- /help/ur/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/ur/ur.po -------------------------------------------------------------------------------- /help/uz/uz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/uz/uz.po -------------------------------------------------------------------------------- /help/vi/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/vi/vi.po -------------------------------------------------------------------------------- /help/wa/wa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/wa/wa.po -------------------------------------------------------------------------------- /help/xh/xh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/xh/xh.po -------------------------------------------------------------------------------- /help/yo/yo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/yo/yo.po -------------------------------------------------------------------------------- /help/zh-Hans/zh-Hans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/zh-Hans/zh-Hans.po -------------------------------------------------------------------------------- /help/zh_CN/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/zh_CN/zh_CN.po -------------------------------------------------------------------------------- /help/zh_HK/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/zh_HK/zh_HK.po -------------------------------------------------------------------------------- /help/zh_TW/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/zh_TW/zh_TW.po -------------------------------------------------------------------------------- /help/zu/zu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/help/zu/zu.po -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/makepot -------------------------------------------------------------------------------- /mate-power-manager.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/mate-power-manager.pot -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/meson_options.txt -------------------------------------------------------------------------------- /meson_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/meson_post_install.sh -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/Makevars -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/POTFILES.skip -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/af.po -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/am.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/as.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/az.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/bn.po -------------------------------------------------------------------------------- /po/bn_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/bn_IN.po -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/br.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ca@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ca@valencia.po -------------------------------------------------------------------------------- /po/cmn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/cmn.po -------------------------------------------------------------------------------- /po/crh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/crh.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/cy.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/de.po -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/dz.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/en_AU.po -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/en_CA.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es.po -------------------------------------------------------------------------------- /po/es_AR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_AR.po -------------------------------------------------------------------------------- /po/es_CL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_CL.po -------------------------------------------------------------------------------- /po/es_CO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_CO.po -------------------------------------------------------------------------------- /po/es_CR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_CR.po -------------------------------------------------------------------------------- /po/es_DO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_DO.po -------------------------------------------------------------------------------- /po/es_EC.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_EC.po -------------------------------------------------------------------------------- /po/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_ES.po -------------------------------------------------------------------------------- /po/es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_MX.po -------------------------------------------------------------------------------- /po/es_NI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_NI.po -------------------------------------------------------------------------------- /po/es_PA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_PA.po -------------------------------------------------------------------------------- /po/es_PE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_PE.po -------------------------------------------------------------------------------- /po/es_PR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_PR.po -------------------------------------------------------------------------------- /po/es_SV.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_SV.po -------------------------------------------------------------------------------- /po/es_UY.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_UY.po -------------------------------------------------------------------------------- /po/es_VE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/es_VE.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/frp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/frp.po -------------------------------------------------------------------------------- /po/fur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/fur.po -------------------------------------------------------------------------------- /po/fy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/fy.po -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ga.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/gnome-copyrights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/gnome-copyrights.txt -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/gu.po -------------------------------------------------------------------------------- /po/ha.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ha.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/hy.po -------------------------------------------------------------------------------- /po/ia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ia.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/id.po -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ie.po -------------------------------------------------------------------------------- /po/ig.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ig.po -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/is.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/jv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/jv.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/kab.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/kab.po -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/kk.po -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/kn.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/ks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ks.po -------------------------------------------------------------------------------- /po/ku.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ku.po -------------------------------------------------------------------------------- /po/ku_IQ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ku_IQ.po -------------------------------------------------------------------------------- /po/ky.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ky.po -------------------------------------------------------------------------------- /po/li.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/li.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/mai.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/mai.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/meson.build -------------------------------------------------------------------------------- /po/mg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/mg.po -------------------------------------------------------------------------------- /po/mk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/mk.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/mn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/mn.po -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/mr.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nds.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/nds.po -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ne.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/nso.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/nso.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/or.po -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/pa.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/pms.po -------------------------------------------------------------------------------- /po/ps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ps.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/rw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/rw.po -------------------------------------------------------------------------------- /po/sc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/sc.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/sq.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/sr@latin.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/te.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/tk.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ug.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/ur.po -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/uz.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/wa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/wa.po -------------------------------------------------------------------------------- /po/xh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/xh.po -------------------------------------------------------------------------------- /po/yo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/yo.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /po/zu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/po/zu.po -------------------------------------------------------------------------------- /policy/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/policy/Makefile.am -------------------------------------------------------------------------------- /policy/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/policy/meson.build -------------------------------------------------------------------------------- /policy/org.mate.power.policy.in2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/policy/org.mate.power.policy.in2 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/egg-array-float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/egg-array-float.c -------------------------------------------------------------------------------- /src/egg-array-float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/egg-array-float.h -------------------------------------------------------------------------------- /src/egg-color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/egg-color.c -------------------------------------------------------------------------------- /src/egg-color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/egg-color.h -------------------------------------------------------------------------------- /src/egg-console-kit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/egg-console-kit.c -------------------------------------------------------------------------------- /src/egg-console-kit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/egg-console-kit.h -------------------------------------------------------------------------------- /src/egg-discrete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/egg-discrete.c -------------------------------------------------------------------------------- /src/egg-discrete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/egg-discrete.h -------------------------------------------------------------------------------- /src/egg-idletime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/egg-idletime.c -------------------------------------------------------------------------------- /src/egg-idletime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/egg-idletime.h -------------------------------------------------------------------------------- /src/egg-precision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/egg-precision.c -------------------------------------------------------------------------------- /src/egg-precision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/egg-precision.h -------------------------------------------------------------------------------- /src/egg-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/egg-test.c -------------------------------------------------------------------------------- /src/egg-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/egg-test.h -------------------------------------------------------------------------------- /src/gpm-backlight-helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-backlight-helper.c -------------------------------------------------------------------------------- /src/gpm-backlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-backlight.c -------------------------------------------------------------------------------- /src/gpm-backlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-backlight.h -------------------------------------------------------------------------------- /src/gpm-brightness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-brightness.c -------------------------------------------------------------------------------- /src/gpm-brightness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-brightness.h -------------------------------------------------------------------------------- /src/gpm-button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-button.c -------------------------------------------------------------------------------- /src/gpm-button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-button.h -------------------------------------------------------------------------------- /src/gpm-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-common.c -------------------------------------------------------------------------------- /src/gpm-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-common.h -------------------------------------------------------------------------------- /src/gpm-control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-control.c -------------------------------------------------------------------------------- /src/gpm-control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-control.h -------------------------------------------------------------------------------- /src/gpm-dpms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-dpms.c -------------------------------------------------------------------------------- /src/gpm-dpms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-dpms.h -------------------------------------------------------------------------------- /src/gpm-engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-engine.c -------------------------------------------------------------------------------- /src/gpm-engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-engine.h -------------------------------------------------------------------------------- /src/gpm-graph-widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-graph-widget.c -------------------------------------------------------------------------------- /src/gpm-graph-widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-graph-widget.h -------------------------------------------------------------------------------- /src/gpm-icon-names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-icon-names.h -------------------------------------------------------------------------------- /src/gpm-idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-idle.c -------------------------------------------------------------------------------- /src/gpm-idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-idle.h -------------------------------------------------------------------------------- /src/gpm-kbd-backlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-kbd-backlight.c -------------------------------------------------------------------------------- /src/gpm-kbd-backlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-kbd-backlight.h -------------------------------------------------------------------------------- /src/gpm-load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-load.c -------------------------------------------------------------------------------- /src/gpm-load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-load.h -------------------------------------------------------------------------------- /src/gpm-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-main.c -------------------------------------------------------------------------------- /src/gpm-manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-manager.c -------------------------------------------------------------------------------- /src/gpm-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-manager.h -------------------------------------------------------------------------------- /src/gpm-marshal.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-marshal.list -------------------------------------------------------------------------------- /src/gpm-networkmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-networkmanager.c -------------------------------------------------------------------------------- /src/gpm-networkmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-networkmanager.h -------------------------------------------------------------------------------- /src/gpm-phone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-phone.c -------------------------------------------------------------------------------- /src/gpm-phone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-phone.h -------------------------------------------------------------------------------- /src/gpm-point-obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-point-obj.c -------------------------------------------------------------------------------- /src/gpm-point-obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-point-obj.h -------------------------------------------------------------------------------- /src/gpm-prefs-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-prefs-core.c -------------------------------------------------------------------------------- /src/gpm-prefs-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-prefs-core.h -------------------------------------------------------------------------------- /src/gpm-prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-prefs.c -------------------------------------------------------------------------------- /src/gpm-screensaver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-screensaver.c -------------------------------------------------------------------------------- /src/gpm-screensaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-screensaver.h -------------------------------------------------------------------------------- /src/gpm-self-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-self-test.c -------------------------------------------------------------------------------- /src/gpm-session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-session.c -------------------------------------------------------------------------------- /src/gpm-session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-session.h -------------------------------------------------------------------------------- /src/gpm-statistics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-statistics.c -------------------------------------------------------------------------------- /src/gpm-tray-icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-tray-icon.c -------------------------------------------------------------------------------- /src/gpm-tray-icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-tray-icon.h -------------------------------------------------------------------------------- /src/gpm-upower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-upower.c -------------------------------------------------------------------------------- /src/gpm-upower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gpm-upower.h -------------------------------------------------------------------------------- /src/gsd-media-keys-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gsd-media-keys-window.c -------------------------------------------------------------------------------- /src/gsd-media-keys-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/gsd-media-keys-window.h -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/msd-osd-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/msd-osd-window.c -------------------------------------------------------------------------------- /src/msd-osd-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/msd-osd-window.h -------------------------------------------------------------------------------- /src/org.mate.PowerManager.Backlight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/org.mate.PowerManager.Backlight.xml -------------------------------------------------------------------------------- /src/org.mate.PowerManager.KbdBacklight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/org.mate.PowerManager.KbdBacklight.xml -------------------------------------------------------------------------------- /src/org.mate.PowerManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/src/org.mate.PowerManager.xml -------------------------------------------------------------------------------- /update-authors.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mate-desktop/mate-power-manager/HEAD/update-authors.pl --------------------------------------------------------------------------------