Advertisement
neochapay

Untitled

Feb 10th, 2022
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.59 KB | None | 0 0
  1. # Configuration file for Geoclue
  2. #
  3. # NOTE: All configurations settings below are mandatory and the defaults are
  4. # what you see before you edit them. If you want to keep the default
  5. # values around, copy and comment out the appropriate line(s) before
  6. # changing them.
  7.  
  8. # Agent configuration options
  9. [agent]
  10.  
  11. # Whitelist of desktop IDs (without .desktop part) of all agents we recognise,
  12. # separated by a ';'.
  13. whitelist=geoclue-demo-agent;gnome-shell;io.elementary.desktop.agent-geoclue2;lipstick
  14.  
  15. # Network NMEA source configuration options
  16. [network-nmea]
  17.  
  18. # Fetch location from NMEA sources on local network?
  19. enable=true
  20.  
  21. # 3G source configuration options
  22. [3g]
  23.  
  24. # Enable 3G source
  25. enable=true
  26.  
  27. # CDMA source configuration options
  28. [cdma]
  29.  
  30. # Enable CDMA source
  31. enable=true
  32.  
  33. # Modem GPS source configuration options
  34. [modem-gps]
  35.  
  36. # Enable Modem-GPS source
  37. enable=true
  38.  
  39. # WiFi source configuration options
  40. [wifi]
  41.  
  42. # Enable WiFi source
  43. enable=true
  44.  
  45. # URL to the WiFi geolocation service. If not set, defaults to Mozilla's
  46. # Location Service with a hardcoded key. To use a custom key, uncomment this URL
  47. # while changing YOUR_KEY to your MLS API key.
  48. #url=https://location.services.mozilla.com/v1/geolocate?key=YOUR_KEY
  49.  
  50. # To use the Google geolocation service instead of Mozilla's, uncomment this URL
  51. # while changing YOUR_KEY to your Google API key.
  52. #
  53. # WARNING: Please make sure that you are complying with the Google's ToS and
  54. # policies if you uncomment this:
  55. #
  56. # https://developers.google.com/maps/documentation/geolocation/policies
  57. #
  58. #url=https://www.googleapis.com/geolocation/v1/geolocate?key=YOUR_KEY
  59.  
  60. # Submit data to Mozilla Location Service
  61. # If set to true, geoclue will automatically submit network data to Mozilla
  62. # each time it gets a GPS lock.
  63. #
  64. submit-data=false
  65.  
  66. # URL to submission API of Mozilla Location Service. If not set, defaults to
  67. # Mozilla's API with a hardcoded key. To use a custom key, uncomment this URL
  68. # while changing YOUR_KEY to your MLS API key.
  69. #submission-url=https://location.services.mozilla.com/v1/submit?key=YOUR_KEY
  70.  
  71. # A nickname to submit network data with. A nickname must be 2-32 characters long.
  72. submission-nick=geoclue
  73.  
  74. # Application configuration options
  75. #
  76. # NOTE: Having an entry here for an application with allowed=true means that
  77. # geoclue will not ask agent to authorize the application. This is to
  78. # ensure that applications with built-in authorization mechanism (e.g web
  79. # browsers) do not have to be bound to agents.
  80. #
  81. # If your application is denied access to location information and your
  82. # operating system doesn't provide any mechanism to change that, it is
  83. # likely a bug in your operation system (or geoclue). The solution is to
  84. # report the issue with all details, rather than adding your application
  85. # to this list.
  86. #
  87. # Format:
  88. #
  89. # # Desktop ID of application without .desktop part
  90. # [random-app]
  91. #
  92. # # Allowed access to location information?
  93. # allowed=true|false
  94. #
  95. # # Is application a system component?
  96. # system=true|false
  97. #
  98. # # List of UIDs of all users for which this application is allowed location
  99. # # info access, separate by ';'. Keep it empty for allowing it for all users.
  100. # users=
  101.  
  102. [gnome-datetime-panel]
  103. allowed=true
  104. system=true
  105. users=
  106.  
  107. [gnome-color-panel]
  108. allowed=true
  109. system=true
  110. users=
  111.  
  112. [org.gnome.Shell]
  113. allowed=true
  114. system=true
  115. users=
  116.  
  117. [io.elementary.desktop.agent-geoclue2]
  118. allowed=true
  119. system=true
  120. users=
  121.  
  122. [epiphany]
  123. allowed=true
  124. system=false
  125. users=
  126.  
  127. [firefox]
  128. allowed=true
  129. system=false
  130. users=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement