diff options
author | Ray Strode <rstrode@redhat.com> | 2018-06-22 17:14:01 -0400 |
---|---|---|
committer | Ray Strode <rstrode@redhat.com> | 2018-06-22 17:18:59 -0400 |
commit | cfef5521b72b764decdadf4ad88400e1ddecd5a6 (patch) | |
tree | 21a85c401f528fa7943057b91c7270be3ae06808 | |
parent | aa12f167807e1d94c67bb1873eb92386181f1534 (diff) | |
download | gdm-cfef5521b72b764decdadf4ad88400e1ddecd5a6.tar.gz |
data: add gdm.schemas.in
This got dropped accidentally i think because of .gitignore
See merge request GNOME/gdm!5
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | data/gdm.schemas.in | 134 |
2 files changed, 134 insertions, 1 deletions
@@ -102,7 +102,6 @@ daemon/test-session-client daemon/test-external-greeter daemon/gdm-session-enum-types.c daemon/gdm-session-enum-types.h -data/gdm.schemas.in data/applications/gnome-mag.desktop data/applications/gnome-shell.desktop data/applications/gnome-shell-wayland.desktop diff --git a/data/gdm.schemas.in b/data/gdm.schemas.in new file mode 100644 index 00000000..255bff02 --- /dev/null +++ b/data/gdm.schemas.in @@ -0,0 +1,134 @@ +<gdmschemafile> + <schemalist> + + <schema> + <key>chooser/Multicast</key> + <signature>b</signature> + <default>false</default> + </schema> + <schema> + <key>chooser/MulticastAddr</key> + <signature>s</signature> + <default>ff02::1</default> + </schema> + + <schema> + <key>daemon/User</key> + <signature>s</signature> + <default>@GDM_USERNAME@</default> + </schema> + <schema> + <key>daemon/Group</key> + <signature>s</signature> + <default>@GDM_GROUPNAME@</default> + </schema> + <schema> + <key>daemon/AutomaticLoginEnable</key> + <signature>b</signature> + <default>false</default> + </schema> + <schema> + <key>daemon/AutomaticLogin</key> + <signature>s</signature> + <default></default> + </schema> + <schema> + <key>daemon/TimedLoginEnable</key> + <signature>b</signature> + <default>false</default> + </schema> + <schema> + <key>daemon/TimedLogin</key> + <signature>s</signature> + <default></default> + </schema> + <schema> + <key>daemon/TimedLoginDelay</key> + <signature>i</signature> + <default>30</default> + </schema> + <schema> + <key>daemon/InitialSetupEnable</key> + <signature>b</signature> + <default>true</default> + </schema> + <schema> + <key>daemon/WaylandEnable</key> + <signature>b</signature> + <default>true</default> + </schema> + <schema> + <key>security/AllowRemoteAutoLogin</key> + <signature>b</signature> + <default>false</default> + </schema> + + <schema> + <key>debug/Enable</key> + <signature>b</signature> + <default>false</default> + </schema> + + <schema> + <key>security/DisallowTCP</key> + <signature>b</signature> + <default>true</default> + </schema> + <schema> + <key>xdmcp/Enable</key> + <signature>b</signature> + <default>false</default> + </schema> + <schema> + <key>xdmcp/ShowLocalGreeter</key> + <signature>b</signature> + <default>true</default> + </schema> + <schema> + <key>xdmcp/MaxPending</key> + <signature>i</signature> + <default>4</default> + </schema> + <schema> + <key>xdmcp/MaxSessions</key> + <signature>i</signature> + <default>16</default> + </schema> + <schema> + <key>xdmcp/MaxWait</key> + <signature>i</signature> + <default>30</default> + </schema> + <schema> + <key>xdmcp/DisplaysPerHost</key> + <signature>i</signature> + <default>1</default> + </schema> + <schema> + <key>xdmcp/Port</key> + <signature>i</signature> + <default>177</default> + </schema> + <schema> + <key>xdmcp/HonorIndirect</key> + <signature>b</signature> + <default>true</default> + </schema> + <schema> + <key>xdmcp/MaxWaitIndirect</key> + <signature>i</signature> + <default>30</default> + </schema> + <schema> + <key>xdmcp/PingIntervalSeconds</key> + <signature>i</signature> + <default>0</default> + </schema> + <schema> + <key>xdmcp/Willing</key> + <signature>s</signature> + <default>@gdmconfdir@/Xwilling</default> + </schema> + </schemalist> +</gdmschemafile> + |