summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--battery-widget/README.md1
-rw-r--r--battery-widget/battery.lua6
-rw-r--r--batteryarc-widget/README.md1
-rw-r--r--batteryarc-widget/batteryarc.lua6
-rw-r--r--todo-widget/README.md8
-rw-r--r--volume-widget/volume.lua2
6 files changed, 18 insertions, 6 deletions
diff --git a/battery-widget/README.md b/battery-widget/README.md
index d58c420..4ea14d8 100644
--- a/battery-widget/README.md
+++ b/battery-widget/README.md
@@ -32,6 +32,7 @@ It is possible to customize widget by providing a table with all or some of the
| `warning_msg_text` | _Battery is dying_ | Text of the warning popup |
| `warning_msg_position` | `bottom_right` | Position of the warning popup |
| `warning_msg_icon` | ~/.config/awesome/awesome-wm-widgets/battery-widget/spaceman.jpg | Icon of the warning popup |
+| `enable_battery_warning` | `true` | Display low battery warning |
*Note: the widget expects following icons be present in the folder:
diff --git a/battery-widget/battery.lua b/battery-widget/battery.lua
index c066fcc..d84e591 100644
--- a/battery-widget/battery.lua
+++ b/battery-widget/battery.lua
@@ -38,6 +38,10 @@ local function worker(args)
local warning_msg_text = args.warning_msg_text or 'Battery is dying'
local warning_msg_position = args.warning_msg_position or 'bottom_right'
local warning_msg_icon = args.warning_msg_icon or HOME .. '/.config/awesome/awesome-wm-widgets/batteryarc-widget/spaceman.jpg'
+ local enable_battery_warning = args.enable_battery_warning
+ if enable_battery_warning == nil then
+ enable_battery_warning = true
+ end
if not gfs.dir_readable(path_to_icons) then
naughty.notify{
@@ -147,7 +151,7 @@ local function worker(args)
if (charge >= 0 and charge < 15) then
batteryType = "battery-empty%s-symbolic"
- if status ~= 'Charging' and os.difftime(os.time(), last_battery_check) > 300 then
+ if enable_battery_warning and status ~= 'Charging' and os.difftime(os.time(), last_battery_check) > 300 then
-- if 5 minutes have elapsed since the last warning
last_battery_check = os.time()
diff --git a/batteryarc-widget/README.md b/batteryarc-widget/README.md
index 6812dfa..96e1aeb 100644
--- a/batteryarc-widget/README.md
+++ b/batteryarc-widget/README.md
@@ -33,6 +33,7 @@ It is possible to customize widget by providing a table with all or some of the
| `warning_msg_text` | _Battery is dying_ | Text of the warning popup |
| `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 |
## Requirements
diff --git a/batteryarc-widget/batteryarc.lua b/batteryarc-widget/batteryarc.lua
index d4a67c5..0bf6bc0 100644
--- a/batteryarc-widget/batteryarc.lua
+++ b/batteryarc-widget/batteryarc.lua
@@ -36,6 +36,10 @@ local function worker(args)
local warning_msg_text = args.warning_msg_text or 'Battery is dying'
local warning_msg_position = args.warning_msg_position or 'bottom_right'
local warning_msg_icon = args.warning_msg_icon or HOME .. '/.config/awesome/awesome-wm-widgets/batteryarc-widget/spaceman.jpg'
+ local enable_battery_warning = args.enable_battery_warning
+ if enable_battery_warning == nil then
+ enable_battery_warning = true
+ end
local text = wibox.widget {
id = "txt",
@@ -124,7 +128,7 @@ local function worker(args)
if charge < 15 then
widget.colors = { low_level_color }
- if status ~= 'Charging' and os.difftime(os.time(), last_battery_check) > 300 then
+ if enable_battery_warning and status ~= 'Charging' and os.difftime(os.time(), last_battery_check) > 300 then
-- if 5 minutes have elapsed since the last warning
last_battery_check = os.time()
diff --git a/todo-widget/README.md b/todo-widget/README.md
index 9c26eb9..979f4f2 100644
--- a/todo-widget/README.md
+++ b/todo-widget/README.md
@@ -1,12 +1,14 @@
# ToDo Widget (in progress)
-This widgets displays a list of to do items and allows to mark item as done, delete item and create new ones:
+This widget displays a list of to do items and allows to mark item as done/undone, delete an item and create a new ones:
![screenshot](./todo.gif)
# Installation
-Clone repo under **~/.config/awesome/** and add the widget in **rc.lua**:
+Put a **json.lua** from this repository: https://github.com/rxi/json.lua under ~/.config/awesone folder. And don't forget to start a repo :)
+
+Then clone this repo under **~/.config/awesome/** and add the widget in **rc.lua**:
```lua
local todo_widget = require("awesome-wm-widgets.todo-widget.todo")
@@ -18,4 +20,4 @@ s.mytasklist, -- Middle widget
-- default
todo_widget(),
...
-``` \ No newline at end of file
+```
diff --git a/volume-widget/volume.lua b/volume-widget/volume.lua
index 04ac84f..652c39b 100644
--- a/volume-widget/volume.lua
+++ b/volume-widget/volume.lua
@@ -92,7 +92,7 @@ local function worker(args)
local args = args or {}
local volume_audio_controller = args.volume_audio_controller or 'pulse'
- volume.display_notification = args.display_notification or 'false'
+ volume.display_notification = args.display_notification or false
volume.position = args.notification_position or "top_right"
if volume_audio_controller == 'pulse' then
volume.device = '-D pulse'