-
Notifications
You must be signed in to change notification settings - Fork 8
/
theme.conf
3112 lines (3112 loc) · 165 KB
/
theme.conf
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
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# format :dir source-name link0 link1 link2 link3 (etc)
#### 16 ####
16/apps aqualung.svg
16/apps audacious.svg
16/apps deadbeef.svg
16/apps document.svg abiword.svg
16/apps calculator.svg accessories-calculator.svg calc.svg
16/apps brave.svg brave-icon.svg
16/apps chrome.svg
16/apps chromium.svg
16/apps book_dictionary.svg accessories-dictionary.svg
16/apps edit.svg accessories-text-editor.svg leafpad.svg
16/apps geany.svg
16/apps spreadsheet.svg gnumeric.svg
16/apps pdf.svg acroread.svg
16/apps book_address.svg addressbook.svg
16/apps chat.svg
16/apps edit_sound.svg mhwaveedit.svg
16/apps image-viewer.svg imageview.svg
16/apps audacity.svg
16/apps firefox.svg
16/apps help.svg gtk-help.svg help-contents.svg help-browser.svg
16/apps dialog-info.svg gtk-info.svg dialog-information.svg
16/apps libreoffice-base.svg
16/apps libreoffice-calc.svg
16/apps libreoffice-draw.svg
16/apps libreoffice-impress.svg
16/apps libreoffice-main.svg libreoffice-startcenter.svg
16/apps libreoffice-math.svg
16/apps libreoffice-writer.svg
16/apps wallpaper.svg background.svg preferences-desktop-wallpaper.svg
16/apps calendar.svg office-calendar.svg office-date.svg
16/apps edit_html.svg bluegriffon.svg composer.svg
16/apps internet.svg browser.svg web-browser.svg
16/apps mail.svg
16/apps paint.svg mtpaint.svg
16/apps gimp.svg
16/apps evince.svg
16/apps qupzilla.svg
16/apps seamonkey.svg
16/apps palemoon.svg
16/apps vivaldi.svg
16/apps iron.svg
16/apps transmission.svg
16/apps gnome-mplayer_small.svg gnome-mplayer.svg mplayer.svg gmplayer.svg xine.svg gxine.svg
16/apps smplayer.svg
16/apps vlc.svg
16/apps terminal.svg urxvt.svg rxvt.svg xterm.svg console.svg utilities-terminal.svg lxterminal.svg
16/apps x.svg X.svg xorg.svg Xorg.svg
16/apps accessories-character-map.svg
16/apps multimedia-volume-control.svg
16/apps user.svg system-users.svg
16/apps user-info.svg
16/apps system-windows.svg preferences-system-windows.svg
16/apps file-manager.svg system-file-manager.svg
16/apps open.svg pcmanfm.svg
16/apps software-install.svg system-software-install.svg
16/apps software-update.svg system-software-update.svg
16/apps system-monitor.svg utilities-system-monitor.svg lxtask.svg
16/apps sylpheed.svg
16/apps midori.svg
####
16/status bluetooth-active.svg
16/status bluetooth-disabled.svg
16/status bluetooth-disconnected.svg
16/status bluetooth-hardware-disabled.svg
16/status file_lock.svg gtk-dialog-authentication.svg dialog-password.svg
16/status dialog-error.svg gtk-dialog-error.svg eror.svg
16/status dialog-info.svg gtk-dialog-info.svg dialog-information.svg
16/status dialog-question.svg gtk-dialog-question.svg
16/status missing-image.svg gtk-missing-image.svg image-missing.svg
16/status dialog-warning.svg gtk-dialog-warning.svg dialog-warning-symbolic.svg
16/status network.svg gtk-network.svg network-wired.svg network-idle.svg
16/status network2.svg network_local.svg network-workgroup.svg
16/status network-transmit.svg
16/status network-receive.svg
16/status network-error.svg
16/status network-offline.svg
16/status network-transmit-receive.svg
16/status caps-lock-warning.svg gtk-caps-lock-warning.svg
16/status print-error.svg gtk-print-error.svg document-print-error.svg printer-error.svg
16/status printer-printing.svg
16/status print_no.svg gtk-print-no.svg document-print-no.svg
16/status print-report.svg gtk-print-report.svg document-print-report.svg
16/status print-warn.svg gtk-print-warning.svg document-print-warning.svg
16/status print_yes.svg gtk-print-yes.svg document-print-yes.svg
16/status playmode_loop.svg media-playlist-repeat.svg
16/status playmode_shuffle.svg media-playlist-shuffle.svg
16/status audio-volume-high.svg
16/status audio-volume-low.svg
16/status audio-volume-medium.svg
16/status audio-volume-muted.svg
16/status microphone-sensitivity-high.svg
16/status microphone-sensitivity-low.svg
16/status microphone-sensitivity-medium.svg
16/status microphone-sensitivity-muted.svg
16/status task-due.svg
16/status task-past-due.svg
16/status appointment-missed.svg
16/status appointment.svg appointment-soon.svg
16/status mail-attachment.svg
16/status mail-mark-important.svg
16/status mail-read.svg
16/status mail-replied.svg
16/status mail-send-receive.svg
16/status mail-send.svg
16/status mail-unread.svg
16/status security-high.svg
16/status security-low.svg
16/status security-medium.svg
16/status trash_full.svg user-trash-full.svg
16/status battery-caution.svg
16/status battery-low.svg
16/status mail-signed.svg
16/status mail-signed-verified.svg
16/status network-wireless-encrypted.svg
16/status software-update-available.svg
16/status software-update-urgent.svg
16/status image-loading.svg
####
16/places desktop.svg user-desktop.svg
16/places trash_empty.svg emptytrash.svg user-trash.svg
16/places trash_full.svg
16/places directory.svg inode-directory.svg folder.svg gtk-directory.svg stock_folder.svg
16/places directory-documents.svg folder-documents.svg
16/places directory-downloads.svg folder-downloads.svg folder-download.svg
16/places directory-home.svg folder_home.svg user-home.svg
16/places directory-images.svg folder_images.svg folder-pictures.svg
16/places directory-music.svg folder-music.svg
16/places directory-remote.svg folder-remote.svg
16/places directory-saved-search.svg folder-saved-search.svg
16/places open.svg folder-open.svg stock_open.svg directory-open.svg
16/places directory-accept.svg folder-drag-accept.svg
16/places directory-visiting.svg folder-visiting.svg
16/places directory-video.svg folder-videos.svg
16/places server.svg network-server.svg redhat-network-server.svg
16/places network2.svg network_local.svg network-workgroup.svg gtk-network.svg network-wired.svg network.svg network-idle.svg
16/places bookmark.svg user-bookmarks.svg
16/places start-here.svg
####
16/mimetypes application-pet.svg
16/mimetypes pdf.svg application-pdf.svg
16/mimetypes application-kernel.svg application-linux-kernel.svg application-x-linux-kernel.svg
16/mimetypes application-rss+xml.svg application-atom+xml.svg
16/mimetypes application-postscript.svg application-x-gzpostscript.svg
16/mimetypes application-rtf.svg application-x-abiword.svg
16/mimetypes application-vnd.ms-excel.svg
16/mimetypes application-vnd.ms-office.svg application-vnd.msoffice.svg application-msword.svg application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg application-vnd.oasis.opendocument.text.svg application-vnd.oasis.opendocument.text-web.svg x-office-document.svg
16/mimetypes application-vnd.ms-powerpoint.svg application-vnd.openxmlformats-officedocument.presentationml.presentation.svg application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg
16/mimetypes application-x-bit.svg application-x-bittorrent.svg
16/mimetypes application-x-cd-image.svg application-vnd.efi.iso.svg
16/mimetypes application-x-compressed-tar.svg application-x-tar.svg application-x-xz-compressed-tar.svg application-x-bzip-compressed-tar.svg application-tar.svg application-x-zstd-compressed-tar.svg
16/mimetypes application-x-compressed.svg application-x-bzip.svg application-x-rar.svg application-7zip.svg application-x-7z-compressed.svg application-x-archive.svg application-x-xz.svg application-x-gzip.svg application-gzip.svg package-x-generic.svg package.svg gz.svg application-x-zstd.svg application-x-archlinux-package-xz.svg application-x-archlinux-package-zstd.svg application-x-archlinux-package-zst.svg application-x-voidlinux-package.svg
16/mimetypes application-x-rpm.svg
16/mimetypes application-x-deb.svg application-vnd.debian.binary-package.svg
16/mimetypes application-zip.svg
16/mimetypes application-cpio.svg application-x-cpio.svg
16/mimetypes application-initramfs-gz.svg application-initramfs-xz.svg application-x-initrd
16/mimetypes application-x-delta.svg
16/mimetypes application-x-executable.svg application-octet-stream.svg application-x-ms-dos-executable.svg
16/mimetypes application-x-ext4-image.svg application-x-ext3-image.svg application-x-ext2-image.svg
16/mimetypes application-x-flash-video.svg application-x-shockwave-flash.svg application-vnd.adobe.flash.movie.svg
16/mimetypes application-x-font.svg application-x-font-afm.svg application-x-font-linux-pcf.svg application-x-font-pcf.svg application-x-font-speedo.svg application-x-font-ttf.svg font-x-generic.svg
16/mimetypes application-x-generic.svg application.svg
16/mimetypes application-x-java.svg application-x-jar.svg application-x-java-archive.svg text-x-java.svg application-x-java-jnlp-file.svg
16/mimetypes application-x-php.svg
16/mimetypes application-x-desktop.svg
16/mimetypes application-x-m4.svg
16/mimetypes application-x-raw-disk-image.svg application-x-img.svg application-x-qemu-disk.svg application-vnd.efi.img.svg
16/mimetypes application-x-object.svg
16/mimetypes application-x-sharedlib.svg so.svg
16/mimetypes application-x-shellscript.svg text-x-shellscript.svg text-x-script.svg
16/mimetypes perl.svg text-x-perl.svg application-x-perl.svg
16/mimetypes application-x-squashfs-image.svg
16/mimetypes application-vnd.android.package-archive.svg
16/mimetypes application-x-trash.svg
16/mimetypes application-x-xhtml+xml.svg application-x-extension-html.svg text-html.svg html.svg
16/mimetypes application-x-zerosize.svg text-x-preview.svg
16/mimetypes application-x-gettext-translation.svg
16/mimetypes text-x-gettext-translation.svg
16/mimetypes text-x-gettext-translation-template.svg
16/mimetypes application-notecase-plain.svg
16/mimetypes application-x-nes-rom.svg application-vnd.nintendo.snes.rom.svg
16/mimetypes audio.svg audio-midi.svg audio-mpeg.svg audio-x-generic.svg audio-x-mod.svg audio-x-mp3.svg audio-x-realaudio audio-x-wav.svg audio-x-speex+ogg.svg audio-x-vorbis+ogg.svg audio-x-flac+ogg.svg media-audio.svg
16/mimetypes playlist.svg audio-x-mp3-playlist.svg audio-x-scpls.svg source-playlist.svg audio-x-mpegurl.svg
16/mimetypes file_lock.svg application-pgp-keys.svg application-x-bfe.svg
16/mimetypes image.svg image-gif.svg image-jpeg.svg image-x-generic.svg image-x-xpixmap.svg image-bmp.svg image-jpeg2000.svg image-png.svg image-tiff.svg image-x-eps.svg image-x-portable-bitmap.svg image-x-psdimage-x-psd.svg image-x-psd.svg image-x-tga.svg image-x-win-bitmap.svg image-x-xcf.svg jpeg.svg jpg.svg media-image.svg
16/mimetypes inode-blockdevice.svg
16/mimetypes inode-chardevice.svg
16/mimetypes inode-fifo.svg
16/mimetypes inode-socket.svg
16/mimetypes source.svg text-css.svg text-tcl.svg application-javascript.svg application-x-fluid.svg
16/mimetypes text-x-vala.svg text-x-genie.svg
16/mimetypes spread-sheet.svg application-x-gnumeric.svg application-vnd.oasis.opendocument.spreadsheet.svg application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg x-office-spreadsheet.svg
16/mimetypes text-x-sql.svg application-vnd.ms-access.svg application-vnd.oasis.opendocument.database.svg application-x-sqlite2.svg application-x-sqlite3.svg openofficeorg3-database.svg openofficeorg3-oasis-database.svg
16/mimetypes text-x-bacon.svg
16/mimetypes text-x-c++src.svg
16/mimetypes text-x-csrc.svg
16/mimetypes text-x-makefile.svg
16/mimetypes text-markdown.svg text-x-markdown.svg application-x-genesis-rom.svg
16/mimetypes text-xml.svg application-x-glade.svg application-xml.svg application-rdf+xml.svg application-xslt+xml.svg application-vnd.oasis.opendocument.text-flat-xml.svg
16/mimetypes text-x-python.svg
16/mimetypes text.svg application-x-lyx.svg text-plain.svg text-x-changelog.svg text-x-copying.svg text-x-diff.svg text-x-generic.svg text-x-log.svg text-x-tex.svg application-x-theme.svg
16/mimetypes video.svg video-generic.svg video-x-generic.svg video-mp2t.svg video-mpeg.svg video-quicktime.svg application-x-matroska.svg media-video.svg
16/mimetypes x-office-drawing.svg application-vnd.oasis.opendocument.graphics.svg application-vnd.oasis.opendocument.formula.svg application-x-dia-diagram.svg
16/mimetypes x-office-calendar.svg
16/mimetypes application-certificate.svg
16/mimetypes book_address.svg x-office-address-book.svg
16/mimetypes text-x-generic-template.svg
####
16/actions address-book-new.svg
16/actions about.svg gtk-about.svg help-about.svg
16/actions add.svg gtk-add.svg list-add.svg
16/actions quit.svg application-exit.svg gtk-quit.svg
16/actions copy_cd.svg audio-cd-duplicate.svg
16/actions undo.svg back.svg go-previous.svg gtk-undo-ltr.svg edit-undo.svg
16/actions bookmark_add.svg bookmark-new.svg bookmark_list_add.svg
16/actions apply.svg gtk-apply.svg dialog-apply.svg
16/actions format-text-bold.svg gtk-bold.svg
16/actions cancel.svg gtk-cancel.svg process-stop.svg
16/actions clear.svg gtk-clear.svg edit-clear.svg
16/actions close.svg gtk-close.svg window-close.svg window-close-symbolic.svg
16/actions window-maximize.svg window-maximize-symbolic.svg
16/actions window-minimize.svg window-minimize-symbolic.svg
16/actions window-restore.svg window-restore-symbolic.svg
16/actions select-color.svg gtk-select-color.svg
16/actions select-font.svg gtk-select-font.svg gtk-font.svg
16/actions color-picker.svg gtk-color-picker.svg
16/actions connect.svg gtk-connect.svg
16/actions convert.svg gtk-convert.svg
16/actions copy.svg gtk-copy.svg edit-copy.svg
16/actions cut.svg gtk-cut.svg edit-cut.svg
16/actions disconnect.svg gtk-disconnect.svg
16/actions trash.svg gtk-delete.svg list-remove.svg edit-delete.svg
16/actions trash_undelete.svg gtk-undelete.svg list-restore.svg edit-undelete.svg
16/actions edit.svg gtk-edit.svg document-edit.svg
16/actions execute.svg gtk-execute.svg system-run.svg
16/actions execute_inspect.svg gtk-find-and-replace.svg edit-find-replace.svg
16/actions find.svg gtk-find.svg edit-find.svg
16/actions fullscreen.svg gtk-fullscreen.svg view-fullscreen.svg stock_fullscreen.svg window_fullscreen.svg
16/actions leave-fullscreen.svg gtk-leave-fullscreen.svg view-restore.svg stock_leave-fullscreen.svg window_nofullscreen.svg
16/actions arrow_mini_left.svg gtk-go-back-ltr.svg go-previous.svg gtk-go-forward-rtl.svg
16/actions arrow_mini_right.svg gtk-go-back-rtl.svg go-next.svg gtk-go-forward-ltr.svg
16/actions arrow_mini_down.svg gtk-go-down.svg go-down.svg
16/actions arrow_mini_down_bottom.svg gtk-goto-bottom.svg go-bottom.svg
16/actions arrow_mini_up_top.svg gtk-goto-top.svg go-top.svg
16/actions arrow_mini_left_first.svg gtk-goto-first-ltr.svg go-first.svg gtk-goto-last-rtl.svg
16/actions arrow_mini_right_last.svg gtk-goto-last-ltr.svg gtk-goto-first-rtl.svg go-last.svg
16/actions arrow_mini_up.svg gtk-go-up.svg go-up.svg
16/actions home.svg gtk-home.svg go-home.svg
16/actions harddisk.svg gtk-harddisk.svg drive-harddisk.svg
16/actions indent-ltr.svg gtk-indent-ltr.svg format-indent-more.svg
16/actions dialog-info.svg gtk-info.svg dialog-information.svg
16/actions format-text-italic.svg gtk-italic.svg
16/actions jump_to_left.svg gtk-jump-to.svg gtk-jump-to-ltr.svg go-jump.svg
16/actions jump_to_right.svg gtk-jump-to-rtl.svg
16/actions justify-center.svg gtk-justify-center.svg format-justify-center.svg
16/actions justify-fill.svg gtk-justify-fill.svg format-justify-fill.svg
16/actions justify-left.svg gtk-justify-left.svg format-justify-left.svg
16/actions justify-right.svg gtk-justify-right.svg format-justify-right.svg
16/actions help.svg gtk-help.svg help-contents.svg help-browser.svg
16/actions media-next.svg gtk-media-next.svg gtk-media-next-rtl.svg media-skip-forward.svg gtk-media-previous-ltr.svg
16/actions media-back.svg gtk-media-previous.svg gtk-media-next-ltr.svg media-skip-backward.svg gtk-media-previous-rtl.svg
16/actions media-pause.svg gtk-media-pause.svg media-playback-pause.svg
16/actions media-play.svg gtk-media-play.svg gtk-media-play-rtl.svg media-playback-start.svg
16/actions media-record.svg gtk-media-record.svg
16/actions media-seek-backward.svg gtk-seek-backward.svg
16/actions media-seek-forward.svg gtk-seek-forward.svg
16/actions media-stop.svg gtk-media-stop.svg media-playback-stop.svg
16/actions media-eject.svg player-eject.svg
16/actions new.svg gtk-new.svg document-new.svg gtk-file.svg document-x-generic.svg
16/actions dialog-no.svg gtk-no.svg
16/actions ok.svg gtk-ok.svg dialog-ok.svg
16/actions open.svg gtk-open.svg document-open.svg
16/actions paste.svg gtk-paste.svg edit-paste.svg
16/actions print.svg gtk-print.svg document-print.svg
16/actions print_add.svg gtk-print-add.svg document-print-add.svg
16/actions print-error.svg gtk-print-error.svg document-print-error.svg
16/actions print-preview.svg gtk-print-preview.svg document-print-preview.svg printer-preview.svg
16/actions properties.svg gtk-properties.svg document-properties.svg
16/actions redo.svg gtk-redo-ltr.svg edit-redo.svg
16/actions refresh.svg gtk-refresh.svg view-refresh.svg
16/actions remove.svg gtk-remove.svg list-remove.svg
16/actions revert-to-saved.svg gtk-revert-to-saved-ltr.svg document-revert.svg
16/actions save-as.svg gtk-save-as.svg document-save-as.svg
16/actions save.svg gtk-save.svg document-save.svg
16/actions edit-select-all.svg gtk-select-all.svg
16/actions sort-ascending.svg gtk-sort-ascending.svg view-sort-ascending.svg
16/actions sort-descending.svg gtk-sort-descending.svg view-sort-descending.svg
16/actions spell-check.svg gtk-spell-check.svg tools-check-spelling.svg
16/actions dialog_stop.svg gtk-stop.svg process-stop.svg
16/actions format-text-strikethrough.svg gtk-strikethrough.svg
16/actions format-text-underline.svg gtk-underline.svg
16/actions unindent-ltr.svg gtk-unindent.svg gtk-unindent-ltr.svg format-indent-less.svg
16/actions dialog-yes.svg gtk-yes.svg
16/actions zoom-100.svg gtk-zoom-100.svg zoom-original.svg
16/actions zoom-fit.svg gtk-zoom-fit.svg zoom-fit-best.svg zoom-best-fit.svg
16/actions zoom-in.svg gtk-zoom-in.svg
16/actions zoom-out.svg gtk-zoom-out.svg
16/actions shutdown.svg system-shutdown.svg
16/actions building_block.svg geany-build.svg
16/actions save-all.svg geany-save-all.svg
16/actions close-all.svg geany-close-all.svg
16/actions format-text-direction-ltr.svg
16/actions format-text-direction-rtl.svg
16/actions insert-image.svg
16/actions insert-link.svg
16/actions insert-object.svg
16/actions insert-text.svg
16/actions object-flip-horizontal.svg
16/actions object-flip-vertical.svg
16/actions object-rotate-left.svg
16/actions object-rotate-right.svg
16/actions call-start.svg
16/actions call-stop.svg
16/actions tab-new.svg
16/actions appointment-new.svg
16/actions contact-new.svg
16/actions directory-new.svg folder-new.svg
16/actions mail-forward.svg
16/actions mail-mark-important.svg
16/actions mail-mark-junk.svg
16/actions mail-mark-notjunk.svg
16/actions mail-mark-read.svg
16/actions mail-mark-unread.svg
16/actions mail-message-new.svg
16/actions mail-reply-all.svg
16/actions mail-reply-sender.svg
16/actions screen_lock.svg system-lock-screen.svg
16/actions system-log-out.svg
16/actions system-search.svg
16/actions window-new.svg
####
16/devices bluetooth.svg
16/devices card_pci.svg audio-card.svg
16/devices computer.svg system.svg
16/devices inode-blockdevice.svg block-device.svg
16/devices photocamera.svg camera.svg camera-photo.svg
16/devices cdrom.svg cdrom_unmount.svg media-optical.svg drive-optical.svg gtk-cdrom.svg media-cdr.svg media-cdrw.svg stock_music-library.svg
16/devices print.svg cupsprinter.svg printer-remote.svg printer.svg
16/devices graphics.svg display.svg video-display.svg
16/devices harddisk.svg gtk-harddisk.svg drive-harddisk.svg hdd_unmount.svg
16/devices harddisk_usb.svg gnome-dev-harddisk-usb.svg drive-harddisk-usb.svg
16/devices floppy.svg gtk-floppy.svg system-floppy.svg media-floppy.svg
16/devices keyboard.svg input-keyboard.svg
16/devices mouse.svg input-mouse.svg
16/devices cd_audio.svg media-cdrom-audio.svg
16/devices dvdrom.svg media-optical-dvd.svg media-dvd.svg media-optical-dvd-ram.svg media-optical-dvd-rom.svg media-optical-dvd-r-plus.svg media-optical-dvd-r.svg media-optical-dvd-rw.svg
16/devices internet_connect_no.svg network-wired-disconnected.svg
16/devices scanner.svg
16/devices disk_usb.svg gnome-dev-removable-usb.svg drive-removable-media.svg usbpendrive_unmount.svg
16/devices flashcard.svg sdcard.svg media-flash.svg
16/devices camera-web.svg
16/devices audio-input-microphone.svg
16/devices phone.svg
16/devices phone-android.svg
16/devices phone-iphone.svg
16/devices network-wireless.svg
16/devices input-gaming.svg
16/devices multimedia-player.svg
16/devices camera-video.svg
16/devices input-tablet.svg
16/devices battery.svg
16/devices media-zip.svg
16/devices media-tape.svg
16/devices pda.svg
16/devices modem.svg
16/devices laptop.svg
####
16/categories game_chess.svg applications-boardgames.svg Fun-boardgame.svg
16/categories game_card.svg applications-cardgames.svg Fun-cardgame.svg
16/categories game_puzzle.svg applications-puzzles.svg Fun-puzzle.svg
16/categories game.svg applications-games.svg Fun-Sub.svg Fun-adventure.svg
16/categories wallpaper.svg applications-graphics.svg applications-interfacedesign.svg
16/categories internet.svg applications-internet.svg applications-webbrowsers.svg
16/categories java.svg applications-java.svg
16/categories mail.svg applications-mail.svg
16/categories graph.svg applications-mathematics.svg
16/categories application-x-executable.svg package_development.svg applications-development.svg applications-python.svg applications-system.svg
16/categories multimedia.svg applications-multimedia.svg multimedia_section.svg
16/categories document.svg applications-office.svg
16/categories preferences.svg gtk-preferences.svg applications-utilities.svg applications-accessories.svg configuration_section.svg preferences-desktop.svg preferences-other.svg preferences-system.svg
16/categories science.svg applications-science.svg
16/categories desktop-accessibility.svg preferences-desktop-accessibility.svg
16/categories select-font.svg preferences-desktop-font.svg
16/categories desktop-keyboard.svg preferences-desktop-keyboard.svg
16/categories desktop-keyboard-shortcuts.svg preferences-desktop-keyboard-shortcuts.svg
16/categories screensaver.svg preferences-desktop-screensaver.svg
16/categories locale.svg preferences-desktop-locale.svg
16/categories remote-desktop.svg preferences-desktop-remote-desktop.svg
16/categories desktop-theme.svg preferences-desktop-theme.svg gtktheme.svg
16/categories applications-engineering.svg
16/categories desktop-peripherals.svg preferences-desktop-peripherals.svg
16/categories desktop-personal.svg preferences-desktop-personal.svg
16/categories preferences-system-network.svg
16/categories system-help.svg
####
16/emblems about.svg emblem-favorite.svg
16/emblems currency_dollar.svg emblem-money.svg
16/emblems currency_pound.svg
16/emblems currency_peso.svg
16/emblems currency_yuan.svg
16/emblems currency_euro.svg
16/emblems currency_rupee.svg
16/emblems system.svg emblem-system.svg
16/emblems emblem-shared.svg
16/emblems emblem-default.svg
16/emblems emblem-documents.svg
16/emblems emblem-downloads.svg
16/emblems emblem-generic.svg
16/emblems emblem-important.svg
16/emblems emblem-mail.svg
16/emblems emblem-package.svg
16/emblems emblem-photos.svg
16/emblems emblem-readonly.svg
16/emblems emblem-symbolic-link.svg
16/emblems emblem-unreadable.svg
16/emblems emblem-urgent.svg
16/emblems emblem-web.svg
16/emblems emblem-new.svg
####
16/emotes face-angel.svg
16/emotes face-angry.svg
16/emotes face-cool.svg
16/emotes face-crying.svg
16/emotes face-devilish.svg
16/emotes face-embarrassed.svg
16/emotes face-kiss.svg
16/emotes face-laugh.svg
16/emotes face-monkey.svg
16/emotes face-plain.svg
16/emotes face-raspberry.svg
16/emotes face-sick.svg
16/emotes face-sad.svg
16/emotes face-smile-big.svg
16/emotes face-smile.svg
16/emotes face-smirk.svg
16/emotes face-surprise.svg
16/emotes face-tired.svg
16/emotes face-uncertain.svg
16/emotes face-wink.svg
16/emotes face-worried.svg
#### 22 ####
22/apps aqualung.svg
22/apps audacious.svg
22/apps bluetooth.svg
22/apps deadbeef.svg
22/apps document.svg abiword.svg
22/apps calculator.svg accessories-calculator.svg calc.svg
22/apps brave.svg brave-icon.svg
22/apps chrome.svg
22/apps chromium.svg
22/apps book_dictionary.svg accessories-dictionary.svg
22/apps edit.svg accessories-text-editor.svg leafpad.svg
22/apps geany.svg
22/apps spreadsheet.svg gnumeric.svg
22/apps pdf.svg acroread.svg
22/apps book_address.svg addressbook.svg
22/apps chat.svg
22/apps edit_sound.svg mhwaveedit.svg
22/apps image-viewer.svg imageview.svg
22/apps audacity.svg
22/apps firefox.svg
22/apps help.svg gtk-help.svg help-contents.svg help-browser.svg
22/apps dialog-info.svg gtk-info.svg dialog-information.svg
22/apps libreoffice-base.svg
22/apps libreoffice-calc.svg
22/apps libreoffice-draw.svg
22/apps libreoffice-impress.svg
22/apps libreoffice-main.svg libreoffice-startcenter.svg
22/apps libreoffice-math.svg
22/apps libreoffice-writer.svg
22/apps wallpaper.svg background.svg preferences-desktop-wallpaper.svg
22/apps calendar.svg office-calendar.svg office-date.svg
22/apps edit_html.svg bluegriffon.svg composer.svg
22/apps internet.svg browser.svg web-browser.svg
22/apps mail.svg
22/apps paint.svg mtpaint.svg
22/apps gimp.svg
22/apps evince.svg
22/apps qupzilla.svg
22/apps seamonkey.svg
22/apps palemoon.svg
22/apps vivaldi.svg
22/apps iron.svg
22/apps transmission.svg
22/apps gnome-mplayer_small.svg gnome-mplayer.svg mplayer.svg gmplayer.svg xine.svg gxine.svg
22/apps smplayer.svg
22/apps vlc.svg
22/apps terminal.svg urxvt.svg rxvt.svg xterm.svg console.svg utilities-terminal.svg lxterminal.svg
22/apps x.svg X.svg xorg.svg Xorg.svg
22/apps accessories-character-map.svg
22/apps multimedia-volume-control.svg
22/apps user.svg system-users.svg
22/apps user-info.svg
22/apps system-windows.svg preferences-system-windows.svg
22/apps file-manager.svg system-file-manager.svg
22/apps open.svg pcmanfm.svg
22/apps software-install.svg system-software-install.svg
22/apps software-update.svg system-software-update.svg
22/apps system-monitor.svg utilities-system-monitor.svg lxtask.svg
22/apps sylpheed.svg
22/apps midori.svg
####
22/status bluetooth-active.svg
22/status bluetooth-disabled.svg
22/status bluetooth-disconnected.svg
22/status bluetooth-hardware-disabled.svg
22/status file_lock.svg gtk-dialog-authentication.svg dialog-password.svg
22/status dialog-error.svg gtk-dialog-error.svg eror.svg
22/status dialog-info.svg gtk-dialog-info.svg dialog-information.svg
22/status dialog-question.svg gtk-dialog-question.svg
22/status missing-image.svg gtk-missing-image.svg image-missing.svg
22/status dialog-warning.svg gtk-dialog-warning.svg dialog-warning-symbolic.svg
22/status network.svg gtk-network.svg network-wired.svg network-idle.svg
22/status network2.svg network_local.svg network-workgroup.svg
22/status network-transmit.svg
22/status network-receive.svg
22/status network-error.svg
22/status network-offline.svg
22/status network-transmit-receive.svg
22/status caps-lock-warning.svg gtk-caps-lock-warning.svg
22/status print-error.svg gtk-print-error.svg document-print-error.svg printer-error.svg
22/status print-pause.svg gtk-print-paused.svg document-print-paused.svg
22/status printer-printing.svg
22/status print_no.svg gtk-print-no.svg document-print-no.svg
22/status print-report.svg gtk-print-report.svg document-print-report.svg
22/status print-warn.svg gtk-print-warning.svg document-print-warning.svg
22/status print_yes.svg gtk-print-yes.svg document-print-yes.svg
22/status playmode_loop.svg media-playlist-repeat.svg
22/status playmode_shuffle.svg media-playlist-shuffle.svg
22/status audio-volume-high.svg
22/status audio-volume-low.svg
22/status audio-volume-medium.svg
22/status audio-volume-muted.svg
22/status microphone-sensitivity-high.svg
22/status microphone-sensitivity-low.svg
22/status microphone-sensitivity-medium.svg
22/status microphone-sensitivity-muted.svg
22/status task-due.svg
22/status task-past-due.svg
22/status appointment-missed.svg
22/status appointment.svg appointment-soon.svg
22/status mail-attachment.svg
22/status mail-mark-important.svg
22/status mail-read.svg
22/status mail-replied.svg
22/status mail-send-receive.svg
22/status mail-send.svg
22/status mail-unread.svg
22/status security-high.svg
22/status security-low.svg
22/status security-medium.svg
22/status trash_full.svg user-trash-full.svg
22/status battery-caution.svg
22/status battery-low.svg
22/status mail-signed.svg
22/status mail-signed-verified.svg
22/status network-wireless-encrypted.svg
22/status software-update-available.svg
22/status software-update-urgent.svg
22/status image-loading.svg
####
22/places desktop.svg user-desktop.svg
22/places trash_empty.svg emptytrash.svg user-trash.svg
22/places trash_full.svg
22/places directory.svg inode-directory.svg folder.svg gtk-directory.svg stock_folder.svg
22/places directory-documents.svg folder-documents.svg
22/places directory-downloads.svg folder-downloads.svg folder-download.svg
22/places directory-home.svg folder_home.svg user-home.svg
22/places directory-images.svg folder_images.svg folder-pictures.svg
22/places directory-music.svg folder-music.svg
22/places directory-remote.svg folder-remote.svg
22/places directory-saved-search.svg folder-saved-search.svg
22/places open.svg folder-open.svg stock_open.svg directory-open.svg
22/places directory-accept.svg folder-drag-accept.svg
22/places directory-visiting.svg folder-visiting.svg
22/places directory-video.svg folder-videos.svg
22/places server.svg network-server.svg redhat-network-server.svg
22/places network2.svg network_local.svg network-workgroup.svg gtk-network.svg network-wired.svg network.svg network-idle.svg
22/places bookmark.svg user-bookmarks.svg
22/places start-here.svg
####
22/mimetypes application-pet.svg
22/mimetypes pdf.svg application-pdf.svg
22/mimetypes application-kernel.svg application-linux-kernel.svg application-x-linux-kernel.svg
22/mimetypes application-rss+xml.svg application-atom+xml.svg
22/mimetypes application-postscript.svg application-x-gzpostscript.svg
22/mimetypes application-rtf.svg application-x-abiword.svg
22/mimetypes application-vnd.ms-excel.svg
22/mimetypes application-vnd.ms-office.svg application-vnd.msoffice.svg application-msword.svg application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg application-vnd.oasis.opendocument.text.svg application-vnd.oasis.opendocument.text-web.svg x-office-document.svg
22/mimetypes application-vnd.ms-powerpoint.svg application-vnd.openxmlformats-officedocument.presentationml.presentation.svg application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg x-office-presentation.svg
22/mimetypes application-x-bit.svg application-x-bittorrent.svg
22/mimetypes application-x-cd-image.svg application-vnd.efi.iso.svg
22/mimetypes application-x-compressed-tar.svg application-x-tar.svg application-x-xz-compressed-tar.svg application-x-bzip-compressed-tar.svg application-tar.svg application-x-zstd-compressed-tar.svg
22/mimetypes application-x-compressed.svg application-x-bzip.svg application-x-rar.svg application-7zip.svg application-x-7z-compressed.svg application-x-archive.svg application-x-xz.svg application-x-gzip.svg application-gzip.svg package-x-generic.svg package.svg gz.svg application-x-zstd.svg application-x-archlinux-package-xz.svg application-x-archlinux-package-zstd.svg application-x-archlinux-package-zst.svg application-x-voidlinux-package.svg
22/mimetypes application-x-rpm.svg
22/mimetypes application-x-deb.svg application-vnd.debian.binary-package.svg
22/mimetypes application-zip.svg
22/mimetypes application-cpio.svg application-x-cpio.svg
22/mimetypes application-initramfs-gz.svg application-initramfs-xz.svg application-x-initrd
22/mimetypes application-x-delta.svg
22/mimetypes application-x-executable.svg application-octet-stream.svg application-x-ms-dos-executable.svg
22/mimetypes application-x-ext4-image.svg application-x-ext3-image.svg application-x-ext2-image.svg
22/mimetypes application-x-flash-video.svg application-x-shockwave-flash.svg application-vnd.adobe.flash.movie.svg
22/mimetypes application-x-font.svg application-x-font-afm.svg application-x-font-linux-pcf.svg application-x-font-pcf.svg application-x-font-speedo.svg application-x-font-ttf.svg font-x-generic.svg
22/mimetypes application-x-generic.svg application.svg
22/mimetypes application-x-java.svg application-x-jar.svg application-x-java-archive.svg text-x-java.svg application-x-java-jnlp-file.svg
22/mimetypes application-x-php.svg
22/mimetypes application-x-desktop.svg
22/mimetypes application-x-m4.svg
22/mimetypes application-x-raw-disk-image.svg application-x-img.svg application-x-qemu-disk.svg application-vnd.efi.img.svg
22/mimetypes application-x-object.svg
22/mimetypes application-x-sharedlib.svg so.svg
22/mimetypes application-x-shellscript.svg text-x-shellscript.svg text-x-script.svg
22/mimetypes perl.svg text-x-perl.svg application-x-perl.svg
22/mimetypes application-x-squashfs-image.svg
22/mimetypes application-vnd.android.package-archive.svg
22/mimetypes application-x-trash.svg
22/mimetypes application-x-xhtml+xml.svg application-x-extension-html.svg text-html.svg html.svg
22/mimetypes application-x-zerosize.svg text-x-preview.svg
22/mimetypes application-x-gettext-translation.svg
22/mimetypes text-x-gettext-translation.svg
22/mimetypes text-x-gettext-translation-template.svg
22/mimetypes application-notecase-plain.svg
22/mimetypes application-x-nes-rom.svg application-vnd.nintendo.snes.rom.svg
22/mimetypes audio.svg audio-midi.svg audio-mpeg.svg audio-x-generic.svg audio-x-mod.svg audio-x-mp3.svg audio-x-realaudio audio-x-wav.svg audio-x-speex+ogg.svg audio-x-vorbis+ogg.svg audio-x-flac+ogg.svg media-audio.svg
22/mimetypes playlist.svg audio-x-mp3-playlist.svg audio-x-scpls.svg source-playlist.svg audio-x-mpegurl.svg
22/mimetypes file_lock.svg application-pgp-keys.svg application-x-bfe.svg
22/mimetypes image.svg image-gif.svg image-jpeg.svg image-x-generic.svg image-x-xpixmap.svg image-bmp.svg image-jpeg2000.svg image-png.svg image-tiff.svg image-x-eps.svg image-x-portable-bitmap.svg image-x-psdimage-x-psd.svg image-x-psd.svg image-x-tga.svg image-x-win-bitmap.svg image-x-xcf.svg jpeg.svg jpg.svg media-image.svg
22/mimetypes inode-blockdevice.svg
22/mimetypes inode-chardevice.svg
22/mimetypes inode-fifo.svg
22/mimetypes inode-socket.svg
22/mimetypes source.svg text-css.svg text-tcl.svg application-javascript.svg application-x-fluid.svg
22/mimetypes text-x-vala.svg text-x-genie.svg
22/mimetypes spread-sheet.svg application-x-gnumeric.svg application-vnd.oasis.opendocument.spreadsheet.svg application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg x-office-spreadsheet.svg
22/mimetypes text-x-sql.svg application-vnd.ms-access.svg application-vnd.oasis.opendocument.database.svg application-x-sqlite2.svg application-x-sqlite3.svg openofficeorg3-database.svg openofficeorg3-oasis-database.svg
22/mimetypes text-x-bacon.svg
22/mimetypes text-x-c++src.svg
22/mimetypes text-x-csrc.svg
22/mimetypes text-x-makefile.svg
22/mimetypes text-markdown.svg text-x-markdown.svg application-x-genesis-rom.svg
22/mimetypes text-xml.svg application-x-glade.svg application-xml.svg application-rdf+xml.svg application-xslt+xml.svg application-vnd.oasis.opendocument.text-flat-xml.svg
22/mimetypes text-x-python.svg
22/mimetypes text.svg application-x-lyx.svg text-plain.svg text-x-changelog.svg text-x-copying.svg text-x-diff.svg text-x-generic.svg text-x-log.svg text-x-tex.svg application-x-theme.svg
22/mimetypes video.svg video-generic.svg video-x-generic.svg video-mp2t.svg video-mpeg.svg video-quicktime.svg application-x-matroska.svg media-video.svg
22/mimetypes x-office-drawing.svg application-vnd.oasis.opendocument.graphics.svg application-vnd.oasis.opendocument.formula.svg application-x-dia-diagram.svg
22/mimetypes x-office-calendar.svg
22/mimetypes application-certificate.svg
22/mimetypes book_address.svg x-office-address-book.svg
22/mimetypes text-x-generic-template.svg
####
22/actions address-book-new.svg
22/actions about.svg gtk-about.svg help-about.svg
22/actions add.svg gtk-add.svg list-add.svg
22/actions quit.svg application-exit.svg gtk-quit.svg
22/actions copy_cd.svg audio-cd-duplicate.svg
22/actions undo.svg back.svg go-previous.svg gtk-undo-ltr.svg edit-undo.svg
22/actions bookmark_add.svg bookmark-new.svg bookmark_list_add.svg
22/actions apply.svg gtk-apply.svg dialog-apply.svg
22/actions format-text-bold.svg gtk-bold.svg
22/actions cancel.svg gtk-cancel.svg process-stop.svg
22/actions clear.svg gtk-clear.svg edit-clear.svg
22/actions close.svg gtk-close.svg window-close.svg window-close-symbolic.svg
22/actions window-maximize.svg window-maximize-symbolic.svg
22/actions window-minimize.svg window-minimize-symbolic.svg
22/actions window-restore.svg window-restore-symbolic.svg
22/actions select-color.svg gtk-select-color.svg
22/actions select-font.svg gtk-select-font.svg gtk-font.svg
22/actions color-picker.svg gtk-color-picker.svg
22/actions connect.svg gtk-connect.svg
22/actions convert.svg gtk-convert.svg
22/actions copy.svg gtk-copy.svg edit-copy.svg
22/actions cut.svg gtk-cut.svg edit-cut.svg
22/actions disconnect.svg gtk-disconnect.svg
22/actions trash.svg gtk-delete.svg list-remove.svg edit-delete.svg
22/actions trash_undelete.svg gtk-undelete.svg list-restore.svg edit-undelete.svg
22/actions edit.svg gtk-edit.svg document-edit.svg
22/actions execute.svg gtk-execute.svg system-run.svg
22/actions execute_inspect.svg gtk-find-and-replace.svg edit-find-replace.svg
22/actions find.svg gtk-find.svg edit-find.svg
22/actions fullscreen.svg gtk-fullscreen.svg view-fullscreen.svg stock_fullscreen.svg window_fullscreen.svg
22/actions leave-fullscreen.svg gtk-leave-fullscreen.svg view-restore.svg stock_leave-fullscreen.svg window_nofullscreen.svg
22/actions arrow_mini_left.svg gtk-go-back-ltr.svg go-previous.svg gtk-go-forward-rtl.svg
22/actions arrow_mini_right.svg gtk-go-back-rtl.svg go-next.svg gtk-go-forward-ltr.svg
22/actions arrow_mini_down.svg gtk-go-down.svg go-down.svg
22/actions arrow_mini_down_bottom.svg gtk-goto-bottom.svg go-bottom.svg
22/actions arrow_mini_up_top.svg gtk-goto-top.svg go-top.svg
22/actions arrow_mini_left_first.svg gtk-goto-first-ltr.svg go-first.svg gtk-goto-last-rtl.svg
22/actions arrow_mini_right_last.svg gtk-goto-last-ltr.svg gtk-goto-first-rtl.svg go-last.svg
22/actions arrow_mini_up.svg gtk-go-up.svg go-up.svg
22/actions home.svg gtk-home.svg go-home.svg
22/actions harddisk.svg gtk-harddisk.svg drive-harddisk.svg
22/actions indent-ltr.svg gtk-indent-ltr.svg format-indent-more.svg
22/actions dialog-info.svg gtk-info.svg dialog-information.svg
22/actions format-text-italic.svg gtk-italic.svg
22/actions jump_to_left.svg gtk-jump-to.svg gtk-jump-to-ltr.svg go-jump.svg
22/actions jump_to_right.svg gtk-jump-to-rtl.svg
22/actions justify-center.svg gtk-justify-center.svg format-justify-center.svg
22/actions justify-fill.svg gtk-justify-fill.svg format-justify-fill.svg
22/actions justify-left.svg gtk-justify-left.svg format-justify-left.svg
22/actions justify-right.svg gtk-justify-right.svg format-justify-right.svg
22/actions help.svg gtk-help.svg help-contents.svg help-browser.svg
22/actions media-next.svg gtk-media-next.svg gtk-media-next-rtl.svg media-skip-forward.svg gtk-media-previous-ltr.svg
22/actions media-back.svg gtk-media-previous.svg gtk-media-next-ltr.svg media-skip-backward.svg gtk-media-previous-rtl.svg
22/actions media-pause.svg gtk-media-pause.svg media-playback-pause.svg
22/actions media-play.svg gtk-media-play.svg gtk-media-play-rtl.svg media-playback-start.svg
22/actions media-record.svg gtk-media-record.svg
22/actions media-seek-backward.svg gtk-seek-backward.svg
22/actions media-seek-forward.svg gtk-seek-forward.svg
22/actions media-stop.svg gtk-media-stop.svg media-playback-stop.svg
22/actions media-eject.svg player-eject.svg
22/actions new.svg gtk-new.svg document-new.svg gtk-file.svg document-x-generic.svg
22/actions dialog-no.svg gtk-no.svg
22/actions ok.svg gtk-ok.svg dialog-ok.svg
22/actions open.svg gtk-open.svg document-open.svg
22/actions paste.svg gtk-paste.svg edit-paste.svg
22/actions print.svg gtk-print.svg document-print.svg
22/actions print_add.svg gtk-print-add.svg document-print-add.svg
22/actions print-error.svg gtk-print-error.svg document-print-error.svg
22/actions print-preview.svg gtk-print-preview.svg document-print-preview.svg printer-preview.svg
22/actions properties.svg gtk-properties.svg document-properties.svg
22/actions redo.svg gtk-redo-ltr.svg edit-redo.svg
22/actions refresh.svg gtk-refresh.svg view-refresh.svg
22/actions remove.svg gtk-remove.svg list-remove.svg
22/actions revert-to-saved.svg gtk-revert-to-saved-ltr.svg document-revert.svg
22/actions save-as.svg gtk-save-as.svg document-save-as.svg
22/actions save.svg gtk-save.svg document-save.svg
22/actions edit-select-all.svg gtk-select-all.svg
22/actions sort-ascending.svg gtk-sort-ascending.svg view-sort-ascending.svg
22/actions sort-descending.svg gtk-sort-descending.svg view-sort-descending.svg
22/actions spell-check.svg gtk-spell-check.svg tools-check-spelling.svg
22/actions dialog_stop.svg gtk-stop.svg process-stop.svg
22/actions format-text-strikethrough.svg gtk-strikethrough.svg
22/actions format-text-underline.svg gtk-underline.svg
22/actions unindent-ltr.svg gtk-unindent.svg gtk-unindent-ltr.svg format-indent-less.svg
22/actions dialog-yes.svg gtk-yes.svg
22/actions zoom-100.svg gtk-zoom-100.svg zoom-original.svg
22/actions zoom-fit.svg gtk-zoom-fit.svg zoom-fit-best.svg zoom-best-fit.svg
22/actions zoom-in.svg gtk-zoom-in.svg
22/actions zoom-out.svg gtk-zoom-out.svg
22/actions shutdown.svg system-shutdown.svg
22/actions building_block.svg geany-build.svg
22/actions save-all.svg geany-save-all.svg
22/actions close-all.svg geany-close-all.svg
22/actions format-text-direction-ltr.svg
22/actions format-text-direction-rtl.svg
22/actions insert-image.svg
22/actions insert-link.svg
22/actions insert-object.svg
22/actions insert-text.svg
22/actions object-flip-horizontal.svg
22/actions object-flip-vertical.svg
22/actions object-rotate-left.svg
22/actions object-rotate-right.svg
22/actions call-start.svg
22/actions call-stop.svg
22/actions tab-new.svg
22/actions appointment-new.svg
22/actions contact-new.svg
22/actions directory-new.svg folder-new.svg
22/actions mail-forward.svg
22/actions mail-mark-important.svg
22/actions mail-mark-junk.svg
22/actions mail-mark-notjunk.svg
22/actions mail-mark-read.svg
22/actions mail-mark-unread.svg
22/actions mail-message-new.svg
22/actions mail-reply-all.svg
22/actions mail-reply-sender.svg
22/actions screen_lock.svg system-lock-screen.svg
22/actions system-log-out.svg
22/actions system-search.svg
22/actions window-new.svg
####
22/devices bluetooth.svg
22/devices card_pci.svg audio-card.svg
22/devices computer.svg system.svg
22/devices inode-blockdevice.svg block-device.svg
22/devices photocamera.svg camera.svg camera-photo.svg
22/devices cdrom.svg cdrom_unmount.svg media-optical.svg drive-optical.svg gtk-cdrom.svg media-cdr.svg media-cdrw.svg stock_music-library.svg
22/devices print.svg cupsprinter.svg printer-remote.svg printer.svg
22/devices graphics.svg display.svg video-display.svg
22/devices harddisk.svg gtk-harddisk.svg drive-harddisk.svg hdd_unmount.svg
22/devices harddisk_usb.svg gnome-dev-harddisk-usb.svg drive-harddisk-usb.svg
22/devices floppy.svg gtk-floppy.svg system-floppy.svg media-floppy.svg
22/devices keyboard.svg input-keyboard.svg
22/devices mouse.svg input-mouse.svg
22/devices cd_audio.svg media-cdrom-audio.svg
22/devices dvdrom.svg media-optical-dvd.svg media-dvd.svg media-optical-dvd-ram.svg media-optical-dvd-rom.svg media-optical-dvd-r-plus.svg media-optical-dvd-r.svg media-optical-dvd-rw.svg
22/devices internet_connect_no.svg network-wired-disconnected.svg
22/devices scanner.svg
22/devices disk_usb.svg gnome-dev-removable-usb.svg drive-removable-media.svg usbpendrive_unmount.svg
22/devices flashcard.svg sdcard.svg media-flash.svg
22/devices camera-web.svg
22/devices audio-input-microphone.svg
22/devices phone.svg
22/devices phone-android.svg
22/devices phone-iphone.svg
22/devices network-wireless.svg
22/devices input-gaming.svg
22/devices multimedia-player.svg
22/devices camera-video.svg
22/devices input-tablet.svg
22/devices battery.svg
22/devices media-zip.svg
22/devices media-tape.svg
22/devices pda.svg
22/devices modem.svg
22/devices laptop.svg
####
22/categories game_chess.svg applications-boardgames.svg Fun-boardgame.svg
22/categories game_card.svg applications-cardgames.svg Fun-cardgame.svg
22/categories game_puzzle.svg applications-puzzles.svg Fun-puzzle.svg
22/categories game.svg applications-games.svg Fun-Sub.svg Fun-adventure.svg
22/categories wallpaper.svg applications-graphics.svg applications-interfacedesign.svg
22/categories internet.svg applications-internet.svg applications-webbrowsers.svg
22/categories java.svg applications-java.svg
22/categories mail.svg applications-mail.svg
22/categories graph.svg applications-mathematics.svg
22/categories application-x-executable.svg package_development.svg applications-development.svg applications-python.svg applications-system.svg
22/categories multimedia.svg applications-multimedia.svg multimedia_section.svg
22/categories document.svg applications-office.svg
22/categories preferences.svg gtk-preferences.svg applications-utilities.svg applications-accessories.svg configuration_section.svg preferences-desktop.svg preferences-other.svg preferences-system.svg
22/categories science.svg applications-science.svg
22/categories desktop-accessibility.svg preferences-desktop-accessibility.svg
22/categories select-font.svg preferences-desktop-font.svg
22/categories desktop-keyboard.svg preferences-desktop-keyboard.svg
22/categories desktop-keyboard-shortcuts.svg preferences-desktop-keyboard-shortcuts.svg
22/categories screensaver.svg preferences-desktop-screensaver.svg
22/categories locale.svg preferences-desktop-locale.svg
22/categories remote-desktop.svg preferences-desktop-remote-desktop.svg
22/categories desktop-theme.svg preferences-desktop-theme.svg gtktheme.svg
22/categories applications-engineering.svg
22/categories desktop-peripherals.svg preferences-desktop-peripherals.svg
22/categories desktop-personal.svg preferences-desktop-personal.svg
22/categories preferences-system-network.svg
22/categories system-help.svg
####
22/emblems about.svg emblem-favorite.svg
22/emblems currency_dollar.svg emblem-money.svg
22/emblems currency_pound.svg
22/emblems currency_peso.svg
22/emblems currency_yuan.svg
22/emblems currency_euro.svg
22/emblems currency_rupee.svg
22/emblems system.svg emblem-system.svg
22/emblems emblem-shared.svg
22/emblems emblem-default.svg
22/emblems emblem-documents.svg
22/emblems emblem-downloads.svg
22/emblems emblem-generic.svg
22/emblems emblem-important.svg
22/emblems emblem-mail.svg
22/emblems emblem-package.svg
22/emblems emblem-photos.svg
22/emblems emblem-readonly.svg
22/emblems emblem-symbolic-link.svg
22/emblems emblem-unreadable.svg
22/emblems emblem-urgent.svg
22/emblems emblem-web.svg
22/emblems emblem-new.svg
####
22/emotes face-angel.svg
22/emotes face-angry.svg
22/emotes face-cool.svg
22/emotes face-crying.svg
22/emotes face-devilish.svg
22/emotes face-embarrassed.svg
22/emotes face-kiss.svg
22/emotes face-laugh.svg
22/emotes face-monkey.svg
22/emotes face-plain.svg
22/emotes face-raspberry.svg
22/emotes face-sick.svg
22/emotes face-sad.svg
22/emotes face-smile-big.svg
22/emotes face-smile.svg
22/emotes face-smirk.svg
22/emotes face-surprise.svg
22/emotes face-tired.svg
22/emotes face-uncertain.svg
22/emotes face-wink.svg
22/emotes face-worried.svg
#### 24 ####
24/apps aqualung.svg
24/apps audacious.svg
24/apps bluetooth.svg
24/apps deadbeef.svg
24/apps document.svg abiword.svg
24/apps calculator.svg accessories-calculator.svg calc.svg
24/apps brave.svg brave-icon.svg
24/apps chrome.svg
24/apps chromium.svg
24/apps book_dictionary.svg accessories-dictionary.svg
24/apps edit.svg accessories-text-editor.svg leafpad.svg
24/apps geany.svg
24/apps spreadsheet.svg gnumeric.svg
24/apps pdf.svg acroread.svg
24/apps book_address.svg addressbook.svg
24/apps chat.svg
24/apps edit_sound.svg mhwaveedit.svg
24/apps image-viewer.svg imageview.svg
24/apps audacity.svg
24/apps firefox.svg
24/apps help.svg gtk-help.svg help-contents.svg help-browser.svg
24/apps dialog-info.svg gtk-info.svg dialog-information.svg
24/apps libreoffice-base.svg
24/apps libreoffice-calc.svg
24/apps libreoffice-draw.svg
24/apps libreoffice-impress.svg
24/apps libreoffice-main.svg libreoffice-startcenter.svg
24/apps libreoffice-math.svg
24/apps libreoffice-writer.svg
24/apps wallpaper.svg background.svg preferences-desktop-wallpaper.svg
24/apps calendar.svg office-calendar.svg office-date.svg
24/apps edit_html.svg bluegriffon.svg composer.svg
24/apps internet.svg browser.svg web-browser.svg
24/apps mail.svg
24/apps paint.svg mtpaint.svg
24/apps gimp.svg
24/apps evince.svg
24/apps qupzilla.svg
24/apps seamonkey.svg
24/apps palemoon.svg
24/apps vivaldi.svg
24/apps iron.svg
24/apps transmission.svg
24/apps gnome-mplayer_small.svg gnome-mplayer.svg mplayer.svg gmplayer.svg xine.svg gxine.svg
24/apps smplayer.svg
24/apps vlc.svg
24/apps terminal.svg urxvt.svg rxvt.svg xterm.svg console.svg utilities-terminal.svg lxterminal.svg
24/apps x.svg X.svg xorg.svg Xorg.svg
24/apps accessories-character-map.svg
24/apps multimedia-volume-control.svg
24/apps user.svg system-users.svg
24/apps user-info.svg
24/apps system-windows.svg preferences-system-windows.svg
24/apps file-manager.svg system-file-manager.svg
24/apps open.svg pcmanfm.svg
24/apps software-install.svg system-software-install.svg
24/apps software-update.svg system-software-update.svg
24/apps system-monitor.svg utilities-system-monitor.svg lxtask.svg
24/apps sylpheed.svg
24/apps midori.svg
####
24/status bluetooth-active.svg
24/status bluetooth-disabled.svg
24/status bluetooth-disconnected.svg
24/status bluetooth-hardware-disabled.svg
24/status file_lock.svg gtk-dialog-authentication.svg dialog-password.svg
24/status dialog-error.svg gtk-dialog-error.svg eror.svg
24/status dialog-info.svg gtk-dialog-info.svg dialog-information.svg
24/status dialog-question.svg gtk-dialog-question.svg
24/status missing-image.svg gtk-missing-image.svg image-missing.svg
24/status dialog-warning.svg gtk-dialog-warning.svg dialog-warning-symbolic.svg
24/status network.svg gtk-network.svg network-wired.svg network-idle.svg
24/status network2.svg network_local.svg network-workgroup.svg
24/status network-transmit.svg
24/status network-receive.svg
24/status network-error.svg
24/status network-offline.svg
24/status network-transmit-receive.svg
24/status caps-lock-warning.svg gtk-caps-lock-warning.svg
24/status print-error.svg gtk-print-error.svg document-print-error.svg printer-error.svg
24/status print-pause.svg gtk-print-paused.svg document-print-paused.svg
24/status printer-printing.svg
24/status print_no.svg gtk-print-no.svg document-print-no.svg
24/status print-report.svg gtk-print-report.svg document-print-report.svg
24/status print-warn.svg gtk-print-warning.svg document-print-warning.svg
24/status print_yes.svg gtk-print-yes.svg document-print-yes.svg
24/status playmode_loop.svg media-playlist-repeat.svg
24/status playmode_shuffle.svg media-playlist-shuffle.svg
24/status audio-volume-high.svg
24/status audio-volume-low.svg
24/status audio-volume-medium.svg
24/status audio-volume-muted.svg
24/status microphone-sensitivity-high.svg
24/status microphone-sensitivity-low.svg
24/status microphone-sensitivity-medium.svg
24/status microphone-sensitivity-muted.svg
24/status task-due.svg
24/status task-past-due.svg
24/status appointment-missed.svg
24/status appointment.svg appointment-soon.svg
24/status mail-attachment.svg
24/status mail-mark-important.svg
24/status mail-read.svg
24/status mail-replied.svg
24/status mail-send-receive.svg
24/status mail-send.svg
24/status mail-unread.svg
24/status security-high.svg
24/status security-low.svg
24/status security-medium.svg
24/status trash_full.svg user-trash-full.svg
24/status battery-caution.svg
24/status battery-low.svg
24/status mail-signed.svg