summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstreetturtle <streetturtle@gmail.com>2019-12-17 21:37:03 -0500
committerstreetturtle <streetturtle@gmail.com>2019-12-17 21:37:03 -0500
commit9045e67d18859c57033ed38e6b64b5ecaf6dedf0 (patch)
tree6c08f9b5b6a2ef3175d7b45a806c1e04fc910462
parentecb9a0e9e8ed2957fae4694a0c39e9e125661178 (diff)
add titles for error notifications
-rw-r--r--gerrit-widget/gerrit.lua6
-rw-r--r--jira-widget/jira.lua5
2 files changed, 9 insertions, 2 deletions
diff --git a/gerrit-widget/gerrit.lua b/gerrit-widget/gerrit.lua
index 890371f..69036d0 100644
--- a/gerrit-widget/gerrit.lua
+++ b/gerrit-widget/gerrit.lua
@@ -32,7 +32,11 @@ local function worker(args)
local args = args or {}
local icon = args.icons or HOME_DIR .. '/.config/awesome/awesome-wm-widgets/gerrit-widget/gerrit_icon.svg'
- local host = args.host or naughty.notify{preset = naughty.config.presets.critical, text = 'Gerrit host is unknown'}
+ local host = args.host or naughty.notify{
+ preset = naughty.config.presets.critical,
+ title = 'Gerrit Widget',
+ text = 'Gerrit host is unknown'
+ }
local query = args.query or 'is:reviewer AND status:open AND NOT is:wip'
local current_number_of_reviews
diff --git a/jira-widget/jira.lua b/jira-widget/jira.lua
index d0b364b..15855cb 100644
--- a/jira-widget/jira.lua
+++ b/jira-widget/jira.lua
@@ -31,7 +31,10 @@ local function worker(args)
local args = args or {}
local icon = args.icon or HOME_DIR .. '/.config/awesome/awesome-wm-widgets/jira-widget/jira-mark-gradient-blue.svg'
- local host = args.host or naughty.notify{preset = naughty.config.presets.critical, text = 'Jira host is unknown'}
+ local host = args.host or naughty.notify{
+ preset = naughty.config.presets.critical,
+ title = 'Jira Widget',
+ text = 'Jira host is unknown'}
local query = args.query or 'jql=assignee=currentuser() AND resolution=Unresolved'
local current_number_of_reviews