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