gruvbox-material-gtk icon indicating copy to clipboard operation
gruvbox-material-gtk copied to clipboard

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

Open tanaybhomia opened this issue 2 years ago • 9 comments

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

tanaybhomia avatar Apr 15 '22 12:04 tanaybhomia

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

TheGreatMcPain avatar Apr 16 '22 04:04 TheGreatMcPain

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

BachoSeven avatar Apr 16 '22 12:04 BachoSeven

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

tanaybhomia avatar Apr 16 '22 13:04 tanaybhomia

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

pietryszak avatar Oct 15 '22 13:10 pietryszak

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

BachoSeven avatar Oct 27 '22 13:10 BachoSeven

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

TheGreatMcPain avatar Dec 08 '22 08:12 TheGreatMcPain

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.

frere-jacques avatar Dec 30 '22 22:12 frere-jacques

Any update on gtk 4?

Sohail-XD avatar Oct 23 '23 11:10 Sohail-XD

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/

boredland avatar Nov 30 '23 01:11 boredland