aboutsummaryrefslogtreecommitdiff
path: root/src/service.c
diff options
context:
space:
mode:
authorJan Sprinz (NeoTheThird) <neo@neothethird.de>2018-03-25 22:18:55 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-03-25 22:21:10 +0200
commit868fa1688edaaa48696f59d3fafe44dc9afcb940 (patch)
tree76c5bde2510ba80548dad2f2ca6e82dda3dd2095 /src/service.c
parentcf33215b5030fc9d6708edbfd27332910d3322c8 (diff)
downloadayatana-indicator-power-868fa1688edaaa48696f59d3fafe44dc9afcb940.tar.gz
ayatana-indicator-power-868fa1688edaaa48696f59d3fafe44dc9afcb940.tar.bz2
ayatana-indicator-power-868fa1688edaaa48696f59d3fafe44dc9afcb940.zip
Added warning to avoid overheating of the LED.
Ported from UBports power indicator: commit ef020b31be15f1126d3e5ea5ec399179aad586b8 Author: Jan Sprinz (NeoTheThird) <neo@neothethird.de> Date: Sat Sep 16 16:02:50 2017 +0200 Forgot semicolon *blush* commit c8be2d9a142e17bdfa86ee68e23a18ba0680c244 Author: Jan Sprinz (NeoTheThird) <neo@neothethird.de> Date: Sat Sep 16 15:53:29 2017 +0200 Change var name commit 3d6a37503bafcbf397220dcfac5624a686f2f900 Author: Jan Sprinz (NeoTheThird) <neo@neothethird.de> Date: Sat Sep 16 14:24:05 2017 +0200 Added warning to avoid overheating of the LED Ported-by: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
Diffstat (limited to 'src/service.c')
-rw-r--r--src/service.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/service.c b/src/service.c
index 75d4538..feb9dc4 100644
--- a/src/service.c
+++ b/src/service.c
@@ -678,7 +678,14 @@ create_phone_settings_section(IndicatorPowerService * self)
g_menu_item_set_attribute(item, "x-canonical-type", "s", "com.canonical.indicator.switch");
g_menu_append_item(section, item);
g_object_unref(item);
+ if (flashlight_activated())
+ {
+ item = g_menu_item_new(_("Warning: Heavy use can damage the LED!"), "indicator.flashlight");
+ g_menu_append_item(section, item);
+ g_object_unref(item);
+ }
}
+
g_menu_append(section, _("Battery settingsā€¦"), "indicator.activate-phone-settings");
return G_MENU_MODEL(section);