Is is possible to install the default theme from Ubuntu 20.04 on Clear Linux? Not 100% sure, but I think its called Yaru Dark.
If you can, please provide step by step instructions for a new user to follow.
Is is possible to install the default theme from Ubuntu 20.04 on Clear Linux? Not 100% sure, but I think its called Yaru Dark.
If you can, please provide step by step instructions for a new user to follow.
This is, fortunately, not a hard thing to do, depending on your comfort level with the terminal.
There are some good instructions here: https://www.gnome-look.org/p/1252100/
They are:
cp -r Yaru-dark ~/.local/share/themes/
Generally speaking, the way to get any theme installed under gnome is, loosely:
meson 'build'
)install.sh
or, often sudo ninja -C "build" install
)Usually there are some command line switches that help to get things right – most theme packages will have a README that explains.
Good luck! Let me know if it doesn’t work and I’ll try to help.
I followed your instructions and it worked. Thank you for the help.
You are welcome! Welcome to the high performance Linux world! Glad to have you.
@Apollo18 @peteonrails in my opinion it is better to install themes into ~/.local/share/themes/
, because Clear will remove them with swupd repair
. Themes are a personal thing, so they belong to /home/<USER>
, but this is a personal opinion.
That’s good advice. I’ve updated my answer with your suggestion.