org.gnome.shell.extensions.blur-my-shell.gschema.xml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <schemalist>
  3. <!-- GENERAL -->
  4. <schema id="org.gnome.shell.extensions.blur-my-shell" path="/org/gnome/shell/extensions/blur-my-shell/">
  5. <!-- SIGMA -->
  6. <key type="i" name="sigma">
  7. <default>30</default>
  8. <summary>Global sigma (gaussian blur radius) to use</summary>
  9. </key>
  10. <!-- BRIGHTNESS -->
  11. <key type="d" name="brightness">
  12. <default>0.6</default>
  13. <summary>Global brightness to use</summary>
  14. </key>
  15. <!-- COLOR -->
  16. <key type="(dddd)" name="color">
  17. <default>(0.,0.,0.,0.)</default>
  18. <summary>Color to mix with the blur effect</summary>
  19. </key>
  20. <!-- NOISE AMOUNT -->
  21. <key type="d" name="noise-amount">
  22. <default>0.</default>
  23. <summary>Amount of noise to add to the blur effect</summary>
  24. </key>
  25. <!-- NOISE LIGHTNESS -->
  26. <key type="d" name="noise-lightness">
  27. <default>0.</default>
  28. <summary>Lightness of the noise added to the blur effect</summary>
  29. </key>
  30. <!-- COLOR AND NOISE -->
  31. <key type="b" name="color-and-noise">
  32. <default>true</default>
  33. <summary>Boolean, controls wether or not the color and noise effects are in use globally</summary>
  34. </key>
  35. <!-- HACKS LEVEL -->
  36. <key type="i" name="hacks-level">
  37. <default>1</default>
  38. <summary>Level of hacks to use (from 0 to 3, 3 disabling clipped redraws entirely)</summary>
  39. </key>
  40. <!-- DEBUG -->
  41. <key type="b" name="debug">
  42. <default>false</default>
  43. <summary>Boolean, set to true to activate debug mode (more verbose journalctl logs)</summary>
  44. </key>
  45. <child name='overview' schema='org.gnome.shell.extensions.blur-my-shell.overview'></child>
  46. <child name='appfolder' schema='org.gnome.shell.extensions.blur-my-shell.appfolder'></child>
  47. <child name='panel' schema='org.gnome.shell.extensions.blur-my-shell.panel'></child>
  48. <child name='dash-to-dock' schema='org.gnome.shell.extensions.blur-my-shell.dash-to-dock'></child>
  49. <child name='applications' schema='org.gnome.shell.extensions.blur-my-shell.applications'></child>
  50. <child name='screenshot' schema='org.gnome.shell.extensions.blur-my-shell.screenshot'></child>
  51. <child name='lockscreen' schema='org.gnome.shell.extensions.blur-my-shell.lockscreen'></child>
  52. <child name='window-list' schema='org.gnome.shell.extensions.blur-my-shell.window-list'></child>
  53. <child name='hidetopbar' schema='org.gnome.shell.extensions.blur-my-shell.hidetopbar'></child>
  54. <child name='dash-to-panel' schema='org.gnome.shell.extensions.blur-my-shell.dash-to-panel'></child>
  55. </schema>
  56. <!-- OVERVIEW -->
  57. <schema id="org.gnome.shell.extensions.blur-my-shell.overview" path="/org/gnome/shell/extensions/blur-my-shell/overview/">
  58. <!-- BLUR -->
  59. <key type="b" name="blur">
  60. <default>true</default>
  61. <summary>Boolean, whether to blur activate the blur for this component or not</summary>
  62. </key>
  63. <!-- CUSTOMIZE -->
  64. <key type="b" name="customize">
  65. <default>false</default>
  66. <summary>Boolean, whether to customize the blur effect sigma/brightness or use general values</summary>
  67. </key>
  68. <!-- SIGMA -->
  69. <key type="i" name="sigma">
  70. <default>30</default>
  71. <summary>Sigma (gaussian blur radius) to use for the blur effect</summary>
  72. </key>
  73. <!-- BRIGHTNESS -->
  74. <key type="d" name="brightness">
  75. <default>0.6</default>
  76. <summary>Brightness to use for the blur effect</summary>
  77. </key>
  78. <!-- COLOR -->
  79. <key type="(dddd)" name="color">
  80. <default>(0.,0.,0.,0.)</default>
  81. <summary>Color to mix with the blur effect</summary>
  82. </key>
  83. <!-- NOISE AMOUNT -->
  84. <key type="d" name="noise-amount">
  85. <default>0.</default>
  86. <summary>Amount of noise to add to the blur effect</summary>
  87. </key>
  88. <!-- NOISE LIGHTNESS -->
  89. <key type="d" name="noise-lightness">
  90. <default>0.</default>
  91. <summary>Lightness of the noise added to the blur effect</summary>
  92. </key>
  93. <!-- STYLE COMPONENTS -->
  94. <key type="i" name="style-components">
  95. <default>1</default>
  96. <summary>Enum to select the style of the components in overview (0 not styled, 1 light, 2 dark, 3 transparent)</summary>
  97. </key>
  98. </schema>
  99. <!-- APPFOLDER -->
  100. <schema id="org.gnome.shell.extensions.blur-my-shell.appfolder" path="/org/gnome/shell/extensions/blur-my-shell/appfolder/">
  101. <!-- BLUR -->
  102. <key type="b" name="blur">
  103. <default>true</default>
  104. <summary>Boolean, whether to blur activate the blur for this component or not</summary>
  105. </key>
  106. <!-- CUSTOMIZE -->
  107. <key type="b" name="customize">
  108. <default>false</default>
  109. <summary>Boolean, whether to customize the blur effect sigma/brightness or use general values</summary>
  110. </key>
  111. <!-- SIGMA -->
  112. <key type="i" name="sigma">
  113. <default>30</default>
  114. <summary>Sigma (gaussian blur radius) to use for the blur effect</summary>
  115. </key>
  116. <!-- BRIGHTNESS -->
  117. <key type="d" name="brightness">
  118. <default>0.6</default>
  119. <summary>Brightness to use for the blur effect</summary>
  120. </key>
  121. <!-- COLOR -->
  122. <key type="(dddd)" name="color">
  123. <default>(0.,0.,0.,0.)</default>
  124. <summary>Color to mix with the blur effect</summary>
  125. </key>
  126. <!-- NOISE AMOUNT -->
  127. <key type="d" name="noise-amount">
  128. <default>0.</default>
  129. <summary>Amount of noise to add to the blur effect</summary>
  130. </key>
  131. <!-- NOISE LIGHTNESS -->
  132. <key type="d" name="noise-lightness">
  133. <default>0.</default>
  134. <summary>Lightness of the noise added to the blur effect</summary>
  135. </key>
  136. <!-- STYLE DIALOGS -->
  137. <key type="i" name="style-dialogs">
  138. <default>1</default>
  139. <summary>Enum to select the style of the appfolder dialogs (0 not styled, 1 transparent, 2 light, 3 dark)</summary>
  140. </key>
  141. </schema>
  142. <!-- PANEL -->
  143. <schema id="org.gnome.shell.extensions.blur-my-shell.panel" path="/org/gnome/shell/extensions/blur-my-shell/panel/">
  144. <!-- BLUR -->
  145. <key type="b" name="blur">
  146. <default>true</default>
  147. <summary>Boolean, whether to blur activate the blur for this component or not</summary>
  148. </key>
  149. <!-- CUSTOMIZE -->
  150. <key type="b" name="customize">
  151. <default>false</default>
  152. <summary>Boolean, whether to customize the blur effect sigma/brightness or use general values</summary>
  153. </key>
  154. <!-- SIGMA -->
  155. <key type="i" name="sigma">
  156. <default>30</default>
  157. <summary>Sigma (gaussian blur radius) to use for the blur effect</summary>
  158. </key>
  159. <!-- BRIGHTNESS -->
  160. <key type="d" name="brightness">
  161. <default>0.6</default>
  162. <summary>Brightness to use for the blur effect</summary>
  163. </key>
  164. <!-- COLOR -->
  165. <key type="(dddd)" name="color">
  166. <default>(0.,0.,0.,0.)</default>
  167. <summary>Color to mix with the blur effect</summary>
  168. </key>
  169. <!-- NOISE AMOUNT -->
  170. <key type="d" name="noise-amount">
  171. <default>0.</default>
  172. <summary>Amount of noise to add to the blur effect</summary>
  173. </key>
  174. <!-- NOISE LIGHTNESS -->
  175. <key type="d" name="noise-lightness">
  176. <default>0.</default>
  177. <summary>Lightness of the noise added to the blur effect</summary>
  178. </key>
  179. <!-- STATIC BLUR -->
  180. <key type="b" name="static-blur">
  181. <default>true</default>
  182. <summary>Boolean, whether to use a static or dynamic blur for this component</summary>
  183. </key>
  184. <!-- UNBLUR IN OVERVIEW -->
  185. <key type="b" name="unblur-in-overview">
  186. <default>true</default>
  187. <summary>Boolean, whether to disable blur from this component when opening the overview or not</summary>
  188. </key>
  189. <!-- OVERRIDE BACKGROUND -->
  190. <key type="b" name="override-background">
  191. <default>true</default>
  192. <summary>Boolean, whether to override the background or not</summary>
  193. </key>
  194. <!-- STYLE PANEL -->
  195. <key type="i" name="style-panel">
  196. <default>0</default>
  197. <summary>Enum to select the style of the panel (0 transparent, 1 light, 2 dark, 3 contrasted)</summary>
  198. </key>
  199. <!-- UNBLUR DYNAMICALLY -->
  200. <key type="b" name="override-background-dynamically">
  201. <default>false</default>
  202. <summary>Boolean, whether to disable blur from this component when a window is close to the panel</summary>
  203. </key>
  204. </schema>
  205. <!-- DASH TO DOCK -->
  206. <schema id="org.gnome.shell.extensions.blur-my-shell.dash-to-dock" path="/org/gnome/shell/extensions/blur-my-shell/dash-to-dock/">
  207. <!-- BLUR -->
  208. <key type="b" name="blur">
  209. <default>false</default>
  210. <summary>Boolean, whether to blur activate the blur for this component or not</summary>
  211. </key>
  212. <!-- CUSTOMIZE -->
  213. <key type="b" name="customize">
  214. <default>false</default>
  215. <summary>Boolean, whether to customize the blur effect sigma/brightness or use general values</summary>
  216. </key>
  217. <!-- SIGMA -->
  218. <key type="i" name="sigma">
  219. <default>30</default>
  220. <summary>Sigma (gaussian blur radius) to use for the blur effect</summary>
  221. </key>
  222. <!-- BRIGHTNESS -->
  223. <key type="d" name="brightness">
  224. <default>0.6</default>
  225. <summary>Brightness to use for the blur effect</summary>
  226. </key>
  227. <!-- COLOR -->
  228. <key type="(dddd)" name="color">
  229. <default>(0.,0.,0.,0.)</default>
  230. <summary>Color to mix with the blur effect</summary>
  231. </key>
  232. <!-- NOISE AMOUNT -->
  233. <key type="d" name="noise-amount">
  234. <default>0.</default>
  235. <summary>Amount of noise to add to the blur effect</summary>
  236. </key>
  237. <!-- NOISE LIGHTNESS -->
  238. <key type="d" name="noise-lightness">
  239. <default>0.</default>
  240. <summary>Lightness of the noise added to the blur effect</summary>
  241. </key>
  242. <!-- STATIC BLUR -->
  243. <key type="b" name="static-blur">
  244. <default>true</default>
  245. <summary>Boolean, whether to use static or dynamic blur for this component</summary>
  246. </key>
  247. <!-- OVERRIDE BACKGROUND -->
  248. <key type="b" name="override-background">
  249. <default>true</default>
  250. <summary>Boolean, whether to override the background or not</summary>
  251. </key>
  252. <!-- STYLE DASH TO DOCK -->
  253. <key type="i" name="style-dash-to-dock">
  254. <default>1</default>
  255. <summary>Enum to select the style of dash to dock (0 transparent, 1 light, 2 dark)</summary>
  256. </key>
  257. <!-- UNBLUR IN OVERVIEW -->
  258. <key type="b" name="unblur-in-overview">
  259. <default>false</default>
  260. <summary>Boolean, whether to disable blur from this component when opening the overview or not</summary>
  261. </key>
  262. </schema>
  263. <!-- APPLICATIONS -->
  264. <schema id="org.gnome.shell.extensions.blur-my-shell.applications" path="/org/gnome/shell/extensions/blur-my-shell/applications/">
  265. <!-- BLUR -->
  266. <key type="b" name="blur">
  267. <default>true</default>
  268. <summary>Boolean, whether to blur activate the blur for this component or not</summary>
  269. </key>
  270. <!-- CUSTOMIZE -->
  271. <key type="b" name="customize">
  272. <default>true</default>
  273. <summary>Boolean, whether to customize the blur effect sigma/brightness or use general values</summary>
  274. </key>
  275. <!-- SIGMA -->
  276. <key type="i" name="sigma">
  277. <default>30</default>
  278. <summary>Sigma (gaussian blur radius) to use for the blur effect</summary>
  279. </key>
  280. <!-- BRIGHTNESS -->
  281. <key type="d" name="brightness">
  282. <default>1.</default>
  283. <summary>Brightness to use for the blur effect</summary>
  284. </key>
  285. <!-- COLOR -->
  286. <key type="(dddd)" name="color">
  287. <default>(0.,0.,0.,0.)</default>
  288. <summary>Color to mix with the blur effect</summary>
  289. </key>
  290. <!-- NOISE AMOUNT -->
  291. <key type="d" name="noise-amount">
  292. <default>0.</default>
  293. <summary>Amount of noise to add to the blur effect</summary>
  294. </key>
  295. <!-- NOISE LIGHTNESS -->
  296. <key type="d" name="noise-lightness">
  297. <default>0.</default>
  298. <summary>Lightness of the noise added to the blur effect</summary>
  299. </key>
  300. <!-- OPACITY -->
  301. <key type="i" name="opacity">
  302. <default>230</default>
  303. <summary>Opacity of the window actor on top of the blur effect</summary>
  304. </key>
  305. <!-- BLUR ON OVERVIEW -->
  306. <key type="b" name="blur-on-overview">
  307. <default>false</default>
  308. <summary>Wether or not to blur applications on the overview</summary>
  309. </key>
  310. <!-- ENABLE ALL -->
  311. <key type="b" name="enable-all">
  312. <default>false</default>
  313. <summary>Wether or not to blur all applications by default</summary>
  314. </key>
  315. <!-- WHITELIST -->
  316. <key type="as" name="whitelist">
  317. <default>[]</default>
  318. <summary>List of applications to blur</summary>
  319. </key>
  320. <!-- BLACKLIST -->
  321. <key type="as" name="blacklist">
  322. <default>["Plank"]</default>
  323. <summary>List of applications not to blur</summary>
  324. </key>
  325. </schema>
  326. <!-- SCREENSHOT -->
  327. <schema id="org.gnome.shell.extensions.blur-my-shell.screenshot" path="/org/gnome/shell/extensions/blur-my-shell/screenshot/">
  328. <!-- BLUR -->
  329. <key type="b" name="blur">
  330. <default>true</default>
  331. <summary>Boolean, whether to blur activate the blur for this component or not</summary>
  332. </key>
  333. <!-- CUSTOMIZE -->
  334. <key type="b" name="customize">
  335. <default>false</default>
  336. <summary>Boolean, whether to customize the blur effect sigma/brightness or use general values</summary>
  337. </key>
  338. <!-- SIGMA -->
  339. <key type="i" name="sigma">
  340. <default>30</default>
  341. <summary>Sigma (gaussian blur radius) to use for the blur effect</summary>
  342. </key>
  343. <!-- BRIGHTNESS -->
  344. <key type="d" name="brightness">
  345. <default>0.6</default>
  346. <summary>Brightness to use for the blur effect</summary>
  347. </key>
  348. <!-- COLOR -->
  349. <key type="(dddd)" name="color">
  350. <default>(0.,0.,0.,0.)</default>
  351. <summary>Color to mix with the blur effect</summary>
  352. </key>
  353. <!-- NOISE AMOUNT -->
  354. <key type="d" name="noise-amount">
  355. <default>0.</default>
  356. <summary>Amount of noise to add to the blur effect</summary>
  357. </key>
  358. <!-- NOISE LIGHTNESS -->
  359. <key type="d" name="noise-lightness">
  360. <default>0.</default>
  361. <summary>Lightness of the noise added to the blur effect</summary>
  362. </key>
  363. </schema>
  364. <!-- LOCKSCREEN -->
  365. <schema id="org.gnome.shell.extensions.blur-my-shell.lockscreen" path="/org/gnome/shell/extensions/blur-my-shell/lockscreen/">
  366. <!-- BLUR -->
  367. <key type="b" name="blur">
  368. <default>true</default>
  369. <summary>Boolean, whether to blur activate the blur for this component or not</summary>
  370. </key>
  371. <!-- CUSTOMIZE -->
  372. <key type="b" name="customize">
  373. <default>false</default>
  374. <summary>Boolean, whether to customize the blur effect sigma/brightness or use general values</summary>
  375. </key>
  376. <!-- SIGMA -->
  377. <key type="i" name="sigma">
  378. <default>30</default>
  379. <summary>Sigma (gaussian blur radius) to use for the blur effect</summary>
  380. </key>
  381. <!-- BRIGHTNESS -->
  382. <key type="d" name="brightness">
  383. <default>0.6</default>
  384. <summary>Brightness to use for the blur effect</summary>
  385. </key>
  386. <!-- COLOR -->
  387. <key type="(dddd)" name="color">
  388. <default>(0.,0.,0.,0.)</default>
  389. <summary>Color to mix with the blur effect</summary>
  390. </key>
  391. <!-- NOISE AMOUNT -->
  392. <key type="d" name="noise-amount">
  393. <default>0.</default>
  394. <summary>Amount of noise to add to the blur effect</summary>
  395. </key>
  396. <!-- NOISE LIGHTNESS -->
  397. <key type="d" name="noise-lightness">
  398. <default>0.</default>
  399. <summary>Lightness of the noise added to the blur effect</summary>
  400. </key>
  401. </schema>
  402. <!-- WINDOW LIST -->
  403. <schema id="org.gnome.shell.extensions.blur-my-shell.window-list" path="/org/gnome/shell/extensions/blur-my-shell/window-list/">
  404. <!-- BLUR -->
  405. <key type="b" name="blur">
  406. <default>true</default>
  407. <summary>Boolean, whether to blur activate the blur for this component or not</summary>
  408. </key>
  409. <!-- CUSTOMIZE -->
  410. <key type="b" name="customize">
  411. <default>false</default>
  412. <summary>Boolean, whether to customize the blur effect sigma/brightness or use general values</summary>
  413. </key>
  414. <!-- SIGMA -->
  415. <key type="i" name="sigma">
  416. <default>30</default>
  417. <summary>Sigma (gaussian blur radius) to use for the blur effect</summary>
  418. </key>
  419. <!-- BRIGHTNESS -->
  420. <key type="d" name="brightness">
  421. <default>0.6</default>
  422. <summary>Brightness to use for the blur effect</summary>
  423. </key>
  424. <!-- COLOR -->
  425. <key type="(dddd)" name="color">
  426. <default>(0.,0.,0.,0.)</default>
  427. <summary>Color to mix with the blur effect</summary>
  428. </key>
  429. <!-- NOISE AMOUNT -->
  430. <key type="d" name="noise-amount">
  431. <default>0.</default>
  432. <summary>Amount of noise to add to the blur effect</summary>
  433. </key>
  434. <!-- NOISE LIGHTNESS -->
  435. <key type="d" name="noise-lightness">
  436. <default>0.</default>
  437. <summary>Lightness of the noise added to the blur effect</summary>
  438. </key>
  439. </schema>
  440. <!-- HIDETOPBAR -->
  441. <schema id="org.gnome.shell.extensions.blur-my-shell.hidetopbar" path="/org/gnome/shell/extensions/blur-my-shell/hidetopbar/">
  442. <!-- COMPATIBILITY -->
  443. <key type="b" name="compatibility">
  444. <default>false</default>
  445. <summary>Boolean, whether to try compatibility with hidetopbar@mathieu.bidon.ca or not</summary>
  446. </key>
  447. </schema>
  448. <!-- DASH TO PANEL -->
  449. <schema id="org.gnome.shell.extensions.blur-my-shell.dash-to-panel" path="/org/gnome/shell/extensions/blur-my-shell/dash-to-panel/">
  450. <!-- COMPATIBILITY -->
  451. <key type="b" name="blur-original-panel">
  452. <default>true</default>
  453. <summary>Boolean, whether to blur the original panel (if option selected) with Dash to Panel</summary>
  454. </key>
  455. </schema>
  456. </schemalist>