In this video explains everything you should know about flatpak theming.
As others said, you probably haven't installed the chosen theme yet.
Linux
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
Here is an alternative Piped link(s): https://piped.video/watch?v=IYXlgzrZRIE
Piped is a privacy-respecting open-source alternative frontend to YouTube.
I'm open-source, check me out at GitHub.
Have you installed xdg-desktop-portal-gtk?
xdg-desktop-portal-gtk?
Yes, it's already installed.
Old ass adwaita/libadwaita bug; happens on every distro... I'm really starting to think it is more related to libadwaita itself than to flatpak 😭
Is it being forced to look for a theme installed via flatpak maybe?
How do I know that exactly?
Apparently there has been a problem with gtk4 apps and theming in flatpak, only supporting adwaita light and dark - only found vague reference to it though, nothing concrete.
Try
flatpak-metadata sockets
To see if you can find the GTK_THEME environment variable.
You’ve given it permission to access the themes folder, now you need go point it at the themes
sudo flatpak override --env=GTK_THEME=my-theme
sudo flatpak override --env=ICON_THEME=my-icon-theme
Where my-theme is the theme name, e.g. Adwaita-dark
Apparently the flatseal gui has some functionality to set the theme too! Will check it out tomorrow to see what’s up.
here's the same as text
sudo apt install xdg-desktop-portal-gtk
systemctl --user edit xdg-desktop-portal.service
- paste these two lines
[Service]
Environment="XDG_CURRENT_DESKTOP=sway"
systemctl --user restart xdg-desktop-portal.service
This also refused to work unfortunately.