-
Notifications
You must be signed in to change notification settings - Fork 73
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
Add options to manually specify the path of various dependencies #1169
Comments
I don't think this is necessary, I think SteamTinkerLaunch should stick to being able to find things that are on PATH. If Homebrew does not add things to PATH globally, then this should be manually edited by the user. I understand the rationale but the solution is for things to be on the path, so that all programs can find it. It seems really strange that Homebrew would not add things to path normally, and I couldn't find any information about this online (although the vast majority of Homebrew information is about macOS, where installed commands are on PATH to my understanding). The dependencies that we do allow the user to specify paths for are more general tools than commandline utilities. The tools we allow to specify paths for are tools that would not normally be on PATH, for example Boxtron. Things like
These should be on PATH though, they could be added manually to PATH or put into a local binary path that is on the PATH variable already (such as
It would not necessarily be difficult to implement, but this is not really a feature imo. This is a workaround to a package manager issue (Homebrew, in this case). It would be pointless to install a dependency via Homebrew if applications which want to use that dependency could not use it, so surely there should be a way to add them to PATH on Linux. After digging more just after posting this, I found this article by DigitalOcean (iirc some sort of serverless provider) that has a command which has to be ran in order for Homebrew to add packages to your PATH. |
The main problem I see with this is that it will definitely clutter the global menu more than it already is, and it will grow each time we add a dependency. And I agree the examples I gave are not the same. I'm guessing we could implement this in the same way, though. As for brew not being in the PATH. It is when you run I know, for example, https://github.com/bpozdena/OneDriveGUI, you have to manually specify the path to the brew but again, we go back to that being only one dependency and several here I can see it getting messy being able to configure all the paths and in most case it should not be needed/ is easier to have things in the PATH So I can see why you would see this more as a fix for the brew problem vs an actual feature request |
That is really strange. If you run SteamTInkerLaunch from this terminal session, can it find the Homebrew path? In that case surely it should take the variable from the environment. For example if you were to run these commands, SteamTinkerLaunch would pick up the updated PATH value for that session with that variable set only. $ export PATH="${PATH}:/home/username/test"
$ steamtinkerlaunch settings If you run this, the SteamTinkerLaunch log will show the Is this perhaps a configuration problem with Steam? Is Bazzite using an unofficial repackaging of Steam i.e. the Flatpak that doesn't have access to the Brew paths? I would really prefer not to add workarounds for finding things that should be on PATH. |
I don't think so. From what I understand bazzite uses the steam package from fedora.
Yes, if I run steamtinkerlaunch settings from the terminal, it will find the brew path.
But when ran from Steam the path is
notice
|
From testing it does seem like there is some weirdness about how Steam can detect PATH. I remember something related to this come to think of it with ProtonUp-Qt and Steam launch option's not being able to find the local install at i.e. I'll do some more testing, my guess is that paths have to be set elsewhere (maybe in |
It would be good to check where |
I thought some more about this, and I guess it is not really viable to get Steam to pull from an updated PATH variable. But on the other hand, introducing for example the Homebrew paths opens up a can of worms. Then again, we already do this on Steam Deck for the I am thinking we should have a way to inject custom paths that SteamTinkerLaunch can load, which in the context of this issue I think is more or less what you are asking. The trouble is doing this in a clean way and a way that would actually be helpful. I think hardcoding Homebrew paths is not the right solution on its face, but I think I was mistaken and that you are correct that we need a way to get SteamTinkerLaunch to load alternative dependency paths. Maybe that's as high level as we need it to be, a list of "alternative dependency paths". I am not sure where would be best to specify this though. Initially I considered the Having it there would make it easier to expose on the GUI though. But I have no idea how we could expose such a thing on the Global Menu from a GUI perspective; a textbox is not great, and we can't have a dynamic GUI with Yad or a multi-folder select thing. It would basically be limited to a textbox, since internally in the Maybe we just don't need to put it on the GUI, or we can just expose it as a plain textbox. I have not dug into the code to see how viable it would be to load these paths early, but I think it should be. I think we can read the global config before checking for dependencies, although we should keep in mind that we would want to load this on a separate code path for SteamOS or before So in short, having thought more about it, this enhancement makes sense and should be doable, it's just a case of:
So there are still some questions on my end on the best approach, but I am more open to this idea after thinking more about it. 😄 |
What if we had a file (or maybe we could just do this in the global config file just not exposed on the gui) where we can add a comma separated list of paths By default this will contain the homebrew path and Then just read from that file early in the code? Do we really need to have One problem I see adding homebrew to the path for STL is how would it handle a dependices being available through the system package manager AND through homebrew? Homebrew doesn't use system packages and instead installs its own copies. So for example I have systemd provided by homebrew and the system Another example is wget If we add homebrew to the path which wget will be used? I think that's why homebrew is not added to the system path unless you're explicitly running an interactive shell Though I think the path is read left to right so if you're system paths are first it should use those vs brew? |
System Information
Feature Description
As I mentioned before steamtinkerlaunch is not finding dependencies installed with brew like
peres
for example.It turns out this is because brew is only added to the PATH on interactive sessions (i.e., a terminal).
It is not in the path when you run steamtinkerlaunch so therefore it can't find it.
I was thinking maybe we can add the homebrew paths somewhere in the STL code, but I think that's better left to the user.
Instead it may be a good idea to allow the user to specify where dependices like
peres
are stored.This is already done for some dependencies, such as boxtron, Roberta, notify-send, and netstat, in the global menu.
We could extend this list to include all dependencies of steamtinkerlaunch (or maybe have another menu as it may get rather long and unwieldy)
The user may for example, have a locally built game scope or mangohud they want to use instead of the one in there system's PATH
I have no idea how easy this would be to implement, but conceptually, it sounds good. I will try to take a look at it soon.
Of course if any has any ideas or wants to take a shot at it please do feel free!
The text was updated successfully, but these errors were encountered: