Skip to content

Commit 73e921a

Browse files
author
arcan1s
committed
release 1.7.2
edited readme, changelog
1 parent 7ee4a5d commit 73e921a

File tree

3 files changed

+57
-52
lines changed

3 files changed

+57
-52
lines changed

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
Ver.1.7.2:
2+
+ added tags $dd, $d, $hh, $h, $mm, $m to custom uptime format
23
+ added scalling to tooltips
34
+ added dataengine configuration from ptm
45
+ added custom command to dataengine
56
- removed custom command from ptm
7+
- removed tags $ds, $hs, $ms
68

79
Ver.1.7.1:
810
- removed error label

PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ optdepends=("hddtemp: for HDD temperature monitor"
1919
makedepends=('automoc4' 'cmake')
2020
source=(https://github.com/arcan1s/pytextmonitor/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz)
2121
install=${pkgname}.install
22-
md5sums=('e6069564afe15e655c918d3411573415')
22+
md5sums=('b1a23c5d38d196297235b5acd5f099ca')
2323
backup=('usr/share/config/extsysmon.conf')
2424

2525
build () {

README.md

Lines changed: 54 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -10,68 +10,71 @@ PyTextMonitor is a minimalistic Plasmoid script written on Python2. It looks lik
1010
Configuration
1111
-------------
1212
For edited output you must open Settings window and setup output format in lines:
13-
* label `$time` - time in default format. For example, `fri Nov 6 04:48:01 2013`
14-
* label `$isotime` - time in iso format
15-
* label `$shorttime` - time in short locale format
16-
* label `$longtime` - time in long locale format
17-
* label `$custom` - custom time format
18-
* label `$uptime` - uptime, <i>---d--h--m</i>
19-
* label `$custom` - custom uptime format
20-
* label `$cpu` - total load cpu, <i>%</i>
21-
* label `$cpuN` - load CPU for core N, <i>%</i>. N should be in range 0 to 8
22-
* label `$cpucl` - average cpu clock, <i>MHz</i>
23-
* label `$cpuclN` - cpu clock for core N, <i>MHz</i>. N should be in range 0 to 8
24-
* label `$tempN` - temperature for device N. For example, `$temp0`
25-
* label `$gpu` - GPU usage, <i>%</i>. `aticonfig` or `nvidia-smi` must be installed
26-
* label `$gputemp` - GPU temperature. `aticonfig` or `nvidia-smi` must be installed
27-
* label `$mem` - usage memory, <i>%</i>
28-
* label `$memmb` - usage memory, <i>MB</i>
29-
* label `$swap` - swap, <i>%</i>
30-
* label `$swapmb` - swap, <i>MB</i>
31-
* label `$hddN` - usage for mount point N, <i>%</i>. For example, `$hdd0`
32-
* label `$hddtempN` - temperature for HDD N. For example, `$hddtemp0`
33-
* label `$down` - download speed, <i>KB/s</i>
34-
* label `$up` - upload speed, <i>KB/s</i>
35-
* label `$netdev` - current network device
36-
* label `$bat` - battery charge, <i>%</i>
37-
* label `$ac` - status AC device. Return <i>(*)</i> if AC device is online or <i>( )</i> if offline
38-
* label `$album` - current song album. One of supported music players must be installed
39-
* label `$artist` - current song artist. One of supported music players must be installed
40-
* label `$progress` - current song progress. One of supported music players must be installed (mpd does not support yet)
41-
* label `$time` - current song duration. One of supported music players must be installed
42-
* label `$title` - current song title. One of supported music players must be installed
43-
* label `$custom` - returns output for custom command
13+
* tag `$time` - time in default format. For example, `fri Nov 6 04:48:01 2013`
14+
* tag `$isotime` - time in iso format
15+
* tag `$shorttime` - time in short locale format
16+
* tag `$longtime` - time in long locale format
17+
* tag `$custom` - custom time format
18+
* tag `$uptime` - uptime, <i>---d--h--m</i>
19+
* tag `$custom` - custom uptime format
20+
* tag `$cpu` - total load cpu, <i>%</i>
21+
* tag `$cpuN` - load CPU for core N, <i>%</i>. N should be in range 0 to 8
22+
* tag `$cpucl` - average cpu clock, <i>MHz</i>
23+
* tag `$cpuclN` - cpu clock for core N, <i>MHz</i>. N should be in range 0 to 8
24+
* tag `$tempN` - temperature for device N. For example, `$temp0`
25+
* tag `$gpu` - GPU usage, <i>%</i>. `aticonfig` or `nvidia-smi` must be installed
26+
* tag `$gputemp` - GPU temperature. `aticonfig` or `nvidia-smi` must be installed
27+
* tag `$mem` - usage memory, <i>%</i>
28+
* tag `$memmb` - usage memory, <i>MB</i>
29+
* tag `$swap` - swap, <i>%</i>
30+
* tag `$swapmb` - swap, <i>MB</i>
31+
* tag `$hddN` - usage for mount point N, <i>%</i>. For example, `$hdd0`
32+
* tag `$hddtempN` - temperature for HDD N. For example, `$hddtemp0`
33+
* tag `$down` - download speed, <i>KB/s</i>
34+
* tag `$up` - upload speed, <i>KB/s</i>
35+
* tag `$netdev` - current network device
36+
* tag `$bat` - battery charge, <i>%</i>
37+
* tag `$ac` - status AC device. Return <i>(*)</i> if AC device is online or <i>( )</i> if offline
38+
* tag `$album` - current song album. One of supported music players must be installed
39+
* tag `$artist` - current song artist. One of supported music players must be installed
40+
* tag `$progress` - current song progress. One of supported music players must be installed (mpd does not support yet)
41+
* tag `$time` - current song duration. One of supported music players must be installed
42+
* tag `$title` - current song title. One of supported music players must be installed
43+
* tag `$custom` - returns output for custom command
4444

4545
Label order will changed if you change slider position. HTML tags in label work normally.
4646

47-
**NOTE** you don't may set to show $cpu in swap label for example. <b>$cpu will work only in cpu label</b>.
47+
**NOTE** you don't may set to show $cpu in swap label for example. **$cpu will work only in cpu label**.
4848

4949
Advanced settings
5050
-----------------
5151
**Custom time**
5252

53-
* label `$dddd` - weekday in long format
54-
* label `$ddd` - weekday in short format
55-
* label `$dd` - day
56-
* label `$d` - day without zero
57-
* label `$MMMM` - month in long format
58-
* label `$MMM` - month in short format
59-
* label `$MM` - month
60-
* label `$M` - month without zero
61-
* label `$yyyy` - year
62-
* label `$yy` - year in short format
63-
* label `$hh` - hours
64-
* label `$h` - hours without zero
65-
* label `$mm` - minutes
66-
* label `$m` - minutes without zero
67-
* label `$ss` - seconds
68-
* label `$s` - seconds without zero
53+
* tag `$dddd` - weekday in long format
54+
* tag `$ddd` - weekday in short format
55+
* tag `$dd` - day
56+
* tag `$d` - day without zero
57+
* tag `$MMMM` - month in long format
58+
* tag `$MMM` - month in short format
59+
* tag `$MM` - month
60+
* tag `$M` - month without zero
61+
* tag `$yyyy` - year
62+
* tag `$yy` - year in short format
63+
* tag `$hh` - hours
64+
* tag `$h` - hours without zero
65+
* tag `$mm` - minutes
66+
* tag `$m` - minutes without zero
67+
* tag `$ss` - seconds
68+
* tag `$s` - seconds without zero
6969

7070
**Custom uptime**
7171

72-
* label `$ds` - uptime days
73-
* label `$hs` - uptime hours
74-
* label `$ms` - uptime minutes
72+
* tag `$dd` - uptime days
73+
* tag `$dd` - uptime days without zero
74+
* tag `$hh` - uptime hours
75+
* tag `$h` - uptime hours without zero
76+
* tag `$mm` - uptime minutes
77+
* tag `$m` - uptime minutes without zero
7578

7679
**Temperature devices**
7780

0 commit comments

Comments
 (0)