summaryrefslogtreecommitdiff
path: root/.b/etc/X11/xinit/xinitrc.d/80xapp-gtk3-module.sh
blob: 4b2ec2a79e3ce3cf51f9e7b6e4266817acfdbbd8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
# This file is sourced by xinit(1) or a display manager's Xsession, not executed.

if [ -z "$GTK_MODULES" ] ; then
    GTK_MODULES="xapp-gtk3-module"
else
    GTK_MODULES="$GTK_MODULES:xapp-gtk3-module"
fi

export GTK_MODULES