DadSchoorse / vkBasalt

a vulkan post processing layer for linux
zlib License
1.24k stars 52 forks source link

feature req: per-app config file support #231

Closed nergdron closed 11 months ago

nergdron commented 11 months ago

been playing with this a little bit, and I was thinking about writing a simple configuration GUI. however, I realized that before that would be actually useful, there's a feature I really really want: per-application config file support.

something like matching process names to ${SEARCH_PATH}/app.d/${NAME}.conf should be sufficient, but really anything that lets you make configuration per-app would be sufficient.

Right now this is my biggest pain point with using vkbasalt in any real way, and once it's in place I think writing a simple config GUI would be a lot more useful.

DadSchoorse commented 11 months ago

vkBasalt first tries to load the config file from the working directory, which is effectively per-app for steam games. Or you can set the env variable for each app if you want to use a different location: https://github.com/DadSchoorse/vkBasalt#configure

nergdron commented 11 months ago

oh! I didn't realize there was working directory loading, I missed that. that's perfect actually, thanks!