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

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