TheGreatMcPain / gruvbox-material-gtk

Gruvbox Material for GTK, Gnome, Cinnamon, XFCE, Unity, Plank and Icons
MIT License
345 stars 19 forks source link

Does the GTK 4 work and will you keep updating it ? #15

Open tanaybhomia opened 2 years ago

tanaybhomia commented 2 years ago

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

TheGreatMcPain commented 2 years ago

If oomox already supports GTK4 I can re-generate the theme to support GTK4.

BachoSeven commented 2 years ago

@TheGreatMcPain I doubt they will be able to support it soon https://github.com/themix-project/oomox/issues/427

tanaybhomia commented 2 years ago

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

pietryszak commented 1 year ago

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...

image

Gnome-todo app gtk4 image

BachoSeven commented 1 year ago

@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 (?)

TheGreatMcPain commented 1 year ago

I've regenerated the theme with the latest version of themix-gui. Does GTK-4 work?

frere-jacques commented 1 year ago

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.

Sohail-XD commented 8 months ago

Any update on gtk 4?

boredland commented 7 months ago

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:

image

Strange enough, it works when using the environment variable (GTK_THEME=Gruvbox-Material-Dark pamac-manager):

image

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/