18 lines
549 B
Lua
18 lines
549 B
Lua
|
-- Theme handling library
|
||
|
local beautiful = require('beautiful')
|
||
|
-- Standard awesome library
|
||
|
local gears = require('gears')
|
||
|
local xresources = require('beautiful.xresources')
|
||
|
local dpi = xresources.apply_dpi
|
||
|
|
||
|
local theme = dofile(gears.filesystem.get_themes_dir() .. 'xresources/theme.lua')
|
||
|
|
||
|
theme.wallpaper = '/home/egor/Pictures/wallpapers/wallhaven-8586my.png'
|
||
|
theme.font = 'Rubik Medium 10'
|
||
|
theme.icons = '/usr/share/icons/Papirus-Dark'
|
||
|
theme.useless_gap = dpi(6)
|
||
|
|
||
|
-- Themes define colors, icons, font and wallpapers.
|
||
|
beautiful.init(theme)
|
||
|
|