feat: fill not max

This commit is contained in:
Kat Inskip 2025-02-26 16:56:32 -08:00
parent b69c86091e
commit a3beecbfaa
Signed by: kat
GPG key ID: 465E64DECEA8CF0F

View file

@ -5,5 +5,5 @@ from konawall.module_loader import add_environment
@add_environment("feh_setter")
def set_wallpapers(files: list, displays: list):
command = ["feh", "--bg-max"] + files
command = ["feh", "--bg-fill"] + files
subprocess.run(command)