36 lines
1,010 B
Markdown
36 lines
1,010 B
Markdown
|
## Usage
|
||
|
|
||
|
[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
|
||
|
|
||
|
### Description
|
||
|
|
||
|
Shows the current CPU temperature.
|
||
|
|
||
|
```lua
|
||
|
local mytemp = lain.widget.temp()
|
||
|
```
|
||
|
|
||
|
## Input table
|
||
|
|
||
|
Variable | Meaning | Type | Default
|
||
|
--- | --- | --- | ---
|
||
|
`timeout` | Refresh timeout (in seconds) | integer | 30
|
||
|
`tempfile` | Path of file which stores core temperature value | string | "/sys/devices/virtual/thermal/thermal_zone0/temp"
|
||
|
`settings` | User settings | function | empty function
|
||
|
|
||
|
`settings` can use the string `coretemp_now`, which contains the info retrieved from `tempfile`, and the table `temp_now`, which contains an entry for each `*temp*` file in each directory in the following paths:
|
||
|
|
||
|
```shell
|
||
|
/sys/class/devices/virtual/thermal/thermal_zone*
|
||
|
/sys/class/devices/platform/coretemp*/hwmon/hwon*
|
||
|
```
|
||
|
|
||
|
All values are expressed in Celsius (GNU/Linux standard).
|
||
|
|
||
|
## Output table
|
||
|
|
||
|
Variable | Meaning | Type
|
||
|
--- | --- | ---
|
||
|
`widget` | The widget | `wibox.widget.textbox`
|
||
|
`update` | Update `widget` | function
|