GitSquared / edex-ui

A cross-platform, customizable science fiction terminal emulator with advanced monitoring & touchscreen support.
GNU General Public License v3.0
40.49k stars 2.55k forks source link

feat: added a more detailed process view modal #922

Closed KjartanOli closed 3 years ago

KjartanOli commented 3 years ago

Don't know how useful this will be, but I added a new modal which gives a more detailed listing of active processes. It is opened by clicking the top processes list.

edex

GitSquared commented 3 years ago

This is very cool! Is this the list scrollable or fixed-length? Also, could we perhaps emphasize the title row by making the text bold before merging this?

KjartanOli commented 3 years ago

Made the header row bold, also removed it from the process name, and added a field at the end that shows the runtime of the process. As it stands, the list is fixed length at the top 30 processes, although I have been thinking about making it a config variable. I might also look into making it scrollable. edex2

GitSquared commented 3 years ago

For the scroll, you might use the settings modal as an example.

KjartanOli commented 3 years ago

I made it a scrollable list of all processes returned by window.si.processes. Also applied the same css to the header row as the settings modal. edex3