Readme: Remove frequently asked questions

This commit is contained in:
Romain Vigier
2026-08-08 22:09:40 +02:00
parent 01f90bf029
commit 5a1a40d42e
-31
View File
@@ -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`.