updated wallpaper location

This commit is contained in:
paul-loedige
2024-11-25 23:43:55 +01:00
parent a2d6d60e04
commit f63e615855
+5 -5
View File
@@ -1300,17 +1300,17 @@ screens = []
defined_main_window = False
for width, height in screen_resolutions:
if width == main_screen_res[0] and height == main_screen_res[1]:
screens.append(Screen(top=main_bar, wallpaper= "~/Pictures/Wallpapers/gruvbox-like.jpg", wallpaper_mode="fill"))
screens.append(Screen(top=main_bar, wallpaper= "~/Pictures/04_Wallpapers/gruvbox-like.jpg", wallpaper_mode="fill"))
defined_main_window = True
elif width == top_screen_res[0] and height == top_screen_res[1]:
screens.append(Screen(bottom=top_bar, wallpaper="~/Pictures/Wallpapers/Xorg.jpg", wallpaper_mode="fill"))
screens.append(Screen(bottom=top_bar, wallpaper="~/Pictures/04_Wallpapers/Xorg.jpg", wallpaper_mode="fill"))
elif width < height:
screens.append(Screen(top=left_bar, wallpaper="~/Pictures/Wallpapers/gruvbox-like-left.jpg", wallpaper_mode="fill"))
screens.append(Screen(top=left_bar, wallpaper="~/Pictures/04_Wallpapers/gruvbox-like-left.jpg", wallpaper_mode="fill"))
elif width == max_width and not defined_main_window:
screens.append(Screen(top=main_bar, wallpaper= "~/Pictures/Wallpapers/gruvbox-like.jpg", wallpaper_mode="fill"))
screens.append(Screen(top=main_bar, wallpaper= "~/Pictures/04_Wallpapers/gruvbox-like.jpg", wallpaper_mode="fill"))
defined_main_window = True
else:
screens.append(Screen(top=secondary_bar, wallpaper= "~/Pictures/Wallpapers/gruvbox-like.jpg", wallpaper_mode="fill"))
screens.append(Screen(top=secondary_bar, wallpaper= "~/Pictures/04_Wallpapers/gruvbox-like.jpg", wallpaper_mode="fill"))
#+end_src
**** Automatically Reconfigure Screens
Controls whether or not to automatically reconfigure screens when there are changes in randr output configuration.