summaryrefslogtreecommitdiff
path: root/batteryarc-widget
diff options
context:
space:
mode:
authorstreetturtle <streetturtle@gmail.com>2020-11-20 10:44:42 -0500
committerstreetturtle <streetturtle@gmail.com>2020-11-20 10:44:42 -0500
commit207ad20d7233992a4ad11cb22f77fb76ba8c02a4 (patch)
tree26dc6bc5d4eb2a248bbb778134d95f429d5ab3d0 /batteryarc-widget
parentabed865eff7c0c2dc5c70108857e8113d8ab2dfc (diff)
[batteryarc] fix #215
Diffstat (limited to 'batteryarc-widget')
-rw-r--r--batteryarc-widget/README.md1
-rw-r--r--batteryarc-widget/batteryarc.lua48
2 files changed, 26 insertions, 23 deletions
diff --git a/batteryarc-widget/README.md b/batteryarc-widget/README.md
index 1a2a397..a257b2f 100644
--- a/batteryarc-widget/README.md
+++ b/batteryarc-widget/README.md
@@ -38,6 +38,7 @@ It is possible to customize widget by providing a table with all or some of the
| `warning_msg_position` | `bottom_right` | Position of the warning popup |
| `warning_msg_icon` | ~/.config/awesome/awesome-wm-widgets/batteryarc-widget/spaceman.jpg | Icon of the warning popup |
| `enable_battery_warning` | `true` | Display low battery warning |
+| `show_notification_mode` | `on_hover` | How to trigger a notification with the battery status: `on_hover`, `on_click` or `off` |
## Requirements
diff --git a/batteryarc-widget/batteryarc.lua b/batteryarc-widget/batteryarc.lua
index 916c7b1..858d3b3 100644
--- a/batteryarc-widget/batteryarc.lua
+++ b/batteryarc-widget/batteryarc.lua
@@ -27,6 +27,7 @@ local function worker(args)
local show_current_level = args.show_current_level or false
local size = args.size or 18
local timeout = args.timeout or 10
+ local show_notification_mode = args.show_notification_mode or 'on_hover' -- on_hover / on_click
local main_color = args.main_color or beautiful.fg_color
local bg_color = args.bg_color or '#ffffff11'
@@ -67,6 +68,22 @@ local function worker(args)
local last_battery_check = os.time()
+ --[[ Show warning notification ]]
+ local function show_battery_warning()
+ naughty.notify {
+ icon = warning_msg_icon,
+ icon_size = 100,
+ text = warning_msg_text,
+ title = warning_msg_title,
+ timeout = 25, -- show the warning for a longer time
+ hover_timeout = 0.5,
+ position = warning_msg_position,
+ bg = "#F06060",
+ fg = "#EEE9EF",
+ width = 300,
+ }
+ end
+
local function update_widget(widget, stdout)
local charge = 0
local status
@@ -119,7 +136,7 @@ local function worker(args)
-- Popup with battery info
local notification
- function show_battery_status()
+ local function show_battery_status()
awful.spawn.easy_async([[bash -c 'acpi']],
function(stdout, _, _, _)
naughty.destroy(notification)
@@ -127,33 +144,18 @@ local function worker(args)
text = stdout,
title = "Battery status",
timeout = 5,
- hover_timeout = 0.5,
width = 200,
}
end)
end
- widget:connect_signal("mouse::enter", function()
- show_battery_status()
- end)
- widget:connect_signal("mouse::leave", function()
- naughty.destroy(notification)
- end)
-
- --[[ Show warning notification ]]
- function show_battery_warning()
- naughty.notify {
- icon = warning_msg_icon,
- icon_size = 100,
- text = warning_msg_text,
- title = warning_msg_title,
- timeout = 25, -- show the warning for a longer time
- hover_timeout = 0.5,
- position = warning_msg_position,
- bg = "#F06060",
- fg = "#EEE9EF",
- width = 300,
- }
+ if show_notification_mode == 'on_hover' then
+ widget:connect_signal("mouse::enter", function() show_battery_status() end)
+ widget:connect_signal("mouse::leave", function() naughty.destroy(notification) end)
+ elseif show_notification_mode == 'on_click' then
+ widget:connect_signal('button::press', function(_, _, _, button)
+ if (button == 1) then show_battery_status() end
+ end)
end
return widget