feat: feh bg-max

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

View file

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