pantheon.wingpanel: pick up required icon theme

Looks like the theme is not hardcoded for wingpanel, but wingpanel is called
by greeter which hardcodes the themes. I decide I will just do something
safe before I am confident enough and know what is happening.
This commit is contained in:
Bobby Rong 2022-03-18 10:48:16 +08:00
parent 30df52b931
commit 42626ba288
No known key found for this signature in database
GPG key ID: ED07364437C91161

View file

@ -64,8 +64,11 @@ stdenv.mkDerivation rec {
preFixup = ''
gappsWrapperArgs+=(
# this theme is required
# this GTK theme is required
--prefix XDG_DATA_DIRS : "${elementary-gtk-theme}/share"
# the icon theme is required
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
)
'';