Update How to force Pi to use light/dark theme

2025-08-31 16:19:12 +00:00
parent 660c2f567b
commit d0cd23ccc4
2 changed files with 26 additions and 10 deletions

@@ -0,0 +1,26 @@
# *NIX systems
Simply run Pi with the `FYNE_THEME` environment variable to `light`. Like so:
```bash
FYNE_THEME=light pi-im
```
You can also do the same for a dark theme:
```bash
FYNE_THEME=dark pi-im
```
# Windows
Windows follows the exact same layout but with different commands.
## Command Prompt
```batch
set FYNE_THEME=light
pi-im.exe
```
```batch
set FYNE_THEME=dark
pi-im.exe
```

@@ -1,10 +0,0 @@
Simply run Pi with the `FYNE_THEME` environment variable to `light`. Like so:
```bash
FYNE_THEME=light pi-im
```
You can also do the same for a dark theme:
```bash
FYNE_THEME=dark pi-im
```