]> git.rmz.io Git - dotfiles.git/blob - awesome/themes/mlp/theme.lua
awesome: use droid sans instead of some generic sans
[dotfiles.git] / awesome / themes / mlp / theme.lua
1 ---------------------------
2 -- Default awesome theme --
3 ---------------------------
4
5 theme = {}
6
7 theme.path = awful.util.getdir("config").."/themes/mlp"
8
9 theme.font = "Droid Sans 8"
10
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
16
17 theme.fg_normal = "#aaaaaa"
18 theme.fg_focus = "#ffffff"
19 theme.fg_urgent = "#ffffff"
20 theme.fg_minimize = "#ffffff"
21
22 theme.border_width = 1
23 theme.border_normal = "#000000"
24 theme.border_focus = "#535d6c"
25 theme.border_marked = "#91231c"
26
27 -- There are other variable sets
28 -- overriding the default one when
29 -- defined, the sets are:
30 -- [taglist|tasklist]_[bg|fg]_[focus|urgent]
31 -- titlebar_[bg|fg]_[normal|focus]
32 -- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
33 -- mouse_finder_[color|timeout|animate_timeout|radius|factor]
34 -- Example:
35 --theme.taglist_bg_focus = "#ff0000"
36
37 -- Display the taglist squares
38 theme.taglist_squares_sel = theme.path.."/taglist/squarefw.png"
39 theme.taglist_squares_unsel = theme.path.."/taglist/squarew.png"
40
41 -- Variables set for theming the menu:
42 -- menu_[bg|fg]_[normal|focus]
43 -- menu_[border_color|border_width]
44 theme.menu_submenu_icon = theme.path.."/submenu.png"
45 theme.menu_height = 15
46 theme.menu_width = 100
47
48 -- You can add as many variables as
49 -- you wish and access them by using
50 -- beautiful.variable in your rc.lua
51 --theme.bg_widget = "#cc0000"
52
53 -- Define the image to load
54 theme.titlebar_close_button_normal = theme.path.."/titlebar/close_normal.png"
55 theme.titlebar_close_button_focus = theme.path.."/titlebar/close_focus.png"
56
57 theme.titlebar_ontop_button_normal_inactive = theme.path.."/titlebar/ontop_normal_inactive.png"
58 theme.titlebar_ontop_button_focus_inactive = theme.path.."/titlebar/ontop_focus_inactive.png"
59 theme.titlebar_ontop_button_normal_active = theme.path.."/titlebar/ontop_normal_active.png"
60 theme.titlebar_ontop_button_focus_active = theme.path.."/titlebar/ontop_focus_active.png"
61
62 theme.titlebar_sticky_button_normal_inactive = theme.path.."/titlebar/sticky_normal_inactive.png"
63 theme.titlebar_sticky_button_focus_inactive = theme.path.."/titlebar/sticky_focus_inactive.png"
64 theme.titlebar_sticky_button_normal_active = theme.path.."/titlebar/sticky_normal_active.png"
65 theme.titlebar_sticky_button_focus_active = theme.path.."/titlebar/sticky_focus_active.png"
66
67 theme.titlebar_floating_button_normal_inactive = theme.path.."/titlebar/floating_normal_inactive.png"
68 theme.titlebar_floating_button_focus_inactive = theme.path.."/titlebar/floating_focus_inactive.png"
69 theme.titlebar_floating_button_normal_active = theme.path.."/titlebar/floating_normal_active.png"
70 theme.titlebar_floating_button_focus_active = theme.path.."/titlebar/floating_focus_active.png"
71
72 theme.titlebar_maximized_button_normal_inactive = theme.path.."/titlebar/maximized_normal_inactive.png"
73 theme.titlebar_maximized_button_focus_inactive = theme.path.."/titlebar/maximized_focus_inactive.png"
74 theme.titlebar_maximized_button_normal_active = theme.path.."/titlebar/maximized_normal_active.png"
75 theme.titlebar_maximized_button_focus_active = theme.path.."/titlebar/maximized_focus_active.png"
76
77 theme.wallpaper = theme.path.."/background.png"
78
79 -- You can use your own layout icons like this:
80 theme.layout_fairh = theme.path.."/layouts/fairhw.png"
81 theme.layout_fairv = theme.path.."/layouts/fairvw.png"
82 theme.layout_floating = theme.path.."/layouts/floatingw.png"
83 theme.layout_magnifier = theme.path.."/layouts/magnifierw.png"
84 theme.layout_max = theme.path.."/layouts/maxw.png"
85 theme.layout_fullscreen = theme.path.."/layouts/fullscreenw.png"
86 theme.layout_tilebottom = theme.path.."/layouts/tilebottomw.png"
87 theme.layout_tileleft = theme.path.."/layouts/tileleftw.png"
88 theme.layout_tile = theme.path.."/layouts/tilew.png"
89 theme.layout_tiletop = theme.path.."/layouts/tiletopw.png"
90 theme.layout_spiral = theme.path.."/layouts/spiralw.png"
91 theme.layout_dwindle = theme.path.."/layouts/dwindlew.png"
92 -- lain stuff
93 theme.useless_gap_width = 20
94 theme.lain_icons = "/usr/share/awesome/lib/lain/icons/layout/default/"
95 theme.layout_uselessfairh = theme.path.."/layouts/fairhw.png"
96 theme.layout_uselessfair = theme.path.."/layouts/fairvw.png"
97 theme.layout_uselesstilebottom = theme.path.."/layouts/tilebottomw.png"
98 theme.layout_uselesstileleft = theme.path.."/layouts/tileleftw.png"
99 theme.layout_uselesstile = theme.path.."/layouts/tilew.png"
100 theme.layout_uselesstiletop = theme.path.."/layouts/tiletopw.png"
101 theme.layout_uselessspiral = theme.path.."/layouts/spiralw.png"
102 theme.layout_uselessdwindle = theme.path.."/layouts/dwindlew.png"
103 theme.layout_termfair = theme.lain_icons .. "termfairw.png"
104 theme.layout_cascade = theme.lain_icons .. "cascadew.png"
105 theme.layout_cascadetile = theme.lain_icons .. "cascadetilew.png"
106 theme.layout_centerwork = theme.lain_icons .. "centerworkw.png"
107
108 theme.awesome_icon = "/usr/share/awesome/icons/awesome16.png"
109
110 -- Define the icon theme for application icons. If not set then the icons
111 -- from /usr/share/icons and /usr/share/icons/hicolor will be used.
112 theme.icon_theme = nil
113
114 return theme
115 -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80