Update 15.08.2024

This commit is contained in:
Loïc Gremaud 2024-08-15 16:10:44 +02:00
parent 6b1d53f65d
commit 78ce7dac48
Signed by: Legrems
GPG Key ID: D4620E6DF3E0121D
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@ folders = [
"~/Documents/PolyLAN/", "~/Documents/PolyLAN/",
"~/Documents/Python/", "~/Documents/Python/",
"~/Documents/", "~/Documents/",
"~/Documents/Games/Minecraft/modded/",
] ]
available_folders = sh.find(*[Path(f).expanduser() for f in folders] + "-mindepth 1 -maxdepth 1 -type d".split(" ")).strip().split("\n") available_folders = sh.find(*[Path(f).expanduser() for f in folders] + "-mindepth 1 -maxdepth 1 -type d".split(" ")).strip().split("\n")

View File

@ -106,7 +106,7 @@ for selected_group in selections:
if not servers: if not servers:
continue continue
window_name = get_window_name(info["section"]) window_name = get_window_name(selected_group)
if windows := active_session.windows.filter(name=window_name): if windows := active_session.windows.filter(name=window_name):
windows[0].select() windows[0].select()
continue continue