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

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