awesomewm/autobeautiful.lua
crater2150 b241b19f44 update
2013-04-13 17:17:09 +02:00

13 lines
291 B
Lua

local beautiful = require("beautiful")
local gears = require("gears")
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