53 lines
2.1 KiB
Lua
53 lines
2.1 KiB
Lua
--[[ ]]--
|
|
-- -
|
|
-- Rainbow Awesome WM 3.5.+ theme --
|
|
-- github.com/copycat-killer --
|
|
-- -
|
|
--[[ ]]--
|
|
|
|
|
|
theme = {}
|
|
|
|
theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/rainbow"
|
|
theme.wallpaper = theme.dir .. "/wall.png"
|
|
|
|
theme.font = "Tamsyn 10"
|
|
theme.fg_normal = "#9E9E9E"
|
|
theme.fg_focus = "#EBEBFF"
|
|
theme.bg_normal = "#242424"
|
|
theme.bg_focus = "#242424"
|
|
theme.fg_urgent = "#000000"
|
|
theme.bg_urgent = "#FFFFFF"
|
|
theme.border_width = "1"
|
|
theme.border_normal = "#242424"
|
|
theme.border_focus = "#999999"
|
|
theme.taglist_fg_focus = "#EBEBFF"
|
|
theme.taglist_bg_focus = "#3D3D3D"
|
|
theme.menu_height = "16"
|
|
theme.menu_width = "140"
|
|
|
|
theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png"
|
|
theme.taglist_squares_sel = theme.dir .. "/icons/square_sel2.png"
|
|
theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png"
|
|
theme.widget_mail_notify = theme.dir .. "/icons/mail_notify.png"
|
|
theme.widget_no_net_notify = theme.dir .. "/icons/no_net_notify.png"
|
|
|
|
theme.layout_txt_tile = "[t]"
|
|
theme.layout_txt_tileleft = "[l]"
|
|
theme.layout_txt_tilebottom = "[b]"
|
|
theme.layout_txt_tiletop = "[tt]"
|
|
theme.layout_txt_fairv = "[fv]"
|
|
theme.layout_txt_fairh = "[fh]"
|
|
theme.layout_txt_spiral = "[s]"
|
|
theme.layout_txt_dwindle = "[d]"
|
|
theme.layout_txt_max = "[m]"
|
|
theme.layout_txt_fullscreen = "[F]"
|
|
theme.layout_txt_magnifier = "[M]"
|
|
theme.layout_txt_floating = "[*]"
|
|
|
|
theme.tasklist_floating = ""
|
|
theme.tasklist_maximized_horizontal = ""
|
|
theme.tasklist_maximized_vertical = ""
|
|
|
|
return theme
|