forked from home-sweet-gnome/dash-to-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
org.gnome.shell.extensions.dash-to-panel.gschema.xml
880 lines (880 loc) · 38.3 KB
/
org.gnome.shell.extensions.dash-to-panel.gschema.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gnome-shell-extensions">
<enum id='org.gnome.shell.extensions.dash-to-panel.dotStyle'>
<value value='0' nick='DOTS'/>
<value value='1' nick='SQUARES'/>
<value value='2' nick='DASHES'/>
<value value='3' nick='SEGMENTED'/>
<value value='4' nick='SOLID'/>
<value value='5' nick='CILIORA'/>
<value value='6' nick='METRO'/>
</enum>
<enum id='org.gnome.shell.extensions.dash-to-panel.clickAction'>
<value value='0' nick='RAISE'/>
<value value='1' nick='MINIMIZE'/>
<value value='2' nick='LAUNCH'/>
<value value='3' nick='CYCLE'/>
<value value='4' nick='CYCLE-MIN'/>
<value value='5' nick='QUIT'/>
</enum>
<enum id='org.gnome.shell.extensions.dash-to-panel.statusAreaPosition'>
<value value='0' nick='NATURAL'/>
<value value='1' nick='STATUSLEFT'/>
<value value='2' nick='STATUSRIGHT'/>
</enum>
<enum id='org.gnome.shell.extensions.dash-to-panel.taskbarPosition'>
<value value='0' nick='LEFTPANEL'/>
<value value='1' nick='CENTEREDMONITOR'/>
<value value='2' nick='CENTEREDCONTENT'/>
</enum>
<enum id='org.gnome.shell.extensions.dash-to-panel.hotkeyPrefix'>
<value value='0' nick='Super'/>
<value value='1' nick='SuperAlt'/>
</enum>
<enum id='org.gnome.shell.extensions.dash-to-panel.hotkeyOverlay'>
<value value='0' nick='NEVER'/>
<value value='1' nick='TEMPORARILY'/>
<value value='2' nick='ALWAYS'/>
</enum>
<!-- this is mean to Match StSide. LEFT and RIGHT actual position in reversed in
rtl languages -->
<enum id='org.gnome.shell.extensions.dash-to-panel.panelPosition'>
<value value='0' nick='BOTTOM'/>
<value value='1' nick='TOP'/>
</enum>
<enum id='org.gnome.shell.extensions.dash-to-panel.dotPosition'>
<value value='0' nick='BOTTOM'/>
<value value='1' nick='TOP'/>
</enum>
<enum id='org.gnome.shell.extensions.dash-to-panel.intellihideBehaviour'>
<value value='0' nick='ALL_WINDOWS'/>
<value value='1' nick='FOCUSED_WINDOWS'/>
<value value='2' nick='MAXIMIZED_WINDOWS'/>
</enum>
<schema path="/org/gnome/shell/extensions/dash-to-panel/" id="org.gnome.shell.extensions.dash-to-panel">
<key name="panel-position" enum="org.gnome.shell.extensions.dash-to-panel.panelPosition">
<default>'BOTTOM'</default>
<summary>Panel position</summary>
<description>Panel is shown on the Bottom or Top of the screen.</description>
</key>
<key type="i" name="panel-size">
<default>48</default>
<summary>Panel size</summary>
<description>Set the size of the panel.</description>
</key>
<key name="dot-position" enum="org.gnome.shell.extensions.dash-to-panel.dotPosition">
<default>'BOTTOM'</default>
<summary>Dot position</summary>
<description>Running indicators are shown on the Bottom or Top of the screen.</description>
</key>
<key name="dot-style-focused" enum="org.gnome.shell.extensions.dash-to-panel.dotStyle">
<default>'METRO'</default>
<summary>Style of the running indicator (focused)</summary>
<description>Style of the running indicator for the icon for the currently focused application</description>
</key>
<key name="dot-style-unfocused" enum="org.gnome.shell.extensions.dash-to-panel.dotStyle">
<default>'DOTS'</default>
<summary>Style of the running indicator (unfocused)</summary>
<description>Style of the running indicator for the icon for applications which are not currently focused</description>
</key>
<key type="b" name="dot-color-override">
<default>false</default>
<summary>Running indicator color override</summary>
<description>Whether to override the theme background color for .app-well-running-dot</description>
</key>
<key type="s" name="dot-color-1">
<default>"#5294e2"</default>
<summary>Color of running indicator (1 window)</summary>
<description>Customize the color of the running indicator when one window is running for that application</description>
</key>
<key type="s" name="dot-color-2">
<default>"#5294e2"</default>
<summary>Color of running indicator (2 windows)</summary>
<description>Customize the color of the running indicator when two windows are running for that application</description>
</key>
<key type="s" name="dot-color-3">
<default>"#5294e2"</default>
<summary>Color of running indicator (3 windows)</summary>
<description>Customize the color of the running indicator when three windows are running for that application</description>
</key>
<key type="s" name="dot-color-4">
<default>"#5294e2"</default>
<summary>Color of running indicator (4+ windows)</summary>
<description>Customize the color of the running indicator when four or more windows are running for that application</description>
</key>
<key type="b" name="dot-color-unfocused-different">
<default>false</default>
<summary>Unfocused color is different than focused</summary>
<description>Whether to apply a 2nd color scheme to the indicator when the app is not focused</description>
</key>
<key type="s" name="dot-color-unfocused-1">
<default>"#5294e2"</default>
<summary>Color of unfocused running indicator (1 window)</summary>
<description>Customize the color of the unfocused running indicator when one window is running for that application</description>
</key>
<key type="s" name="dot-color-unfocused-2">
<default>"#5294e2"</default>
<summary>Color of unfocused running indicator (2 windows)</summary>
<description>Customize the color of the unfocused running indicator when two windows are running for that application</description>
</key>
<key type="s" name="dot-color-unfocused-3">
<default>"#5294e2"</default>
<summary>Color of unfocused running indicator (3 windows)</summary>
<description>Customize the color of the unfocused running indicator when three windows are running for that application</description>
</key>
<key type="s" name="dot-color-unfocused-4">
<default>"#5294e2"</default>
<summary>Color of unfocused running indicator (4+ windows)</summary>
<description>Customize the color of the unfocused running indicator when four or more windows are running for that application</description>
</key>
<key type="i" name="dot-size">
<default>3</default>
<summary>Running indicator height</summary>
<description>Height of the running indicator line/diameter of window indicator dots</description>
</key>
<key type="b" name="focus-highlight">
<default>true</default>
<summary>Highlight icon of focused application</summary>
<description>Whether to highlight the background of the currently focused application's icon</description>
</key>
<key type="s" name="focus-highlight-color">
<default>"#EEEEEE"</default>
<summary>Color of highlight of focused application</summary>
<description>Customize the color of the highlight of the focused application</description>
</key>
<key type="i" name="focus-highlight-opacity">
<default>25</default>
<summary>Opacity of highlight of focused application</summary>
<description>Customize the opacity of the highlight of the focused application</description>
</key>
<key name="location-clock" enum="org.gnome.shell.extensions.dash-to-panel.statusAreaPosition">
<default>'STATUSLEFT'</default>
<summary>Location of the clock</summary>
<description>Set the location of the clock on the taskbar</description>
</key>
<key name="taskbar-position" enum="org.gnome.shell.extensions.dash-to-panel.taskbarPosition">
<default>'LEFTPANEL'</default>
<summary>Position of the taskbar</summary>
<description>Set the position of the taskbar on the panel</description>
</key>
<key type="b" name="intellihide">
<default>false</default>
<summary>Intellihide</summary>
<description>Whether to intelligently hide the panel</description>
</key>
<key type="b" name="intellihide-hide-from-windows">
<default>false</default>
<summary>Only hide from windows</summary>
<description>Dictates if the dash should only hide when in conflict with windows</description>
</key>
<key name="intellihide-behaviour" enum="org.gnome.shell.extensions.dash-to-panel.intellihideBehaviour">
<default>'FOCUSED_WINDOWS'</default>
<summary>Intellihide behaviour</summary>
<description>Dictates how to intelligently hide the panel</description>
</key>
<key type="b" name="intellihide-use-pressure">
<default>false</default>
<summary>Intellihide pressure</summary>
<description>To reveal the panel, pressure needs to be applied to the edege of the screen</description>
</key>
<key type="i" name="intellihide-pressure-threshold">
<default>100</default>
<summary>Intellihide pressure threshold</summary>
<description>The pressure needed to reveal the panel</description>
</key>
<key type="i" name="intellihide-pressure-time">
<default>1000</default>
<summary>Intellihide pressure time</summary>
<description>The numer of milliseconds that the pressure needs to be applied to reveal the panel</description>
</key>
<key type="b" name="intellihide-show-in-fullscreen">
<default>false</default>
<summary>Intellihide pressure</summary>
<description>Allow the panel to be revealed while an application is in fullscreen mode</description>
</key>
<key type="i" name="intellihide-animation-time">
<default>200</default>
<summary>Intellihide animation time</summary>
<description>The animation time (ms) to hide and reveal the panel</description>
</key>
<key type="i" name="intellihide-close-delay">
<default>400</default>
<summary>Intellihide close delay</summary>
<description>The delay (ms) before hiding the panel</description>
</key>
<key type="b" name="show-show-apps-button">
<default>true</default>
<summary>Show applications button</summary>
<description>Show appplications button in the dash</description>
</key>
<key type="s" name="show-apps-icon-file">
<default>""</default>
<summary>Custom Show Applications icon</summary>
<description>Customize the Show Applications icon</description>
</key>
<key type="b" name="animate-show-apps">
<default>true</default>
<summary>Animate Show Applications from the desktop</summary>
<description>Animate Show Applications from the desktop</description>
</key>
<key type="b" name="show-activities-button">
<default>false</default>
<summary>Show activities button</summary>
<description>Show activities button on the left hand side of the taskbar</description>
</key>
<key type="b" name="show-showdesktop-button">
<default>false</default>
<summary>Show desktop button</summary>
<description>Show button on right side of bar that minimizes/restores all visible windows on current workspace</description>
</key>
<key type="i" name="showdesktop-button-width">
<default>4</default>
<summary>Width of show Desktop button</summary>
<description>Customize the width of the show Desktop button</description>
</key>
<key type="b" name="show-appmenu">
<default>false</default>
<summary>Show appMenu button</summary>
<description>Show appMenu on the right hand side of the panel</description>
</key>
<key type="b" name="show-window-previews">
<default>true</default>
<summary>Show window preview</summary>
<description>Show preview of running window on hover of app icon</description>
</key>
<key type="b" name="show-favorites">
<default>true</default>
<summary>Show favorites apps</summary>
<description>Show or hide favorite appplications icons in the dash</description>
</key>
<key type="i" name="show-window-previews-timeout">
<default>100</default>
<summary>Icon enter display time</summary>
<description>Amount of time after entering icon to wait before displaying window preview if icon is not clicked or mouse has not left.</description>
</key>
<key type="b" name="peek-mode">
<default>true</default>
<summary>Enable peek mode</summary>
<description>Peek a window upon hover for some time</description>
</key>
<key type="b" name="window-preview-show-title">
<default>true</default>
<summary>Display title in preview</summary>
<description>Display window title in preview</description>
</key>
<key type="i" name="window-preview-width">
<default>350</default>
<summary>Window previews width</summary>
<description>The width of the window previews</description>
</key>
<key type="i" name="window-preview-height">
<default>200</default>
<summary>Window previews height</summary>
<description>The height of the window previews</description>
</key>
<key type="i" name="window-preview-padding">
<default>20</default>
<summary>Window previews padding</summary>
<description>The padding of the window previews</description>
</key>
<key type="b" name="isolate-workspaces">
<default>false</default>
<summary>Provide workspace isolation</summary>
<description>Dash shows only windows from the current workspace</description>
</key>
<key type="b" name="group-apps">
<default>true</default>
<summary>Group applications</summary>
<description>Dash groups the application instances under the same icon</description>
</key>
<key type="i" name="group-apps-label-font-size">
<default>14</default>
<summary>Application title font size</summary>
<description>When the applications are ungrouped, this defines the application titles font size.</description>
</key>
<key type="s" name="group-apps-label-font-color">
<default>"#dddddd"</default>
<summary>Application title font color</summary>
<description>When the applications are ungrouped, this defines the application titles font color.</description>
</key>
<key type="i" name="group-apps-label-max-width">
<default>160</default>
<summary>Application title max width</summary>
<description>When the applications are ungrouped, this defines the application titles maximum width.</description>
</key>
<key type="b" name="group-apps-use-fixed-width">
<default>true</default>
<summary>Use a fixed width for the application titles</summary>
<description>The application titles all have the same width, even if their texts are shorter than the maximum width. The maximum width value is used as the fixed width.</description>
</key>
<key type="b" name="group-apps-underline-unfocused">
<default>true</default>
<summary>Display running indicators on unfocused applications</summary>
<description>When the applications are ungrouped, this defines if running applications should display an indicator.</description>
</key>
<key type="b" name="group-apps-use-launchers">
<default>false</default>
<summary>Use favorite icons as application launchers</summary>
<description>When the applications are ungrouped, this defines if running applications stay separate from the favorite icons.</description>
</key>
<key type="b" name="customize-click">
<default>true</default>
<summary>Customize click behaviour</summary>
<description>Customize action on various mouse events</description>
</key>
<key type="b" name="minimize-shift">
<default>true</default>
<summary>Minimize on shift+click</summary>
</key>
<key type="b" name="activate-single-window">
<default>true</default>
<summary>Activate only one window</summary>
</key>
<key name="click-action" enum="org.gnome.shell.extensions.dash-to-panel.clickAction">
<default>'CYCLE-MIN'</default>
<summary>Action when clicking on a running app</summary>
<description>Set the action that is executed when clicking on the icon of a running application</description>
</key>
<key name="shift-click-action" enum="org.gnome.shell.extensions.dash-to-panel.clickAction">
<default>'MINIMIZE'</default>
<summary>Action when shift+clicking on a running app</summary>
<description>Set the action that is executed when shift+clicking on the icon of a running application</description>
</key>
<key name="middle-click-action" enum="org.gnome.shell.extensions.dash-to-panel.clickAction">
<default>'LAUNCH'</default>
<summary>Action when clicking on a running app</summary>
<description>Set the action that is executed when middle-clicking on the icon of a running application</description>
</key>
<key name="shift-middle-click-action" enum="org.gnome.shell.extensions.dash-to-panel.clickAction">
<default>'LAUNCH'</default>
<summary>Action when clicking on a running app</summary>
<description>Set the action that is executed when shift+middle-clicking on the icon of a running application</description>
</key>
<key type="i" name="leave-timeout">
<default>100</default>
<summary>Icon leave preview timeout</summary>
<description>Amount of time to leave preview windows open when the mouse has left the application's icon.</description>
</key>
<key type="i" name="enter-peek-mode-timeout">
<default>500</default>
<summary>Enter window peeking mode timeout</summary>
<description>Amount of time of inactivity to enter the window peeking mode when the mouse has entered a window preview.</description>
</key>
<key type="i" name="peek-mode-opacity">
<default>40</default>
<summary>Window peeking mode opacity</summary>
<description>All windows except for the peeked one have their opacity set to the same value.</description>
</key>
<key type="b" name="preview-middle-click-close">
<default>true</default>
<summary>Middle click preview to close window</summary>
<description>Middle click on the window preview to close that window</description>
</key>
<key type="i" name="tray-size">
<default>0</default>
<summary>Tray font size</summary>
<description>Set the size of the tray font. (0 for default)</description>
</key>
<key type="i" name="leftbox-size">
<default>0</default>
<summary>Leftbox font size</summary>
<description>Set the size of the leftBox font. (0 for default)</description>
</key>
<key type="i" name="appicon-margin">
<default>8</default>
<summary>App icon margin</summary>
<description>Set the margin for application icons in the embedded dash.</description>
</key>
<key type="i" name="appicon-padding">
<default>4</default>
<summary>App icon padding</summary>
<description>Set the padding for application icons in the embedded dash.</description>
</key>
<key type="i" name="tray-padding">
<default>-1</default>
<summary>Tray item padding</summary>
<description>Set the size of the tray padding. (-1 for default)</description>
</key>
<key type="i" name="leftbox-padding">
<default>-1</default>
<summary>Leftbox item padding</summary>
<description>Set the size of the leftBox padding. (-1 for default)</description>
</key>
<key type="i" name="status-icon-padding">
<default>-1</default>
<summary>Status icon padding</summary>
<description>Set the size of the aggregate (status) menu icon padding. (-1 for default)</description>
</key>
<key type="b" name="animate-app-switch">
<default>true</default>
<summary>Animate running indicator when open/closing/switching applications</summary>
</key>
<key type="b" name="animate-window-launch">
<default>true</default>
<summary>Animate when new window launched</summary>
</key>
<key type="b" name="secondarymenu-contains-appmenu">
<default>true</default>
<summary>Integrate items from the gnome appmenu into the right click menu</summary>
</key>
<key type="b" name="secondarymenu-contains-showdetails">
<default>false</default>
<summary>Display Show Details to open Gnome Software from right click menu</summary>
</key>
<key type="s" name="shortcut-text">
<default>"<Super>q"</default>
<summary>Keybinding to show the dock and the number overlay.</summary>
<description>Behavior depends on hotkeys-show-dock and hotkeys-overlay.</description>
</key>
<key type="as" name="shortcut">
<default><![CDATA[['<Super>q']]]></default>
<summary>Keybinding to show the dock and the number overlay.</summary>
<description>Behavior depends on hotkeys-show-dock and hotkeys-overlay.</description>
</key>
<key type="i" name="shortcut-timeout">
<default>2000</default>
<summary>Timeout to hide the dock, in seconds</summary>
<description>Sets the time duration before the dock is hidden again.</description>
</key>
<key type="i" name="overlay-timeout">
<default>750</default>
<summary>Timeout to hide the dock, in seconds</summary>
<description>Sets the time duration before the dock is hidden again.</description>
</key>
<key name="hotkeys-overlay-combo" enum="org.gnome.shell.extensions.dash-to-panel.hotkeyOverlay">
<default>'TEMPORARILY'</default>
<summary>Transitivity of the number overlay</summary>
<description>You can choose between NEVER, TEMPORARILY and ALWAYS.</description>
</key>
<key type="b" name="hot-keys">
<default>false</default>
<summary>Super Hot-Keys</summary>
<description>Launch and switch between dash items using Super+(0-9)</description>
</key>
<key name="hotkey-prefix-text" enum="org.gnome.shell.extensions.dash-to-panel.hotkeyPrefix">
<default>'Super'</default>
<summary>Prefix to use for hotkeys</summary>
<description>You can choose between Super or SuperAlt as the prefix for hotkeys.</description>
</key>
<key name="app-ctrl-hotkey-1" type="as">
<default><![CDATA[['<Ctrl><Super>1']]]></default>
<summary>Keybinding to launch 1st dash app</summary>
<description>
Keybinding to launch 1st app.
</description>
</key>
<key name="app-ctrl-hotkey-2" type="as">
<default><![CDATA[['<Ctrl><Super>2']]]></default>
<summary>Keybinding to launch 2nd dash app</summary>
<description>
Keybinding to launch 2nd app.
</description>
</key>
<key name="app-ctrl-hotkey-3" type="as">
<default><![CDATA[['<Ctrl><Super>3']]]></default>
<summary>Keybinding to launch 3rd dash app</summary>
<description>
Keybinding to launch 3rd app.
</description>
</key>
<key name="app-ctrl-hotkey-4" type="as">
<default><![CDATA[['<Ctrl><Super>4']]]></default>
<summary>Keybinding to launch 4th dash app</summary>
<description>
Keybinding to launch 4th app.
</description>
</key>
<key name="app-ctrl-hotkey-5" type="as">
<default><![CDATA[['<Ctrl><Super>5']]]></default>
<summary>Keybinding to launch 5th dash app</summary>
<description>
Keybinding to launch 5th app.
</description>
</key>
<key name="app-ctrl-hotkey-6" type="as">
<default><![CDATA[['<Ctrl><Super>6']]]></default>
<summary>Keybinding to launch 6th dash app</summary>
<description>
Keybinding to launch 6th app.
</description>
</key>
<key name="app-ctrl-hotkey-7" type="as">
<default><![CDATA[['<Ctrl><Super>7']]]></default>
<summary>Keybinding to launch 7th dash app</summary>
<description>
Keybinding to launch 7th app.
</description>
</key>
<key name="app-ctrl-hotkey-8" type="as">
<default><![CDATA[['<Ctrl><Super>8']]]></default>
<summary>Keybinding to launch 8th dash app</summary>
<description>
Keybinding to launch 8th app.
</description>
</key>
<key name="app-ctrl-hotkey-9" type="as">
<default><![CDATA[['<Ctrl><Super>9']]]></default>
<summary>Keybinding to launch 9th dash app</summary>
<description>
Keybinding to launch 9th app.
</description>
</key>
<key name="app-ctrl-hotkey-10" type="as">
<default><![CDATA[['<Ctrl><Super>0']]]></default>
<summary>Keybinding to launch 10th dash app</summary>
<description>
Keybinding to launch 10th app.
</description>
</key>
<key name="app-shift-hotkey-1" type="as">
<default><![CDATA[['<Shift><Super>1']]]></default>
<summary>Keybinding to trigger 1st dash app with shift behavior</summary>
<description>
Keybinding to trigger 1st app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-2" type="as">
<default><![CDATA[['<Shift><Super>2']]]></default>
<summary>Keybinding to trigger 2nd dash app with shift behavior</summary>
<description>
Keybinding to trigger 2nd app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-3" type="as">
<default><![CDATA[['<Shift><Super>3']]]></default>
<summary>Keybinding to trigger 3rd dash app with shift behavior</summary>
<description>
Keybinding to trigger 3rd app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-4" type="as">
<default><![CDATA[['<Shift><Super>4']]]></default>
<summary>Keybinding to trigger 4th dash app with shift behavior</summary>
<description>
Keybinding to trigger 4th app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-5" type="as">
<default><![CDATA[['<Shift><Super>5']]]></default>
<summary>Keybinding to trigger 5th dash app with shift behavior</summary>
<description>
Keybinding to trigger 5th app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-6" type="as">
<default><![CDATA[['<Shift><Super>6']]]></default>
<summary>Keybinding to trigger 6th dash app with shift behavior</summary>
<description>
Keybinding to trigger 6th app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-7" type="as">
<default><![CDATA[['<Shift><Super>7']]]></default>
<summary>Keybinding to trigger 7th dash app with shift behavior</summary>
<description>
Keybinding to trigger 7th app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-8" type="as">
<default><![CDATA[['<Shift><Super>8']]]></default>
<summary>Keybinding to trigger 8th dash app with shift behavior</summary>
<description>
Keybinding to trigger 8th app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-9" type="as">
<default><![CDATA[['<Shift><Super>9']]]></default>
<summary>Keybinding to trigger 9th dash app with shift behavior</summary>
<description>
Keybinding to trigger 9th app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-10" type="as">
<default><![CDATA[['<Shift><Super>0']]]></default>
<summary>Keybinding to trigger 10th dash app with shift behavior</summary>
<description>
Keybinding to trigger 10th app with shift behavior.
</description>
</key>
<key name="app-hotkey-1" type="as">
<default><![CDATA[['<Super>1']]]></default>
<summary>Keybinding to trigger 1st dash app</summary>
<description>
Keybinding to either show or launch the 1st application in the dash.
</description>
</key>
<key name="app-hotkey-2" type="as">
<default><![CDATA[['<Super>2']]]></default>
<summary>Keybinding to trigger 2nd dash app</summary>
<description>
Keybinding to either show or launch the 2nd application in the dash.
</description>
</key>
<key name="app-hotkey-3" type="as">
<default><![CDATA[['<Super>3']]]></default>
<summary>Keybinding to trigger 3rd dash app</summary>
<description>
Keybinding to either show or launch the 3rd application in the dash.
</description>
</key>
<key name="app-hotkey-4" type="as">
<default><![CDATA[['<Super>4']]]></default>
<summary>Keybinding to trigger 4th dash app</summary>
<description>
Keybinding to either show or launch the 4th application in the dash.
</description>
</key>
<key name="app-hotkey-5" type="as">
<default><![CDATA[['<Super>5']]]></default>
<summary>Keybinding to trigger 5th dash app</summary>
<description>
Keybinding to either show or launch the 5th application in the dash.
</description>
</key>
<key name="app-hotkey-6" type="as">
<default><![CDATA[['<Super>6']]]></default>
<summary>Keybinding to trigger 6th dash app</summary>
<description>
Keybinding to either show or launch the 6th application in the dash.
</description>
</key>
<key name="app-hotkey-7" type="as">
<default><![CDATA[['<Super>7']]]></default>
<summary>Keybinding to trigger 7th dash app</summary>
<description>
Keybinding to either show or launch the 7th application in the dash.
</description>
</key>
<key name="app-hotkey-8" type="as">
<default><![CDATA[['<Super>8']]]></default>
<summary>Keybinding to trigger 8th dash app</summary>
<description>
Keybinding to either show or launch the 8th application in the dash.
</description>
</key>
<key name="app-hotkey-9" type="as">
<default><![CDATA[['<Super>9']]]></default>
<summary>Keybinding to trigger 9th dash app</summary>
<description>
Keybinding to either show or launch the 9th application in the dash.
</description>
</key>
<key name="app-hotkey-10" type="as">
<default><![CDATA[['<Super>0']]]></default>
<summary>Keybinding to trigger 10th dash app</summary>
<description>
Keybinding to either show or launch the 10th application in the dash.
</description>
</key>
<key name="app-ctrl-hotkey-kp-1" type="as">
<default><![CDATA[['<Ctrl><Super>KP_1']]]></default>
<summary>Keybinding to launch 1st dash app</summary>
<description>
Keybinding to launch 1st app.
</description>
</key>
<key name="app-ctrl-hotkey-kp-2" type="as">
<default><![CDATA[['<Ctrl><Super>KP_2']]]></default>
<summary>Keybinding to launch 2nd dash app</summary>
<description>
Keybinding to launch 2nd app.
</description>
</key>
<key name="app-ctrl-hotkey-kp-3" type="as">
<default><![CDATA[['<Ctrl><Super>KP_3']]]></default>
<summary>Keybinding to launch 3rd dash app</summary>
<description>
Keybinding to launch 3rd app.
</description>
</key>
<key name="app-ctrl-hotkey-kp-4" type="as">
<default><![CDATA[['<Ctrl><Super>KP_4']]]></default>
<summary>Keybinding to launch 4th dash app</summary>
<description>
Keybinding to launch 4th app.
</description>
</key>
<key name="app-ctrl-hotkey-kp-5" type="as">
<default><![CDATA[['<Ctrl><Super>KP_5']]]></default>
<summary>Keybinding to launch 5th dash app</summary>
<description>
Keybinding to launch 5th app.
</description>
</key>
<key name="app-ctrl-hotkey-kp-6" type="as">
<default><![CDATA[['<Ctrl><Super>KP_6']]]></default>
<summary>Keybinding to launch 6th dash app</summary>
<description>
Keybinding to launch 6th app.
</description>
</key>
<key name="app-ctrl-hotkey-kp-7" type="as">
<default><![CDATA[['<Ctrl><Super>KP_7']]]></default>
<summary>Keybinding to launch 7th dash app</summary>
<description>
Keybinding to launch 7th app.
</description>
</key>
<key name="app-ctrl-hotkey-kp-8" type="as">
<default><![CDATA[['<Ctrl><Super>KP_8']]]></default>
<summary>Keybinding to launch 8th dash app</summary>
<description>
Keybinding to launch 8th app.
</description>
</key>
<key name="app-ctrl-hotkey-kp-9" type="as">
<default><![CDATA[['<Ctrl><Super>KP_9']]]></default>
<summary>Keybinding to launch 9th dash app</summary>
<description>
Keybinding to launch 9th app.
</description>
</key>
<key name="app-ctrl-hotkey-kp-10" type="as">
<default><![CDATA[['<Ctrl><Super>KP_0']]]></default>
<summary>Keybinding to launch 10th dash app</summary>
<description>
Keybinding to launch 10th app.
</description>
</key>
<key name="app-shift-hotkey-kp-1" type="as">
<default><![CDATA[['<Shift><Super>KP_1']]]></default>
<summary>Keybinding to trigger 1st dash app with shift behavior</summary>
<description>
Keybinding to trigger 1st app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-kp-2" type="as">
<default><![CDATA[['<Shift><Super>KP_2']]]></default>
<summary>Keybinding to trigger 2nd dash app with shift behavior</summary>
<description>
Keybinding to trigger 2nd app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-kp-3" type="as">
<default><![CDATA[['<Shift><Super>KP_3']]]></default>
<summary>Keybinding to trigger 3rd dash app with shift behavior</summary>
<description>
Keybinding to trigger 3rd app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-kp-4" type="as">
<default><![CDATA[['<Shift><Super>KP_4']]]></default>
<summary>Keybinding to trigger 4th dash app with shift behavior</summary>
<description>
Keybinding to trigger 4th app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-kp-5" type="as">
<default><![CDATA[['<Shift><Super>KP_5']]]></default>
<summary>Keybinding to trigger 5th dash app with shift behavior</summary>
<description>
Keybinding to trigger 5th app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-kp-6" type="as">
<default><![CDATA[['<Shift><Super>KP_6']]]></default>
<summary>Keybinding to trigger 6th dash app with shift behavior</summary>
<description>
Keybinding to trigger 6th app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-kp-7" type="as">
<default><![CDATA[['<Shift><Super>KP_7']]]></default>
<summary>Keybinding to trigger 7th dash app with shift behavior</summary>
<description>
Keybinding to trigger 7th app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-kp-8" type="as">
<default><![CDATA[['<Shift><Super>KP_8']]]></default>
<summary>Keybinding to trigger 8th dash app with shift behavior</summary>
<description>
Keybinding to trigger 8th app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-kp-9" type="as">
<default><![CDATA[['<Shift><Super>KP_9']]]></default>
<summary>Keybinding to trigger 9th dash app with shift behavior</summary>
<description>
Keybinding to trigger 9th app with shift behavior.
</description>
</key>
<key name="app-shift-hotkey-kp-10" type="as">
<default><![CDATA[['<Shift><Super>KP_0']]]></default>
<summary>Keybinding to trigger 10th dash app with shift behavior</summary>
<description>
Keybinding to trigger 10th app with shift behavior.
</description>
</key>
<key name="app-hotkey-kp-1" type="as">
<default><![CDATA[['<Super>KP_1']]]></default>
<summary>Keybinding to trigger 1st dash app</summary>
<description>
Keybinding to either show or launch the 1st application in the dash.
</description>
</key>
<key name="app-hotkey-kp-2" type="as">
<default><![CDATA[['<Super>KP_2']]]></default>
<summary>Keybinding to trigger 2nd dash app</summary>
<description>
Keybinding to either show or launch the 2nd application in the dash.
</description>
</key>
<key name="app-hotkey-kp-3" type="as">
<default><![CDATA[['<Super>KP_3']]]></default>
<summary>Keybinding to trigger 3rd dash app</summary>
<description>
Keybinding to either show or launch the 3rd application in the dash.
</description>
</key>
<key name="app-hotkey-kp-4" type="as">
<default><![CDATA[['<Super>KP_4']]]></default>
<summary>Keybinding to trigger 4th dash app</summary>
<description>
Keybinding to either show or launch the 4th application in the dash.
</description>
</key>
<key name="app-hotkey-kp-5" type="as">
<default><![CDATA[['<Super>KP_5']]]></default>
<summary>Keybinding to trigger 5th dash app</summary>
<description>
Keybinding to either show or launch the 5th application in the dash.
</description>
</key>
<key name="app-hotkey-kp-6" type="as">
<default><![CDATA[['<Super>KP_6']]]></default>
<summary>Keybinding to trigger 6th dash app</summary>
<description>
Keybinding to either show or launch the 6th application in the dash.
</description>
</key>
<key name="app-hotkey-kp-7" type="as">
<default><![CDATA[['<Super>KP_7']]]></default>
<summary>Keybinding to trigger 7th dash app</summary>
<description>
Keybinding to either show or launch the 7th application in the dash.
</description>
</key>
<key name="app-hotkey-kp-8" type="as">
<default><![CDATA[['<Super>KP_8']]]></default>
<summary>Keybinding to trigger 8th dash app</summary>
<description>
Keybinding to either show or launch the 8th application in the dash.
</description>
</key>
<key name="app-hotkey-kp-9" type="as">
<default><![CDATA[['<Super>KP_9']]]></default>
<summary>Keybinding to trigger 9th dash app</summary>
<description>
Keybinding to either show or launch the 9th application in the dash.
</description>
</key>
<key name="app-hotkey-kp-10" type="as">
<default><![CDATA[['<Super>KP_0']]]></default>
<summary>Keybinding to trigger 10th dash app</summary>
<description>
Keybinding to either show or launch the 10th application in the dash.
</description>
</key>
</schema>
</schemalist>