From 635d4822b4a33630d4550d9aab3eb2e9b52b2973 Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Sun, 11 Aug 2019 23:05:12 +0200 Subject: [PATCH] config: Add parameter for notification timeout delay --- default_config.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/default_config.lua b/default_config.lua index 2add342..9379fb5 100644 --- a/default_config.lua +++ b/default_config.lua @@ -1,6 +1,7 @@ -- Default configuration file -- Copy to TBD to override values. This file will be overridden on update. local awful = require("awful") +local naughty = require("naughty") local config = {} @@ -32,4 +33,8 @@ config.windowSwitcher = "rofi -show window -config " .. awful.util.getdir("confi config.volume_osd_timeout = 2 +-- Awesome tweaks +naughty.config.defaults.timeout = 15 + + return config