1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2025-01-10 17:58:09 +00:00

Moved Wallpaper to ./stock/wallpaper

This commit is contained in:
Alexandre Viau 2014-05-11 22:54:41 -04:00
parent 773d424b8f
commit fe44ee12a1
9 changed files with 18 additions and 40 deletions

View file

@ -49,11 +49,7 @@ end
-- }}}
-- {{{ Wallpaper
if beautiful.wallpaper then
for s = 1, screen.count() do
gears.wallpaper.maximized(beautiful.wallpaper, s, true)
end
end
require("stock.wallpaper")
-- }}}
-- {{{ Menu

View file

@ -60,11 +60,7 @@ end
-- }}}
-- {{{ Wallpaper
if beautiful.wallpaper then
for s = 1, screen.count() do
gears.wallpaper.maximized(beautiful.wallpaper, s, true)
end
end
require("stock.wallpaper")
-- }}}
-- {{{ Menu

View file

@ -49,11 +49,7 @@ end
-- }}}
-- {{{ Wallpaper
if beautiful.wallpaper then
for s = 1, screen.count() do
gears.wallpaper.maximized(beautiful.wallpaper, s, true)
end
end
require("stock.wallpaper")
-- }}}
-- {{{ Menu

View file

@ -51,11 +51,7 @@ end
-- }}}
-- {{{ Wallpaper
if beautiful.wallpaper then
for s = 1, screen.count() do
gears.wallpaper.maximized(beautiful.wallpaper, s, true)
end
end
require("stock.wallpaper")
-- }}}
-- {{{ Menu

View file

@ -55,11 +55,7 @@ end
-- }}}
-- {{{ Wallpaper
if beautiful.wallpaper then
for s = 1, screen.count() do
gears.wallpaper.maximized(beautiful.wallpaper, s, true)
end
end
require("stock.wallpaper")
-- }}}
-- {{{ Freedesktop Menu

View file

@ -53,11 +53,7 @@ end
-- }}}
-- {{{ Wallpaper
if beautiful.wallpaper then
for s = 1, screen.count() do
gears.wallpaper.maximized(beautiful.wallpaper, s, true)
end
end
require("stock.wallpaper")
-- }}}
-- {{{ Menu

View file

@ -56,11 +56,7 @@ end
-- }}}
-- {{{ Wallpaper
if beautiful.wallpaper then
for s = 1, screen.count() do
gears.wallpaper.maximized(beautiful.wallpaper, s, true)
end
end
require("stock.wallpaper")
-- }}}
-- {{{ Menu

View file

@ -54,11 +54,7 @@ end
-- }}}
-- {{{ Wallpaper
if beautiful.wallpaper then
for s = 1, screen.count() do
gears.wallpaper.maximized(beautiful.wallpaper, s, true)
end
end
require("stock.wallpaper")
-- }}}
-- {{{ Menu

10
stock/wallpaper.lua Normal file
View file

@ -0,0 +1,10 @@
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
-- }}}