diff --git a/themes/zenburn/awesome-icon.png b/themes/zenburn/awesome-icon.png new file mode 100644 index 0000000..70978d3 Binary files /dev/null and b/themes/zenburn/awesome-icon.png differ diff --git a/themes/zenburn/layouts/cornerne.png b/themes/zenburn/layouts/cornerne.png new file mode 100644 index 0000000..63960bc Binary files /dev/null and b/themes/zenburn/layouts/cornerne.png differ diff --git a/themes/zenburn/layouts/cornernw.png b/themes/zenburn/layouts/cornernw.png new file mode 100644 index 0000000..cafd5ef Binary files /dev/null and b/themes/zenburn/layouts/cornernw.png differ diff --git a/themes/zenburn/layouts/cornerse.png b/themes/zenburn/layouts/cornerse.png new file mode 100644 index 0000000..67b143b Binary files /dev/null and b/themes/zenburn/layouts/cornerse.png differ diff --git a/themes/zenburn/layouts/cornersw.png b/themes/zenburn/layouts/cornersw.png new file mode 100644 index 0000000..292b23f Binary files /dev/null and b/themes/zenburn/layouts/cornersw.png differ diff --git a/themes/zenburn/layouts/dwindle.png b/themes/zenburn/layouts/dwindle.png new file mode 100644 index 0000000..1aa4bf2 Binary files /dev/null and b/themes/zenburn/layouts/dwindle.png differ diff --git a/themes/zenburn/layouts/fairh.png b/themes/zenburn/layouts/fairh.png new file mode 100644 index 0000000..e176bb3 Binary files /dev/null and b/themes/zenburn/layouts/fairh.png differ diff --git a/themes/zenburn/layouts/fairv.png b/themes/zenburn/layouts/fairv.png new file mode 100644 index 0000000..7c0a92c Binary files /dev/null and b/themes/zenburn/layouts/fairv.png differ diff --git a/themes/zenburn/layouts/floating.png b/themes/zenburn/layouts/floating.png new file mode 100644 index 0000000..a399092 Binary files /dev/null and b/themes/zenburn/layouts/floating.png differ diff --git a/themes/zenburn/layouts/fullscreen.png b/themes/zenburn/layouts/fullscreen.png new file mode 100644 index 0000000..a0c795c Binary files /dev/null and b/themes/zenburn/layouts/fullscreen.png differ diff --git a/themes/zenburn/layouts/magnifier.png b/themes/zenburn/layouts/magnifier.png new file mode 100644 index 0000000..bca6db9 Binary files /dev/null and b/themes/zenburn/layouts/magnifier.png differ diff --git a/themes/zenburn/layouts/max.png b/themes/zenburn/layouts/max.png new file mode 100644 index 0000000..96a237a Binary files /dev/null and b/themes/zenburn/layouts/max.png differ diff --git a/themes/zenburn/layouts/spiral.png b/themes/zenburn/layouts/spiral.png new file mode 100644 index 0000000..8f5aeed Binary files /dev/null and b/themes/zenburn/layouts/spiral.png differ diff --git a/themes/zenburn/layouts/tile.png b/themes/zenburn/layouts/tile.png new file mode 100644 index 0000000..3fcc904 Binary files /dev/null and b/themes/zenburn/layouts/tile.png differ diff --git a/themes/zenburn/layouts/tilebottom.png b/themes/zenburn/layouts/tilebottom.png new file mode 100644 index 0000000..dfe7832 Binary files /dev/null and b/themes/zenburn/layouts/tilebottom.png differ diff --git a/themes/zenburn/layouts/tileleft.png b/themes/zenburn/layouts/tileleft.png new file mode 100644 index 0000000..c5decfd Binary files /dev/null and b/themes/zenburn/layouts/tileleft.png differ diff --git a/themes/zenburn/layouts/tiletop.png b/themes/zenburn/layouts/tiletop.png new file mode 100644 index 0000000..b251661 Binary files /dev/null and b/themes/zenburn/layouts/tiletop.png differ diff --git a/themes/zenburn/taglist/squarefz.png b/themes/zenburn/taglist/squarefz.png new file mode 100644 index 0000000..0927720 Binary files /dev/null and b/themes/zenburn/taglist/squarefz.png differ diff --git a/themes/zenburn/taglist/squarez.png b/themes/zenburn/taglist/squarez.png new file mode 100644 index 0000000..9b41c26 Binary files /dev/null and b/themes/zenburn/taglist/squarez.png differ diff --git a/themes/zenburn/theme.lua b/themes/zenburn/theme.lua new file mode 100644 index 0000000..af10fae --- /dev/null +++ b/themes/zenburn/theme.lua @@ -0,0 +1,135 @@ +------------------------------- +-- "Zenburn" awesome theme -- +-- By Adrian C. (anrxc) -- +------------------------------- + +local themes_path = require("gears.filesystem").get_themes_dir() + +-- {{{ Main +local theme = {} +theme.wallpaper = themes_path .. "zenburn/zenburn-background.png" +-- }}} + +-- {{{ Styles +theme.font = "sans 8" + +-- {{{ Colors +theme.fg_normal = "#DCDCCC" +theme.fg_focus = "#F0DFAF" +theme.fg_urgent = "#CC9393" +theme.bg_normal = "#3F3F3F" +theme.bg_focus = "#1E2320" +theme.bg_urgent = "#3F3F3F" +theme.bg_systray = theme.bg_normal +-- }}} + +-- {{{ Borders +theme.useless_gap = 0 +theme.border_width = 2 +theme.border_normal = "#3F3F3F" +theme.border_focus = "#6F6F6F" +theme.border_marked = "#CC9393" +-- }}} + +-- {{{ Titlebars +theme.titlebar_bg_focus = "#3F3F3F" +theme.titlebar_bg_normal = "#3F3F3F" +-- }}} + +-- There are other variable sets +-- overriding the default one when +-- defined, the sets are: +-- [taglist|tasklist]_[bg|fg]_[focus|urgent|occupied|empty|volatile] +-- titlebar_[normal|focus] +-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color] +-- Example: +--theme.taglist_bg_focus = "#CC9393" +-- }}} + +-- {{{ Widgets +-- You can add as many variables as +-- you wish and access them by using +-- beautiful.variable in your rc.lua +--theme.fg_widget = "#AECF96" +--theme.fg_center_widget = "#88A175" +--theme.fg_end_widget = "#FF5656" +--theme.bg_widget = "#494B4F" +--theme.border_widget = "#3F3F3F" +-- }}} + +-- {{{ Mouse finder +theme.mouse_finder_color = "#CC9393" +-- mouse_finder_[timeout|animate_timeout|radius|factor] +-- }}} + +-- {{{ Menu +-- Variables set for theming the menu: +-- menu_[bg|fg]_[normal|focus] +-- menu_[border_color|border_width] +theme.menu_height = 15 +theme.menu_width = 100 +-- }}} + +-- {{{ Icons +-- {{{ Taglist +theme.taglist_squares_sel = themes_path .. "zenburn/taglist/squarefz.png" +theme.taglist_squares_unsel = themes_path .. "zenburn/taglist/squarez.png" +--theme.taglist_squares_resize = "false" +-- }}} + +-- {{{ Misc +theme.awesome_icon = themes_path .. "zenburn/awesome-icon.png" +theme.menu_submenu_icon = themes_path .. "default/submenu.png" +-- }}} + +-- {{{ Layout +theme.layout_tile = themes_path .. "zenburn/layouts/tile.png" +theme.layout_tileleft = themes_path .. "zenburn/layouts/tileleft.png" +theme.layout_tilebottom = themes_path .. "zenburn/layouts/tilebottom.png" +theme.layout_tiletop = themes_path .. "zenburn/layouts/tiletop.png" +theme.layout_fairv = themes_path .. "zenburn/layouts/fairv.png" +theme.layout_fairh = themes_path .. "zenburn/layouts/fairh.png" +theme.layout_spiral = themes_path .. "zenburn/layouts/spiral.png" +theme.layout_dwindle = themes_path .. "zenburn/layouts/dwindle.png" +theme.layout_max = themes_path .. "zenburn/layouts/max.png" +theme.layout_fullscreen = themes_path .. "zenburn/layouts/fullscreen.png" +theme.layout_magnifier = themes_path .. "zenburn/layouts/magnifier.png" +theme.layout_floating = themes_path .. "zenburn/layouts/floating.png" +theme.layout_cornernw = themes_path .. "zenburn/layouts/cornernw.png" +theme.layout_cornerne = themes_path .. "zenburn/layouts/cornerne.png" +theme.layout_cornersw = themes_path .. "zenburn/layouts/cornersw.png" +theme.layout_cornerse = themes_path .. "zenburn/layouts/cornerse.png" +-- }}} + +-- {{{ Titlebar +theme.titlebar_close_button_focus = themes_path .. "zenburn/titlebar/close_focus.png" +theme.titlebar_close_button_normal = themes_path .. "zenburn/titlebar/close_normal.png" + +theme.titlebar_minimize_button_normal = themes_path .. "default/titlebar/minimize_normal.png" +theme.titlebar_minimize_button_focus = themes_path .. "default/titlebar/minimize_focus.png" + +theme.titlebar_ontop_button_focus_active = themes_path .. "zenburn/titlebar/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = themes_path .. "zenburn/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = themes_path .. "zenburn/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = themes_path .. "zenburn/titlebar/ontop_normal_inactive.png" + +theme.titlebar_sticky_button_focus_active = themes_path .. "zenburn/titlebar/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = themes_path .. "zenburn/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = themes_path .. "zenburn/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = themes_path .. "zenburn/titlebar/sticky_normal_inactive.png" + +theme.titlebar_floating_button_focus_active = themes_path .. "zenburn/titlebar/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = themes_path .. "zenburn/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = themes_path .. "zenburn/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = themes_path .. "zenburn/titlebar/floating_normal_inactive.png" + +theme.titlebar_maximized_button_focus_active = themes_path .. "zenburn/titlebar/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = themes_path .. "zenburn/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = themes_path .. "zenburn/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = themes_path .. "zenburn/titlebar/maximized_normal_inactive.png" +-- }}} +-- }}} + +return theme + +-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 diff --git a/themes/zenburn/titlebar/close_focus.png b/themes/zenburn/titlebar/close_focus.png new file mode 100644 index 0000000..e9b4179 Binary files /dev/null and b/themes/zenburn/titlebar/close_focus.png differ diff --git a/themes/zenburn/titlebar/close_normal.png b/themes/zenburn/titlebar/close_normal.png new file mode 100644 index 0000000..da60e65 Binary files /dev/null and b/themes/zenburn/titlebar/close_normal.png differ diff --git a/themes/zenburn/titlebar/floating_focus_active.png b/themes/zenburn/titlebar/floating_focus_active.png new file mode 100644 index 0000000..0f9ee0d Binary files /dev/null and b/themes/zenburn/titlebar/floating_focus_active.png differ diff --git a/themes/zenburn/titlebar/floating_focus_inactive.png b/themes/zenburn/titlebar/floating_focus_inactive.png new file mode 100644 index 0000000..aea1fb5 Binary files /dev/null and b/themes/zenburn/titlebar/floating_focus_inactive.png differ diff --git a/themes/zenburn/titlebar/floating_normal_active.png b/themes/zenburn/titlebar/floating_normal_active.png new file mode 100644 index 0000000..2316e00 Binary files /dev/null and b/themes/zenburn/titlebar/floating_normal_active.png differ diff --git a/themes/zenburn/titlebar/floating_normal_inactive.png b/themes/zenburn/titlebar/floating_normal_inactive.png new file mode 100644 index 0000000..699d1db Binary files /dev/null and b/themes/zenburn/titlebar/floating_normal_inactive.png differ diff --git a/themes/zenburn/titlebar/maximized_focus_active.png b/themes/zenburn/titlebar/maximized_focus_active.png new file mode 100644 index 0000000..7e8498a Binary files /dev/null and b/themes/zenburn/titlebar/maximized_focus_active.png differ diff --git a/themes/zenburn/titlebar/maximized_focus_inactive.png b/themes/zenburn/titlebar/maximized_focus_inactive.png new file mode 100644 index 0000000..3445dc5 Binary files /dev/null and b/themes/zenburn/titlebar/maximized_focus_inactive.png differ diff --git a/themes/zenburn/titlebar/maximized_normal_active.png b/themes/zenburn/titlebar/maximized_normal_active.png new file mode 100644 index 0000000..5a2c30e Binary files /dev/null and b/themes/zenburn/titlebar/maximized_normal_active.png differ diff --git a/themes/zenburn/titlebar/maximized_normal_inactive.png b/themes/zenburn/titlebar/maximized_normal_inactive.png new file mode 100644 index 0000000..5f63cf6 Binary files /dev/null and b/themes/zenburn/titlebar/maximized_normal_inactive.png differ diff --git a/themes/zenburn/titlebar/ontop_focus_active.png b/themes/zenburn/titlebar/ontop_focus_active.png new file mode 100644 index 0000000..86e61b7 Binary files /dev/null and b/themes/zenburn/titlebar/ontop_focus_active.png differ diff --git a/themes/zenburn/titlebar/ontop_focus_inactive.png b/themes/zenburn/titlebar/ontop_focus_inactive.png new file mode 100644 index 0000000..db80b22 Binary files /dev/null and b/themes/zenburn/titlebar/ontop_focus_inactive.png differ diff --git a/themes/zenburn/titlebar/ontop_normal_active.png b/themes/zenburn/titlebar/ontop_normal_active.png new file mode 100644 index 0000000..ebee120 Binary files /dev/null and b/themes/zenburn/titlebar/ontop_normal_active.png differ diff --git a/themes/zenburn/titlebar/ontop_normal_inactive.png b/themes/zenburn/titlebar/ontop_normal_inactive.png new file mode 100644 index 0000000..cce23b2 Binary files /dev/null and b/themes/zenburn/titlebar/ontop_normal_inactive.png differ diff --git a/themes/zenburn/titlebar/sticky_focus_active.png b/themes/zenburn/titlebar/sticky_focus_active.png new file mode 100644 index 0000000..b10e604 Binary files /dev/null and b/themes/zenburn/titlebar/sticky_focus_active.png differ diff --git a/themes/zenburn/titlebar/sticky_focus_inactive.png b/themes/zenburn/titlebar/sticky_focus_inactive.png new file mode 100644 index 0000000..7796a59 Binary files /dev/null and b/themes/zenburn/titlebar/sticky_focus_inactive.png differ diff --git a/themes/zenburn/titlebar/sticky_normal_active.png b/themes/zenburn/titlebar/sticky_normal_active.png new file mode 100644 index 0000000..27d585b Binary files /dev/null and b/themes/zenburn/titlebar/sticky_normal_active.png differ diff --git a/themes/zenburn/titlebar/sticky_normal_inactive.png b/themes/zenburn/titlebar/sticky_normal_inactive.png new file mode 100644 index 0000000..d877fe6 Binary files /dev/null and b/themes/zenburn/titlebar/sticky_normal_inactive.png differ diff --git a/themes/zenburn/zenburn-background.png b/themes/zenburn/zenburn-background.png new file mode 100644 index 0000000..1eb9437 Binary files /dev/null and b/themes/zenburn/zenburn-background.png differ