diff --git a/CMakeLists.txt b/CMakeLists.txt index 5f8e494b..af17cab1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -149,6 +149,7 @@ add_custom_target(generated_sources # Default theme directory file(MAKE_DIRECTORY ${BUILD_DIR}/themes/default) file(MAKE_DIRECTORY ${BUILD_DIR}/themes/sky) +file(MAKE_DIRECTORY ${BUILD_DIR}/themes/zenburn) add_dependencies(${PROJECT_AWE_NAME} generated_sources) # }}} diff --git a/themes/zenburn/awesome-icon.png b/themes/zenburn/awesome-icon.png new file mode 100644 index 00000000..70978d3a Binary files /dev/null and b/themes/zenburn/awesome-icon.png differ diff --git a/themes/zenburn/layouts/dwindle.png b/themes/zenburn/layouts/dwindle.png new file mode 100644 index 00000000..1aa4bf26 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 00000000..e176bb36 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 00000000..7c0a92c5 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 00000000..a3990924 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 00000000..a0c795c5 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 00000000..bca6db90 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 00000000..96a237ab 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 00000000..8f5aeede 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 00000000..3fcc904d 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 00000000..dfe78322 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 00000000..c5decfd5 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 00000000..b2516612 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 00000000..a216bbd9 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 00000000..d1937491 Binary files /dev/null and b/themes/zenburn/taglist/squarez.png differ diff --git a/themes/zenburn/theme.lua.in b/themes/zenburn/theme.lua.in new file mode 100644 index 00000000..c21e39b2 --- /dev/null +++ b/themes/zenburn/theme.lua.in @@ -0,0 +1,120 @@ +------------------------------- +-- "Zenburn" awesome theme -- +-- By Adrian C. (anrxc) -- +------------------------------- + +-- Alternative icon sets and widget icons: +-- * http://awesome.naquadah.org/wiki/Nice_Icons + +-- {{{ Main +theme = {} +theme.wallpaper_cmd = { "awsetbg @AWESOME_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" +-- }}} + +-- {{{ Borders +theme.border_width = "1" +theme.border_normal = "#3F3F3F" +theme.border_focus = "#1E2320" +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] +-- titlebar_[normal|focus] +-- 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" +-- }}} + +-- {{{ 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 = "true" +theme.taglist_squares_sel = "@AWESOME_THEMES_PATH@/zenburn/taglist/squarefz.png" +theme.taglist_squares_unsel = "@AWESOME_THEMES_PATH@/zenburn/taglist/squarez.png" +-- }}} + +-- {{{ Misc +theme.awesome_icon = "@AWESOME_THEMES_PATH@/zenburn/awesome-icon.png" +theme.menu_submenu_icon = "@AWESOME_THEMES_PATH@/default/submenu.png" +theme.tasklist_floating_icon = "@AWESOME_THEMES_PATH@/default/tasklist/floatingw.png" +-- }}} + +-- {{{ Layout +theme.layout_tile = "@AWESOME_THEMES_PATH@/zenburn/layouts/tile.png" +theme.layout_tileleft = "@AWESOME_THEMES_PATH@/zenburn/layouts/tileleft.png" +theme.layout_tilebottom = "@AWESOME_THEMES_PATH@/zenburn/layouts/tilebottom.png" +theme.layout_tiletop = "@AWESOME_THEMES_PATH@/zenburn/layouts/tiletop.png" +theme.layout_fairv = "@AWESOME_THEMES_PATH@/zenburn/layouts/fairv.png" +theme.layout_fairh = "@AWESOME_THEMES_PATH@/zenburn/layouts/fairh.png" +theme.layout_spiral = "@AWESOME_THEMES_PATH@/zenburn/layouts/spiral.png" +theme.layout_dwindle = "@AWESOME_THEMES_PATH@/zenburn/layouts/dwindle.png" +theme.layout_max = "@AWESOME_THEMES_PATH@/zenburn/layouts/max.png" +theme.layout_fullscreen = "@AWESOME_THEMES_PATH@/zenburn/layouts/fullscreen.png" +theme.layout_magnifier = "@AWESOME_THEMES_PATH@/zenburn/layouts/magnifier.png" +theme.layout_floating = "@AWESOME_THEMES_PATH@/zenburn/layouts/floating.png" +-- }}} + +-- {{{ Titlebar +theme.titlebar_close_button_focus = "@AWESOME_THEMES_PATH@/zenburn/titlebar/close_focus.png" +theme.titlebar_close_button_normal = "@AWESOME_THEMES_PATH@/zenburn/titlebar/close_normal.png" + +theme.titlebar_ontop_button_focus_active = "@AWESOME_THEMES_PATH@/zenburn/titlebar/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = "@AWESOME_THEMES_PATH@/zenburn/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = "@AWESOME_THEMES_PATH@/zenburn/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = "@AWESOME_THEMES_PATH@/zenburn/titlebar/ontop_normal_inactive.png" + +theme.titlebar_sticky_button_focus_active = "@AWESOME_THEMES_PATH@/zenburn/titlebar/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = "@AWESOME_THEMES_PATH@/zenburn/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = "@AWESOME_THEMES_PATH@/zenburn/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = "@AWESOME_THEMES_PATH@/zenburn/titlebar/sticky_normal_inactive.png" + +theme.titlebar_floating_button_focus_active = "@AWESOME_THEMES_PATH@/zenburn/titlebar/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = "@AWESOME_THEMES_PATH@/zenburn/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = "@AWESOME_THEMES_PATH@/zenburn/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = "@AWESOME_THEMES_PATH@/zenburn/titlebar/floating_normal_inactive.png" + +theme.titlebar_maximized_button_focus_active = "@AWESOME_THEMES_PATH@/zenburn/titlebar/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = "@AWESOME_THEMES_PATH@/zenburn/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = "@AWESOME_THEMES_PATH@/zenburn/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = "@AWESOME_THEMES_PATH@/zenburn/titlebar/maximized_normal_inactive.png" +-- }}} +-- }}} + +return theme diff --git a/themes/zenburn/titlebar/close_focus.png b/themes/zenburn/titlebar/close_focus.png new file mode 100644 index 00000000..6b037ed6 Binary files /dev/null and b/themes/zenburn/titlebar/close_focus.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 00000000..cd367c1d Binary files /dev/null and b/themes/zenburn/titlebar/floating_focus_active.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 00000000..6b235a50 Binary files /dev/null and b/themes/zenburn/titlebar/maximized_focus_active.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 00000000..16b44d59 Binary files /dev/null and b/themes/zenburn/titlebar/ontop_focus_active.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 00000000..3e897c70 Binary files /dev/null and b/themes/zenburn/titlebar/sticky_focus_active.png differ diff --git a/themes/zenburn/zenburn-background.png b/themes/zenburn/zenburn-background.png new file mode 100644 index 00000000..1eb94375 Binary files /dev/null and b/themes/zenburn/zenburn-background.png differ