File: org.gnome.shell.extensions.bluetooth-quick-connect.gschema.xml

package info (click to toggle)
gnome-shell-extension-bluetooth-quick-connect 16-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 172 kB
  • sloc: javascript: 502; xml: 29; makefile: 10
file content (34 lines) | stat: -rw-r--r-- 1,247 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!--
Copyright 2018 Bartosz Jaroszewski
SPDX-License-Identifier: GPL-2.0-or-later
(see extension.js for details)
-->
<schemalist gettext-domain="bluetooth-quick-connect">
  <schema id="org.gnome.shell.extensions.bluetooth-quick-connect"
          path="/org/gnome/shell/extensions/bluetooth-quick-connect/">
    <key name="bluetooth-auto-power-on" type="b">
      <default>false</default>
      <summary>Automatically powers on bluetooth when open menu</summary>
    </key>
    <key name="bluetooth-auto-power-off" type="b">
      <default>false</default>
      <summary>Automatically powers off bluetooth if idle</summary>
    </key>
    <key name="bluetooth-auto-power-off-interval" type="i">
      <default>60</default>
      <summary>Checking interval for power off idling bluetooth</summary>
    </key>
    <key name="keep-menu-on-toggle" type="b">
      <default>false</default>
      <summary>Keep the menu open after toggling the connection</summary>
    </key>
    <key name="refresh-button-on" type="b">
      <default>false</default>
      <summary>Show reconnect button</summary>
    </key>
    <key name="debug-mode-on" type="b">
      <default>false</default>
      <summary>Debug mode</summary>
    </key>
  </schema>
</schemalist>