1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2024-10-22 20:41:22 +00:00
awesome-copycats/themes/blackburn/theme.lua

65 lines
3.3 KiB
Lua
Raw Normal View History

2013-08-09 15:43:28 +00:00
--[[ ]]--
-- -
-- Blackburn Awesome WM 3.5.+ theme --
-- github.com/copycat-killer --
-- -
--[[ ]]--
2013-03-28 23:06:26 +00:00
theme = {}
2013-08-09 15:43:28 +00: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-03-28 23:06:26 +00:00
theme.font = "Tamsyn 10"
2013-04-30 15:35:32 +00:00
theme.taglist_font = "Icons 10"
2013-04-17 09:36:06 +00:00
theme.fg_normal = "#D7D7D7"
theme.fg_focus = "#F6784F"
theme.bg_normal = "#060606"
theme.bg_focus = "#060606"
2013-03-28 23:06:26 +00:00
theme.fg_urgent = "#CC9393"
2013-04-16 19:29:22 +00:00
theme.bg_urgent = "#2A1F1E"
2013-03-28 23:06:26 +00:00
theme.border_width = "1"
2013-04-16 19:29:22 +00:00
theme.border_normal = "#0E0E0E"
theme.border_focus = "#404040"
2013-04-18 11:44:43 +00:00
2013-04-12 12:23:32 +00:00
theme.taglist_fg_focus = "#F6784F"
theme.taglist_bg_focus = "#060606"
2013-04-12 12:23:32 +00:00
theme.tasklist_fg_focus = "#F6784F"
theme.tasklist_bg_focus = "#060606"
2013-03-28 23:06:26 +00:00
theme.textbox_widget_margin_top = 1
theme.awful_widget_height = 14
theme.awful_widget_margin_top = 2
theme.menu_height = "16"
theme.menu_width = "140"
2013-08-09 15:43:28 +00:00
theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png"
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"
2013-03-28 23:06:26 +00:00
2013-08-09 15:43:28 +00:00
theme.layout_tile = theme.dir .. "/icons/tile.png"
theme.layout_tilegaps = theme.dir .. "/icons/tilegaps.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"
2013-04-16 19:29:22 +00:00
2013-03-28 23:06:26 +00:00
theme.tasklist_floating = ""
theme.tasklist_maximized_horizontal = ""
theme.tasklist_maximized_vertical = ""
2013-08-09 15:43:28 +00:00
theme.widget_mail_notify = theme.dir .. "/icons/mail_notify.png"
theme.widget_no_net_notify = theme.dir .. "/icons/no_net_notify.png"
2013-03-30 21:34:54 +00:00
2013-03-28 23:06:26 +00:00
return theme