awesomewm/theme.lua

84 lines
4.1 KiB
Lua
Raw Normal View History

2009-12-25 18:14:59 +00:00
-- {{{ Main
theme = {}
2013-04-13 15:17:09 +00:00
theme.wallpaper = "~/.wallpaper"
2009-12-25 18:14:59 +00:00
-- }}}
-- {{{ Styles
theme.font = "dejavu 7"
2009-12-25 18:14:59 +00:00
-- {{{ Colors
2010-09-03 23:09:24 +00:00
theme.fg_normal = "#DCDCDC"
2010-06-24 16:15:08 +00:00
theme.fg_focus = "#F0DFAF"
theme.fg_urgent = "#CC9393"
2010-09-03 23:09:24 +00:00
theme.bg_normal = "#121212"
theme.bg_focus = "#3F3F3F"
theme.bg_urgent = "#DA4E4E"
2009-12-25 18:14:59 +00:00
-- }}}
-- {{{ Borders
theme.border_width = "2"
2010-06-24 16:15:08 +00:00
theme.border_normal = "#3F3F3F"
2011-05-09 19:23:03 +00:00
theme.border_focus = "#AAAAFF"
2009-12-25 18:14:59 +00:00
theme.border_marked = "#CC9393"
-- }}}
-- {{{ Titlebars
theme.titlebar_bg_focus = "#3F3F3F"
theme.titlebar_bg_normal = "#3F3F3F"
-- }}}
-- {{{ Icons
-- {{{ Taglist
theme.taglist_squares_sel = "/usr/share/awesome/themes/zenburn/taglist/squarefz.png"
theme.taglist_squares_unsel = "/usr/share/awesome/themes/zenburn/taglist/squarez.png"
--theme.taglist_squares_resize = "false"
-- }}}
-- {{{ Misc
theme.awesome_icon = "/usr/share/awesome/themes/zenburn/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
2010-09-03 23:09:24 +00:00
theme.layout_tiletop = "/usr/share/awesome/themes/zenburn/layouts/tile.png"
theme.layout_tilebottom = "/usr/share/awesome/themes/zenburn/layouts/tileleft.png"
theme.layout_tile = "/usr/share/awesome/themes/zenburn/layouts/tilebottom.png"
theme.layout_tileleft = "/usr/share/awesome/themes/zenburn/layouts/tiletop.png"
theme.layout_fairh = "/usr/share/awesome/themes/zenburn/layouts/fairv.png"
theme.layout_fairv = "/usr/share/awesome/themes/zenburn/layouts/fairh.png"
2009-12-25 18:14:59 +00:00
theme.layout_spiral = "/usr/share/awesome/themes/zenburn/layouts/spiral.png"
theme.layout_dwindle = "/usr/share/awesome/themes/zenburn/layouts/dwindle.png"
theme.layout_max = "/usr/share/awesome/themes/zenburn/layouts/max.png"
theme.layout_fullscreen = "/usr/share/awesome/themes/zenburn/layouts/fullscreen.png"
theme.layout_magnifier = "/usr/share/awesome/themes/zenburn/layouts/magnifier.png"
theme.layout_floating = "/usr/share/awesome/themes/zenburn/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