From d0cd23ccc49500851fe92fe7f7f5a3b164ed8b9f Mon Sep 17 00:00:00 2001 From: sunglocto Date: Sun, 31 Aug 2025 16:19:12 +0000 Subject: [PATCH] Update How to force Pi to use light/dark theme --- How-to-force-Pi-to-use-light%2Fdark-theme.md | 26 +++++++++++++++++++ ...to-use-light-theme-%28%2ANIX-systems%29.md | 10 ------- 2 files changed, 26 insertions(+), 10 deletions(-) create mode 100644 How-to-force-Pi-to-use-light%2Fdark-theme.md delete mode 100644 How-to-force-Pi-to-use-light-theme-%28%2ANIX-systems%29.md diff --git a/How-to-force-Pi-to-use-light%2Fdark-theme.md b/How-to-force-Pi-to-use-light%2Fdark-theme.md new file mode 100644 index 0000000..a304200 --- /dev/null +++ b/How-to-force-Pi-to-use-light%2Fdark-theme.md @@ -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 +``` + diff --git a/How-to-force-Pi-to-use-light-theme-%28%2ANIX-systems%29.md b/How-to-force-Pi-to-use-light-theme-%28%2ANIX-systems%29.md deleted file mode 100644 index 4a7fedf..0000000 --- a/How-to-force-Pi-to-use-light-theme-%28%2ANIX-systems%29.md +++ /dev/null @@ -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 -``` \ No newline at end of file