vincentbernat.i3wm-configur.../rc/theme.lua
Vincent Bernat 4dbb842e7c theme: naughty notification should use a darker background
We use the same background as for a widget.
2012-07-14 21:48:23 +02:00

35 lines
1.1 KiB
Lua

-- Small modifications to anrxc's zenburn theme
local na = awful.util.color_strip_alpha
local theme = loadrc("../themes/nice-and-clean-theme/theme")
if theme then
theme.wallpaper_cmd = { "/bin/true" }
theme.font = "DejaVu Sans 9"
theme.border_width = 4
theme.border_normal = "#00000000"
theme.border_focus = "#FF7F0066"
theme.border_marked = theme.border_marked .. "66"
theme.bg_normal = theme.bg_normal .. "99"
theme.bg_focus = theme.bg_focus .. "BB"
theme.bg_urgent = theme.bg_urgent .. "99"
theme.bg_minimize = theme.bg_minimize .. "99"
-- Widget stuff
theme.bg_widget = "#000000BB"
theme.fg_widget_label = "#737d8c"
theme.fg_widget_value = na(theme.fg_normal)
theme.fg_widget_value_important = "#E80F28"
theme.fg_widget_sep = na(theme.fg_normal)
theme.fg_widget_border = theme.fg_widget_label
theme.fg_widget_clock = na(theme.border_focus)
theme.fg_widget_end = "#FFFFFF"
theme.fg_widget_center = "#FFCCCC"
theme.fg_widget_start = "#FF0000"
-- Naughty
naughty.config.presets.normal.bg = theme.bg_widget
return theme
end