2012-07-07 11:35:39 +02:00
|
|
|
-- Small modifications to anrxc's zenburn theme
|
2012-07-06 14:19:54 +02:00
|
|
|
|
2012-07-14 19:09:49 +02:00
|
|
|
local na = awful.util.color_strip_alpha
|
2012-07-07 11:35:39 +02:00
|
|
|
local theme = loadrc("../themes/nice-and-clean-theme/theme")
|
|
|
|
if theme then
|
|
|
|
theme.wallpaper_cmd = { "/bin/true" }
|
2012-07-07 22:09:11 +02:00
|
|
|
theme.font = "DejaVu Sans 9"
|
2012-07-14 19:09:49 +02:00
|
|
|
|
|
|
|
theme.border_width = 4
|
2012-07-07 11:35:39 +02:00
|
|
|
theme.border_normal = "#00000000"
|
2012-07-14 19:09:49 +02:00
|
|
|
theme.border_focus = "#FF7F0066"
|
2012-07-07 11:35:39 +02:00
|
|
|
theme.border_marked = theme.border_marked .. "66"
|
2012-07-06 14:19:54 +02:00
|
|
|
|
2012-07-07 11:35:39 +02:00
|
|
|
theme.bg_normal = theme.bg_normal .. "99"
|
2012-07-14 21:21:52 +02:00
|
|
|
theme.bg_focus = theme.bg_focus .. "BB"
|
2012-07-07 11:35:39 +02:00
|
|
|
theme.bg_urgent = theme.bg_urgent .. "99"
|
|
|
|
theme.bg_minimize = theme.bg_minimize .. "99"
|
2012-07-14 19:09:49 +02:00
|
|
|
|
|
|
|
-- Widget stuff
|
2012-07-07 11:35:39 +02:00
|
|
|
theme.bg_widget = "#00000099"
|
2012-07-14 19:09:49 +02:00
|
|
|
theme.fg_widget_label = "#737d8c"
|
|
|
|
theme.fg_widget_value = na(theme.fg_normal)
|
2012-07-14 21:21:52 +02:00
|
|
|
theme.fg_widget_value_important = "#E80F28"
|
2012-07-14 19:09:49 +02:00
|
|
|
theme.fg_widget_sep = na(theme.fg_normal)
|
|
|
|
theme.fg_widget_border = theme.fg_widget_label
|
|
|
|
theme.fg_widget_clock = na(theme.border_focus)
|
2012-07-07 11:35:39 +02:00
|
|
|
theme.fg_widget_end = "#FFFFFF"
|
|
|
|
theme.fg_widget_center = "#FFCCCC"
|
|
|
|
theme.fg_widget_start = "#FF0000"
|
2012-07-14 19:09:49 +02:00
|
|
|
|
2012-07-07 11:35:39 +02:00
|
|
|
return theme
|
|
|
|
end
|