CameronRedmore / memory-deck

A Decky Loader plugin that allows scanning and editing of memory values.
GNU General Public License v3.0
37 stars 11 forks source link

More legible process names #32

Closed cescofry closed 4 months ago

cescofry commented 1 year ago

During the process selection we are provided a list of processes, but the names are quite long and contain the entire path, which makes it illegible and look quite junky.

Screenshot 2023-04-27 at 10 52 52 AM
cescofry commented 1 year ago

I think playing with running ps -u 1000 -o pid,command for filtering blacklist and then matching the pid with the results of ps -u 1000 co pid,command should do the trick. (argument c shows only the process name instead of the path).

I should be able to make it work if there is interest.

HeyItsWaters commented 1 year ago

yes cleaning up the process list i agree with. i really wanted to only list the names and not paths, but it gets weird because some folks are using SteamOS to launch non-Steam games so it's kind of random where they are installed. sometimes having the context of where the game is installed is useful...if you can come up with an elegant solution i look forward to it.

HeyItsWaters commented 4 months ago

this should be resolved/improved with PR #48

once v0.1.9 is released this will be available.