1
0
mirror of https://github.com/osmarks/random-stuff synced 2025-12-25 23:16:04 +00:00

that, but correctly

This commit is contained in:
osmarks
2025-12-24 08:38:09 +00:00
parent a1fe70a905
commit aec3ea4dee

View File

@@ -35,7 +35,7 @@ packages = [
"ttf-fira-code",
"network-manager-applet",
"kanshi",
"bemenu",
"bemenu-wayland",
"pavucontrol",
"swaylock",
"jq"
@@ -51,5 +51,5 @@ for src, trg in files.items():
real_trg = Path(trg).expanduser()
os.makedirs(real_trg.parent, exist_ok=True)
if not real_trg.exists():
subprocess.run(["sudo", "ln", "-s", real_src, real_trg])
subprocess.run(["sudo", "ln", "-s", real_src.absolute(), real_trg])
print(real_trg)