You are not logged in.
I use shades of gray theme.
I wanted to use cherrytree for my notes (first time)
It seems that it's not ready for dark themes and UI looks quite ugly. I checked and with a light theme it's ok.
Is there a way to open just one application with a different theme?
Offline
For GTK3 application you can run in a terminal window:
GTK_THEME=<theme-name> <application>
for example:
GTK_THEME=Adwaita gthumb &
Thanks to: https://www.linuxuprising.com/2019/10/h … e-for.html
But it looks as if Cherrytree was GTK2 application.
And there is a way for GTK2 applications too. This script called gtk2theme:
#!/bin/bash
# lauch a gtk2 application with a different theme
# set GTKRCFILE variable to your favourite theme
GTKRCFILE=Numix
GTK2_RC_FILES=/usr/share/themes/"$GTKRCFILE"/gtk-2.0/gtkrc "$@"
can be run in terminal:
gtk2theme gftp &
Thanks to: https://unix.stackexchange.com/question … tion-basis
Last edited by Signy (2020-10-26 20:44:11)
Offline
[ Generated in 0.007 seconds, 7 queries executed - Memory usage: 516.57 KiB (Peak: 529.5 KiB) ]