From 9db44ee43e9925c4984762e729fc2a848b6ff5df Mon Sep 17 00:00:00 2001 From: elenapan Date: Fri, 27 Mar 2020 01:03:18 +0200 Subject: [PATCH] Fix screenshot notification app_name --- config/awesome/helpers.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/awesome/helpers.lua b/config/awesome/helpers.lua index 1cec539..e3ac034 100644 --- a/config/awesome/helpers.lua +++ b/config/awesome/helpers.lua @@ -310,7 +310,7 @@ function helpers.screenshot(action, delay) end) elseif action == "selection" then cmd = "maim "..maim_args.." -s "..filename - capture_notif = naughty.notification({ title = "Screenshot", message = "Select area to capture.", icon = icon, timeout = 1 }) + capture_notif = naughty.notification({ title = "Screenshot", message = "Select area to capture.", icon = icon, timeout = 1, app_name = screenshot_notification_app_name }) awful.spawn.easy_async_with_shell(cmd, function(_, __, ___, exit_code) if exit_code == 0 then capture_notif = notifications.notify_dwim({ title = "Screenshot", message = "Selection captured", icon = icon, app_name = screenshot_notification_app_name }, capture_notif)