• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

fontconfig-test/H14-Apr-2021-97

gtk-modules-test/H14-Apr-2021-1210

00-xrdbH A D14-Apr-2021215 104

README.xsettingsH A D14-Apr-20211.4 KiB3624

fc-monitor.cH A D14-Apr-20219.1 KiB318231

fc-monitor.hH A D14-Apr-20211.1 KiB3711

gsd-remote-display-manager.hH A D14-Apr-20211.1 KiB295

gsd-xsettings-gtk.cH A D14-Apr-202111.7 KiB385280

gsd-xsettings-gtk.hH A D14-Apr-20211.2 KiB4012

gsd-xsettings-manager.cH A D14-Apr-202160.6 KiB1,5891,147

gsd-xsettings-manager.hH A D14-Apr-20211.5 KiB3912

main.cH A D14-Apr-2021251 97

meson.buildH A D14-Apr-20211.5 KiB6754

test-gtk-modules.cH A D14-Apr-2021673 3222

test-wm-button-layout-translations.cH A D14-Apr-20211.4 KiB5543

test.pyH A D14-Apr-20217.3 KiB210145

wm-button-layout-translation.cH A D14-Apr-20212.2 KiB8953

wm-button-layout-translation.hH A D14-Apr-2021967 274

xsettings-common.cH A D14-Apr-20212.9 KiB11367

xsettings-common.hH A D14-Apr-20212.3 KiB6631

xsettings-manager.cH A D14-Apr-202110.9 KiB394277

xsettings-manager.hH A D14-Apr-20212.7 KiB5928

README.xsettings

1This is very simple documentation for the 'override' GSettings key for
2gnome-setting-daemon's xsettings plugin.
3
4The override is given as a dictionary of overrides to be applied on top
5of the usual values that are exported to the X server as XSETTINGS.  The
6intent of this is to allow users to override values of programmatically
7determined settings (such as 'Gtk/ShellShowsAppMenu') and to allow
8developers to introduce new XSETTINGS for testing (without having to kill the
9gnome-settings-daemon running in the session and run their own patched
10version).
11
12The type of the overrides is 'a{sv}'.
13
14The key gives the full XSETTINGS setting name to override (for example,
15'Gtk/ShellShowsAppMenu').  The value is one of the following:
16
17 - a string ('s') for the case of a string XSETTING
18
19 - an int32 ('i') for the case of an integer XSETTING
20
21 - a 4-tuple of uint16s ('(qqqq)') for the case of a color XSETTING
22
23Dictionary items with a value that is not one of the above types will be
24ignored.  Specifically note that XSETTINGS does not have a concept of
25booleans -- you must use an integer that is either 0 or 1.
26
27An example setting for this key (as expressed in GVariant text format)
28might be:
29
30 { 'Gtk/ShellShowsAppMenu': < 0 >, 'Xft/DPI': < 98304 > }
31
32Noting that variants must be specified in the usual way (wrapped in <>).
33
34Note also that DPI in the above example is expressed in 1024ths of an
35inch.
36