org.gnome.shell.extensions.screen-rotate.gschema.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!--
  2. - org.gnome.shell.extensions.screen-rotate.gschema.xml
  3. - Copyright (C) 2023 shyzus, Shinigaminai
  4. -
  5. - This program is free software: you can redistribute it and/or modify
  6. - it under the terms of the GNU General Public License as published by
  7. - the Free Software Foundation, either version 3 of the License, or
  8. - (at your option) any later version.
  9. -
  10. - This program is distributed in the hope that it will be useful,
  11. - but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. - GNU General Public License for more details.
  14. -
  15. - You should have received a copy of the GNU General Public License
  16. - along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. -
  18. -->
  19. <?xml version="1.0" encoding="UTF-8"?>
  20. <schemalist>
  21. <schema id="org.gnome.shell.extensions.screen-rotate"
  22. path="/org/gnome/shell/extensions/screen-rotate/">
  23. <key type="b" name="invert-horizontal-rotation-direction">
  24. <default>false</default>
  25. <description>Invert horizontal rotation direction of the screen</description>
  26. </key>
  27. <key type="b" name="invert-vertical-rotation-direction">
  28. <default>false</default>
  29. <description>Invert vertical rotation direction of the screen</description>
  30. </key>
  31. <key type="b" name="flip-orientation">
  32. <default>false</default>
  33. <description>Alter orientation. (e.g: Landscape to Portrait. Default is Landscape.)</description>
  34. </key>
  35. <key type="i" name="orientation-offset">
  36. <default>0</default>
  37. <description>Experiment with this offset in case orientation is incorrect.</description>
  38. </key>
  39. <key type="b" name="debug-logging">
  40. <default>false</default>
  41. <description>Toggle debug logging.</description>
  42. </key>
  43. </schema>
  44. </schemalist>