Skip to content

Commit b717644

Browse files
authoredNov 21, 2023
Update README.md
1 parent a3e1050 commit b717644

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed
 

‎README.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,24 @@ An unofficial GTK3 port of [libadwaita](https://gnome.pages.gitlab.gnome.org/lib
3030
flatpak install org.gtk.Gtk3theme.adw-gtk3 org.gtk.Gtk3theme.adw-gtk3-dark
3131
```
3232

33+
**Note:** [Flatpak GTK4 applications can't be styled by the theme.](https://github.com/lassekongo83/adw-gtk3/issues/235)
34+
3335
You can then enable adw-gtk3 in the application `gnome-tweaks`. (Some applications may require a relog.)
3436

3537
**If you use the dark theme** you'll also need to enable the dark appearance in `gnome-control-center`.
3638

3739
Alternatively you can set the theme with your terminal:
40+
41+
Change the theme to adw-gtk3 light:
3842
```bash
39-
# Change the theme to adw-gtk3 light
4043
gsettings set org.gnome.desktop.interface gtk-theme 'adw-gtk3' && gsettings set org.gnome.desktop.interface color-scheme 'default'
41-
# Change the theme to adw-gtk3-dark
44+
```
45+
Change the theme to adw-gtk3-dark:
46+
```bash
4247
gsettings set org.gnome.desktop.interface gtk-theme 'adw-gtk3-dark' && gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
43-
# Revert to GNOME's default theme
48+
```
49+
Revert to GNOME's default theme:
50+
```bash
4451
gsettings set org.gnome.desktop.interface gtk-theme 'Adwaita' && gsettings set org.gnome.desktop.interface color-scheme 'default'
4552
```
4653

0 commit comments

Comments
 (0)
Please sign in to comment.