fix(wallpaper): awesome version check

As I understand it, the string in `awesome.version` depends on the package manager / build settings. Thus this is still not a end solution.
This commit is contained in:
Nooo37 2022-04-11 18:38:23 +02:00 committed by GitHub
parent 3164486da0
commit fbb914a572
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ function setup(args)
end, end,
}) })
end end
if awesome.version == "v4.3" then if awesome.version == "v4.3" or awesome.version == "4.3" then
awful.screen.connect_for_each_screen(set_wallpaper) awful.screen.connect_for_each_screen(set_wallpaper)
else else
screen.connect_signal("request::wallpaper", set_wallpaper) screen.connect_signal("request::wallpaper", set_wallpaper)