From e6ac80e75b4959a5103b0feff41ec46f04ea4625 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Tue, 31 Jul 2012 21:11:21 +0200 Subject: [PATCH] theme: set DejaVu Sans for all naughty presets --- rc/theme.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rc/theme.lua b/rc/theme.lua index 4dff105..bccb7a0 100644 --- a/rc/theme.lua +++ b/rc/theme.lua @@ -43,6 +43,8 @@ end -- Naughty naughty.config.presets.normal.bg = theme.bg_widget -naughty.config.default_preset.font = "DejaVu Sans 10" +for _,preset in pairs({"normal", "low", "critical"}) do + naughty.config.presets[preset].font = "DejaVu Sans 10" +end return theme