From 5a1a40d42e35861b98a8033a2ccd6399cbe44392 Mon Sep 17 00:00:00 2001 From: Romain Vigier Date: Sat, 8 Aug 2026 22:01:25 +0200 Subject: [PATCH] Readme: Remove frequently asked questions --- README.md | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/README.md b/README.md index abd8f28..8499d8f 100644 --- a/README.md +++ b/README.md @@ -47,34 +47,3 @@ gnome-extensions enable nightthemeswitcher@romainvigier.fr ## Contributing You're welcome to contribute to the code or the translations! See [CONTRIBUTING.md](./CONTRIBUTING.md). - -## Frequently asked questions - -### Some applications don't switch their appearance - -Like GNOME's built-in dark mode, the extension switches the standard freedesktop.org color scheme preference. Older applications might not follow this preference. - -It is possible to force a GTK theme by running commands in the extension preferences, but please note that this can visually break applications. It is better to ask the developers of the applications to support the standard preference. - -``` -gsettings set org.gnome.desktop.interface gtk-theme $THEME_NAME -``` - -### I have disabled Location services but want to use sunrise and sunset times from my location - -If you know your coordinates, you can enter them in a hidden setting, and the extension will use them to calculate the sunrise and sunset times. You can set it with the `gsettings` command: - -``` -gsettings --schemadir ~/.local/share/gnome-shell/extensions/nightthemeswitcher@romainvigier.fr/schemas/ set org.gnome.shell.extensions.nightthemeswitcher.time location '($LATITUDE,$LONGITUDE)' -``` - -### I want to use the `prefer-light` color scheme or change the color scheme used during the day/night - -There are two hidden settings to change the color scheme used during the day or night: - -``` -gsettings --schemadir ~/.local/share/gnome-shell/extensions/nightthemeswitcher@romainvigier.fr/schemas/ set org.gnome.shell.extensions.nightthemeswitcher.color-scheme day $DESIRED_COLORSCHEME -gsettings --schemadir ~/.local/share/gnome-shell/extensions/nightthemeswitcher@romainvigier.fr/schemas/ set org.gnome.shell.extensions.nightthemeswitcher.color-scheme night $DESIRED_COLORSCHEME -``` - -With `$DESIRED_COLORSCHEME` one of `default`, `prefer-dark` or `prefer-light`.