local themes_path = os.getenv("HOME") .. "/.config/awesome/" local dpi = require("beautiful.xresources").apply_dpi -- {{{ Main local theme = {} theme.wallpaper = themes_path .. "wallpaper.jpg" -- }}} -- {{{ Styles theme.font = "BebasNeue 11" -- {{{ Colors theme.fg_normal = "#b3b3b3" theme.fg_focus = "#2aff80" theme.fg_urgent = "#CC9393" theme.bg_normal = "#0b0b0b" theme.bg_focus = "#0b0b0b" theme.bg_urgent = "#0b0b0b" theme.bg_systray = theme.bg_normal -- }}} -- {{{ Borders theme.useless_gap = dpi(20) theme.border_width = dpi(2) theme.border_normal = "#3F3F3F" theme.border_focus = "#6F6F6F" theme.border_marked = "#CC9393" -- }}} -- {{{ Menu theme.menu_height = dpi(15) theme.menu_width = dpi(100) -- }}} -- {{{ Icons -- {{{ Taglist theme.taglist_squares_sel = themes_path .. "taglist/squarefz.png" theme.taglist_squares_unsel = themes_path .. "taglist/squarez.png" --theme.taglist_squares_resize = "false" -- }}} -- {{ Layout theme.layout_tile = themes_path .. "layouts/title.svg" theme.layout_fairh = themes_path .. "layouts/fairh.svg" theme.layout_fullscreen = themes_path .. "layouts/fullscreen.svg" theme.layout_floating = themes_path .. "layouts/floating.svg" -- }} -- {{{ Hotkey theme.hotkey_font = "BebasNeue 11" -- }}} -- {{{ Misc theme.awesome_icon = themes_path .. "icons/Ei-navicon.svg" -- }}} return theme -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80