diff options
-rwxr-xr-x | .config/sway/bin/wallpaper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/sway/bin/wallpaper.py b/.config/sway/bin/wallpaper.py index 4445ae7..d8ac680 100755 --- a/.config/sway/bin/wallpaper.py +++ b/.config/sway/bin/wallpaper.py @@ -167,7 +167,7 @@ while True: if args.window_manager == 'sway': bg_cmd = ['swaybg', '-i', selected_file_path, '-m', 'fill'] elif args.window_manager == 'i3': - bg_cmd = ['feh', '--bg-scale', selected_file_path] + bg_cmd = ['feh', '--bg-fill', selected_file_path] replacing_process = subprocess.Popen(bg_cmd) |