mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2025-01-11 02:08:08 +00:00
11 lines
232 B
Lua
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
|
|
-- }}}
|