Filter vertical walls, add vorta

This commit is contained in:
Kevin Alberts 2024-02-05 20:19:39 +01:00
parent b279b25846
commit 1e65025045

View file

@ -646,6 +646,9 @@ class Kuro(BaseTheme):
self.log_info("Starting KDE connect indicator...")
utils.execute_once("/usr/bin/kdeconnect-indicator")
self.log_info("Starting automatic backup scheduler...")
utils.execute_once("/usr/bin/vorta")
# Update color scheme
self.initialize_colorscheme()
@ -782,7 +785,7 @@ class Kuro(BaseTheme):
wallpapers = []
wallpaper_dir = Config.get("desktop_bg_folder", "")
try:
wallpapers = os.listdir(wallpaper_dir)
wallpapers = [x for x in os.listdir(wallpaper_dir) if ".vertical." not in x]
except os.error as e:
logger.warning("Could not load wallpapers from directory: {}".format(e))