From e32c487fcab0f95ecee9ede6a5b77fd016ccf260 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Mon, 29 Feb 2016 16:27:16 +1300 Subject: [PATCH] awesome: Fit wallpaper and keep aspect ratio --- .config/awesome/rc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index d8afcd5c..bea00e0f 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -85,7 +85,7 @@ beautiful.init(awful.util.getdir("config") .. "/themes/occam/theme.lua") -- Wallpaper if beautiful.wallpaper then for s = 1, screen.count() do - gears.wallpaper.maximized(beautiful.wallpaper, s, true) + gears.wallpaper.fit(beautiful.wallpaper, s) end end