awesomewm/autobeautiful.lua
2014-08-28 10:58:03 +02:00

14 lines
326 B
Lua

local beautiful = require("beautiful")
local gears = require("gears")
local awful = require("awful")
beautiful.init(awful.util.getdir("config") .. "/theme.lua")
if beautiful.wallpaper then
for s = 1, screen.count() do
gears.wallpaper.maximized(beautiful.wallpaper, s, true)
end
end
return beautiful