53fbbe3262
Add necessary paths to the environment so that applications can find icons.
10 lines
221 B
Bash
10 lines
221 B
Bash
make_gtk_applications_find_icon_themes() {
|
|
|
|
# where to find icon themes
|
|
if [ -d "$1/share/icons" ]; then
|
|
addToSearchPath XDG_ICON_DIRS $1/share
|
|
fi
|
|
|
|
}
|
|
|
|
envHooks+=(make_gtk_applications_find_icon_themes)
|