Same wallpaper on both screens

This commit is contained in:
Thomas Forgione 2018-09-05 11:55:21 +02:00
parent 6c23ec4743
commit 3aadbe63fb
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
1 changed files with 5 additions and 8 deletions

View File

@ -25,15 +25,10 @@ local wallpaper_root = home .. "/Pictures/current-wallpapers/"
local max_wallpaper_index = 192
math.randomseed(os.time())
current_wallpaper_index = math.floor(1 + math.random() * (max_wallpaper_index))
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
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)
end
end
@ -507,7 +502,9 @@ globalkeys = awful.util.table.join(
os.execute('xdotool type --clearmodifiers ' .. options.email:sub(i,i))
end
end)
end, {description="lol", group="autoinput"})
end, {description="lol", group="autoinput"}),
awful.key({modkey}, "e", update_wallpaper)
)
clientkeys = awful.util.table.join(