local awful = require("awful") local gears = require("gears") awful.util = require("awful.util") local theme = {} local elements = require("theme.elements") theme = gears.table.join(theme, elements) local layout_icons = require("theme.layout_icons") theme = gears.table.join(theme, layout_icons) local titlebar = require("theme.titlebar") theme = gears.table.join(theme, titlebar) local widgets = require("theme.widgets") theme = gears.table.join(theme, widgets) theme.icon_theme = "Arc" theme.font = "JetBrainsMono Nerd Font Mono 10" theme.wallpaper = os.getenv("HOME") .. "/Pictures/background.jpg" return theme