
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
TDE is an set of various karamba themes:
tcal - displays a calendar
tdisk - shows disk space usage of the first 9 mounted devices dynamically.
tmessage - Displays the last lines of a log file of your choice, default is /var/log/messages .
tnote - shows your own notes on your Desktop (change them by doubleclick)
tperf - shows performance information such as CPU-load, Memory usage and Network traffic
tpower - Shows temperatures, fan speeds and voltages (requires sensors)
twho - shows which users are logged in on your machine
tnetstat -shows outgoing connections and the applications that are connecting.
Tell me your opinion!
Requires:
superkaramba
kwrite (if not available change code in tnote.theme)
sensors (for full function of tpower)
16 years ago
TDE 1.0
General:
- Second set of background images
- Graphics, minor corrections
- Icons
- Code clean up
- Optimized query intervals to reduce CPU load.
- TDisk now shows drives automatically. No further configuration required.
- TNetstat (new)
- TMessage is now configurable: You can set the log file you want to display by clicking the little screwdriver.
- Install script
16 years ago
TDE 1.0
General:
- Second set of background images
- Graphics, minor corrections
- Icons
- Code clean up
- Optimized query intervals to reduce CPU load.
- TDisk now shows drives automatically. No further configuration required.
- TNetstat (new)
- TMessage is now configurable: You can set the log file you want to display by clicking the little screwdriver.
- Install script
rfujimoto
17 years ago
Report
L0rclA5CII
17 years ago
Report
chip2003
17 years ago
Regards, Chip
Report
robomort
17 years ago
In the monitoring area I can get the voltages to display OK but not fan speeds or temperatures. Running sensors in a terminal yeilds meaningful figures.
I have tried subsituting label"fan2" with fan2 "CPU Temp" and of corse similarly for case fan and temp.
I am at a loss as to what is going on here. Any ideas? BTW the chipset is VIA 686a and monitoring via ISA buss.
here is a copy of the terminal output it may be of some use ?
Thanks
Rob
linux:~ # sensors
max1617-i2c-0-18
Adapter: SMBus Via Pro adapter at 5000
Algorithm: Non-I2C SMBus adapter
Board: +0
Report
robomort
17 years ago
Re: Re: Sensors Issue
by minkiux on: 08/12/2003, 4:30
I've found the settings for via686a-isa-6000!!!
You must change /etc/sensors.conf in this way:
- search chip "via686a-*" section
- comment (with #) lines that report labels for temp1, temp2, etc...
OK, that's work!!
anyone else having probs with settings take a look at the tmon page here http://www.kde-look.org/content/show.php?content=6977
Report
chip2003
17 years ago
Chip
Report
Savagearth
17 years ago
Nice job man.
Report
chip2003
17 years ago
thanks! tcal uses the normal 'cal' shell command. Take at the code of tcal.theme, theres a couple of lines containing 'cal -m' ...
The '-m' stands for monday as the first day of the week (cent. european). Just remove '-m' in each of these lines and it should be ok. (The background image will stay as it is).
I'm going to publish two versions of tcal with the next version, one for central european users an one for US/UK users (first day = monday).
Regards, Chip
Report
Savagearth
17 years ago
Thanks to answer me.
Report
chip2003
17 years ago
Regards, Chip
Report
whitewolf
17 years ago
Report
whitewolf
17 years ago
Report
whitewolf
17 years ago
Report
chip2003
17 years ago
Chip
Report
whitewolf
17 years ago
Report
chip2003
17 years ago
are you sure, that /var/log/messages exists? Maybe mandrake systems collect the kernel messages somewhere else...? (I don't know Mandrake at all, on SuSE it works).
Maybe you should do a 'find / -name messag*' to find out where it is. Or - even better - ask someone who's fit with mandrake linux ;-)
Regards, Chip
Report
deadbabylon
17 years ago
Report
chip2003
17 years ago
There's some shell commands that gets the calendar info:
cal -m| grep -v ' ' | cut -b -2
Try if the commands 'cal' and 'cut' (and grep also) are available on your machine.
If yes, try the complete command string 'cal -m| grep -v ' ' | cut -b -2' and look what happens.
Regards, Chip
Report
deadbabylon
17 years ago
PC01:/# cal -m| grep -v ' ' | cut -b -2
cal: Ung
Report
chip2003
17 years ago
The -m is just to show the week beginning with Monday instead of Sunday (US/UK). This should work then.
Regards, Chip
Report
deadbabylon
17 years ago
The sheet is there but without the dates.
(Sorry for my bad english)
Report
udo
17 years ago
I had the exact same problem, myself is running debian sid/unstable/testing and I had no dates on the sheet as well.
The option -m does not exist for debian's cal command, so this should do the job:
#Month
text x=110 y=22 sensor=program program="cal |grep ' '|grep ' 20'|sed 's/ //'" align="center" shadow=1 bgcolor=100,100,100
x=44 y=45
#Days:
#1
text x=0 y=0 sensor=program program="cal | grep -v '[A-Z][a-z][a-z][a-z]*' | cut -b -2"
#2
text x=25 y=0 sensor=program program="cal | grep -v '[A-Z][a-z][a-z][a-z]*' | cut -b 4-5"
#3
text x=50 y=0 sensor=program program="cal | grep -v '[A-Z][a-z][a-z][a-z]*' | cut -b 7-8"
#4
text x=75 y=0 sensor=program program="cal | grep -v '[A-Z][a-z][a-z][a-z]*' | cut -b 10-11"
#5
text x=100 y=0 sensor=program program="cal | grep -v '[A-Z][a-z][a-z][a-z]*' | cut -b 13-14"
#6
text x=128 y=0 sensor=program program="cal | grep -v '[A-Z][a-z][a-z][a-z]*' | cut -b 16-17"
#7
text x=155 y=0 sensor=program program="cal | grep -v '[A-Z][a-z][a-z][a-z]*' | cut -b 18-20"
Report
huru
17 years ago
Report
Peman
17 years ago
Lets find out a way, to mark
the current day in the cal theme.
It would be nice...
Mach weiter so!
Report
huru
17 years ago
Really nice work!
Report