diff options
Diffstat (limited to '.config/awesome/prismite.lua')
-rw-r--r-- | .config/awesome/prismite.lua | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/.config/awesome/prismite.lua b/.config/awesome/prismite.lua index 72701b6..5de089f 100644 --- a/.config/awesome/prismite.lua +++ b/.config/awesome/prismite.lua @@ -27,13 +27,11 @@ theme.border_marked = qvars.colors.bright.black theme.notification_icon_size = dpi(32) theme.notification_border_width = qvars.border_width theme.notification_border_color = theme.border_normal +theme.notification_max_width = qvars.char_width * 48 theme.notification_shape = qvars.shape theme.notification_spacing = theme.useless_gap * 2 - -naughty.config.presets.critical.bg = theme.bg_normal -naughty.config.presets.critical.timeout = 3 -naughty.config.presets.critical.fg = theme.fg_normal -naughty.config.presets.critical.border_color = qvars.colors.red + +naughty.config.defaults.timeout = qvars.notif_timeout naughty.config.defaults.position = "bottom_right" naughty.config.defaults.border_width = qvars.border_width @@ -41,4 +39,3 @@ theme.tasklist_plain_task_name = true theme.enable_spawn_cursor = false return theme - |