Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hm: option for default linking method #182

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

Misterio77
Copy link
Contributor

Hi all!

Here's a (slightly late) follow up to #99.

This adds an option that allows users to change the default linking method.

Bindfs has been bothering me with the performance hits, and writing method = symlink for every entry is cumbersome. The default still is bindfs, so no breaking changes.

To make this implementation cleaner, I also refactored the directory type to use coercedTo (in its own commit, to be easier to review).

@Misterio77
Copy link
Contributor Author

Can confirm there are no diffs in my home path when running this branch versus the main branch

@maxbfuer
Copy link

maxbfuer commented Jun 4, 2024

I've been using this PR for about a week now and everything is working great on my end. Thank you both for your work on this PR and project :)

Copy link
Collaborator

@talyz talyz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks a lot for your work on this! Looks great! Just some minor comments.

specially by some programs that may e.g. generate
errors/warnings, or replace them.

This can be overrided on a per entry basis.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
This can be overrided on a per entry basis.
This can be overridden on a per entry basis.

getDirMethod = v: v.method or "bindfs";
isBindfs = v: (getDirMethod v) == "bindfs";
isSymlink = v: (getDirMethod v) == "symlink";
getDirPath = v: v.directory;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since you're removing all the other accessors, maybe this one should go, too?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants