feat: mount remote home dir by default

Less surprising than mounting / — users typically want their own
files, and accessing system paths still works via absolute paths.
This commit is contained in:
2026-04-26 10:37:19 +02:00
parent 70181d9215
commit 64a65031b8
+1 -1
View File
@@ -107,7 +107,7 @@ func mount_sshfs(hostname string, user string, ifile string, port string, mount
"-o", "reconnect",
"-o", "ServerAliveInterval=15",
"-o", "ServerAliveCountMax=3",
user+"@"+hostname+":/", mount)
user+"@"+hostname+":", mount)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
return cmd.Run()