-
-
Notifications
You must be signed in to change notification settings - Fork 110
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
Issues with bin wrappers #295
Comments
Hi, That's interesting. If I understand you correctly the Regarding the second issue. Running You'd need to enter inside a JuNest session (simply run |
Should files in What would be the simplest way to run programs like neofetch or nvim as if they were a part of steamOS, like I were to run |
As far as I'm aware,
|
First off, I am typing this on a Steamdeck, so my writing may be a bit crude.
I had trouble getting the wrappers working, I figured it out and it could be zsh or dotfile related, but I figured I should share in case this is a compatibility issue.
export PATH="$PATH:~/.junest/usr/bin_wrappers"
this did not work, showed up in path, but the shell couldnt find any commands. I noticedexport PATH=~/.local/share/junest/bin:$PATH
converted to the full path when I checked with echo, but the wrappers dir did not. Due to some issue, maybe with the quotes,export PATH="$PATH:$HOME/.junest/usr/bin_wrappers"
does work and also shows full path in echo.Second issue, sort of. Junest works fine, but I dont understand the sandboxing. I noticed that executing
/home/deck/.junest/bin/neofetch
shows SteamOS and uses the configs in my home dir, but/home/deck/.junest/usr/bin_wrappers/neofetch
or executing neofetch shows Arch and uses Junest configs. I guess I know its sandboxed, but is there a builtin way around that? I would like to use my main configs because junest is one of the only ways I can install things like neofetch or my zsh plugins without disabling read only mode.The text was updated successfully, but these errors were encountered: