PDA

View Full Version : [gnome] Python Screenlets



trepid666
March 23rd, 2009, 05:12 PM
Hi,

I am using some screenlets on my desktop and they use quite a bit of ram. I was wondering if there was a way to make them use less memory.

In system monitor, theres like 7 python processes, can I make them run under one process?

Thanks

mcduck
March 23rd, 2009, 05:18 PM
Running several instances of the same process doesn't use any more memory than running only one instance would. The memory is shared.

The only way to make Screenlets use less memory is to only use screenlets that don't have high memory usage, or to re-program Screenlets in a more memory-efficient way.

trepid666
March 23rd, 2009, 05:33 PM
Oh okay, thanks =)