gruvbox-material-gtk
gruvbox-material-gtk copied to clipboard
Does the GTK 4 work and will you keep updating it ?
Just a casual question will you keep updating the theme for GTk 4 and further variats if so please do I literally love this theme
If oomox already supports GTK4 I can re-generate the theme to support GTK4.
@TheGreatMcPain I doubt they will be able to support it soon https://github.com/themix-project/oomox/issues/427
Whenever they do please update the theme to GTK 4 because I have seen some themes on the internet which work for GTK 4 and whats better than GRUVBOX
I have no idea what about you talking about. This theme works with gtk apps. Even in folders in folder called gtk-4.0. I install gnome-todo app created with gtk4.0 and a theme applay to it.
So...
Gnome-todo app gtk4
@TheGreatMcPain I doubt they will be able to support it soon themix-project/themix-gui#427
It looks like they support it now https://github.com/themix-project/themix-gui/issues/427#issuecomment-1293243200 (?)
I've regenerated the theme with the latest version of themix-gui. Does GTK-4 work?
No. I read somewhere else the recommendation to copy the content of gtk-4.0 to ~/.config/gtk-4.0. That has an effect. Eg. in nautilus surroundings of buttons and left folder bar is according to theme. But top bar and background is really bright according to gnome-settings.
Any update on gtk 4?
No. I read somewhere else the recommendation to copy the content of gtk-4.0 to ~/.config/gtk-4.0. That has an effect. Eg. in nautilus surroundings of buttons and left folder bar is according to theme. But top bar and background is really bright according to gnome-settings.
Can confirm that:
Strange enough, it works when using the environment variable (GTK_THEME=Gruvbox-Material-Dark pamac-manager
):
I have this little script "installing" the gtk4 themes:
#!/bin/bash
set -x
mkdir -p "$HOME"/.config/gtk-4.0
THEME="$(gsettings get org.gnome.desktop.interface gtk-theme | sed -e "s#'##g")"
THEME_DIR="/usr/share/themes/${THEME}/gtk-4.0"
[ -d "$THEME_DIR/assets" ] && /usr/bin/cp -rf --backup "/usr/share/themes/${THEME}/gtk-4.0/assets" "$HOME"/.config/gtk-4.0/
[ -f "$THEME_DIR/gtk.css" ] && /usr/bin/cp -rf --backup "/usr/share/themes/${THEME}/gtk-4.0/gtk.css" "$HOME"/.config/gtk-4.0/
[ -f "$THEME_DIR/gtk-dark.css" ] && /usr/bin/cp -rf --backup "/usr/share/themes/${THEME}/gtk-4.0/gtk-dark.css" "$HOME"/.config/gtk-4.0/
[ ! -f "$THEME_DIR/gtk-dark.css" ] && rm -rf "$HOME"/.config/gtk-4.0/gtk-dark.css
[ -d "$THEME_DIR/icons" ] && /usr/bin/cp -rf --backup "/usr/share/themes/${THEME}/gtk-4.0/icons" "$HOME"/.config/gtk-4.0/