1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2025-01-11 02:08:08 +00:00
awesome-copycats/stock/wallpaper.lua
2014-05-11 22:54:41 -04:00

11 lines
232 B
Lua

local beautiful = require("beautiful")
local gears = require("gears")
-- {{{ Wallpaper
if beautiful.wallpaper then
for s = 1, screen.count() do
gears.wallpaper.maximized(beautiful.wallpaper, s, true)
end
end
-- }}}