]> git.rmz.io Git - dotfiles.git/blob - awesome/themes/shattered/theme.lua
nvim: add FPP copyright snippet
[dotfiles.git] / awesome / themes / shattered / theme.lua
1 ---------------------------
2 -- Default awesome theme --
3 ---------------------------
4
5 theme = {}
6
7 local themes = gears.filesystem.get_dir("config").."/themes/shattered"
8
9 theme.font = "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 = themes.."/taglist/squarefw.png"
39 theme.taglist_squares_unsel = themes.."/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 = themes.."/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 = themes.."/titlebar/close_normal.png"
55 theme.titlebar_close_button_focus = themes.."/titlebar/close_focus.png"
56
57 theme.titlebar_ontop_button_normal_inactive = themes.."/titlebar/ontop_normal_inactive.png"
58 theme.titlebar_ontop_button_focus_inactive = themes.."/titlebar/ontop_focus_inactive.png"
59 theme.titlebar_ontop_button_normal_active = themes.."/titlebar/ontop_normal_active.png"
60 theme.titlebar_ontop_button_focus_active = themes.."/titlebar/ontop_focus_active.png"
61
62 theme.titlebar_sticky_button_normal_inactive = themes.."/titlebar/sticky_normal_inactive.png"
63 theme.titlebar_sticky_button_focus_inactive = themes.."/titlebar/sticky_focus_inactive.png"
64 theme.titlebar_sticky_button_normal_active = themes.."/titlebar/sticky_normal_active.png"
65 theme.titlebar_sticky_button_focus_active = themes.."/titlebar/sticky_focus_active.png"
66
67 theme.titlebar_floating_button_normal_inactive = themes.."/titlebar/floating_normal_inactive.png"
68 theme.titlebar_floating_button_focus_inactive = themes.."/titlebar/floating_focus_inactive.png"
69 theme.titlebar_floating_button_normal_active = themes.."/titlebar/floating_normal_active.png"
70 theme.titlebar_floating_button_focus_active = themes.."/titlebar/floating_focus_active.png"
71
72 theme.titlebar_maximized_button_normal_inactive = themes.."/titlebar/maximized_normal_inactive.png"
73 theme.titlebar_maximized_button_focus_inactive = themes.."/titlebar/maximized_focus_inactive.png"
74 theme.titlebar_maximized_button_normal_active = themes.."/titlebar/maximized_normal_active.png"
75 theme.titlebar_maximized_button_focus_active = themes.."/titlebar/maximized_focus_active.png"
76
77 theme.wallpaper = themes.."/background.png"
78
79 -- You can use your own layout icons like this:
80 theme.layout_fairh = themes.."/layouts/fairhw.png"
81 theme.layout_fairv = themes.."/layouts/fairvw.png"
82 theme.layout_floating = themes.."/layouts/floatingw.png"
83 theme.layout_magnifier = themes.."/layouts/magnifierw.png"
84 theme.layout_max = themes.."/layouts/maxw.png"
85 theme.layout_fullscreen = themes.."/layouts/fullscreenw.png"
86 theme.layout_tilebottom = themes.."/layouts/tilebottomw.png"
87 theme.layout_tileleft = themes.."/layouts/tileleftw.png"
88 theme.layout_tile = themes.."/layouts/tilew.png"
89 theme.layout_tiletop = themes.."/layouts/tiletopw.png"
90 theme.layout_spiral = themes.."/layouts/spiralw.png"
91 theme.layout_dwindle = themes.."/layouts/dwindlew.png"
92
93 theme.awesome_icon = "/usr/share/awesome/icons/awesome16.png"
94
95 -- Define the icon theme for application icons. If not set then the icons
96 -- from /usr/share/icons and /usr/share/icons/hicolor will be used.
97 theme.icon_theme = nil
98
99 return theme
100 -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80