LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   What app is this.... (https://www.linuxquestions.org/questions/linux-newbie-8/what-app-is-this-108553/)

NewtonIX 10-25-2003 11:08 PM

What app is this....
 
In Crashed_agains sig I pulled up some screen shots of his desktop and noticed this cool app running to the left showing cpu usage and such

http://www.vincentmerlino.com/albums...ktop.sized.jpg

What is that and where can i get it

:Pengy:

megaspaz 10-25-2003 11:20 PM

gkrellm. you can find gkrellm rpms (gkrellm, plugins, themes) for your version of redhat @ http://shrike.freshrpms.net

NewtonIX 10-25-2003 11:57 PM

Awesome Thanks!

Now i just gotta learn what all them mean lol

I also got another kind of related question

I want gkrellm to run all the time is there a way to remove it from the "Taskbar"
I like to keep as few things in the task bar as possible

megaspaz 10-26-2003 12:06 AM

right click on the top of the gkrellm window and choose configuration. click the properties tab in the General category. there's a box Do not include on a taskbar. check that and hit the ok button.

NewtonIX 10-26-2003 12:06 AM

Nevermind I answered my own question - found it in the config setup

Thanks Again!

megaspaz 10-26-2003 12:23 AM

if you plan on having gkrellm open when you login, thankfully you don't really have to do anything (for kde anyway). just create a shellscript in your ~/.kde/Autostart folder. or if you're using gnome, write the script and add it to your gnome autostart programs list. it's a 3 line script:

Code:

#!/bin/bash

file=./out.txt
ps -eal | grep "gkrellm" > "$file"
read line < "$file"
rm -f "$file"

i=0
for col in `echo $line`
do
        if [ "$i" -eq 3 ]
        then
                kill -9 "$col"
        fi
        i=$(($i+1))
done

exit 0

that kills all the gkrellm process that wasn't closed when you logged out of kde. but kde remembers you had the gkrellm process running when you last logged out and starts up a new gkrellm process.

edit: changed the script to my old script since using the killall "gkrellm" command and the gkrellm command yielded inconsistent behavior.


All times are GMT -5. The time now is 10:25 PM.