mirror of https://github.com/pikvm/pikvm.git
Fix the Fahrenheit section
This commit is contained in:
parent
657db6c3f1
commit
3e1c32e9af
24
docs/v3.md
24
docs/v3.md
|
|
@ -227,21 +227,23 @@ For security's sake, it's best to change the default passwords immediately after
|
|||
[root@pikvm ~]# ro
|
||||
```
|
||||
|
||||
??? note "Using Fahrenheit instead of Celsius on the OLED"
|
||||
??? note "How to set up Fahrenheit on the OLED"
|
||||
|
||||
```console
|
||||
[root@pikvm ~]# mkdir -p /etc/systemd/system/kvmd-oled.service.d
|
||||
```
|
||||
Create a directory for a configuration file:
|
||||
|
||||
Create file `/etc/systemd/system/kvmd-oled.service.d/override.conf`:
|
||||
```console
|
||||
[root@pikvm ~]# mkdir -p /etc/systemd/system/kvmd-oled.service.d
|
||||
```
|
||||
|
||||
```ini
|
||||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=/usr/bin/kvmd-oled --clear-on-exit --fahrenheit
|
||||
```
|
||||
Create file `/etc/systemd/system/kvmd-oled.service.d/override.conf`:
|
||||
|
||||
Then run `systemctl restart kvmd-oled`. In some cases, if you still do not see Fahrenheit being displayed, reboot the device.
|
||||
```ini
|
||||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=/usr/bin/kvmd-oled --clear-on-exit --fahrenheit
|
||||
```
|
||||
|
||||
Then run `systemctl restart kvmd-oled`. In some cases, if you still do not see Fahrenheit being displayed, reboot the device.
|
||||
|
||||
## Further steps
|
||||
|
||||
|
|
|
|||
24
docs/v4.md
24
docs/v4.md
|
|
@ -223,23 +223,23 @@ For security's sake, it's best to change the default passwords immediately after
|
|||
- Set up [USB 3.0](usb3v4.md) (**only for PiKVM V4 Plus**).
|
||||
- Choose Fahrenheit over Celsius to display on the OLED:
|
||||
|
||||
??? note "How to set up Fahrenheit"
|
||||
??? note "How to set up Fahrenheit on the OLED"
|
||||
|
||||
Create a directory for a configuration file:
|
||||
Create a directory for a configuration file:
|
||||
|
||||
```console
|
||||
[root@pikvm ~]# mkdir -p /etc/systemd/system/kvmd-oled.service.d
|
||||
```
|
||||
```console
|
||||
[root@pikvm ~]# mkdir -p /etc/systemd/system/kvmd-oled.service.d
|
||||
```
|
||||
|
||||
Create file `/etc/systemd/system/kvmd-oled.service.d/override.conf`:
|
||||
Create file `/etc/systemd/system/kvmd-oled.service.d/override.conf`:
|
||||
|
||||
```ini
|
||||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=/usr/bin/kvmd-oled --clear-on-exit --fahrenheit
|
||||
```
|
||||
```ini
|
||||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=/usr/bin/kvmd-oled --clear-on-exit --fahrenheit
|
||||
```
|
||||
|
||||
Then run `systemctl restart kvmd-oled`. In some cases, if you still do not see Fahrenheit being displayed, reboot the device.
|
||||
Then run `systemctl restart kvmd-oled`. In some cases, if you still do not see Fahrenheit being displayed, reboot the device.
|
||||
|
||||
## Known issues and limitations
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue