From 608117225178a49638e3ec663b1940b0dc2d564e Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Sun, 5 Dec 2010 12:25:01 +0100 Subject: Added awesome's new-colors branch --- config/awesome/themes/custom/theme.lua | 141 +++++++++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) create mode 100644 config/awesome/themes/custom/theme.lua (limited to 'config/awesome/themes/custom/theme.lua') diff --git a/config/awesome/themes/custom/theme.lua b/config/awesome/themes/custom/theme.lua new file mode 100644 index 0000000..0f2f7bf --- /dev/null +++ b/config/awesome/themes/custom/theme.lua @@ -0,0 +1,141 @@ +------------------------------- +-- "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 /usr/share/awesome/themes/zenburn/zenburn-background.png" } +-- }}} + +-- {{{ Styles +theme.font = "sans 8" + +-- {{{ Colors +theme.fg_normal = "#FFFFFF" +theme.fg_focus = "#00B4FF" +theme.fg_urgent = "#CC9393" +theme.bg_normal = "#000000" +theme.bg_focus = "#1E2320" +theme.bg_urgent = "#3F3F3F" +-- }}} + +-- {{{ Borders +theme.border_width = "0" +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] +-- 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 = + os.getenv("HOME") .. "/.config/awesome/themes/custom/taglist/squarefz.png" +theme.taglist_squares_unsel = + os.getenv("HOME") .. "/.config/awesome/themes/custom/taglist/squarez.png" +-- }}} + +-- {{{ Misc +theme.awesome_icon = + os.getenv("HOME") .. "/.config/awesome/themes/custom/awesome-icon.png" +theme.menu_submenu_icon = "/usr/share/awesome/themes/default/submenu.png" +theme.tasklist_floating_icon = "/usr/share/awesome/themes/default/tasklist/floatingw.png" +-- }}} + +-- {{{ Layout +theme.layout_tile = + os.getenv("HOME") .. "/.config/awesome/themes/custom/layouts/tile.png" +theme.layout_tileleft = + os.getenv("HOME") .. "/.config/awesome/themes/custom/layouts/tileleft.png" +theme.layout_tilebottom = + os.getenv("HOME") .. "/.config/awesome/themes/custom/layouts/tilebottom.png" +theme.layout_tiletop = + os.getenv("HOME") .. "/.config/awesome/themes/custom/layouts/tiletop.png" +theme.layout_fairv = + os.getenv("HOME") .. "/.config/awesome/themes/custom/layouts/fairv.png" +theme.layout_fairh = + os.getenv("HOME") .. "/.config/awesome/themes/custom/layouts/fairh.png" +theme.layout_spiral = + os.getenv("HOME") .. "/.config/awesome/themes/custom/layouts/spiral.png" +theme.layout_dwindle = + os.getenv("HOME") .. "/.config/awesome/themes/custom/layouts/dwindle.png" +theme.layout_max = + os.getenv("HOME") .. "/.config/awesome/themes/custom/layouts/max.png" +theme.layout_fullscreen = + os.getenv("HOME") .. "/.config/awesome/themes/custom/layouts/fullscreen.png" +theme.layout_magnifier = + os.getenv("HOME") .. "/.config/awesome/themes/custom/layouts/magnifier.png" +theme.layout_floating = + os.getenv("HOME") .. "/.config/awesome/themes/custom/layouts/floating.png" +-- }}} + +-- {{{ Titlebar +theme.titlebar_close_button_focus = "/usr/share/awesome/themes/zenburn/titlebar/close_focus.png" +theme.titlebar_close_button_normal = "/usr/share/awesome/themes/zenburn/titlebar/close_normal.png" + +theme.titlebar_ontop_button_focus_active = "/usr/share/awesome/themes/zenburn/titlebar/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = "/usr/share/awesome/themes/zenburn/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = "/usr/share/awesome/themes/zenburn/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = "/usr/share/awesome/themes/zenburn/titlebar/ontop_normal_inactive.png" + +theme.titlebar_sticky_button_focus_active = "/usr/share/awesome/themes/zenburn/titlebar/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = "/usr/share/awesome/themes/zenburn/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = "/usr/share/awesome/themes/zenburn/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = "/usr/share/awesome/themes/zenburn/titlebar/sticky_normal_inactive.png" + +theme.titlebar_floating_button_focus_active = "/usr/share/awesome/themes/zenburn/titlebar/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = "/usr/share/awesome/themes/zenburn/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = "/usr/share/awesome/themes/zenburn/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = "/usr/share/awesome/themes/zenburn/titlebar/floating_normal_inactive.png" + +theme.titlebar_maximized_button_focus_active = "/usr/share/awesome/themes/zenburn/titlebar/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = "/usr/share/awesome/themes/zenburn/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = "/usr/share/awesome/themes/zenburn/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = "/usr/share/awesome/themes/zenburn/titlebar/maximized_normal_inactive.png" +-- }}} +-- }}} + +return theme -- cgit v1.2.3-54-g00ecf