-
Notifications
You must be signed in to change notification settings - Fork 3
/
theme.dark.master.lua
56 lines (40 loc) · 1.6 KB
/
theme.dark.master.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---------------------------
-- my awesome theme -------
---------------------------
theme = {}
theme.rodentbane_bg = "red"
theme.font = "ProggyTinyTTSZ 12"
theme.tasklist_font = "Sans 7"
theme.titlebar_font = "Sans 7"
theme.bg_normal = "#171717"
theme.bg_focus = "#3D3A30"
theme.bg_urgent = "#171717"
theme.fg_normal = "#575244"
theme.fg_focus = "#ffffff"
theme.fg_urgent = "#ffc500"
theme.border_width = 1
theme.border_normal = "#171717"
theme.border_focus = "#3D3A30"
theme.border_marked = "#91231c"
theme.widget_label = "#333333"
theme.widget_value = "#555555"
theme.font_mono = "Monospace 6.5"
theme.help_highlight = theme.fg_urgent
theme.tasklist_floating_icon = "~/.config/awesome/icons/floating.png"
theme.menu_submenu_icon = "/usr/share/awesome/themes/default/submenu.png"
theme.menu_height = 15
theme.menu_width = 100
theme.wallpaper_cmd = { "hsetroot -solid '#3D3A30'" }
local layout_icons = "/home/koniu/.config/awesome/icons/layouts/"
theme.layout_fairh = layout_icons .. "fairh.png"
theme.layout_fairv = layout_icons .. "fairv.png"
theme.layout_floating = layout_icons .. "floating.png"
theme.layout_magnifier = layout_icons .. "magnifier.png"
theme.layout_max = layout_icons .. "max.png"
theme.layout_tilebottom = layout_icons .. "tilebottom.png"
theme.layout_tileleft = layout_icons .. "tileleft.png"
theme.layout_tile = layout_icons .. "tile.png"
theme.layout_tiletop = layout_icons .. "tiletop.png"
theme.awesome_icon = "/usr/share/awesome/icons/awesome16.png"
return theme
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80