Same wallpaper on both screens
This commit is contained in:
parent
6c23ec4743
commit
3aadbe63fb
|
@ -25,15 +25,10 @@ local wallpaper_root = home .. "/Pictures/current-wallpapers/"
|
||||||
local max_wallpaper_index = 192
|
local max_wallpaper_index = 192
|
||||||
math.randomseed(os.time())
|
math.randomseed(os.time())
|
||||||
|
|
||||||
current_wallpaper_index = math.floor(1 + math.random() * (max_wallpaper_index))
|
|
||||||
|
|
||||||
function update_wallpaper()
|
function update_wallpaper()
|
||||||
|
local index = math.floor(1 + math.random() * (max_wallpaper_index))
|
||||||
|
local wallpaper = wallpaper_root .. string.format("%04d", index) .. '.jpg'
|
||||||
for s = 1, screen.count() do
|
for s = 1, screen.count() do
|
||||||
current_wallpaper_index = current_wallpaper_index + 1
|
|
||||||
if current_wallpaper_index > max_wallpaper_index then
|
|
||||||
current_wallpaper_index = 1
|
|
||||||
end
|
|
||||||
local wallpaper = wallpaper_root .. string.format("%04d", current_wallpaper_index) .. '.jpg'
|
|
||||||
gears.wallpaper.maximized(wallpaper, s, true)
|
gears.wallpaper.maximized(wallpaper, s, true)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -507,7 +502,9 @@ globalkeys = awful.util.table.join(
|
||||||
os.execute('xdotool type --clearmodifiers ' .. options.email:sub(i,i))
|
os.execute('xdotool type --clearmodifiers ' .. options.email:sub(i,i))
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
end, {description="lol", group="autoinput"})
|
end, {description="lol", group="autoinput"}),
|
||||||
|
|
||||||
|
awful.key({modkey}, "e", update_wallpaper)
|
||||||
)
|
)
|
||||||
|
|
||||||
clientkeys = awful.util.table.join(
|
clientkeys = awful.util.table.join(
|
||||||
|
|
Loading…
Reference in New Issue