tag: Improve tag property::index support (FS#1229)
[awesome.git] / themes / default / theme.lua.in
blob0fc683c6c2f9b92df54928b99d568932fd53ecc9
1 ---------------------------
2 -- Default awesome theme --
3 ---------------------------
5 theme = {}
7 theme.font = "sans 8"
9 theme.bg_normal = "#222222"
10 theme.bg_focus = "#535d6c"
11 theme.bg_urgent = "#ff0000"
12 theme.bg_minimize = "#444444"
13 theme.bg_systray = theme.bg_normal
15 theme.fg_normal = "#aaaaaa"
16 theme.fg_focus = "#ffffff"
17 theme.fg_urgent = "#ffffff"
18 theme.fg_minimize = "#ffffff"
20 theme.border_width = 1
21 theme.border_normal = "#000000"
22 theme.border_focus = "#535d6c"
23 theme.border_marked = "#91231c"
25 -- There are other variable sets
26 -- overriding the default one when
27 -- defined, the sets are:
28 -- taglist_[bg|fg]_[focus|urgent|occupied|empty]
29 -- tasklist_[bg|fg]_[focus|urgent]
30 -- titlebar_[bg|fg]_[normal|focus]
31 -- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
32 -- mouse_finder_[color|timeout|animate_timeout|radius|factor]
33 -- Example:
34 --theme.taglist_bg_focus = "#ff0000"
36 -- Display the taglist squares
37 theme.taglist_squares_sel = "@AWESOME_THEMES_PATH@/default/taglist/squarefw.png"
38 theme.taglist_squares_unsel = "@AWESOME_THEMES_PATH@/default/taglist/squarew.png"
40 -- Variables set for theming the menu:
41 -- menu_[bg|fg]_[normal|focus]
42 -- menu_[border_color|border_width]
43 theme.menu_submenu_icon = "@AWESOME_THEMES_PATH@/default/submenu.png"
44 theme.menu_height = 15
45 theme.menu_width = 100
47 -- You can add as many variables as
48 -- you wish and access them by using
49 -- beautiful.variable in your rc.lua
50 --theme.bg_widget = "#cc0000"
52 -- Define the image to load
53 theme.titlebar_close_button_normal = "@AWESOME_THEMES_PATH@/default/titlebar/close_normal.png"
54 theme.titlebar_close_button_focus = "@AWESOME_THEMES_PATH@/default/titlebar/close_focus.png"
56 theme.titlebar_ontop_button_normal_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/ontop_normal_inactive.png"
57 theme.titlebar_ontop_button_focus_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/ontop_focus_inactive.png"
58 theme.titlebar_ontop_button_normal_active = "@AWESOME_THEMES_PATH@/default/titlebar/ontop_normal_active.png"
59 theme.titlebar_ontop_button_focus_active = "@AWESOME_THEMES_PATH@/default/titlebar/ontop_focus_active.png"
61 theme.titlebar_sticky_button_normal_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/sticky_normal_inactive.png"
62 theme.titlebar_sticky_button_focus_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/sticky_focus_inactive.png"
63 theme.titlebar_sticky_button_normal_active = "@AWESOME_THEMES_PATH@/default/titlebar/sticky_normal_active.png"
64 theme.titlebar_sticky_button_focus_active = "@AWESOME_THEMES_PATH@/default/titlebar/sticky_focus_active.png"
66 theme.titlebar_floating_button_normal_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/floating_normal_inactive.png"
67 theme.titlebar_floating_button_focus_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/floating_focus_inactive.png"
68 theme.titlebar_floating_button_normal_active = "@AWESOME_THEMES_PATH@/default/titlebar/floating_normal_active.png"
69 theme.titlebar_floating_button_focus_active = "@AWESOME_THEMES_PATH@/default/titlebar/floating_focus_active.png"
71 theme.titlebar_maximized_button_normal_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/maximized_normal_inactive.png"
72 theme.titlebar_maximized_button_focus_inactive = "@AWESOME_THEMES_PATH@/default/titlebar/maximized_focus_inactive.png"
73 theme.titlebar_maximized_button_normal_active = "@AWESOME_THEMES_PATH@/default/titlebar/maximized_normal_active.png"
74 theme.titlebar_maximized_button_focus_active = "@AWESOME_THEMES_PATH@/default/titlebar/maximized_focus_active.png"
76 theme.wallpaper = "@AWESOME_THEMES_PATH@/default/background.png"
78 -- You can use your own layout icons like this:
79 theme.layout_fairh = "@AWESOME_THEMES_PATH@/default/layouts/fairhw.png"
80 theme.layout_fairv = "@AWESOME_THEMES_PATH@/default/layouts/fairvw.png"
81 theme.layout_floating = "@AWESOME_THEMES_PATH@/default/layouts/floatingw.png"
82 theme.layout_magnifier = "@AWESOME_THEMES_PATH@/default/layouts/magnifierw.png"
83 theme.layout_max = "@AWESOME_THEMES_PATH@/default/layouts/maxw.png"
84 theme.layout_fullscreen = "@AWESOME_THEMES_PATH@/default/layouts/fullscreenw.png"
85 theme.layout_tilebottom = "@AWESOME_THEMES_PATH@/default/layouts/tilebottomw.png"
86 theme.layout_tileleft = "@AWESOME_THEMES_PATH@/default/layouts/tileleftw.png"
87 theme.layout_tile = "@AWESOME_THEMES_PATH@/default/layouts/tilew.png"
88 theme.layout_tiletop = "@AWESOME_THEMES_PATH@/default/layouts/tiletopw.png"
89 theme.layout_spiral = "@AWESOME_THEMES_PATH@/default/layouts/spiralw.png"
90 theme.layout_dwindle = "@AWESOME_THEMES_PATH@/default/layouts/dwindlew.png"
92 theme.awesome_icon = "@AWESOME_ICON_PATH@/awesome16.png"
94 -- Define the icon theme for application icons. If not set then the icons
95 -- from /usr/share/icons and /usr/share/icons/hicolor will be used.
96 theme.icon_theme = nil
98 return theme
99 -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80