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