2015-08-16 14:01:45 +02:00
|
|
|
|
2013-09-13 21:20:22 +02:00
|
|
|
--[[
|
|
|
|
|
|
|
|
Blackburn Awesome WM config 2.0
|
|
|
|
github.com/copycat-killer
|
|
|
|
|
|
|
|
--]]
|
|
|
|
|
2016-12-29 13:43:42 +01:00
|
|
|
local theme = {}
|
2013-09-13 21:20:22 +02:00
|
|
|
|
|
|
|
theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/blackburn"
|
|
|
|
theme.wallpaper = theme.dir .. "/wall.png"
|
|
|
|
theme.topbar_path = "png:" .. theme.dir .. "/icons/topbar/"
|
|
|
|
|
2013-09-27 14:35:47 +02:00
|
|
|
theme.font = "Tamsyn 10.5"
|
2013-09-13 21:20:22 +02:00
|
|
|
theme.taglist_font = "Icons 10"
|
|
|
|
theme.fg_normal = "#D7D7D7"
|
|
|
|
theme.fg_focus = "#F6784F"
|
|
|
|
theme.bg_normal = "#060606"
|
|
|
|
theme.bg_focus = "#060606"
|
|
|
|
theme.fg_urgent = "#CC9393"
|
|
|
|
theme.bg_urgent = "#2A1F1E"
|
2016-12-29 13:43:42 +01:00
|
|
|
theme.border_width = 1
|
2013-09-13 21:20:22 +02:00
|
|
|
theme.border_normal = "#0E0E0E"
|
|
|
|
theme.border_focus = "#F79372"
|
|
|
|
|
|
|
|
theme.taglist_fg_focus = "#F6784F"
|
|
|
|
theme.taglist_bg_focus = "#060606"
|
|
|
|
theme.tasklist_fg_focus = "#F6784F"
|
|
|
|
theme.tasklist_bg_focus = "#060606"
|
2016-12-29 13:43:42 +01:00
|
|
|
theme.menu_height = 16
|
|
|
|
theme.menu_width = 140
|
2013-09-13 21:20:22 +02:00
|
|
|
|
2017-01-05 14:05:15 +01:00
|
|
|
theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png"
|
2013-09-13 21:20:22 +02:00
|
|
|
theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png"
|
|
|
|
theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png"
|
|
|
|
theme.arrl_lr_pre = theme.dir .. "/icons/arrl_lr_pre.png"
|
|
|
|
theme.arrl_lr_post = theme.dir .. "/icons/arrl_lr_post.png"
|
|
|
|
|
|
|
|
theme.layout_tile = theme.dir .. "/icons/tile.png"
|
|
|
|
theme.layout_tileleft = theme.dir .. "/icons/tileleft.png"
|
|
|
|
theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png"
|
|
|
|
theme.layout_tiletop = theme.dir .. "/icons/tiletop.png"
|
|
|
|
theme.layout_fairv = theme.dir .. "/icons/fairv.png"
|
|
|
|
theme.layout_fairh = theme.dir .. "/icons/fairh.png"
|
|
|
|
theme.layout_spiral = theme.dir .. "/icons/spiral.png"
|
|
|
|
theme.layout_dwindle = theme.dir .. "/icons/dwindle.png"
|
|
|
|
theme.layout_max = theme.dir .. "/icons/max.png"
|
|
|
|
theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png"
|
|
|
|
theme.layout_magnifier = theme.dir .. "/icons/magnifier.png"
|
|
|
|
theme.layout_floating = theme.dir .. "/icons/floating.png"
|
|
|
|
|
|
|
|
theme.tasklist_disable_icon = true
|
2016-12-29 13:43:42 +01:00
|
|
|
theme.useless_gap = 8
|
2013-03-30 22:34:54 +01:00
|
|
|
|
2013-03-29 00:06:26 +01:00
|
|
|
return theme
|