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

11 lines
232 B
Lua
Raw Normal View History

2014-05-12 02:54:41 +00:00
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
-- }}}