1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2026-03-23 14:05:11 +00:00
awesome-copycats/stock/wallpaper.lua
2014-05-16 11:34:10 +02:00

11 lines
236 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
-- }}}