I am currently creating a system monitor application for which I would like it to work as a widget. Please see example of my application below:
For this application I use ElectronJS
on Linux - Pop!_Os. However, ElectronJS natively supports only “always-on-top” window settings.
Is there any way to set the window to be “always-on-bottom” (inverse of top-most)?
I’m thinking about these options:
- Create a C# program where I would change the Z-order of the windows. However, so far I could only find examples for Windows OS.
- Create a Javascript call to the terminal to change the Z-order. I haven’t found out if this is possible yet.
What do you suggest? What do you think is the best solution?