blob: 673e6833aca091bd77c83ea0855dd31918b2dc0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# This file is sourced by Xsession(5), not executed.
# This file configures the global behavior of GTK3 always-on mnemonics,
# the underscores that indicate the accelerator keys. These settings
# may be overridden by individual users by setting the same variables
# to different values in their ~/.xsessionrc.
if [ -z "$GTK3_MODULES" ] ; then
GTK3_MODULES="sgm-flexible-mnemonics"
else
GTK3_MODULES="$GTK3_MODULES:sgm-flexible-mnemonics"
fi
export GTK3_MODULES
|