Not all linux distributions have /bin/{shell} (e.g. NixOS) #296
sweenu
started this conversation in
Ideas - done & released
Replies: 1 comment 1 reply
-
Hi, thank you for your post and for your feedback! 🙂 You are right, #108 is definitely needed. I can't give any timetable for it, but I think it could be the next big thing to aim for. I've been thinking about it quite a lot recently. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Several Linux distributions do not follow the FHS.
Here's how it looks like for me on NixOS:
All executables on NixOS are in my nix store (/nix/store) and are symbolically linked to some other places (here for example in /run/current-system/sw, which is in my $PATH).
So the only way for me to use that plugin is to manually
ln -s /run/current-system/sw/bin/bash /bin/bash
. And choose the bash option in the plugin's settings. It's not ideal, it's more of a hack that I truly wish I could avoid doing just for one obsidian plugin.There is a real need for #108 or at least adding an option for
/bin/sh
because this will always be present in NixOS and I figure also in other such distros.Love the plugin otherwise, very good job!
Beta Was this translation helpful? Give feedback.
All reactions