├── Builder ├── __pycache__ │ ├── logger.cpython-313.pyc │ ├── options.cpython-313.pyc │ └── packages.cpython-313.pyc ├── assets │ └── startup.sh ├── creators │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-313.pyc │ │ ├── builder.cpython-313.pyc │ │ ├── daemons.cpython-313.pyc │ │ ├── patches.cpython-313.pyc │ │ └── software.cpython-313.pyc │ ├── builder.py │ ├── daemons.py │ ├── patches.py │ └── software.py ├── install.py ├── logger.py ├── options.py └── packages.py ├── Docs ├── 00_installing_arch_linux_with_bspwm_russian.md ├── 01_installing_arch_linux_with_bspwm_english.md ├── 02_all_features_and_tricks_russian.md └── 03_all_features_and_tricks_english.md ├── Images ├── 1.jpg ├── 10.jpg ├── 11.jpg ├── 12.jpg ├── 13.jpg ├── 14.jpg ├── 15.jpg ├── 16.jpg ├── 17.jpg ├── 18.jpg ├── 19.jpg ├── 2.jpg ├── 20.jpg ├── 21.jpg ├── 22.jpg ├── 23.jpg ├── 24.jpg ├── 25.jpg ├── 26.jpg ├── 27.jpg ├── 28.jpg ├── 29.jpg ├── 3.jpg ├── 30.jpg ├── 31.jpg ├── 32.jpg ├── 33.jpg ├── 34.jpg ├── 35.jpg ├── 36.jpg ├── 37.jpg ├── 38.jpg ├── 39.jpg ├── 4.jpg ├── 40.jpg ├── 41.jpg ├── 42.jpg ├── 43.jpg ├── 44.jpg ├── 45.jpg ├── 46.jpg ├── 47.jpg ├── 48.jpg ├── 49.jpg ├── 5.jpg ├── 50.jpg ├── 51.jpg ├── 52.jpg ├── 53.jpg ├── 54.jpg ├── 55.jpg ├── 56.jpg ├── 57.jpg ├── 58.jpg ├── 59.jpg ├── 6.jpg ├── 60.jpg ├── 61.jpg ├── 62.jpg ├── 63.jpg ├── 64.jpg ├── 65.jpg ├── 66.jpg ├── 67.jpg ├── 68.jpg ├── 69.jpg ├── 7.jpg ├── 70.jpg ├── 71.jpg ├── 72.jpg ├── 73.jpg ├── 74.jpg ├── 75.jpg ├── 76.jpg ├── 8.jpg ├── 9.jpg ├── default.png └── system │ └── lock_screen.png ├── LICENSE ├── README.md ├── Xresources ├── bin ├── battery-alert ├── bible ├── brightness ├── calculator ├── change_language.sh ├── clear_images_meta ├── color-scripts │ ├── animals │ ├── bars │ ├── blocks │ ├── colorwheel │ ├── crunch │ ├── crunchbang │ ├── crunchbang-mini │ ├── darthvader │ ├── elfman │ ├── ghosts │ ├── jangofett │ ├── kaisen │ ├── monster │ ├── pacman │ ├── panes │ ├── pinguco │ ├── pipes │ ├── pipes.sh │ ├── pukeskull │ ├── rails │ ├── rally-x │ ├── skullys │ ├── skullz │ ├── space-invaders │ ├── square │ ├── tanks │ ├── thebat │ ├── thebat2 │ ├── zfetch │ └── zwaves ├── cursor_tracker.sh ├── do_not_disturb.sh ├── fetchs │ ├── fetch │ ├── pfetch │ └── sysfetch ├── powermenu ├── random_wallpaper ├── screen-lock ├── terminal_fullscreen ├── testfonts ├── timer ├── toggle-polybar ├── untar_all ├── unzip_all ├── volume ├── wallpaper_filter.py ├── weather ├── weather2 ├── wifimenu └── xcolor-pick ├── config ├── alacritty │ ├── alacritty.toml │ └── themes │ │ └── custom.toml ├── bspwm │ ├── bspwmrc │ ├── dual_monitors.sh │ ├── dunstrc │ └── picom_configurations │ │ ├── 1.conf │ │ ├── 2.conf │ │ ├── 3.conf │ │ └── picom_animation │ │ ├── picom-animations.conf │ │ └── picom.conf ├── fish │ ├── config.fish │ └── fish_variables ├── flameshot │ └── flameshot.ini ├── gtk-2.0 │ └── gtkfilechooser.ini ├── gtk-3.0 │ ├── bookmarks │ └── settings.ini ├── gtk-4.0 │ └── settings.ini ├── lsd │ ├── colors.yaml │ └── config.yaml ├── mimeapps.list ├── mpd │ └── mpd.conf ├── ncmpcpp │ └── config ├── nvim │ ├── init.lua │ ├── lazy-lock.json │ └── lua │ │ ├── core │ │ ├── colors.lua │ │ ├── configs.lua │ │ ├── mappings.lua │ │ └── plugins.lua │ │ └── plugins │ │ ├── better-escape.lua │ │ ├── bufferline.lua │ │ ├── cellular.lua │ │ ├── cmp.lua │ │ ├── colorizer.lua │ │ ├── comment.lua │ │ ├── dashboard.lua │ │ ├── lsp.lua │ │ ├── lualine.lua │ │ ├── mason.lua │ │ ├── mini.lua │ │ ├── nvim-tree.lua │ │ ├── telescope.lua │ │ ├── todo.lua │ │ ├── toggleterm.lua │ │ ├── treesitter.lua │ │ ├── trouble.lua │ │ └── whichkey.lua ├── polybar │ ├── colors.ini │ ├── config.ini │ ├── launch.sh │ └── modules.ini ├── ranger │ ├── colorschemes │ │ ├── __init__.py │ │ └── default.py │ ├── plugins │ │ ├── __init__.py │ │ └── ranger_devicons │ │ │ ├── LICENSE │ │ │ ├── LICENSE_NERDFONT │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── devicons.py │ ├── rc.conf │ └── scope.sh ├── redshift │ └── redshift.conf ├── rofi │ ├── catppuccin.rasi │ └── config.rasi ├── sxhkd │ └── sxhkdrc └── zathura │ └── zathurarc ├── demonstration ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png └── 7.png ├── firefox ├── chrome │ ├── left-arrow.svg │ ├── right-arrow.svg │ ├── userChrome.css │ └── userContent.css ├── install.sh └── user.js ├── gtkrc-2.0 ├── local └── share │ └── icons │ ├── Dracula-cursors │ ├── cursors │ │ ├── 00000000000000020006000e7e9ffc3f │ │ ├── 00008160000006810000408080010102 │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ ├── 3085a0e285430894940527032f8b26df │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ ├── alias │ │ ├── all-scroll │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ ├── bottom_left_corner │ │ ├── bottom_right_corner │ │ ├── bottom_side │ │ ├── cell │ │ ├── center_ptr │ │ ├── circle │ │ ├── closedhand │ │ ├── col-resize │ │ ├── color-picker │ │ ├── context-menu │ │ ├── copy │ │ ├── cross │ │ ├── crossed_circle │ │ ├── crosshair │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ ├── default │ │ ├── dnd-copy │ │ ├── dnd-move │ │ ├── dnd-no-drop │ │ ├── dnd-none │ │ ├── down-arrow │ │ ├── draft │ │ ├── e-resize │ │ ├── e29285e634086352946a0e7090d73106 │ │ ├── ew-resize │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ ├── fleur │ │ ├── forbidden │ │ ├── grab │ │ ├── grabbing │ │ ├── h_double_arrow │ │ ├── half-busy │ │ ├── hand1 │ │ ├── hand2 │ │ ├── help │ │ ├── ibeam │ │ ├── left-arrow │ │ ├── left_ptr │ │ ├── left_ptr_help │ │ ├── left_ptr_watch │ │ ├── left_side │ │ ├── link │ │ ├── move │ │ ├── n-resize │ │ ├── ne-resize │ │ ├── nesw-resize │ │ ├── no-drop │ │ ├── not-allowed │ │ ├── ns-resize │ │ ├── nw-resize │ │ ├── nwse-resize │ │ ├── openhand │ │ ├── pencil │ │ ├── pirate │ │ ├── plus │ │ ├── pointer │ │ ├── pointing_hand │ │ ├── progress │ │ ├── question_arrow │ │ ├── right-arrow │ │ ├── right_ptr │ │ ├── right_side │ │ ├── row-resize │ │ ├── s-resize │ │ ├── sb_h_double_arrow │ │ ├── sb_v_double_arrow │ │ ├── se-resize │ │ ├── size-bdiag │ │ ├── size-fdiag │ │ ├── size-hor │ │ ├── size-ver │ │ ├── size_all │ │ ├── size_bdiag │ │ ├── size_fdiag │ │ ├── size_hor │ │ ├── size_ver │ │ ├── split_h │ │ ├── split_v │ │ ├── sw-resize │ │ ├── text │ │ ├── top_left_arrow │ │ ├── top_left_corner │ │ ├── top_right_corner │ │ ├── top_side │ │ ├── up-arrow │ │ ├── v_double_arrow │ │ ├── vertical-text │ │ ├── w-resize │ │ ├── wait │ │ ├── watch │ │ ├── wayland-cursor │ │ ├── whats_this │ │ ├── x-cursor │ │ ├── xterm │ │ ├── zoom-in │ │ └── zoom-out │ ├── index.theme │ └── preview.png │ └── dracula-icons-main │ ├── 16 │ ├── actions │ │ ├── CVnamespace.svg │ │ ├── Finished.svg │ │ ├── Info-amarok.svg │ │ ├── PrePostCondition.svg │ │ ├── SuggestionTM.svg │ │ ├── accept_signal.svg │ │ ├── accept_time_event.svg │ │ ├── acrobat.svg │ │ ├── action-albumfolder-importdir2.svg │ │ ├── action-rss_tag.svg │ │ ├── action-unavailable.svg │ │ ├── activities.svg │ │ ├── activity-fork.svg │ │ ├── actor.svg │ │ ├── add-files-to-archive.svg │ │ ├── add-folder-to-archive.svg │ │ ├── add-placemark.svg │ │ ├── add.svg │ │ ├── address-book-new.svg │ │ ├── addressbook-details.svg │ │ ├── adjustcol.svg │ │ ├── adjustrow.svg │ │ ├── adress-book-new.svg │ │ ├── aggregation.svg │ │ ├── akonadi-phone-home.svg │ │ ├── albumfolder-importdir.svg │ │ ├── albumfolder-importimages.svg │ │ ├── albumfolder-new.svg │ │ ├── albumfolder-properties.svg │ │ ├── albumfolder-user-trash.svg │ │ ├── align-horizontal-baseline.svg │ │ ├── align-horizontal-bottom-out.svg │ │ ├── align-horizontal-center.svg │ │ ├── align-horizontal-left-out.svg │ │ ├── align-horizontal-left-to-anchor.svg │ │ ├── align-horizontal-left.svg │ │ ├── align-horizontal-right-out.svg │ │ ├── align-horizontal-right-to-anchor.svg │ │ ├── align-horizontal-right.svg │ │ ├── align-horizontal-top-out.svg │ │ ├── align-vertical-baseline.svg │ │ ├── align-vertical-bottom-out.svg │ │ ├── align-vertical-bottom-to-anchor.svg │ │ ├── align-vertical-bottom.svg │ │ ├── align-vertical-center.svg │ │ ├── align-vertical-top-out.svg │ │ ├── align-vertical-top-to-anchor.svg │ │ ├── align-vertical-top.svg │ │ ├── amarok_artist.svg │ │ ├── amarok_cart_add.svg │ │ ├── amarok_cart_remove.svg │ │ ├── amarok_cart_view.svg │ │ ├── amarok_change_language.svg │ │ ├── amarok_clock.svg │ │ ├── amarok_lyrics.svg │ │ ├── amarok_playcount.svg │ │ ├── amarok_playlist.svg │ │ ├── amarok_playlist_refresh.svg │ │ ├── amarok_scripts.svg │ │ ├── anchor.svg │ │ ├── animation-stage.svg │ │ ├── answer-correct.svg │ │ ├── answer.svg │ │ ├── application-exit.svg │ │ ├── application-menu.svg │ │ ├── appointment-new.svg │ │ ├── appointment.svg │ │ ├── approved.svg │ │ ├── archive-extract.svg │ │ ├── archive-insert-directory.svg │ │ ├── archive-insert.svg │ │ ├── archive-remove.svg │ │ ├── archive.svg │ │ ├── arrow-down-double.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left-double.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right-double.svg │ │ ├── arrow-right.svg │ │ ├── arrow-up-double.svg │ │ ├── arrow-up.svg │ │ ├── arrow.svg │ │ ├── artifact.svg │ │ ├── artistictext-tool.svg │ │ ├── association.svg │ │ ├── atmosphere.svg │ │ ├── audio-volume-muted.svg │ │ ├── auto-scale-all.svg │ │ ├── auto-scale-x.svg │ │ ├── auto-scale-y.svg │ │ ├── autocorrection.svg │ │ ├── automated-tasks.svg │ │ ├── back.svg │ │ ├── backup.svg │ │ ├── beamerblock.svg │ │ ├── beamerframe.svg │ │ ├── bibtex.svg │ │ ├── bigskip.svg │ │ ├── bitmap-trace.svg │ │ ├── black_sum.svg │ │ ├── blueman-plugin.svg │ │ ├── blueman-send-file.svg │ │ ├── blueman-trust.svg │ │ ├── blueman-untrust.svg │ │ ├── blurimage.svg │ │ ├── bonobo-component-browser.svg │ │ ├── bookmark-add-folder.svg │ │ ├── bookmark-edit.svg │ │ ├── bookmark-new-list.svg │ │ ├── bookmark-new.svg │ │ ├── bookmark-remove.svg │ │ ├── bookmark-toolbar.svg │ │ ├── bookmark_add.svg │ │ ├── bookmarks-organize.svg │ │ ├── bookmarks.svg │ │ ├── bookmarks_list_add.svg │ │ ├── borderpainter.svg │ │ ├── bordertool.svg │ │ ├── bottom.svg │ │ ├── box.svg │ │ ├── bqm-add.svg │ │ ├── bqm-addqueue.svg │ │ ├── bqm-commit.svg │ │ ├── bqm-diff.svg │ │ ├── bqm-remove.svg │ │ ├── bqm-rmqueue.svg │ │ ├── bqm-update.svg │ │ ├── branch.svg │ │ ├── browser-download.svg │ │ ├── burst.svg │ │ ├── button_cancel.svg │ │ ├── cab_extract.svg │ │ ├── cab_view.svg │ │ ├── call-start.svg │ │ ├── call-stop.svg │ │ ├── call-voicemail.svg │ │ ├── callout-shape.svg │ │ ├── cancel.svg │ │ ├── cards-block.svg │ │ ├── category.svg │ │ ├── category2parent.svg │ │ ├── cell_edit.svg │ │ ├── cell_layout.svg │ │ ├── character-set.svg │ │ ├── check-filled.svg │ │ ├── check_constraint.svg │ │ ├── checkbox.svg │ │ ├── checkmark.svg │ │ ├── child2category.svg │ │ ├── choice-rhomb.svg │ │ ├── choice-round.svg │ │ ├── chronometer-lap.svg │ │ ├── chronometer-pause.svg │ │ ├── chronometer-reset.svg │ │ ├── chronometer-start.svg │ │ ├── chronometer.svg │ │ ├── circular-arrow-shape.svg │ │ ├── class-or-package.svg │ │ ├── class.svg │ │ ├── clock-large.svg │ │ ├── clock.svg │ │ ├── cloud-download.svg │ │ ├── cloud-upload.svg │ │ ├── cm_columnsview.svg │ │ ├── cm_copyfullnamestoclip.svg │ │ ├── cm_extractfiles.svg │ │ ├── cm_options.svg │ │ ├── cm_packfiles.svg │ │ ├── cm_refresh.svg │ │ ├── cm_search.svg │ │ ├── cm_syncdirs.svg │ │ ├── cm_thumbnailsview.svg │ │ ├── cm_viewhistorynext.svg │ │ ├── code-block.svg │ │ ├── code-class.svg │ │ ├── code-context.svg │ │ ├── code-function.svg │ │ ├── code-typedef.svg │ │ ├── code-variable.svg │ │ ├── collapse-all.svg │ │ ├── collapse.svg │ │ ├── collection-rescan-amarok.svg │ │ ├── color-fill.svg │ │ ├── color-gradient.svg │ │ ├── color-management.svg │ │ ├── color-mode-black-white.svg │ │ ├── color-mode-hue-shift-negative.svg │ │ ├── color-mode-hue-shift-positive.svg │ │ ├── color-mode-invert-image.svg │ │ ├── color-mode-invert-text.svg │ │ ├── color-picker-black.svg │ │ ├── color-picker-grey.svg │ │ ├── color-picker-white.svg │ │ ├── color-picker.svg │ │ ├── colormanagement.svg │ │ ├── colors-chromablue.svg │ │ ├── colors-chromagreen.svg │ │ ├── colors-chromared.svg │ │ ├── colors-luma.svg │ │ ├── combined_fragment.svg │ │ ├── compass.svg │ │ ├── component.svg │ │ ├── composition.svg │ │ ├── configuration.svg │ │ ├── configure-shortcuts.svg │ │ ├── configure-toolbars.svg │ │ ├── configure.svg │ │ ├── configure_kile.svg │ │ ├── configure_project.svg │ │ ├── contact-new.svg │ │ ├── containment.svg │ │ ├── contents.svg │ │ ├── convert.svg │ │ ├── createpath.svg │ │ ├── cross-shape.svg │ │ ├── crosshairs.svg │ │ ├── currenttrack_pause.svg │ │ ├── currenttrack_play.svg │ │ ├── cursor-arrow.svg │ │ ├── curve-connector.svg │ │ ├── cvc-configure.svg │ │ ├── cvc-connect.svg │ │ ├── cvc-disconnect.svg │ │ ├── cvc-info.svg │ │ ├── dashboard-show.svg │ │ ├── database-index.svg │ │ ├── datatype.svg │ │ ├── dblatex.svg │ │ ├── debug-execute-from-cursor.svg │ │ ├── debug-execute-to-cursor.svg │ │ ├── debug-run-cursor.svg │ │ ├── debug-run.svg │ │ ├── debug-step-instruction.svg │ │ ├── debug-step-into-instruction.svg │ │ ├── debug-step-into.svg │ │ ├── debug-step-out.svg │ │ ├── debug-step-over.svg │ │ ├── deep-history.svg │ │ ├── delete-comment.svg │ │ ├── delete-table-row.svg │ │ ├── delete.svg │ │ ├── delete_table.svg │ │ ├── deletecell.svg │ │ ├── dependency.svg │ │ ├── diag_activity.svg │ │ ├── diag_class.svg │ │ ├── diag_component.svg │ │ ├── dialog-align-and-distribute.svg │ │ ├── dialog-apply.svg │ │ ├── dialog-cancel.svg │ │ ├── dialog-close.svg │ │ ├── dialog-error.svg │ │ ├── dialog-fill-and-stroke.svg │ │ ├── dialog-filters.svg │ │ ├── dialog-icon-preview.svg │ │ ├── dialog-input-devices.svg │ │ ├── dialog-layers.svg │ │ ├── dialog-memory.svg │ │ ├── dialog-messages.svg │ │ ├── dialog-no.svg │ │ ├── dialog-object-properties.svg │ │ ├── dialog-ok-apply.svg │ │ ├── dialog-ok.svg │ │ ├── dialog-rows-and-columns.svg │ │ ├── dialog-scripts.svg │ │ ├── dialog-text-and-font.svg │ │ ├── dialog-tile-clones.svg │ │ ├── dialog-transform.svg │ │ ├── dialog-warning.svg │ │ ├── dialog-xml-editor.svg │ │ ├── dialog-yes.svg │ │ ├── dirsync.svg │ │ ├── displaymathmode.svg │ │ ├── dissociatecell.svg │ │ ├── distortionfx.svg │ │ ├── distribute-horizontal-baseline.svg │ │ ├── distribute-horizontal-center.svg │ │ ├── distribute-horizontal-equal.svg │ │ ├── distribute-horizontal-gaps.svg │ │ ├── distribute-horizontal-left.svg │ │ ├── distribute-horizontal-margin.svg │ │ ├── distribute-horizontal-page.svg │ │ ├── distribute-horizontal-right.svg │ │ ├── distribute-horizontal-x.svg │ │ ├── distribute-horizontal.svg │ │ ├── distribute-vertical-baseline.svg │ │ ├── distribute-vertical-bottom.svg │ │ ├── distribute-vertical-center.svg │ │ ├── distribute-vertical-equal.svg │ │ ├── distribute-vertical-gaps.svg │ │ ├── distribute-vertical-margin.svg │ │ ├── distribute-vertical-page.svg │ │ ├── distribute-vertical-top.svg │ │ ├── distribute-vertical-y.svg │ │ ├── distribute-vertical.svg │ │ ├── document-cleanup.svg │ │ ├── document-close.svg │ │ ├── document-compareleft.svg │ │ ├── document-compareright.svg │ │ ├── document-decrypt.svg │ │ ├── document-duplicate.svg │ │ ├── document-edit-decrypt-verify.svg │ │ ├── document-edit-decrypt.svg │ │ ├── document-edit-encrypt.svg │ │ ├── document-edit-sign-encrypt.svg │ │ ├── document-edit-sign.svg │ │ ├── document-edit-verify.svg │ │ ├── document-edit.svg │ │ ├── document-encrypt.svg │ │ ├── document-encrypted.svg │ │ ├── document-equal.svg │ │ ├── document-export-ocal.svg │ │ ├── document-export-table.svg │ │ ├── document-export.svg │ │ ├── document-import-ocal.svg │ │ ├── document-import.svg │ │ ├── document-multiple.svg │ │ ├── document-new-from-template.svg │ │ ├── document-new.svg │ │ ├── document-open-data.svg │ │ ├── document-open-folder.svg │ │ ├── document-open-recent.svg │ │ ├── document-open-remote.svg │ │ ├── document-open.svg │ │ ├── document-preview-archive.svg │ │ ├── document-preview.svg │ │ ├── document-print-direct.svg │ │ ├── document-print-frame.svg │ │ ├── document-print-preview.svg │ │ ├── document-print.svg │ │ ├── document-properties.svg │ │ ├── document-replace.svg │ │ ├── document-revert-rtl.svg │ │ ├── document-revert.svg │ │ ├── document-save-all.svg │ │ ├── document-save-as.svg │ │ ├── document-save.svg │ │ ├── document-send.svg │ │ ├── document-share.svg │ │ ├── document-sign.svg │ │ ├── document-single.svg │ │ ├── document-swap.svg │ │ ├── document-unequal.svg │ │ ├── documentation.svg │ │ ├── documentinfo.svg │ │ ├── down.svg │ │ ├── download-amarok.svg │ │ ├── download-later.svg │ │ ├── download.svg │ │ ├── draw-arrow-back.svg │ │ ├── draw-arrow-down.svg │ │ ├── draw-arrow-forward.svg │ │ ├── draw-arrow-up.svg │ │ ├── draw-arrow.svg │ │ ├── draw-bezier-curves.svg │ │ ├── draw-brush.svg │ │ ├── draw-circle.svg │ │ ├── draw-connector.svg │ │ ├── draw-cross.svg │ │ ├── draw-cuboid.svg │ │ ├── draw-donut.svg │ │ ├── draw-ellipse-arc.svg │ │ ├── draw-ellipse-segment.svg │ │ ├── draw-ellipse-whole.svg │ │ ├── draw-ellipse.svg │ │ ├── draw-eraser-delete-objects.svg │ │ ├── draw-eraser.svg │ │ ├── draw-freehand.svg │ │ ├── draw-halfcircle1.svg │ │ ├── draw-halfcircle2.svg │ │ ├── draw-halfcircle3.svg │ │ ├── draw-halfcircle4.svg │ │ ├── draw-highlight.svg │ │ ├── draw-line.svg │ │ ├── draw-path.svg │ │ ├── draw-polygon-star.svg │ │ ├── draw-polygon.svg │ │ ├── draw-polyline.svg │ │ ├── draw-rectangle-rounded.svg │ │ ├── draw-rectangle.svg │ │ ├── draw-spiral.svg │ │ ├── draw-square-inverted-corners.svg │ │ ├── draw-star.svg │ │ ├── draw-text.svg │ │ ├── draw-triangle.svg │ │ ├── draw-triangle1.svg │ │ ├── draw-triangle2.svg │ │ ├── draw-triangle3.svg │ │ ├── draw-triangle4.svg │ │ ├── draw-watercolor.svg │ │ ├── dvipdf.svg │ │ ├── dvipng.svg │ │ ├── dvips.svg │ │ ├── dynamic-amarok.svg │ │ ├── edit-add.svg │ │ ├── edit-bomb.svg │ │ ├── edit-clear-all.svg │ │ ├── edit-clear-history.svg │ │ ├── edit-clear-list.svg │ │ ├── edit-clear-locationbar-ltr.svg │ │ ├── edit-clear-locationbar-rtl.svg │ │ ├── edit-clear.svg │ │ ├── edit-clone-unlink.svg │ │ ├── edit-clone.svg │ │ ├── edit-comment.svg │ │ ├── edit-copy.svg │ │ ├── edit-cut.svg │ │ ├── edit-delete-remove.svg │ │ ├── edit-delete-shred.svg │ │ ├── edit-delete.svg │ │ ├── edit-download.svg │ │ ├── edit-duplicate.svg │ │ ├── edit-entry.svg │ │ ├── edit-find-mail.svg │ │ ├── edit-find-project.svg │ │ ├── edit-find-replace.svg │ │ ├── edit-find-user.svg │ │ ├── edit-find.svg │ │ ├── edit-flag.svg │ │ ├── edit-guides.svg │ │ ├── edit-image-face-add.svg │ │ ├── edit-image-face-detect.svg │ │ ├── edit-image-face-recognize.svg │ │ ├── edit-image-face-show.svg │ │ ├── edit-line-width.svg │ │ ├── edit-link.svg │ │ ├── edit-map.svg │ │ ├── edit-mark.svg │ │ ├── edit-node.svg │ │ ├── edit-none.svg │ │ ├── edit-opacity.svg │ │ ├── edit-paste-in-place.svg │ │ ├── edit-paste-style.svg │ │ ├── edit-paste.svg │ │ ├── edit-redo.svg │ │ ├── edit-rename.svg │ │ ├── edit-reset.svg │ │ ├── edit-select-all-layers.svg │ │ ├── edit-select-all.svg │ │ ├── edit-select-invert.svg │ │ ├── edit-select-none.svg │ │ ├── edit-select-original.svg │ │ ├── edit-select-text.svg │ │ ├── edit-select.svg │ │ ├── edit-table-cell-merge.svg │ │ ├── edit-table-cell-split.svg │ │ ├── edit-table-delete-column.svg │ │ ├── edit-table-delete-row.svg │ │ ├── edit-table-insert-column-left.svg │ │ ├── edit-table-insert-column-right.svg │ │ ├── edit-table-insert-row-above.svg │ │ ├── edit-table-insert-row-below.svg │ │ ├── edit-table-insert-row-under.svg │ │ ├── edit-text-frame-update.svg │ │ ├── edit-undo-history.svg │ │ ├── edit-undo.svg │ │ ├── editclear.svg │ │ ├── editcopy.svg │ │ ├── editcut.svg │ │ ├── editdelete.svg │ │ ├── editimage.svg │ │ ├── editor.svg │ │ ├── editpaste.svg │ │ ├── editpath.svg │ │ ├── edittext.svg │ │ ├── ellipse-shape.svg │ │ ├── emph.svg │ │ ├── end_of_life.svg │ │ ├── end_state.svg │ │ ├── enterprise.svg │ │ ├── entity.svg │ │ ├── entry-clone.svg │ │ ├── entry-delete.svg │ │ ├── entry-edit.svg │ │ ├── enum.svg │ │ ├── enumerate.svg │ │ ├── epiphany-download.svg │ │ ├── error.svg │ │ ├── escape-direction-all.svg │ │ ├── escape-direction-down.svg │ │ ├── escape-direction-horizontal.svg │ │ ├── escape-direction-left.svg │ │ ├── escape-direction-right.svg │ │ ├── escape-direction-up.svg │ │ ├── escape-direction-vertical.svg │ │ ├── exception.svg │ │ ├── exifinfo.svg │ │ ├── exit.svg │ │ ├── expand-all.svg │ │ ├── expand.svg │ │ ├── extract-archive.svg │ │ ├── favorite-genres-amarok.svg │ │ ├── fcitx-vk-active.svg │ │ ├── fcitx-vk-inactive.svg │ │ ├── feed-subscribe.svg │ │ ├── file-zoom-in.svg │ │ ├── file-zoom-out.svg │ │ ├── filefind.svg │ │ ├── filegrep.svg │ │ ├── filename-album-amarok.svg │ │ ├── filename-and-amarok.svg │ │ ├── filename-artist-amarok.svg │ │ ├── filename-bpm-amarok.svg │ │ ├── filename-comment-amarok.svg │ │ ├── filename-composer-amarok.svg │ │ ├── filename-dash-amarok.svg │ │ ├── filename-discnumber-amarok.svg │ │ ├── filename-divider.svg │ │ ├── filename-dot-amarok.svg │ │ ├── filename-filetype-amarok.svg │ │ ├── filename-genre-amarok.svg │ │ ├── filename-group-length.svg │ │ ├── filename-group-tracks.svg │ │ ├── filename-ignore-amarok.svg │ │ ├── filename-initial-amarok.svg │ │ ├── filename-last-played.svg │ │ ├── filename-moodbar.svg │ │ ├── filename-sample-rate.svg │ │ ├── filename-slash-amarok.svg │ │ ├── filename-space-amarok.svg │ │ ├── filename-title-amarok.svg │ │ ├── filename-track-amarok.svg │ │ ├── filename-underscore-amarok.svg │ │ ├── filename-year-amarok.svg │ │ ├── filenew.svg │ │ ├── fileopen.svg │ │ ├── fileprint.svg │ │ ├── filequickprint.svg │ │ ├── filesave.svg │ │ ├── fileview-preview.svg │ │ ├── fill-color.svg │ │ ├── fill-rule-even-odd.svg │ │ ├── fill-rule-nonzero.svg │ │ ├── final_activity.svg │ │ ├── find-location.svg │ │ ├── find.svg │ │ ├── fitmanual.svg │ │ ├── flag-black.svg │ │ ├── flag-blue.svg │ │ ├── flag-green.svg │ │ ├── flag-red.svg │ │ ├── flag-yellow.svg │ │ ├── flag.svg │ │ ├── flash.svg │ │ ├── flashlight-off.svg │ │ ├── flashlight-on.svg │ │ ├── folder-new.svg │ │ ├── folder-open-recent.svg │ │ ├── folder-open.svg │ │ ├── folder-saved-search.svg │ │ ├── folder-stash.svg │ │ ├── folder-sync.svg │ │ ├── folder-tag.svg │ │ ├── folder_color_picker.svg │ │ ├── folder_new.svg │ │ ├── followmouse.svg │ │ ├── font-disable.svg │ │ ├── font-enable.svg │ │ ├── font-face.svg │ │ ├── font-size-down.svg │ │ ├── font-size-up.svg │ │ ├── font.svg │ │ ├── foreign_green.svg │ │ ├── foreign_red.svg │ │ ├── foreignkey_constraint.svg │ │ ├── fork.svg │ │ ├── format-add-node.svg │ │ ├── format-align-vertical-bottom.svg │ │ ├── format-align-vertical-center.svg │ │ ├── format-align-vertical-top.svg │ │ ├── format-border-set-all.svg │ │ ├── format-border-set-bottom.svg │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ ├── format-border-set-diagonal-tl-br.svg │ │ ├── format-border-set-external.svg │ │ ├── format-border-set-internal-horizontal.svg │ │ ├── format-border-set-internal-vertical.svg │ │ ├── format-border-set-internal.svg │ │ ├── format-border-set-left.svg │ │ ├── format-border-set-none.svg │ │ ├── format-border-set-right.svg │ │ ├── format-border-set-top.svg │ │ ├── format-border-style.svg │ │ ├── format-break-node.svg │ │ ├── format-connect-node.svg │ │ ├── format-disconnect-node.svg │ │ ├── format-fill-color.svg │ │ ├── format-font-size-less.svg │ │ ├── format-font-size-more.svg │ │ ├── format-indent-less.svg │ │ ├── format-indent-more.svg │ │ ├── format-join-node.svg │ │ ├── format-justify-center.svg │ │ ├── format-justify-fill.svg │ │ ├── format-justify-left.svg │ │ ├── format-justify-right.svg │ │ ├── format-line-spacing-double.svg │ │ ├── format-line-spacing-normal.svg │ │ ├── format-line-spacing-triple.svg │ │ ├── format-list-ordered.svg │ │ ├── format-list-unordered.svg │ │ ├── format-number-percent.svg │ │ ├── format-precision-less.svg │ │ ├── format-precision-more.svg │ │ ├── format-remove-node.svg │ │ ├── format-stroke-color.svg │ │ ├── format-text-blockquote.svg │ │ ├── format-text-bold.svg │ │ ├── format-text-capitalize.svg │ │ ├── format-text-code.svg │ │ ├── format-text-color.svg │ │ ├── format-text-direction-horizontal.svg │ │ ├── format-text-direction-ltr.svg │ │ ├── format-text-direction-rtl.svg │ │ ├── format-text-direction-vertical.svg │ │ ├── format-text-italic.svg │ │ ├── format-text-lowercase.svg │ │ ├── format-text-strikethrough.svg │ │ ├── format-text-subscript.svg │ │ ├── format-text-superscript.svg │ │ ├── format-text-symbol.svg │ │ ├── format-text-underline-squiggle.svg │ │ ├── format-text-underline.svg │ │ ├── format-text-uppercase.svg │ │ ├── formula.svg │ │ ├── freerotation.svg │ │ ├── games-achievements.svg │ │ ├── games-config-background.svg │ │ ├── games-config-board.svg │ │ ├── games-config-custom.svg │ │ ├── games-config-options.svg │ │ ├── games-config-theme.svg │ │ ├── games-config-tiles.svg │ │ ├── games-difficult.svg │ │ ├── games-endturn.svg │ │ ├── games-highscores.svg │ │ ├── games-hint.svg │ │ ├── games-solve.svg │ │ ├── geany-build.svg │ │ ├── geany-close-all.svg │ │ ├── geany-save-all.svg │ │ ├── gearhead-shape.svg │ │ ├── generalisation.svg │ │ ├── generalise.svg │ │ ├── get-hot-new-stuff.svg │ │ ├── giggle-history-view.svg │ │ ├── giggle-remote.svg │ │ ├── giggle-tag.svg │ │ ├── globe.svg │ │ ├── gnome-app-install-star.svg │ │ ├── gnome-lockscreen.svg │ │ ├── gnome-searchtool.svg │ │ ├── gnome-stock-mail-fwd.svg │ │ ├── gnome-stock-mail-new.svg │ │ ├── gnome-stock-mail-rpl.svg │ │ ├── gnome-stock-mail-snd.svg │ │ ├── gnumeric-autofilter-delete.svg │ │ ├── gnumeric-autofilter.svg │ │ ├── gnumeric-brush.svg │ │ ├── gnumeric-cells-merge.svg │ │ ├── gnumeric-cells-split.svg │ │ ├── gnumeric-column-add.svg │ │ ├── gnumeric-column-delete.svg │ │ ├── gnumeric-column-hide.svg │ │ ├── gnumeric-column-size.svg │ │ ├── gnumeric-column-unhide.svg │ │ ├── gnumeric-comment-add.svg │ │ ├── gnumeric-comment-delete.svg │ │ ├── gnumeric-comment-edit.svg │ │ ├── gnumeric-component-insert-shaped.svg │ │ ├── gnumeric-data-slicer.svg │ │ ├── gnumeric-font.svg │ │ ├── gnumeric-format-border-bottom.svg │ │ ├── gnumeric-format-border-diag.svg │ │ ├── gnumeric-format-border-left.svg │ │ ├── gnumeric-format-border-rev-diag.svg │ │ ├── gnumeric-format-border-right.svg │ │ ├── gnumeric-format-border-top.svg │ │ ├── gnumeric-formulaguru.svg │ │ ├── gnumeric-graphguru.svg │ │ ├── gnumeric-group.svg │ │ ├── gnumeric-link-add.svg │ │ ├── gnumeric-link-delete.svg │ │ ├── gnumeric-link-edit.svg │ │ ├── gnumeric-link-email.svg │ │ ├── gnumeric-link-external.svg │ │ ├── gnumeric-link-internal.svg │ │ ├── gnumeric-link-url.svg │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ ├── gnumeric-pivottable.svg │ │ ├── gnumeric-row-add.svg │ │ ├── gnumeric-row-delete.svg │ │ ├── gnumeric-row-hide.svg │ │ ├── gnumeric-row-size.svg │ │ ├── gnumeric-row-unhide.svg │ │ ├── gnumeric-subscript.svg │ │ ├── gnumeric-superscript.svg │ │ ├── gnumeric-ungroup.svg │ │ ├── gnumeric-visible.svg │ │ ├── go-bottom.svg │ │ ├── go-down-search.svg │ │ ├── go-down-skip.svg │ │ ├── go-down-symbolic.svg │ │ ├── go-down.svg │ │ ├── go-first-view-page.svg │ │ ├── go-first-view.svg │ │ ├── go-first.svg │ │ ├── go-home-large.svg │ │ ├── go-home-symbolic.svg │ │ ├── go-home.svg │ │ ├── go-jump-declaration.svg │ │ ├── go-jump-definition.svg │ │ ├── go-jump-locationbar.svg │ │ ├── go-jump-today.svg │ │ ├── go-jump.svg │ │ ├── go-last-view-page.svg │ │ ├── go-last-view.svg │ │ ├── go-last.svg │ │ ├── go-left-symbolic.svg │ │ ├── go-left.svg │ │ ├── go-next-context.svg │ │ ├── go-next-skip.svg │ │ ├── go-next-symbolic.svg │ │ ├── go-next-use.svg │ │ ├── go-next-view-page.svg │ │ ├── go-next-view.svg │ │ ├── go-next.svg │ │ ├── go-parent-folder.svg │ │ ├── go-previous-context.svg │ │ ├── go-previous-skip.svg │ │ ├── go-previous-symbolic.svg │ │ ├── go-previous-use.svg │ │ ├── go-previous-view-page.svg │ │ ├── go-previous-view.svg │ │ ├── go-previous.svg │ │ ├── go-right-symbolic.svg │ │ ├── go-right.svg │ │ ├── go-top.svg │ │ ├── go-up-search.svg │ │ ├── go-up-skip.svg │ │ ├── go-up-symbolic.svg │ │ ├── go-up.svg │ │ ├── gohome.svg │ │ ├── gpg.svg │ │ ├── gpgsm.svg │ │ ├── gps.svg │ │ ├── gradient.svg │ │ ├── graphics.svg │ │ ├── grid-axonometric.svg │ │ ├── grid-rectangular.svg │ │ ├── group-delete.svg │ │ ├── group-edit.svg │ │ ├── group-new.svg │ │ ├── group.svg │ │ ├── gtg-home.svg │ │ ├── gtg-plugin.svg │ │ ├── gtg-tag-new.svg │ │ ├── gtg-tag.svg │ │ ├── gtg-tags-none.svg │ │ ├── gtg-task-dismiss.svg │ │ ├── gtg-task-done.svg │ │ ├── gtg-task-new.svg │ │ ├── gtg-task-undismiss.svg │ │ ├── gtg-task-undone.svg │ │ ├── gtk-about.svg │ │ ├── gtk-add.svg │ │ ├── gtk-apply.svg │ │ ├── gtk-authentication.svg │ │ ├── gtk-bold.svg │ │ ├── gtk-cancel.svg │ │ ├── gtk-cdrom.svg │ │ ├── gtk-clear.svg │ │ ├── gtk-close.svg │ │ ├── gtk-color-picker.svg │ │ ├── gtk-connect.svg │ │ ├── gtk-convert.svg │ │ ├── gtk-copy.svg │ │ ├── gtk-cut.svg │ │ ├── gtk-delete.svg │ │ ├── gtk-directory.svg │ │ ├── gtk-disconnect.svg │ │ ├── gtk-dnd-multiple.svg │ │ ├── gtk-edit.svg │ │ ├── gtk-execute.svg │ │ ├── gtk-file.svg │ │ ├── gtk-find-and-replace.svg │ │ ├── gtk-find.svg │ │ ├── gtk-floppy.svg │ │ ├── gtk-fullscreen.svg │ │ ├── gtk-go-back-ltr.svg │ │ ├── gtk-go-back-rtl.svg │ │ ├── gtk-go-down.svg │ │ ├── gtk-go-forward-ltr.svg │ │ ├── gtk-go-forward-rtl.svg │ │ ├── gtk-go-up.svg │ │ ├── gtk-goto-bottom.svg │ │ ├── gtk-goto-first-ltr.svg │ │ ├── gtk-goto-first-rtl.svg │ │ ├── gtk-goto-last-ltr.svg │ │ ├── gtk-goto-last-rtl.svg │ │ ├── gtk-goto-top.svg │ │ ├── gtk-home.svg │ │ ├── gtk-indent-ltr.svg │ │ ├── gtk-indent-rtl.svg │ │ ├── gtk-index.svg │ │ ├── gtk-italic.svg │ │ ├── gtk-jump-to-ltr.svg │ │ ├── gtk-justify-center.svg │ │ ├── gtk-justify-fill.svg │ │ ├── gtk-justify-left.svg │ │ ├── gtk-justify-right.svg │ │ ├── gtk-leave-fullscreen.svg │ │ ├── gtk-media-forward-ltr.svg │ │ ├── gtk-media-forward-rtl.svg │ │ ├── gtk-media-next-ltr.svg │ │ ├── gtk-media-next-rtl.svg │ │ ├── gtk-media-pause.svg │ │ ├── gtk-media-play-ltr.svg │ │ ├── gtk-media-previous-ltr.svg │ │ ├── gtk-media-previous-rtl.svg │ │ ├── gtk-media-record.svg │ │ ├── gtk-media-rewind-ltr.svg │ │ ├── gtk-media-rewind-rtl.svg │ │ ├── gtk-media-stop.svg │ │ ├── gtk-network.svg │ │ ├── gtk-new.svg │ │ ├── gtk-no.svg │ │ ├── gtk-ok.svg │ │ ├── gtk-open.svg │ │ ├── gtk-paste.svg │ │ ├── gtk-preferences.svg │ │ ├── gtk-print-preview.svg │ │ ├── gtk-print.svg │ │ ├── gtk-properties.svg │ │ ├── gtk-quit.svg │ │ ├── gtk-refresh.svg │ │ ├── gtk-remove.svg │ │ ├── gtk-revert-to-saved-ltr.svg │ │ ├── gtk-revert-to-saved-rtl.svg │ │ ├── gtk-save-as.svg │ │ ├── gtk-save.svg │ │ ├── gtk-select-all.svg │ │ ├── gtk-select-color.svg │ │ ├── gtk-select-font.svg │ │ ├── gtk-spell-check.svg │ │ ├── gtk-stop.svg │ │ ├── gtk-undelete-ltr.svg │ │ ├── gtk-undelete-rtl.svg │ │ ├── gtk-yes.svg │ │ ├── gtk-zoom-fit.svg │ │ ├── guides.svg │ │ ├── hb-add-queue.svg │ │ ├── hb-complete.svg │ │ ├── hb-pause.svg │ │ ├── hb-presets.svg │ │ ├── hb-remove.svg │ │ ├── hb-showqueue.svg │ │ ├── hb-source.svg │ │ ├── hb-start.svg │ │ ├── hb-stop.svg │ │ ├── help-about.svg │ │ ├── help-contents.svg │ │ ├── help-contextual.svg │ │ ├── help-donate-ars.svg │ │ ├── help-donate-aud.svg │ │ ├── help-donate-brl.svg │ │ ├── help-donate-cad.svg │ │ ├── help-donate-chf.svg │ │ ├── help-donate-cny.svg │ │ ├── help-donate-eur.svg │ │ ├── help-donate-gbp.svg │ │ ├── help-donate-inr.svg │ │ ├── help-donate-jpy.svg │ │ ├── help-donate-mxn.svg │ │ ├── help-donate-pln.svg │ │ ├── help-donate-rub.svg │ │ ├── help-donate-sek.svg │ │ ├── help-donate-try.svg │ │ ├── help-donate-uah.svg │ │ ├── help-donate-usd.svg │ │ ├── help-donate.svg │ │ ├── help-feedback.svg │ │ ├── help-hint.svg │ │ ├── help-keybord-shortcuts.svg │ │ ├── help-latex.svg │ │ ├── help-whatsthis.svg │ │ ├── hide_table_column.svg │ │ ├── hide_table_row.svg │ │ ├── hidemouse.svg │ │ ├── highlight-pointer-spot.svg │ │ ├── hint.svg │ │ ├── history.svg │ │ ├── history_entry.svg │ │ ├── hook-notifier.svg │ │ ├── identity.svg │ │ ├── im-aim.svg │ │ ├── im-ban-kick-user.svg │ │ ├── im-ban-user.svg │ │ ├── im-facebook.svg │ │ ├── im-icq.svg │ │ ├── im-identi.ca.svg │ │ ├── im-invisible-user.svg │ │ ├── im-irc.svg │ │ ├── im-jabber.svg │ │ ├── im-kick-user.svg │ │ ├── im-local-xmpp.svg │ │ ├── im-message-new.svg │ │ ├── im-msn.svg │ │ ├── im-qq.svg │ │ ├── im-skype.svg │ │ ├── im-twitter.svg │ │ ├── im-user-away.svg │ │ ├── im-user-busy.svg │ │ ├── im-user-offline.svg │ │ ├── im-user-online.svg │ │ ├── im-user.svg │ │ ├── im-yahoo.svg │ │ ├── im-youtube.svg │ │ ├── image-auto-adjust.svg │ │ ├── image-loading.svg │ │ ├── image-missing.svg │ │ ├── imagecomment.svg │ │ ├── initial_state.svg │ │ ├── inpainting.svg │ │ ├── input-mouse-click-left.svg │ │ ├── input-mouse-click-middle.svg │ │ ├── input-mouse-click-right.svg │ │ ├── insert-button.svg │ │ ├── insert-endnote.svg │ │ ├── insert-footnote.svg │ │ ├── insert-horizontal-rule.svg │ │ ├── insert-image.svg │ │ ├── insert-link.svg │ │ ├── insert-math-expression.svg │ │ ├── insert-more-mark.svg │ │ ├── insert-page-break.svg │ │ ├── insert-table-of-contents.svg │ │ ├── insert-table-row.svg │ │ ├── insert-table.svg │ │ ├── insert-tableofcontents.svg │ │ ├── insert-text-frame.svg │ │ ├── insert-text.svg │ │ ├── insertcell.svg │ │ ├── insertcellcopy.svg │ │ ├── interface.svg │ │ ├── internet-amarok.svg │ │ ├── internet-services.svg │ │ ├── invertimage.svg │ │ ├── irc-channel-active.svg │ │ ├── irc-channel-inactive.svg │ │ ├── irc-close-channel.svg │ │ ├── irc-join-channel.svg │ │ ├── irc-unvoice.svg │ │ ├── irc-voice.svg │ │ ├── itemize.svg │ │ ├── items-tags.svg │ │ ├── itmages-add.svg │ │ ├── itmages-cancel.svg │ │ ├── itmages-copy-link.svg │ │ ├── itmages-folder.svg │ │ ├── itmages-open-browser.svg │ │ ├── itmages-quit.svg │ │ ├── itmages-resize.svg │ │ ├── itmages-rotate.svg │ │ ├── itmages-select-all.svg │ │ ├── itmages-settings.svg │ │ ├── itmages-stop.svg │ │ ├── itmages-tools.svg │ │ ├── itmages-upload.svg │ │ ├── itmages-utils.svg │ │ ├── join.svg │ │ ├── journal-new.svg │ │ ├── junction.svg │ │ ├── kdenlive-add-clip.svg │ │ ├── kdenlive-add-color-clip.svg │ │ ├── kdenlive-add-slide-clip.svg │ │ ├── kdenlive-add-text-clip.svg │ │ ├── kdenlive-align-bottom.svg │ │ ├── kdenlive-align-hor.svg │ │ ├── kdenlive-align-left.svg │ │ ├── kdenlive-align-none.svg │ │ ├── kdenlive-align-right.svg │ │ ├── kdenlive-align-top.svg │ │ ├── kdenlive-align-vert.svg │ │ ├── kdenlive-deleffect.svg │ │ ├── kdenlive-down.svg │ │ ├── kdenlive-insert-rect.svg │ │ ├── kdenlive-insert-unicode.svg │ │ ├── kdenlive-lock.svg │ │ ├── kdenlive-menu.svg │ │ ├── kdenlive-select-rects.svg │ │ ├── kdenlive-select-tool.svg │ │ ├── kdenlive-show-audiothumb.svg │ │ ├── kdenlive-show-video.svg │ │ ├── kdenlive-show-videothumb.svg │ │ ├── kdenlive-snap.svg │ │ ├── kdenlive-spacer-tool.svg │ │ ├── kdenlive-unlock.svg │ │ ├── kdenlive-unselect-all.svg │ │ ├── kdenlive-up.svg │ │ ├── kdenlive-zindex-bottom.svg │ │ ├── kdenlive-zindex-up.svg │ │ ├── kdenlive-zone-end.svg │ │ ├── kdenlive-zone-start.svg │ │ ├── kdenlive-zoom-large.svg │ │ ├── kdenlive-zoom-small.svg │ │ ├── kdocumentinfo.svg │ │ ├── key-enter.svg │ │ ├── kfm_home.svg │ │ ├── kmousetool_off.svg │ │ ├── kmousetool_on.svg │ │ ├── kmouth-phrase.svg │ │ ├── kmouth-phrasebook.svg │ │ ├── knotes_alarm.svg │ │ ├── knotes_date.svg │ │ ├── knotes_delete.svg │ │ ├── kontes_close.svg │ │ ├── kr_combine.svg │ │ ├── kr_comparedirs.svg │ │ ├── kr_diskusage.svg │ │ ├── kr_jumpback.svg │ │ ├── kr_mountman.svg │ │ ├── kr_setjumpback.svg │ │ ├── kr_syncbrowse_off.svg │ │ ├── kr_syncbrowse_on.svg │ │ ├── kr_unselect.svg │ │ ├── kruler-east.svg │ │ ├── kruler-north.svg │ │ ├── kruler-south.svg │ │ ├── kruler-west.svg │ │ ├── kstars_advanced.svg │ │ ├── kstars_catalog.svg │ │ ├── kstars_colors.svg │ │ ├── kstars_flag.svg │ │ ├── kstars_guides.svg │ │ ├── kt-add-feeds.svg │ │ ├── kt-bandwidth-scheduler.svg │ │ ├── kt-change-tracker.svg │ │ ├── kt-check-data.svg │ │ ├── kt-encrypted.svg │ │ ├── kt-info-widget.svg │ │ ├── kt-pause.svg │ │ ├── kt-plugins.svg │ │ ├── kt-queue-manager.svg │ │ ├── kt-remove-feeds.svg │ │ ├── kt-remove.svg │ │ ├── kt-restore-defaults.svg │ │ ├── kt-set-max-download-speed.svg │ │ ├── kt-set-max-upload-speed.svg │ │ ├── kt-show-statusbar.svg │ │ ├── kt-speed-limits.svg │ │ ├── kt-start-all.svg │ │ ├── kt-start.svg │ │ ├── kt-stop.svg │ │ ├── ktnef_extract_all_to.svg │ │ ├── ktnef_extract_to.svg │ │ ├── l2h.svg │ │ ├── label-amarok.svg │ │ ├── label.svg │ │ ├── labplot-auto-scale-all.svg │ │ ├── labplot-auto-scale-x.svg │ │ ├── labplot-auto-scale-y.svg │ │ ├── labplot-cursor-arrow.svg │ │ ├── labplot-editbreaklayout.svg │ │ ├── labplot-editgrid.svg │ │ ├── labplot-edithlayout.svg │ │ ├── labplot-editvlayout.svg │ │ ├── labplot-format-text-symbol.svg │ │ ├── labplot-spreadsheet-new.svg │ │ ├── labplot-spreadsheet.svg │ │ ├── labplot-transform-move.svg │ │ ├── labplot-xy-curve-points.svg │ │ ├── labplot-zoom-in-x.svg │ │ ├── labplot-zoom-in-y.svg │ │ ├── labplot-zoom-out-x.svg │ │ ├── labplot-zoom-out-y.svg │ │ ├── labplot-zoom-select-x.svg │ │ ├── labplot-zoom-select-y.svg │ │ ├── labplot-zoom-select.svg │ │ ├── languages.svg │ │ ├── lastfm-neighbour.svg │ │ ├── lastfm-personal.svg │ │ ├── lastfm-recommended.svg │ │ ├── lastfm-tag.svg │ │ ├── layer-bottom.svg │ │ ├── layer-delete.svg │ │ ├── layer-duplicate.svg │ │ ├── layer-lower.svg │ │ ├── layer-new.svg │ │ ├── layer-next.svg │ │ ├── layer-previous.svg │ │ ├── layer-raise.svg │ │ ├── layer-rename.svg │ │ ├── layer-top.svg │ │ ├── layer-visible-off.svg │ │ ├── layer-visible-on.svg │ │ ├── lens.svg │ │ ├── libpeas-plugin.svg │ │ ├── license.svg │ │ ├── lighttable.svg │ │ ├── lighttableadd.svg │ │ ├── lines-connector.svg │ │ ├── link.svg │ │ ├── list-add-font.svg │ │ ├── list-add-user.svg │ │ ├── list-add.svg │ │ ├── list-remove-user.svg │ │ ├── list-remove.svg │ │ ├── list-resource-add.svg │ │ ├── lock.svg │ │ ├── love-amarok.svg │ │ ├── love.svg │ │ ├── loved_radio.svg │ │ ├── lpi-bug.svg │ │ ├── lpi-translate.svg │ │ ├── mail-archive.svg │ │ ├── mail-attachment.svg │ │ ├── mail-deleted.svg │ │ ├── mail-encrypted-full.svg │ │ ├── mail-encrypted-part.svg │ │ ├── mail-encrypted.svg │ │ ├── mail-flag.svg │ │ ├── mail-flagged.svg │ │ ├── mail-forward-attachment.svg │ │ ├── mail-forward-custom.svg │ │ ├── mail-forward.svg │ │ ├── mail-forwarded-replied.svg │ │ ├── mail-forwarded.svg │ │ ├── mail-invitation.svg │ │ ├── mail-mark-important.svg │ │ ├── mail-mark-junk.svg │ │ ├── mail-mark-notjunk.svg │ │ ├── mail-mark-read.svg │ │ ├── mail-mark-task.svg │ │ ├── mail-mark-unread-new.svg │ │ ├── mail-mark-unread.svg │ │ ├── mail-meeting-request-reply.svg │ │ ├── mail-message-new-list.svg │ │ ├── mail-message-new.svg │ │ ├── mail-message.svg │ │ ├── mail-queue.svg │ │ ├── mail-queued.svg │ │ ├── mail-read.svg │ │ ├── mail-receive.svg │ │ ├── mail-replied.svg │ │ ├── mail-reply-all.svg │ │ ├── mail-reply-author.svg │ │ ├── mail-reply-custom-all.svg │ │ ├── mail-reply-custom.svg │ │ ├── mail-reply-list.svg │ │ ├── mail-reply-sender.svg │ │ ├── mail-send.svg │ │ ├── mail-sent.svg │ │ ├── mail-signature-unknown.svg │ │ ├── mail-signed-full.svg │ │ ├── mail-signed-fully.svg │ │ ├── mail-signed-part.svg │ │ ├── mail-signed-verified.svg │ │ ├── mail-signed.svg │ │ ├── mail-tagged.svg │ │ ├── mail-task.svg │ │ ├── mail-thread-ignored.svg │ │ ├── mail-thread-watch.svg │ │ ├── mail-unread-new.svg │ │ ├── mail-unread.svg │ │ ├── mail_forward.svg │ │ ├── mail_new.svg │ │ ├── mail_reply.svg │ │ ├── mail_replyall.svg │ │ ├── makeidx.svg │ │ ├── mark-location.svg │ │ ├── markasblank.svg │ │ ├── math0.svg │ │ ├── math1.svg │ │ ├── math2.svg │ │ ├── math3.svg │ │ ├── math7.svg │ │ ├── math9.svg │ │ ├── mathmode.svg │ │ ├── measure.svg │ │ ├── media-album-cover-manager-amarok.svg │ │ ├── media-album-cover.svg │ │ ├── media-album-repeat-amarok.svg │ │ ├── media-album-track.svg │ │ ├── media-eject.svg │ │ ├── media-import-audio-cd.svg │ │ ├── media-mount.svg │ │ ├── media-playback-pause.svg │ │ ├── media-playback-start.svg │ │ ├── media-playback-stop.svg │ │ ├── media-playlist-append.svg │ │ ├── media-playlist-play.svg │ │ ├── media-playlist-repeat-amarok.svg │ │ ├── media-playlist-repeat-song.svg │ │ ├── media-playlist-repeat.svg │ │ ├── media-playlist-shuffle.svg │ │ ├── media-random-albums-amarok.svg │ │ ├── media-random-tracks-amarok.svg │ │ ├── media-record.svg │ │ ├── media-repeat-album-amarok.svg │ │ ├── media-repeat-all.svg │ │ ├── media-repeat-none.svg │ │ ├── media-repeat-playlist-amarok.svg │ │ ├── media-repeat-single.svg │ │ ├── media-repeat-track-amarok.svg │ │ ├── media-seek-backward.svg │ │ ├── media-seek-forward.svg │ │ ├── media-show-active-track-amarok.svg │ │ ├── media-skip-backward.svg │ │ ├── media-skip-forward.svg │ │ ├── media-standard-track-progression-amarok.svg │ │ ├── media-track-add-amarok.svg │ │ ├── media-track-edit-amarok.svg │ │ ├── media-track-queue-amarok.svg │ │ ├── media-track-remove-amarok.svg │ │ ├── media-track-show-active.svg │ │ ├── media-write-cd.svg │ │ ├── medskip.svg │ │ ├── meeting-attending-tentative.svg │ │ ├── meeting-attending.svg │ │ ├── meeting-participant-no-response.svg │ │ ├── meeting-participant-request-response.svg │ │ ├── meld-version-control.svg │ │ ├── menu_new.svg │ │ ├── menu_new_sep.svg │ │ ├── merge.svg │ │ ├── mergecell-horizontal.svg │ │ ├── mergecell-vertical.svg │ │ ├── mergecell.svg │ │ ├── message-new.svg │ │ ├── messagebox_warning.svg │ │ ├── milestone.svg │ │ ├── minuet-chords.svg │ │ ├── minuet-intervals.svg │ │ ├── minuet-rhythms.svg │ │ ├── minuet-scales.svg │ │ ├── mode1.svg │ │ ├── mode2.svg │ │ ├── mode3.svg │ │ ├── mode4.svg │ │ ├── mode5.svg │ │ ├── modified.svg │ │ ├── mpost.svg │ │ ├── msgid2msgstr.svg │ │ ├── multimedia-volume-control.svg │ │ ├── multirow.svg │ │ ├── music-amarok.svg │ │ ├── nemo-eject.svg │ │ ├── network-connect.svg │ │ ├── network-disconnect.svg │ │ ├── new-audio-alarm.svg │ │ ├── news-subscribe.svg │ │ ├── news-unsubscribe.svg │ │ ├── next.svg │ │ ├── nocover.svg │ │ ├── node-add.svg │ │ ├── node-break.svg │ │ ├── node-delete-segment.svg │ │ ├── node-delete.svg │ │ ├── node-join-segment.svg │ │ ├── node-join.svg │ │ ├── node-segment-curve.svg │ │ ├── node-segment-line.svg │ │ ├── node-transform.svg │ │ ├── node-type-auto-smooth.svg │ │ ├── node-type-cusp.svg │ │ ├── node-type-smooth.svg │ │ ├── node-type-symmetric.svg │ │ ├── node.svg │ │ ├── note.svg │ │ ├── notifications-disabled.svg │ │ ├── notifications.svg │ │ ├── object-align-horizontal-center-calligra.svg │ │ ├── object-align-horizontal-left-calligra.svg │ │ ├── object-align-horizontal-right-calligra.svg │ │ ├── object-align-vertical-bottom-calligra.svg │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ ├── object-align-vertical-center-calligra.svg │ │ ├── object-align-vertical-top-calligra.svg │ │ ├── object-columns.svg │ │ ├── object-crop.svg │ │ ├── object-fill.svg │ │ ├── object-flip-horizontal.svg │ │ ├── object-flip-vertical.svg │ │ ├── object-group-calligra.svg │ │ ├── object-group.svg │ │ ├── object-hidden.svg │ │ ├── object-inverse.svg │ │ ├── object-locked.svg │ │ ├── object-order-back-calligra.svg │ │ ├── object-order-back.svg │ │ ├── object-order-front-calligra.svg │ │ ├── object-order-front.svg │ │ ├── object-order-lower-calligra.svg │ │ ├── object-order-lower.svg │ │ ├── object-order-raise-calligra.svg │ │ ├── object-order-raise.svg │ │ ├── object-rotate-left.svg │ │ ├── object-rotate-right.svg │ │ ├── object-rows.svg │ │ ├── object-stroke-style.svg │ │ ├── object-stroke.svg │ │ ├── object-to-path.svg │ │ ├── object-ungroup-calligra.svg │ │ ├── object-ungroup.svg │ │ ├── object-unlocked.svg │ │ ├── object-visible.svg │ │ ├── object.svg │ │ ├── object_node.svg │ │ ├── office-chart-area-focus-peak-node.svg │ │ ├── office-chart-area-percentage.svg │ │ ├── office-chart-area-stacked.svg │ │ ├── office-chart-area.svg │ │ ├── office-chart-bar-percentage.svg │ │ ├── office-chart-bar-stacked.svg │ │ ├── office-chart-bar.svg │ │ ├── office-chart-line-forecast.svg │ │ ├── office-chart-line-percentage.svg │ │ ├── office-chart-line-stacked.svg │ │ ├── office-chart-line.svg │ │ ├── office-chart-pie.svg │ │ ├── office-chart-polar-stacked.svg │ │ ├── office-chart-polar.svg │ │ ├── office-chart-ring.svg │ │ ├── office-chart-scatter.svg │ │ ├── office-report.svg │ │ ├── offline-settings.svg │ │ ├── offline.svg │ │ ├── oilpaint.svg │ │ ├── online.svg │ │ ├── open-for-editing.svg │ │ ├── open-menu.svg │ │ ├── output_win.svg │ │ ├── overflow-menu.svg │ │ ├── package.svg │ │ ├── package_settings.svg │ │ ├── page-2sides.svg │ │ ├── page-3sides.svg │ │ ├── page-4sides.svg │ │ ├── page-simple.svg │ │ ├── page-zoom.svg │ │ ├── paint-gradient-linear.svg │ │ ├── paint-gradient-radial.svg │ │ ├── paint-none.svg │ │ ├── paint-pattern.svg │ │ ├── paint-solid.svg │ │ ├── paint-swatch.svg │ │ ├── paint-unknown.svg │ │ ├── paper-color.svg │ │ ├── password-copy.svg │ │ ├── password-generate.svg │ │ ├── password-show-off.svg │ │ ├── password-show-on.svg │ │ ├── path-break-apart.svg │ │ ├── path-clip-edit.svg │ │ ├── path-combine.svg │ │ ├── path-cut.svg │ │ ├── path-difference.svg │ │ ├── path-division.svg │ │ ├── path-effect-parameter-next.svg │ │ ├── path-exclusion.svg │ │ ├── path-inset.svg │ │ ├── path-intersection.svg │ │ ├── path-mask-edit.svg │ │ ├── path-mode-bezier.svg │ │ ├── path-mode-polyline-paraxial.svg │ │ ├── path-mode-polyline.svg │ │ ├── path-mode-spiro.svg │ │ ├── path-offset-dynamic.svg │ │ ├── path-offset-linked.svg │ │ ├── path-outset.svg │ │ ├── path-reverse.svg │ │ ├── path-simplify.svg │ │ ├── path-union.svg │ │ ├── pattern.svg │ │ ├── pdf-annotations.svg │ │ ├── pdflatex.svg │ │ ├── pdftex.svg │ │ ├── pentagon-shape.svg │ │ ├── photo.svg │ │ ├── photos-amarok.svg │ │ ├── pin.svg │ │ ├── pixelart-trace.svg │ │ ├── player-eject.svg │ │ ├── player-time.svg │ │ ├── player-volume-muted.svg │ │ ├── player-volume.svg │ │ ├── player_eject.svg │ │ ├── player_end.svg │ │ ├── player_fwd.svg │ │ ├── player_pause.svg │ │ ├── player_play.svg │ │ ├── player_record.svg │ │ ├── player_rew.svg │ │ ├── player_start.svg │ │ ├── player_stop.svg │ │ ├── playlist-generator.svg │ │ ├── playlist-sort.svg │ │ ├── plugins.svg │ │ ├── podcast-new.svg │ │ ├── poedit-fuzzy.svg │ │ ├── poedit-status-bookmark.svg │ │ ├── poedit-status-cat-mid.svg │ │ ├── poedit-status-cat-no.svg │ │ ├── poedit-status-cat-ok.svg │ │ ├── poedit-status-comment.svg │ │ ├── poedit-update.svg │ │ ├── poedit-validate.svg │ │ ├── pointer.svg │ │ ├── polygon-add-nodes.svg │ │ ├── polygon-merge-nodes.svg │ │ ├── port.svg │ │ ├── postalcode.svg │ │ ├── practice-setup.svg │ │ ├── practice-start.svg │ │ ├── practice-stop.svg │ │ ├── precondition.svg │ │ ├── preferences-activities.svg │ │ ├── preferences-desktop-user-password.svg │ │ ├── preferences-indicator-amarok.svg │ │ ├── preferences-media-playback-amarok.svg │ │ ├── preferences-other.svg │ │ ├── preferences-system-session-services.svg │ │ ├── preferences-system.svg │ │ ├── preflight-verifier.svg │ │ ├── presence_away.svg │ │ ├── presence_offline.svg │ │ ├── presence_online.svg │ │ ├── presence_unknown.svg │ │ ├── preview.svg │ │ ├── preview_math.svg │ │ ├── preview_sel.svg │ │ ├── previous.svg │ │ ├── primarykey_constraint.svg │ │ ├── privatebrowsing.svg │ │ ├── process-stop.svg │ │ ├── project-development-close-all.svg │ │ ├── project-development-close.svg │ │ ├── project-development-new-template.svg │ │ ├── project-development.svg │ │ ├── project-open.svg │ │ ├── project_add.svg │ │ ├── project_archive.svg │ │ ├── project_rebuild.svg │ │ ├── project_remove.svg │ │ ├── project_show.svg │ │ ├── projectgrep.svg │ │ ├── ps2pdf.svg │ │ ├── qa.svg │ │ ├── quick.svg │ │ ├── quickopen-class.svg │ │ ├── quickopen-file.svg │ │ ├── quickopen-function.svg │ │ ├── quickopen.svg │ │ ├── quickview.svg │ │ ├── quickwizard.svg │ │ ├── rabbitvcs-about.svg │ │ ├── rabbitvcs-add.svg │ │ ├── rabbitvcs-applypatch.svg │ │ ├── rabbitvcs-asynchronous.svg │ │ ├── rabbitvcs-bug.svg │ │ ├── rabbitvcs-changes.svg │ │ ├── rabbitvcs-checkmods.svg │ │ ├── rabbitvcs-checkout.svg │ │ ├── rabbitvcs-cleanup.svg │ │ ├── rabbitvcs-clear.svg │ │ ├── rabbitvcs-commit.svg │ │ ├── rabbitvcs-compare.svg │ │ ├── rabbitvcs-dbus.svg │ │ ├── rabbitvcs-delete.svg │ │ ├── rabbitvcs-editconflicts.svg │ │ ├── rabbitvcs-emblems.svg │ │ ├── rabbitvcs-export.svg │ │ ├── rabbitvcs-import.svg │ │ ├── rabbitvcs-lock.svg │ │ ├── rabbitvcs-merge.svg │ │ ├── rabbitvcs-properties.svg │ │ ├── rabbitvcs-push.svg │ │ ├── rabbitvcs-refresh.svg │ │ ├── rabbitvcs-relocate.svg │ │ ├── rabbitvcs-reset.svg │ │ ├── rabbitvcs-resolve.svg │ │ ├── rabbitvcs-run.svg │ │ ├── rabbitvcs-settings.svg │ │ ├── rabbitvcs-show_log.svg │ │ ├── rabbitvcs-stop.svg │ │ ├── rabbitvcs-switch.svg │ │ ├── rabbitvcs-unlock.svg │ │ ├── rabbitvcs-unstage.svg │ │ ├── rabbitvcs-update.svg │ │ ├── randomize.svg │ │ ├── ratiocrop.svg │ │ ├── realization.svg │ │ ├── rectangle-make-corners-sharp.svg │ │ ├── rectangle-shape.svg │ │ ├── redeyes.svg │ │ ├── refactor.svg │ │ ├── refreshstructure.svg │ │ ├── region.svg │ │ ├── relation.svg │ │ ├── relationship.svg │ │ ├── reload.svg │ │ ├── reload3.svg │ │ ├── reload_all_tabs.svg │ │ ├── reload_page.svg │ │ ├── remove-amarok.svg │ │ ├── remove-link.svg │ │ ├── remove.svg │ │ ├── removecell.svg │ │ ├── repeat.svg │ │ ├── resizecol.svg │ │ ├── resizerow.svg │ │ ├── resource-calendar-child-insert.svg │ │ ├── resource-calendar-child.svg │ │ ├── resource-calendar-insert.svg │ │ ├── resource-group-new.svg │ │ ├── resource-group.svg │ │ ├── restoration.svg │ │ ├── retweet.svg │ │ ├── reverse.svg │ │ ├── revert.svg │ │ ├── roll.svg │ │ ├── routeplanning.svg │ │ ├── run-build-clean.svg │ │ ├── run-build-configure.svg │ │ ├── run-build-file.svg │ │ ├── run-build-install-root.svg │ │ ├── run-build-install.svg │ │ ├── run-build-prune.svg │ │ ├── run-build.svg │ │ ├── run-clean.svg │ │ ├── run-install.svg │ │ ├── screen-rotate-auto-off.svg │ │ ├── screen-rotate-auto-on.svg │ │ ├── scriptnew.svg │ │ ├── scriptopen.svg │ │ ├── search-icon.svg │ │ ├── search.svg │ │ ├── select-rectangular.svg │ │ ├── select.svg │ │ ├── selection-bottom.svg │ │ ├── selection-lower.svg │ │ ├── selection-make-bitmap-copy.svg │ │ ├── selection-move-to-layer-above.svg │ │ ├── selection-move-to-layer-below.svg │ │ ├── selection-raise.svg │ │ ├── selection-top.svg │ │ ├── selection.svg │ │ ├── send_signal.svg │ │ ├── services.svg │ │ ├── set-language.svg │ │ ├── setroubleshoot_icon.svg │ │ ├── settings-configure.svg │ │ ├── settings.svg │ │ ├── shallow-history.svg │ │ ├── shape-choose.svg │ │ ├── shapes.svg │ │ ├── shear.svg │ │ ├── show-dialogs.svg │ │ ├── show-grid.svg │ │ ├── show-guides.svg │ │ ├── show-menu.svg │ │ ├── show-node-handles.svg │ │ ├── show-offline.svg │ │ ├── show-path-outline.svg │ │ ├── show_table_column.svg │ │ ├── show_table_row.svg │ │ ├── shuffle.svg │ │ ├── sidebar-places.svg │ │ ├── sidebar.svg │ │ ├── similarartists-amarok.svg │ │ ├── slanted.svg │ │ ├── slideshow-plugin.svg │ │ ├── smallclock.svg │ │ ├── smallskip.svg │ │ ├── smiley-add.svg │ │ ├── snap-angle.svg │ │ ├── snap-bounding-box-center.svg │ │ ├── snap-bounding-box-corners.svg │ │ ├── snap-bounding-box-edges.svg │ │ ├── snap-bounding-box-midpoints.svg │ │ ├── snap-bounding-box.svg │ │ ├── snap-extension.svg │ │ ├── snap-grid-guide-intersections.svg │ │ ├── snap-guideline.svg │ │ ├── snap-intersection.svg │ │ ├── snap-node.svg │ │ ├── snap-nodes-center.svg │ │ ├── snap-nodes-cusp.svg │ │ ├── snap-nodes-intersection.svg │ │ ├── snap-nodes-midpoint.svg │ │ ├── snap-nodes-path.svg │ │ ├── snap-nodes-rotation-center.svg │ │ ├── snap-nodes-smooth.svg │ │ ├── snap-orthogonal.svg │ │ ├── snap-page.svg │ │ ├── snap-text-baseline.svg │ │ ├── snap.svg │ │ ├── social.svg │ │ ├── sort-name.svg │ │ ├── sort-presence.svg │ │ ├── sort_incr.svg │ │ ├── soundkonverter-replaygain.svg │ │ ├── source-playlist.svg │ │ ├── source-smart-playlist.svg │ │ ├── spacefm-find.svg │ │ ├── speaker.svg │ │ ├── special_paste.svg │ │ ├── specific-setup.svg │ │ ├── speedometer.svg │ │ ├── spiral-shape.svg │ │ ├── split.svg │ │ ├── spreadsheetshape.svg │ │ ├── sqrt.svg │ │ ├── standard-connector.svg │ │ ├── star-shape.svg │ │ ├── start-over.svg │ │ ├── start.svg │ │ ├── state-fork.svg │ │ ├── stateshape.svg │ │ ├── statetool.svg │ │ ├── step_object_Anchor.svg │ │ ├── step_object_Box.svg │ │ ├── step_object_Controller.svg │ │ ├── step_object_Disk.svg │ │ ├── step_object_Graph.svg │ │ ├── step_object_Note.svg │ │ ├── step_object_Particle.svg │ │ ├── step_object_Pin.svg │ │ ├── step_object_Polygon.svg │ │ ├── step_object_Rope.svg │ │ ├── step_object_Stick.svg │ │ ├── sticky_zoom.svg │ │ ├── stock_about.svg │ │ ├── stock_add-bookmark.svg │ │ ├── stock_bottom.svg │ │ ├── stock_calc-accept.svg │ │ ├── stock_calc-cancel.svg │ │ ├── stock_check-filled.svg │ │ ├── stock_close.svg │ │ ├── stock_contact-list.svg │ │ ├── stock_copy.svg │ │ ├── stock_cut.svg │ │ ├── stock_delete.svg │ │ ├── stock_down.svg │ │ ├── stock_exit.svg │ │ ├── stock_file-properites.svg │ │ ├── stock_file-properties.svg │ │ ├── stock_first.svg │ │ ├── stock_folder_properties.svg │ │ ├── stock_fullscreen.svg │ │ ├── stock_gtk-dnd-multiple.svg │ │ ├── stock_help-add-bookmark.svg │ │ ├── stock_insert-rule.svg │ │ ├── stock_insert-table.svg │ │ ├── stock_last.svg │ │ ├── stock_leave-fullscreen.svg │ │ ├── stock_left.svg │ │ ├── stock_mail-compose.svg │ │ ├── stock_mail-flag-for-followup-done.svg │ │ ├── stock_mail-flag-for-followup.svg │ │ ├── stock_mail-forward.svg │ │ ├── stock_mail-reply-to-all.svg │ │ ├── stock_mail-reply.svg │ │ ├── stock_mail-send.svg │ │ ├── stock_mark.svg │ │ ├── stock_media-fwd.svg │ │ ├── stock_media-next.svg │ │ ├── stock_media-pause.svg │ │ ├── stock_media-play.svg │ │ ├── stock_media-prev.svg │ │ ├── stock_media-rec.svg │ │ ├── stock_media-rew.svg │ │ ├── stock_media-stop.svg │ │ ├── stock_navigator.svg │ │ ├── stock_new-address-book.svg │ │ ├── stock_new-appointment.svg │ │ ├── stock_new-bcard.svg │ │ ├── stock_new-dir.svg │ │ ├── stock_new-tab.svg │ │ ├── stock_new-text.svg │ │ ├── stock_new-window.svg │ │ ├── stock_no.svg │ │ ├── stock_not.svg │ │ ├── stock_paste.svg │ │ ├── stock_print-preview.svg │ │ ├── stock_print.svg │ │ ├── stock_properties.svg │ │ ├── stock_redo.svg │ │ ├── stock_refresh.svg │ │ ├── stock_right.svg │ │ ├── stock_save-as.svg │ │ ├── stock_save.svg │ │ ├── stock_score-high.svg │ │ ├── stock_score-higher.svg │ │ ├── stock_score-highest.svg │ │ ├── stock_score-low.svg │ │ ├── stock_score-lower.svg │ │ ├── stock_score-lowest.svg │ │ ├── stock_score-normal.svg │ │ ├── stock_search.svg │ │ ├── stock_select-all.svg │ │ ├── stock_select-column.svg │ │ ├── stock_select-row.svg │ │ ├── stock_shared-by-me.svg │ │ ├── stock_shared-to-me.svg │ │ ├── stock_show-all.svg │ │ ├── stock_stop.svg │ │ ├── stock_task-assigned-to.svg │ │ ├── stock_task-assigned.svg │ │ ├── stock_task-recurring.svg │ │ ├── stock_task.svg │ │ ├── stock_text-monospaced.svg │ │ ├── stock_thunar-shortcuts.svg │ │ ├── stock_timezone.svg │ │ ├── stock_todo.svg │ │ ├── stock_top.svg │ │ ├── stock_undo.svg │ │ ├── stock_up.svg │ │ ├── stock_view-details.svg │ │ ├── stock_volume.svg │ │ ├── stock_xfburn-data-copy.svg │ │ ├── stock_xfburn-format-dvdrw.svg │ │ ├── stock_yes.svg │ │ ├── stock_zoom-page.svg │ │ ├── stop.svg │ │ ├── story-editor.svg │ │ ├── straight-connector.svg │ │ ├── stroke-cap-bevel.svg │ │ ├── stroke-cap-butt.svg │ │ ├── stroke-cap-miter.svg │ │ ├── stroke-cap-round.svg │ │ ├── stroke-cap-square.svg │ │ ├── stroke-join-bevel.svg │ │ ├── stroke-join-miter.svg │ │ ├── stroke-join-round.svg │ │ ├── stroke-to-path.svg │ │ ├── strong.svg │ │ ├── structure.svg │ │ ├── subsystem.svg │ │ ├── svn-commit.svg │ │ ├── svn-update.svg │ │ ├── swap-panels.svg │ │ ├── symbols.svg │ │ ├── system-lock-screen.svg │ │ ├── system-log-out.svg │ │ ├── system-reboot.svg │ │ ├── system-run.svg │ │ ├── system-save-session.svg │ │ ├── system-search.svg │ │ ├── system-upgrade.svg │ │ ├── system-users.svg │ │ ├── tab-close-other.svg │ │ ├── tab-close.svg │ │ ├── tab-detach.svg │ │ ├── tab-duplicate.svg │ │ ├── tab-new-background.svg │ │ ├── tab-new.svg │ │ ├── tab.svg │ │ ├── tab_duplicate.svg │ │ ├── tab_new.svg │ │ ├── table.svg │ │ ├── tag-addressbook.svg │ │ ├── tag-assigned.svg │ │ ├── tag-delete.svg │ │ ├── tag-edit.svg │ │ ├── tag-events.svg │ │ ├── tag-folder.svg │ │ ├── tag-new.svg │ │ ├── tag-people.svg │ │ ├── tag-places.svg │ │ ├── tag-properties.svg │ │ ├── tag-recents.svg │ │ ├── tag-reset.svg │ │ ├── tag.svg │ │ ├── tap-create.svg │ │ ├── tap-extract-to.svg │ │ ├── tap-extract.svg │ │ ├── task-new.svg │ │ ├── taxes-finances.svg │ │ ├── template.svg │ │ ├── text-convert-to-regular.svg │ │ ├── text-field.svg │ │ ├── text-flow-into-frame.svg │ │ ├── text-frame-link.svg │ │ ├── text-frame-unlink.svg │ │ ├── text-put-on-path.svg │ │ ├── text-remove-from-path.svg │ │ ├── text-speak.svg │ │ ├── text-unflow.svg │ │ ├── text-unkern.svg │ │ ├── text-wrap.svg │ │ ├── text_horz_kern.svg │ │ ├── text_letter_spacing.svg │ │ ├── text_line_spacing.svg │ │ ├── text_rotation.svg │ │ ├── text_subscript.svg │ │ ├── text_superscript.svg │ │ ├── text_vert_kern.svg │ │ ├── text_word_spacing.svg │ │ ├── tiny-pause.svg │ │ ├── tiny-start.svg │ │ ├── tool-animator.svg │ │ ├── tool-measure.svg │ │ ├── tool-node-editor.svg │ │ ├── tool-pointer.svg │ │ ├── tool-text.svg │ │ ├── tool-tweak.svg │ │ ├── tool_brush.svg │ │ ├── tool_cellformatting.svg │ │ ├── tool_color_picker.svg │ │ ├── tool_ellipse.svg │ │ ├── tool_elliptical_selection.svg │ │ ├── tool_eraser.svg │ │ ├── tool_flood_fill.svg │ │ ├── tool_imageeffects.svg │ │ ├── tool_line.svg │ │ ├── tool_pagelayout.svg │ │ ├── tool_pen.svg │ │ ├── tool_polygon.svg │ │ ├── tool_polyline.svg │ │ ├── tool_rect_selection.svg │ │ ├── tool_rectangle.svg │ │ ├── tool_references.svg │ │ ├── tool_review.svg │ │ ├── tool_rounded_rectangle.svg │ │ ├── tool_text.svg │ │ ├── tools-check-spelling.svg │ │ ├── tools-media-optical-burn-image.svg │ │ ├── tools-media-optical-burn.svg │ │ ├── tools-media-optical-copy.svg │ │ ├── tools-media-optical-erase.svg │ │ ├── tools-media-optical-format.svg │ │ ├── tools-report-bug.svg │ │ ├── tools-rip-audio-cd.svg │ │ ├── tools-rip-video-cd.svg │ │ ├── tools-rip-video-dvd.svg │ │ ├── tools-wizard.svg │ │ ├── tools.svg │ │ ├── top.svg │ │ ├── transform-affect-gradient.svg │ │ ├── transform-affect-pattern.svg │ │ ├── transform-affect-rounded-corners.svg │ │ ├── transform-affect-stroke.svg │ │ ├── transform-crop-and-resize.svg │ │ ├── transform-crop.svg │ │ ├── transform-move-horizontal.svg │ │ ├── transform-move-vertical.svg │ │ ├── transform-move.svg │ │ ├── transform-rotate.svg │ │ ├── transform-scale-textbox-points.svg │ │ ├── transform-scale.svg │ │ ├── transform-shear-down.svg │ │ ├── transform-shear-left.svg │ │ ├── transform-shear-right.svg │ │ ├── transform-shear-up.svg │ │ ├── transform-skew-horizontal.svg │ │ ├── transform-skew-vertical.svg │ │ ├── transsearch.svg │ │ ├── trash-empty.svg │ │ ├── trim-margins.svg │ │ ├── trim-to-selection.svg │ │ ├── umbr-coll-message-asynchronous.svg │ │ ├── umbr-coll-message-synchronous.svg │ │ ├── umbr-message-asynchronous.svg │ │ ├── umbr-message-found.svg │ │ ├── umbr-message-lost.svg │ │ ├── umbr-message-synchronous.svg │ │ ├── umbrello_diagram_activity.svg │ │ ├── umbrello_diagram_class.svg │ │ ├── umbrello_diagram_collaboration.svg │ │ ├── umbrello_diagram_component.svg │ │ ├── umbrello_diagram_deployment.svg │ │ ├── umbrello_diagram_entityrelationship.svg │ │ ├── umbrello_diagram_sequence.svg │ │ ├── umbrello_diagram_state.svg │ │ ├── umbrello_diagram_usecase.svg │ │ ├── undo.svg │ │ ├── uniassociation.svg │ │ ├── unique_constraint.svg │ │ ├── unlock.svg │ │ ├── unmarkasblank.svg │ │ ├── up.svg │ │ ├── upcomingevents-amarok.svg │ │ ├── upindicator.svg │ │ ├── upload-media.svg │ │ ├── usecase.svg │ │ ├── user-group-delete.svg │ │ ├── user-group-new.svg │ │ ├── user-group-properties.svg │ │ ├── user-identity.svg │ │ ├── user-others.svg │ │ ├── user-properties.svg │ │ ├── user.svg │ │ ├── usermenu-delete.svg │ │ ├── usermenu-down.svg │ │ ├── usermenu-up.svg │ │ ├── vcs-commit-cvs-cervisia.svg │ │ ├── vcs-diff-cvs-cervisia.svg │ │ ├── vcs-remove-cvs-cervisia.svg │ │ ├── vcs-status-cvs-cervisia.svg │ │ ├── vcs-update-cvs-cervisia.svg │ │ ├── verb.svg │ │ ├── verbatim.svg │ │ ├── videoclip-amarok.svg │ │ ├── view-bank-add.svg │ │ ├── view-bank-delete.svg │ │ ├── view-bank-edit.svg │ │ ├── view-bank.svg │ │ ├── view-barcode-add.svg │ │ ├── view-barcode-qr.svg │ │ ├── view-barcode.svg │ │ ├── view-calendar-agenda.svg │ │ ├── view-calendar-birthday.svg │ │ ├── view-calendar-day.svg │ │ ├── view-calendar-holiday.svg │ │ ├── view-calendar-journal.svg │ │ ├── view-calendar-list.svg │ │ ├── view-calendar-month.svg │ │ ├── view-calendar-special-occasion.svg │ │ ├── view-calendar-tasks.svg │ │ ├── view-calendar-time-spent.svg │ │ ├── view-calendar-timeline.svg │ │ ├── view-calendar-upcoming-days.svg │ │ ├── view-calendar-upcoming-events.svg │ │ ├── view-calendar-wedding-anniversary.svg │ │ ├── view-calendar-week.svg │ │ ├── view-calendar-whatsnext.svg │ │ ├── view-calendar-workweek.svg │ │ ├── view-calendar.svg │ │ ├── view-catalog.svg │ │ ├── view-categories-expenditures.svg │ │ ├── view-categories-incomes.svg │ │ ├── view-categories.svg │ │ ├── view-choose.svg │ │ ├── view-close.svg │ │ ├── view-conversation-balloon.svg │ │ ├── view-currency-list.svg │ │ ├── view-file-columns.svg │ │ ├── view-filter.svg │ │ ├── view-financial-account-add.svg │ │ ├── view-financial-account-asset-closed.svg │ │ ├── view-financial-account-asset.svg │ │ ├── view-financial-account-cash-closed.svg │ │ ├── view-financial-account-cash.svg │ │ ├── view-financial-account-checking-closed.svg │ │ ├── view-financial-account-checking.svg │ │ ├── view-financial-account-close.svg │ │ ├── view-financial-account-closed.svg │ │ ├── view-financial-account-delete.svg │ │ ├── view-financial-account-edit.svg │ │ ├── view-financial-account-investment-closed.svg │ │ ├── view-financial-account-investment-security-closed.svg │ │ ├── view-financial-account-investment-security.svg │ │ ├── view-financial-account-investment.svg │ │ ├── view-financial-account-liability-closed.svg │ │ ├── view-financial-account-liability.svg │ │ ├── view-financial-account-loan-closed.svg │ │ ├── view-financial-account-loan.svg │ │ ├── view-financial-account-reopen.svg │ │ ├── view-financial-account-savings-closed.svg │ │ ├── view-financial-account-savings.svg │ │ ├── view-financial-account.svg │ │ ├── view-financial-budget.svg │ │ ├── view-financial-category-add.svg │ │ ├── view-financial-category-delete.svg │ │ ├── view-financial-category-edit.svg │ │ ├── view-financial-category-expense.svg │ │ ├── view-financial-category-income.svg │ │ ├── view-financial-category.svg │ │ ├── view-financial-list.svg │ │ ├── view-financial-transfer-reconcile.svg │ │ ├── view-financial-transfer-reconciled.svg │ │ ├── view-financial-transfer-unreconciled.svg │ │ ├── view-form-action.svg │ │ ├── view-form.svg │ │ ├── view-fullscreen.svg │ │ ├── view-grid.svg │ │ ├── view-group.svg │ │ ├── view-hidden.svg │ │ ├── view-history.svg │ │ ├── view-institution-add.svg │ │ ├── view-institution-delete.svg │ │ ├── view-institution-edit.svg │ │ ├── view-institution.svg │ │ ├── view-left-close.svg │ │ ├── view-list-details.svg │ │ ├── view-list-icons.svg │ │ ├── view-list-text.svg │ │ ├── view-list-tree.svg │ │ ├── view-media-album-cover.svg │ │ ├── view-media-artist.svg │ │ ├── view-media-equalizer.svg │ │ ├── view-media-lyrics.svg │ │ ├── view-media-playlist.svg │ │ ├── view-media-publisher.svg │ │ ├── view-media-title.svg │ │ ├── view-media-visualization.svg │ │ ├── view-multiple-objects.svg │ │ ├── view-object-histogram-linear.svg │ │ ├── view-object-histogram-logarithmic.svg │ │ ├── view-pages-continuous.svg │ │ ├── view-pages-facing-first-centered.svg │ │ ├── view-pages-facing.svg │ │ ├── view-pages-overview.svg │ │ ├── view-pages-single.svg │ │ ├── view-pim-calendar.svg │ │ ├── view-pim-contacts.svg │ │ ├── view-pim-journal.svg │ │ ├── view-pim-mail.svg │ │ ├── view-pim-news.svg │ │ ├── view-pim-notes.svg │ │ ├── view-pim-tasks-pending.svg │ │ ├── view-pim-tasks.svg │ │ ├── view-presentation.svg │ │ ├── view-preview.svg │ │ ├── view-private.svg │ │ ├── view-process-all-tree.svg │ │ ├── view-process-all.svg │ │ ├── view-process-own.svg │ │ ├── view-process-system.svg │ │ ├── view-process-tree.svg │ │ ├── view-process-users.svg │ │ ├── view-readermode-active.svg │ │ ├── view-readermode.svg │ │ ├── view-refresh.svg │ │ ├── view-resource-calendar.svg │ │ ├── view-restore.svg │ │ ├── view-right-close.svg │ │ ├── view-right-new.svg │ │ ├── view-services-scripted-amarok.svg │ │ ├── view-sidetree.svg │ │ ├── view-sort-ascending-name.svg │ │ ├── view-sort-ascending.svg │ │ ├── view-sort-descending-name.svg │ │ ├── view-sort-descending.svg │ │ ├── view-sort.svg │ │ ├── view-split-left-right.svg │ │ ├── view-split-top-bottom.svg │ │ ├── view-statistics.svg │ │ ├── view-table-of-contents-ltr.svg │ │ ├── view-table-of-contents-rtl.svg │ │ ├── view-task-add.svg │ │ ├── view-task-child-add.svg │ │ ├── view-task-child.svg │ │ ├── view-task.svg │ │ ├── view-time-schedule-baselined-add.svg │ │ ├── view-time-schedule-baselined-remove.svg │ │ ├── view-time-schedule-baselined.svg │ │ ├── view-time-schedule-calculus.svg │ │ ├── view-time-schedule-child-insert.svg │ │ ├── view-time-schedule-edit.svg │ │ ├── view-time-schedule-insert.svg │ │ ├── view-time-schedule.svg │ │ ├── view-visible.svg │ │ ├── view-web-browser-dom-tree.svg │ │ ├── view_fit_to_page.svg │ │ ├── viewbib.svg │ │ ├── viewhtml.svg │ │ ├── viewimage.svg │ │ ├── viewlog.svg │ │ ├── viewmagfit.svg │ │ ├── viewpdf.svg │ │ ├── viewps.svg │ │ ├── virtual-desktops.svg │ │ ├── visibility.svg │ │ ├── widget-alternatives.svg │ │ ├── window-close.svg │ │ ├── window-duplicate.svg │ │ ├── window-keep-above.svg │ │ ├── window-keep-below.svg │ │ ├── window-maximize.svg │ │ ├── window-minimize.svg │ │ ├── window-new.svg │ │ ├── window-next.svg │ │ ├── window-pin.svg │ │ ├── window-previous.svg │ │ ├── window-restore.svg │ │ ├── window-shade.svg │ │ ├── window-unpin.svg │ │ ├── window-unshade.svg │ │ ├── window.svg │ │ ├── window_fullscreen.svg │ │ ├── window_new.svg │ │ ├── window_nofullscreen.svg │ │ ├── wizard_math.svg │ │ ├── wizard_pdftools.svg │ │ ├── wizard_pstools.svg │ │ ├── wizard_tabular.svg │ │ ├── x-clementine-album.svg │ │ ├── x-clementine-albums.svg │ │ ├── x-clementine-artist.svg │ │ ├── x-clementine-shuffle.svg │ │ ├── x-shape-connection.svg │ │ ├── x-shape-formula.svg │ │ ├── x-shape-image.svg │ │ ├── x-shape-text.svg │ │ ├── x-zoom-in.svg │ │ ├── x-zoom-out.svg │ │ ├── xfce-wm-close.svg │ │ ├── xml-attribute-delete.svg │ │ ├── xml-element-new.svg │ │ ├── xml-node-delete.svg │ │ ├── xml-node-duplicate.svg │ │ ├── xml-text-new.svg │ │ ├── y-zoom-in.svg │ │ ├── y-zoom-out.svg │ │ ├── zoom-1-to-2.svg │ │ ├── zoom-2-to-1.svg │ │ ├── zoom-best-fit.svg │ │ ├── zoom-center-page.svg │ │ ├── zoom-double-size.svg │ │ ├── zoom-draw.svg │ │ ├── zoom-fit-best.svg │ │ ├── zoom-fit-drawing.svg │ │ ├── zoom-fit-height.svg │ │ ├── zoom-fit-page.svg │ │ ├── zoom-fit-selection.svg │ │ ├── zoom-fit-width.svg │ │ ├── zoom-half-size.svg │ │ ├── zoom-in-large.svg │ │ ├── zoom-in-x.svg │ │ ├── zoom-in-y.svg │ │ ├── zoom-in.svg │ │ ├── zoom-next.svg │ │ ├── zoom-original.svg │ │ ├── zoom-out-large.svg │ │ ├── zoom-out-x.svg │ │ ├── zoom-out-y.svg │ │ ├── zoom-out.svg │ │ ├── zoom-previous.svg │ │ ├── zoom-select-fit.svg │ │ ├── zoom-select-x.svg │ │ ├── zoom-select-y.svg │ │ ├── zoom-select.svg │ │ └── zoom.svg │ ├── apps │ │ ├── applications-other.svg │ │ ├── appointment-soon.svg │ │ ├── dialog-password.svg │ │ ├── document-print-preview.svg │ │ ├── edit-paste.svg │ │ ├── find-location.svg │ │ ├── help-about.svg │ │ ├── multimedia-volume-control.svg │ │ ├── onboard.svg │ │ ├── preferences-system.svg │ │ ├── reload.svg │ │ ├── security-medium.svg │ │ ├── starred.svg │ │ └── system-run.svg │ ├── devices │ │ ├── audio-card.svg │ │ ├── audio-headphones.svg │ │ ├── audio-headset.svg │ │ ├── audio-headsets.svg │ │ ├── audio-input-microphone.svg │ │ ├── audio-speakers.svg │ │ ├── battery.svg │ │ ├── blueman-camera.svg │ │ ├── blueman-cellular.svg │ │ ├── blueman-desktop.svg │ │ ├── blueman-device.svg │ │ ├── blueman-handheld.svg │ │ ├── blueman-handsfree.svg │ │ ├── blueman-headset.svg │ │ ├── blueman-keyboard.svg │ │ ├── blueman-laptop.svg │ │ ├── blueman-loudspeaker.svg │ │ ├── blueman-mouse.svg │ │ ├── blueman-pointing.svg │ │ ├── blueman-scanner.svg │ │ ├── blueman-server.svg │ │ ├── blueman-smart-phone.svg │ │ ├── blueman.svg │ │ ├── bluetooth.svg │ │ ├── camera-photo.svg │ │ ├── camera-video.svg │ │ ├── camera-web.svg │ │ ├── camera.svg │ │ ├── computer-laptop.svg │ │ ├── computer.svg │ │ ├── cpu.svg │ │ ├── device-notifier.svg │ │ ├── display.svg │ │ ├── drive-cdrom.svg │ │ ├── drive-harddisk-USB.svg │ │ ├── drive-harddisk-encrypted.svg │ │ ├── drive-harddisk-ieee1394.svg │ │ ├── drive-harddisk-root.svg │ │ ├── drive-harddisk-solidstate.svg │ │ ├── drive-harddisk-system.svg │ │ ├── drive-harddisk.svg │ │ ├── drive-multidisk.svg │ │ ├── drive-multipartition.svg │ │ ├── drive-optical.svg │ │ ├── drive-removable-media-usb-pendrive.svg │ │ ├── drive-removable-media-usb.svg │ │ ├── drive-removable-media.svg │ │ ├── drive-virtual.svg │ │ ├── gnome-dev-battery.svg │ │ ├── gnome-dev-cdrom-audio.svg │ │ ├── gnome-dev-cdrom.svg │ │ ├── gnome-dev-computer.svg │ │ ├── gnome-dev-disc-cdr.svg │ │ ├── gnome-dev-disc-cdrw.svg │ │ ├── gnome-dev-disc-dvdr-plus.svg │ │ ├── gnome-dev-disc-dvdr.svg │ │ ├── gnome-dev-disc-dvdram.svg │ │ ├── gnome-dev-disc-dvdrom.svg │ │ ├── gnome-dev-disc-dvdrw.svg │ │ ├── gnome-dev-dvd.svg │ │ ├── gnome-dev-ethernet.svg │ │ ├── gnome-dev-floppy.svg │ │ ├── gnome-dev-harddisk-1394.svg │ │ ├── gnome-dev-harddisk-usb.svg │ │ ├── gnome-dev-harddisk.svg │ │ ├── gnome-dev-ipod.svg │ │ ├── gnome-dev-keyboard.svg │ │ ├── gnome-dev-media-cf.svg │ │ ├── gnome-dev-media-ms.svg │ │ ├── gnome-dev-media-sdmmc.svg │ │ ├── gnome-dev-media-sm.svg │ │ ├── gnome-dev-mouse-ball.svg │ │ ├── gnome-dev-mouse-optical.svg │ │ ├── gnome-dev-printer-new.svg │ │ ├── gnome-dev-printer.svg │ │ ├── gnome-dev-removable-1394.svg │ │ ├── gnome-dev-removable-usb.svg │ │ ├── gnome-dev-removable.svg │ │ ├── gnome-dev-wavelan.svg │ │ ├── gnome-fs-blockdev.svg │ │ ├── gnome-phone-manager.svg │ │ ├── input-dialpad.svg │ │ ├── input-gaming.svg │ │ ├── input-keyboard.svg │ │ ├── input-mouse.svg │ │ ├── input-tablet.svg │ │ ├── input-touchpad.svg │ │ ├── ipodtouchicon.svg │ │ ├── joystick.svg │ │ ├── kdeconnect.svg │ │ ├── keyboard.svg │ │ ├── knemo-modem-error.svg │ │ ├── knemo-modem-idle.svg │ │ ├── knemo-modem-offline.svg │ │ ├── knemo-modem-receive.svg │ │ ├── knemo-modem-transmit-receive.svg │ │ ├── knemo-modem-transmit.svg │ │ ├── knemo-monitor-error.svg │ │ ├── knemo-monitor-idle.svg │ │ ├── knemo-monitor-offline.svg │ │ ├── knemo-monitor-receive.svg │ │ ├── knemo-monitor-transmit-receive.svg │ │ ├── knemo-monitor-transmit.svg │ │ ├── knemo-network-error.svg │ │ ├── knemo-network-idle.svg │ │ ├── knemo-network-offline.svg │ │ ├── knemo-network-receive.svg │ │ ├── knemo-network-transmit-receive.svg │ │ ├── knemo-network-transmit.svg │ │ ├── knemo-wireless-error.svg │ │ ├── knemo-wireless-idle.svg │ │ ├── knemo-wireless-offline.svg │ │ ├── knemo-wireless-receive.svg │ │ ├── knemo-wireless-transmit-receive.svg │ │ ├── knemo-wireless-transmit.svg │ │ ├── laptop.svg │ │ ├── media-cdr.svg │ │ ├── media-cdrom-audio.svg │ │ ├── media-cdrom.svg │ │ ├── media-cdrw.svg │ │ ├── media-dvd.svg │ │ ├── media-dvdrw.svg │ │ ├── media-flash-memory-stick.svg │ │ ├── media-flash-sd-mmc.svg │ │ ├── media-flash-smart-media.svg │ │ ├── media-flash.svg │ │ ├── media-floppy.svg │ │ ├── media-memory-sd.svg │ │ ├── media-optical-audio.svg │ │ ├── media-optical-blu-ray.svg │ │ ├── media-optical-cd-video.svg │ │ ├── media-optical-copy.svg │ │ ├── media-optical-data.svg │ │ ├── media-optical-dvd-video.svg │ │ ├── media-optical-dvd.svg │ │ ├── media-optical-mixed-cd.svg │ │ ├── media-optical-recordable.svg │ │ ├── media-optical-video.svg │ │ ├── media-optical.svg │ │ ├── media-removable.svg │ │ ├── media-tape.svg │ │ ├── modem.svg │ │ ├── multimedia-player-ipod-U2-color.svg │ │ ├── multimedia-player-ipod-U2-monochrome.svg │ │ ├── multimedia-player-ipod-mini-blue.svg │ │ ├── multimedia-player-ipod-mini-gold.svg │ │ ├── multimedia-player-ipod-mini-green.svg │ │ ├── multimedia-player-ipod-mini-pink.svg │ │ ├── multimedia-player-ipod-mini-silver.svg │ │ ├── multimedia-player-ipod-nano-black.svg │ │ ├── multimedia-player-ipod-nano-green.svg │ │ ├── multimedia-player-ipod-nano-white.svg │ │ ├── multimedia-player-ipod-shuffle.svg │ │ ├── multimedia-player-ipod-standard-color.svg │ │ ├── multimedia-player-ipod-standard-monochrome.svg │ │ ├── multimedia-player.svg │ │ ├── network-bluetooth.svg │ │ ├── network-modem.svg │ │ ├── network-rj11-female.svg │ │ ├── network-rj45-female.svg │ │ ├── network-server-database.svg │ │ ├── network-server.svg │ │ ├── network-vpn.svg │ │ ├── network-wired-activated.svg │ │ ├── network-wired-unavailable.svg │ │ ├── network-wired.svg │ │ ├── network-wireless-connected-00.svg │ │ ├── network-wireless-connected-100.svg │ │ ├── network-wireless-connected-25.svg │ │ ├── network-wireless-connected-50.svg │ │ ├── network-wireless-connected-75.svg │ │ ├── network-wireless-disconnected.svg │ │ ├── network-wireless.svg │ │ ├── nm-device-wired.svg │ │ ├── nm-device-wireless.svg │ │ ├── phone-google-nexus-one.svg │ │ ├── phone-htc-g1-white.svg │ │ ├── phone-nokia-n900.svg │ │ ├── phone-palm-pre.svg │ │ ├── phone.svg │ │ ├── printer-network.svg │ │ ├── printer-remote.svg │ │ ├── printer.svg │ │ ├── removable-media.svg │ │ ├── scanner.svg │ │ ├── server-database.svg │ │ ├── smartphone.svg │ │ ├── stock_cell-phone.svg │ │ ├── system.svg │ │ ├── tablet.svg │ │ ├── uav-quadcopter.svg │ │ ├── uninterruptible-power-supply.svg │ │ ├── unity-fallback-mount-helper.svg │ │ └── video-display.svg │ ├── mimetypes │ │ ├── 7zip.svg │ │ ├── android-package-archive.svg │ │ ├── application-7zip.svg │ │ ├── application-acad.svg │ │ ├── application-archive-zip.svg │ │ ├── application-archive.svg │ │ ├── application-atom+xml.svg │ │ ├── application-autocad_dwg.svg │ │ ├── application-certificate.svg │ │ ├── application-clariscad.svg │ │ ├── application-database.svg │ │ ├── application-dicom.svg │ │ ├── application-dwg.svg │ │ ├── application-dxf.svg │ │ ├── application-epub+zip.svg │ │ ├── application-gzip.svg │ │ ├── application-illustrator.svg │ │ ├── application-install.svg │ │ ├── application-javascript.svg │ │ ├── application-json.svg │ │ ├── application-mac-binhex40.svg │ │ ├── application-mimearchive.svg │ │ ├── application-msonenote.svg │ │ ├── application-msoutlook.svg │ │ ├── application-msword-template.svg │ │ ├── application-msword.svg │ │ ├── application-octet-stream.svg │ │ ├── application-ogg.svg │ │ ├── application-pdf.svg │ │ ├── application-pgp-encrypted.svg │ │ ├── application-pgp-keys.svg │ │ ├── application-pgp-signature.svg │ │ ├── application-pgp.svg │ │ ├── application-pkcs12.svg │ │ ├── application-pkcs7-mime.svg │ │ ├── application-pkcs7-signature.svg │ │ ├── application-pkcs7.mime.svg │ │ ├── application-pkcs7.signature.svg │ │ ├── application-pkix-cerl.svg │ │ ├── application-pkix-cert.svg │ │ ├── application-postscript.svg │ │ ├── application-ram.svg │ │ ├── application-relaxng.svg │ │ ├── application-rss+xml.svg │ │ ├── application-rss_xml.svg │ │ ├── application-rtf-rtl.svg │ │ ├── application-rtf.svg │ │ ├── application-sql.svg │ │ ├── application-sxw.svg │ │ ├── application-text.svg │ │ ├── application-vnd-google-earth-kml.svg │ │ ├── application-vnd.android.package-archive.svg │ │ ├── application-vnd.appimage.svg │ │ ├── application-vnd.apple.mpegurl.svg │ │ ├── application-vnd.apple.pkpass.svg │ │ ├── application-vnd.comicbook+zip.svg │ │ ├── application-vnd.cups-pdf-banner.svg │ │ ├── application-vnd.debian.binary-package.svg │ │ ├── application-vnd.google-earth.kml+xml.svg │ │ ├── application-vnd.iccprofile.svg │ │ ├── application-vnd.ms-access.svg │ │ ├── application-vnd.ms-database.svg │ │ ├── application-vnd.ms-excel │ │ ├── application-vnd.ms-excel.addin.macroenabled.12.svg │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12.svg │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12.svg │ │ ├── application-vnd.ms-excel.svg │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ ├── application-vnd.ms-infopath.svg │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12.svg │ │ ├── application-vnd.ms-powerpoint.presentation.macroEnabled.12.svg │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12.svg │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12.svg │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg │ │ ├── application-vnd.ms-powerpoint.svg │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ ├── application-vnd.ms-publisher.svg │ │ ├── application-vnd.ms-word.document.macroenabled.12.svg │ │ ├── application-vnd.ms-word.svg │ │ ├── application-vnd.ms-word.template.macroenabled.12.svg │ │ ├── application-vnd.nintendo.snes.rom.svg │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ ├── application-vnd.oasis.opendocument.database.svg │ │ ├── application-vnd.oasis.opendocument.draw.template.svg │ │ ├── application-vnd.oasis.opendocument.drawing-template.svg │ │ ├── application-vnd.oasis.opendocument.drawing.svg │ │ ├── application-vnd.oasis.opendocument.drawing.template.svg │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ ├── application-vnd.oasis.opendocument.graphics.svg │ │ ├── application-vnd.oasis.opendocument.image.svg │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ ├── application-vnd.oasis.opendocument.presentation.svg │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ ├── application-vnd.oasis.opendocument.spreadsheet.svg │ │ ├── application-vnd.oasis.opendocument.text-master.svg │ │ ├── application-vnd.oasis.opendocument.text-rtl.svg │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ ├── application-vnd.oasis.opendocument.text-web.svg │ │ ├── application-vnd.oasis.opendocument.text.svg │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ ├── application-vnd.openxmlformats-officedocument.presentationml.presentation.svg │ │ ├── application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg │ │ ├── application-vnd.openxmlformats-officedocument.presentationml.template.svg │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ ├── application-vnd.rar.svg │ │ ├── application-vnd.recordare.musicxml+xml.svg │ │ ├── application-vnd.recordare.musicxml.svg │ │ ├── application-vnd.rn-realmedia.svg │ │ ├── application-vnd.scribus.svg │ │ ├── application-vnd.sqlite3.svg │ │ ├── application-vnd.stardivision.cal.svg │ │ ├── application-vnd.stardivision.calc.svg │ │ ├── application-vnd.stardivision.draw.svg │ │ ├── application-vnd.stardivision.mail.svg │ │ ├── application-vnd.stardivision.math.svg │ │ ├── application-vnd.sun.xml.calc.svg │ │ ├── application-vnd.sun.xml.calc.template.svg │ │ ├── application-vnd.sun.xml.draw.svg │ │ ├── application-vnd.sun.xml.draw.template.svg │ │ ├── application-vnd.sun.xml.impress.svg │ │ ├── application-vnd.sun.xml.impress.template.svg │ │ ├── application-vnd.sun.xml.math.svg │ │ ├── application-vnd.sun.xml.wordperfect.svg │ │ ├── application-vnd.sun.xml.writer-global.svg │ │ ├── application-vnd.sun.xml.writer-rtl.svg │ │ ├── application-vnd.sun.xml.writer-template.svg │ │ ├── application-vnd.sun.xml.writer.global.svg │ │ ├── application-vnd.sun.xml.writer.svg │ │ ├── application-vnd.sun.xml.writer.template.svg │ │ ├── application-vnd.visio.svg │ │ ├── application-vnd.wordperfect-rtl.svg │ │ ├── application-vnd.wordperfect.svg │ │ ├── application-wps-office.doc.svg │ │ ├── application-wps-office.docx.svg │ │ ├── application-wps-office.dot.svg │ │ ├── application-wps-office.dotx.svg │ │ ├── application-wps-office.pot.svg │ │ ├── application-wps-office.potx.svg │ │ ├── application-wps-office.ppt.svg │ │ ├── application-wps-office.pptx.svg │ │ ├── application-wps-office.wps.svg │ │ ├── application-wps-office.wpt.svg │ │ ├── application-wps-office.xls.svg │ │ ├── application-wps-office.xlsx.svg │ │ ├── application-wps-office.xlt.svg │ │ ├── application-wps-office.xltx.svg │ │ ├── application-x-7z-compressed.svg │ │ ├── application-x-7zip.svg │ │ ├── application-x-abiword.svg │ │ ├── application-x-acad.svg │ │ ├── application-x-ace.svg │ │ ├── application-x-addon.svg │ │ ├── application-x-apple-diskimage.svg │ │ ├── application-x-applix-spreadsheet.svg │ │ ├── application-x-applix-word.svg │ │ ├── application-x-ar.svg │ │ ├── application-x-arc.svg │ │ ├── application-x-archive.svg │ │ ├── application-x-arj.svg │ │ ├── application-x-audacity-project.svg │ │ ├── application-x-autocad.svg │ │ ├── application-x-awk.svg │ │ ├── application-x-bin.svg │ │ ├── application-x-bittorrent.svg │ │ ├── application-x-blender.svg │ │ ├── application-x-brasero.svg │ │ ├── application-x-bzdvi.svg │ │ ├── application-x-bzip-compressed-tar.svg │ │ ├── application-x-bzip-compressed.svg │ │ ├── application-x-bzip.svg │ │ ├── application-x-bzpdf.svg │ │ ├── application-x-bzpostscript.svg │ │ ├── application-x-cd-image.svg │ │ ├── application-x-cda.svg │ │ ├── application-x-chm.svg │ │ ├── application-x-class-file.svg │ │ ├── application-x-compress-tar.svg │ │ ├── application-x-compress.svg │ │ ├── application-x-compressed-tar.svg │ │ ├── application-x-compressed.svg │ │ ├── application-x-cpio.svg │ │ ├── application-x-cue.svg │ │ ├── application-x-deb.svg │ │ ├── application-x-designer.svg │ │ ├── application-x-desktop.svg │ │ ├── application-x-dgn.svg │ │ ├── application-x-dwg.svg │ │ ├── application-x-egon.svg │ │ ├── application-x-executable-script.svg │ │ ├── application-x-executable.svg │ │ ├── application-x-extension-fcstd.svg │ │ ├── application-x-extension-html.svg │ │ ├── application-x-fictionbook+xml.svg │ │ ├── application-x-flash-video.svg │ │ ├── application-x-font-afm.svg │ │ ├── application-x-font-bdf.svg │ │ ├── application-x-font-dos.svg │ │ ├── application-x-font-framemaker.svg │ │ ├── application-x-font-libgrx.svg │ │ ├── application-x-font-linux-psf.svg │ │ ├── application-x-font-otf.svg │ │ ├── application-x-font-pcf.svg │ │ ├── application-x-font-snf.svg │ │ ├── application-x-font-speedo.svg │ │ ├── application-x-font-sunos-news.svg │ │ ├── application-x-font-tex-tfm.svg │ │ ├── application-x-font-tex.svg │ │ ├── application-x-font-ttf.svg │ │ ├── application-x-font-ttx.svg │ │ ├── application-x-font-type1.svg │ │ ├── application-x-font-vfont.svg │ │ ├── application-x-gameboy-rom.svg │ │ ├── application-x-gamecube-rom.svg │ │ ├── application-x-gba-rom.svg │ │ ├── application-x-generic.svg │ │ ├── application-x-gettext-translation.svg │ │ ├── application-x-glabels.svg │ │ ├── application-x-glade.svg │ │ ├── application-x-gnome-theme-package-rtl.svg │ │ ├── application-x-gnome-theme-package.svg │ │ ├── application-x-gnumeric.svg │ │ ├── application-x-gtk-builder.svg │ │ ├── application-x-gunmeric.svg │ │ ├── application-x-gzdvi.svg │ │ ├── application-x-gzip.svg │ │ ├── application-x-gzpdf.svg │ │ ├── application-x-gzpostscript.svg │ │ ├── application-x-img.svg │ │ ├── application-x-iso.svg │ │ ├── application-x-iso9660-appimage.svg │ │ ├── application-x-it87.svg │ │ ├── application-x-jar.svg │ │ ├── application-x-java-applet.svg │ │ ├── application-x-java-archive.svg │ │ ├── application-x-java.svg │ │ ├── application-x-javascript.svg │ │ ├── application-x-jokosher.svg │ │ ├── application-x-k3b.svg │ │ ├── application-x-kcachegrind.svg │ │ ├── application-x-kcsrc.svg │ │ ├── application-x-kdenlivetitle.svg │ │ ├── application-x-keepass.svg │ │ ├── application-x-kexi-connectiondata.svg │ │ ├── application-x-kexiproject-shortcut.svg │ │ ├── application-x-kexiproject-sqlite.svg │ │ ├── application-x-kexiproject-sqlite2.svg │ │ ├── application-x-kexiproject-sqlite3.svg │ │ ├── application-x-kformula.svg │ │ ├── application-x-kgetlist.svg │ │ ├── application-x-kontour.svg │ │ ├── application-x-kplato.svg │ │ ├── application-x-krita.svg │ │ ├── application-x-kvtml.svg │ │ ├── application-x-kword.svg │ │ ├── application-x-lha.svg │ │ ├── application-x-lhz.svg │ │ ├── application-x-lyx.svg │ │ ├── application-x-lzip-compressed-tar.svg │ │ ├── application-x-lzma-compressed-tar.svg │ │ ├── application-x-lzma.svg │ │ ├── application-x-lzop.svg │ │ ├── application-x-lzpdf.svg │ │ ├── application-x-m4.svg │ │ ├── application-x-macbinary.svg │ │ ├── application-x-marble.svg │ │ ├── application-x-matroska.svg │ │ ├── application-x-mimearchive.svg │ │ ├── application-x-mplayer2.svg │ │ ├── application-x-ms-dos-executable.svg │ │ ├── application-x-ms-shortcut.svg │ │ ├── application-x-msdownload.svg │ │ ├── application-x-msi.svg │ │ ├── application-x-mswinurl.svg │ │ ├── application-x-mswrite.svg │ │ ├── application-x-musescore+xml.svg │ │ ├── application-x-musescore.svg │ │ ├── application-x-n64-rom.svg │ │ ├── application-x-nes-rom.svg │ │ ├── application-x-nintendo-ds-rom.svg │ │ ├── application-x-nzb.svg │ │ ├── application-x-object.svg │ │ ├── application-x-ole-storage.svg │ │ ├── application-x-pak.svg │ │ ├── application-x-partial-download.svg │ │ ├── application-x-pem-key.svg │ │ ├── application-x-perl.svg │ │ ├── application-x-php.svg │ │ ├── application-x-pkcs12.svg │ │ ├── application-x-pkcs7-certificates.svg │ │ ├── application-x-plasma.svg │ │ ├── application-x-python-bytecode.svg │ │ ├── application-x-qet-element.svg │ │ ├── application-x-qet-project.svg │ │ ├── application-x-qtiplot.svg │ │ ├── application-x-quattropro.svg │ │ ├── application-x-rar.svg │ │ ├── application-x-raw-disk-image.svg │ │ ├── application-x-rdata.svg │ │ ├── application-x-root.svg │ │ ├── application-x-rpm.svg │ │ ├── application-x-ruby.svg │ │ ├── application-x-sami.svg │ │ ├── application-x-scribus.svg │ │ ├── application-x-shared-library-la.svg │ │ ├── application-x-sharedlib.svg │ │ ├── application-x-shellscript.svg │ │ ├── application-x-shockwave-flash.svg │ │ ├── application-x-siag.svg │ │ ├── application-x-sif.svg │ │ ├── application-x-skg.svg │ │ ├── application-x-skgc.svg │ │ ├── application-x-smb-server.svg │ │ ├── application-x-smb-workgroup.svg │ │ ├── application-x-source-rpm.svg │ │ ├── application-x-sqlite2.svg │ │ ├── application-x-sqlite3.svg │ │ ├── application-x-srt.svg │ │ ├── application-x-srtrip.svg │ │ ├── application-x-subrip.svg │ │ ├── application-x-tar.svg │ │ ├── application-x-tarz.svg │ │ ├── application-x-tex-gf.svg │ │ ├── application-x-tgif.svg │ │ ├── application-x-theme-rtl.svg │ │ ├── application-x-theme.svg │ │ ├── application-x-trash.svg │ │ ├── application-x-troff-man.svg │ │ ├── application-x-tzo.svg │ │ ├── application-x-webarchive.svg │ │ ├── application-x-wmf.svg │ │ ├── application-x-x509-ca-cert.svg │ │ ├── application-x-x509-user-cert.svg │ │ ├── application-x-xliff.svg │ │ ├── application-x-xpinstall.svg │ │ ├── application-x-xz-compressed-tar.svg │ │ ├── application-x-xz-pkg.svg │ │ ├── application-x-xz.svg │ │ ├── application-x-xzpdf.svg │ │ ├── application-x-zerosize.svg │ │ ├── application-x-zip-compressed-fb2.svg │ │ ├── application-x-zip.svg │ │ ├── application-x-zoo.svg │ │ ├── application-x.object.svg │ │ ├── application-xhtml+xml.svg │ │ ├── application-xmind.svg │ │ ├── application-xml-dtd.svg │ │ ├── application-xml.svg │ │ ├── application-xsd.svg │ │ ├── application-xslt+xml.svg │ │ ├── application-zip.svg │ │ ├── archive.svg │ │ ├── ascii.svg │ │ ├── audio-aac.svg │ │ ├── audio-ac3.svg │ │ ├── audio-cd.svg │ │ ├── audio-flac.svg │ │ ├── audio-midi.svg │ │ ├── audio-mp2.svg │ │ ├── audio-mp3.svg │ │ ├── audio-mp4.svg │ │ ├── audio-mpeg.svg │ │ ├── audio-prs.sid.svg │ │ ├── audio-vn.rn-realmedia.svg │ │ ├── audio-vnd.rn-realvideo.svg │ │ ├── audio-x-adpcm.svg │ │ ├── audio-x-aiff.svg │ │ ├── audio-x-flac+ogg.svg │ │ ├── audio-x-flac.svg │ │ ├── audio-x-generic.svg │ │ ├── audio-x-it.svg │ │ ├── audio-x-monkey.svg │ │ ├── audio-x-mp2.svg │ │ ├── audio-x-mp3-playlist.svg │ │ ├── audio-x-mpeg.svg │ │ ├── audio-x-mpegurl.svg │ │ ├── audio-x-playlist.svg │ │ ├── audio-x-scpls.svg │ │ ├── audio-x-speex+ogg.svg │ │ ├── audio-x-vorbis+ogg.svg │ │ ├── audio-x-wav.svg │ │ ├── audio-x-xi.svg │ │ ├── audio-x-xm.svg │ │ ├── audio.svg │ │ ├── audiobook.svg │ │ ├── binary.svg │ │ ├── blank-cd.svg │ │ ├── book.svg │ │ ├── cad.svg │ │ ├── calendar.svg │ │ ├── cd.svg │ │ ├── color.svg │ │ ├── contact.svg │ │ ├── contents2.svg │ │ ├── deb.svg │ │ ├── decrypted.svg │ │ ├── divx.svg │ │ ├── document-excel.svg │ │ ├── document-illustrator.svg │ │ ├── document-photoshop.svg │ │ ├── document-powerpoint.svg │ │ ├── document-rtl.svg │ │ ├── document-word.svg │ │ ├── document.svg │ │ ├── download.svg │ │ ├── draw.svg │ │ ├── drawing-dwg.svg │ │ ├── emblem-package.svg │ │ ├── empty.svg │ │ ├── encrypted.svg │ │ ├── excel.svg │ │ ├── exec.svg │ │ ├── extension.svg │ │ ├── folder_tar.svg │ │ ├── font-otf.svg │ │ ├── font-ttf.svg │ │ ├── font-x-generic.svg │ │ ├── font.svg │ │ ├── font_bitmap.svg │ │ ├── font_truetype.svg │ │ ├── font_type1.svg │ │ ├── fonts-package.svg │ │ ├── formula.svg │ │ ├── gedit-plugin.svg │ │ ├── gif.svg │ │ ├── gnome-exe-thumbnailer-generic-x.svg │ │ ├── gnome-exe-thumbnailer-generic.svg │ │ ├── gnome-exe-thumbnailer-template.svg │ │ ├── gnome-fs-executable.svg │ │ ├── gnome-fs-regular.svg │ │ ├── gnome-mime-application-atom+xml.svg │ │ ├── gnome-mime-application-javascript.svg │ │ ├── gnome-mime-application-magicpoint.svg │ │ ├── gnome-mime-application-msword.svg │ │ ├── gnome-mime-application-ogg.svg │ │ ├── gnome-mime-application-pdf.svg │ │ ├── gnome-mime-application-postscript.svg │ │ ├── gnome-mime-application-rss+xml.svg │ │ ├── gnome-mime-application-rtf.svg │ │ ├── gnome-mime-application-vnd.lotus-1-2-3.svg │ │ ├── gnome-mime-application-vnd.ms-excel.svg │ │ ├── gnome-mime-application-vnd.ms-powerpoint.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.graphics.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.image.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.presentation-template.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.presentation.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.spreadsheet.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.text-template.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.text-web.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.text.svg │ │ ├── gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.presentation.svg │ │ ├── gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg │ │ ├── gnome-mime-application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ ├── gnome-mime-application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ ├── gnome-mime-application-vnd.rn-realmedia-secure.svg │ │ ├── gnome-mime-application-vnd.rn-realmedia-vbr.svg │ │ ├── gnome-mime-application-vnd.rn-realmedia.svg │ │ ├── gnome-mime-application-vnd.scribus.svg │ │ ├── gnome-mime-application-vnd.stardivision.calc.svg │ │ ├── gnome-mime-application-vnd.stardivision.impress.svg │ │ ├── gnome-mime-application-vnd.stardivision.writer.svg │ │ ├── gnome-mime-application-vnd.sun.xml.calc.svg │ │ ├── gnome-mime-application-vnd.sun.xml.calc.template.svg │ │ ├── gnome-mime-application-vnd.sun.xml.draw.svg │ │ ├── gnome-mime-application-vnd.sun.xml.draw.template.svg │ │ ├── gnome-mime-application-vnd.sun.xml.impress.svg │ │ ├── gnome-mime-application-vnd.sun.xml.impress.template.svg │ │ ├── gnome-mime-application-vnd.sun.xml.writer.svg │ │ ├── gnome-mime-application-vnd.sun.xml.writer.template.svg │ │ ├── gnome-mime-application-wordperfect.svg │ │ ├── gnome-mime-application-x-7z-compressed.svg │ │ ├── gnome-mime-application-x-7zip.svg │ │ ├── gnome-mime-application-x-abiword.svg │ │ ├── gnome-mime-application-x-applix-spreadsheet.svg │ │ ├── gnome-mime-application-x-applix-word.svg │ │ ├── gnome-mime-application-x-archive.svg │ │ ├── gnome-mime-application-x-arj.svg │ │ ├── gnome-mime-application-x-bittorrent.svg │ │ ├── gnome-mime-application-x-bzip-compressed-tar.svg │ │ ├── gnome-mime-application-x-bzip-compressed.svg │ │ ├── gnome-mime-application-x-bzip.svg │ │ ├── gnome-mime-application-x-class-file.svg │ │ ├── gnome-mime-application-x-compress.svg │ │ ├── gnome-mime-application-x-compressed-tar.svg │ │ ├── gnome-mime-application-x-cpio-compress.svg │ │ ├── gnome-mime-application-x-cpio-compressed.svg │ │ ├── gnome-mime-application-x-cpio.svg │ │ ├── gnome-mime-application-x-deb.svg │ │ ├── gnome-mime-application-x-designer.svg │ │ ├── gnome-mime-application-x-desktop.svg │ │ ├── gnome-mime-application-x-dvi.svg │ │ ├── gnome-mime-application-x-executable.svg │ │ ├── gnome-mime-application-x-font-afm.svg │ │ ├── gnome-mime-application-x-font-bdf.svg │ │ ├── gnome-mime-application-x-font-linux-psf.svg │ │ ├── gnome-mime-application-x-font-pcf.svg │ │ ├── gnome-mime-application-x-font-sunos-news.svg │ │ ├── gnome-mime-application-x-font-ttf.svg │ │ ├── gnome-mime-application-x-glade.svg │ │ ├── gnome-mime-application-x-gnome-app-info.svg │ │ ├── gnome-mime-application-x-gnome-theme-package.svg │ │ ├── gnome-mime-application-x-gnumeric.svg │ │ ├── gnome-mime-application-x-gzip.svg │ │ ├── gnome-mime-application-x-gzpostscript.svg │ │ ├── gnome-mime-application-x-jar.svg │ │ ├── gnome-mime-application-x-java-archive.svg │ │ ├── gnome-mime-application-x-java.svg │ │ ├── gnome-mime-application-x-javascript.svg │ │ ├── gnome-mime-application-x-killustrator.svg │ │ ├── gnome-mime-application-x-kpresenter.svg │ │ ├── gnome-mime-application-x-kspread.svg │ │ ├── gnome-mime-application-x-kword.svg │ │ ├── gnome-mime-application-x-lha.svg │ │ ├── gnome-mime-application-x-lhz.svg │ │ ├── gnome-mime-application-x-lzma-compressed-tar.svg │ │ ├── gnome-mime-application-x-lzma.svg │ │ ├── gnome-mime-application-x-lzop.svg │ │ ├── gnome-mime-application-x-ms-dos-executable.svg │ │ ├── gnome-mime-application-x-perl.svg │ │ ├── gnome-mime-application-x-php.svg │ │ ├── gnome-mime-application-x-python-bytecode.svg │ │ ├── gnome-mime-application-x-rar.svg │ │ ├── gnome-mime-application-x-rpm.svg │ │ ├── gnome-mime-application-x-ruby.svg │ │ ├── gnome-mime-application-x-scribus.svg │ │ ├── gnome-mime-application-x-shellscript.svg │ │ ├── gnome-mime-application-x-shockwave-flash.svg │ │ ├── gnome-mime-application-x-stuffit.svg │ │ ├── gnome-mime-application-x-tar.svg │ │ ├── gnome-mime-application-x-tarz.svg │ │ ├── gnome-mime-application-x-tex.svg │ │ ├── gnome-mime-application-x-theme.svg │ │ ├── gnome-mime-application-x-zip.svg │ │ ├── gnome-mime-application-x-zoo.svg │ │ ├── gnome-mime-application-xhtml+xml.svg │ │ ├── gnome-mime-application-xml.svg │ │ ├── gnome-mime-application-zip.svg │ │ ├── gnome-mime-audio.svg │ │ ├── gnome-mime-image-jpeg.svg │ │ ├── gnome-mime-image-x-cmu-raster.svg │ │ ├── gnome-mime-image-x-killustrator.svg │ │ ├── gnome-mime-image-x-xpixmap.svg │ │ ├── gnome-mime-image.svg │ │ ├── gnome-mime-text-css.svg │ │ ├── gnome-mime-text-html.svg │ │ ├── gnome-mime-text-javascript.svg │ │ ├── gnome-mime-text-plain.svg │ │ ├── gnome-mime-text-vnd.wap.wml.svg │ │ ├── gnome-mime-text-x-c++.svg │ │ ├── gnome-mime-text-x-c++hdr.svg │ │ ├── gnome-mime-text-x-c++src.svg │ │ ├── gnome-mime-text-x-changelog.svg │ │ ├── gnome-mime-text-x-chdr.svg │ │ ├── gnome-mime-text-x-copying.svg │ │ ├── gnome-mime-text-x-csh.svg │ │ ├── gnome-mime-text-x-csharp.svg │ │ ├── gnome-mime-text-x-gtkrc.svg │ │ ├── gnome-mime-text-x-install.svg │ │ ├── gnome-mime-text-x-java.svg │ │ ├── gnome-mime-text-x-javascript.svg │ │ ├── gnome-mime-text-x-makefile.svg │ │ ├── gnome-mime-text-x-python.svg │ │ ├── gnome-mime-text-x-readme.svg │ │ ├── gnome-mime-text-x-sh.svg │ │ ├── gnome-mime-text-x-source.svg │ │ ├── gnome-mime-text-x-vcalendar.svg │ │ ├── gnome-mime-text-x-vcard.svg │ │ ├── gnome-mime-text-x-zsh.svg │ │ ├── gnome-mime-text.svg │ │ ├── gnome-mime-video-x-ms-asf.svg │ │ ├── gnome-mime-video-x-ms-wmv.svg │ │ ├── gnome-mime-video.svg │ │ ├── gnome-mime-x-font-afm.svg │ │ ├── gnome-mime-x-install.svg │ │ ├── gnome-package.svg │ │ ├── gtk-file.svg │ │ ├── html.svg │ │ ├── image-bmp.svg │ │ ├── image-generic.svg │ │ ├── image-gif.svg │ │ ├── image-ico.svg │ │ ├── image-jpeg.svg │ │ ├── image-jpeg2000.svg │ │ ├── image-png.svg │ │ ├── image-svg+xml-compressed.svg │ │ ├── image-svg+xml.svg │ │ ├── image-tiff.svg │ │ ├── image-vnd.adobe.photoshop.svg │ │ ├── image-vnd.dgn.svg │ │ ├── image-vnd.djvu.svg │ │ ├── image-vnd.dwg.svg │ │ ├── image-vnd.microsoft.icon.svg │ │ ├── image-x-3ds.svg │ │ ├── image-x-adobe-dng.svg │ │ ├── image-x-compressed-xcf.svg │ │ ├── image-x-dwg.svg │ │ ├── image-x-emf.svg │ │ ├── image-x-eps.svg │ │ ├── image-x-generic.svg │ │ ├── image-x-ico.svg │ │ ├── image-x-icon.svg │ │ ├── image-x-krita.svg │ │ ├── image-x-portable-bitmap.svg │ │ ├── image-x-portable.bitmap.svg │ │ ├── image-x-psd.svg │ │ ├── image-x-psdimage-x-psd.svg │ │ ├── image-x-svg+xml.svg │ │ ├── image-x-tga.svg │ │ ├── image-x-vnd.trolltech.qpicture.svg │ │ ├── image-x-win-bitmap.svg │ │ ├── image-x-win-bmp.svg │ │ ├── image-x-wmf.svg │ │ ├── image-x-xcf.svg │ │ ├── image-x-xfig.svg │ │ ├── image.svg │ │ ├── info.svg │ │ ├── internet-feed.svg │ │ ├── jpeg.svg │ │ ├── jpg.svg │ │ ├── kpresenter_kpr.svg │ │ ├── libpeas-plugin.svg │ │ ├── libreoffice-database.svg │ │ ├── libreoffice-drawing-template.svg │ │ ├── libreoffice-drawing.svg │ │ ├── libreoffice-extension.svg │ │ ├── libreoffice-formula.svg │ │ ├── libreoffice-master-document.svg │ │ ├── libreoffice-oasis-database.svg │ │ ├── libreoffice-oasis-drawing-template.svg │ │ ├── libreoffice-oasis-drawing.svg │ │ ├── libreoffice-oasis-formula.svg │ │ ├── libreoffice-oasis-master-document.svg │ │ ├── libreoffice-oasis-presentation-template.svg │ │ ├── libreoffice-oasis-presentation.svg │ │ ├── libreoffice-oasis-spreadsheet-template.svg │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ ├── libreoffice-oasis-text-template.svg │ │ ├── libreoffice-oasis-text.svg │ │ ├── libreoffice-oasis-web-template.svg │ │ ├── libreoffice-oasis-web.svg │ │ ├── libreoffice-presentation-template.svg │ │ ├── libreoffice-presentation.svg │ │ ├── libreoffice-spreadsheet-template.svg │ │ ├── libreoffice-spreadsheet.svg │ │ ├── libreoffice-text-template.svg │ │ ├── libreoffice-text.svg │ │ ├── libreoffice-web.svg │ │ ├── mail.svg │ │ ├── media-audio.svg │ │ ├── media-video.svg │ │ ├── message-news.svg │ │ ├── message-partial.svg │ │ ├── message-rfc822.svg │ │ ├── message-x-gnu-rmail.svg │ │ ├── message.svg │ │ ├── mime-ascii.svg │ │ ├── misc.svg │ │ ├── model-fcstd.svg │ │ ├── model-vnd.dwf.svg │ │ ├── model-vrml.svg │ │ ├── model-x.stl-binary.svg │ │ ├── model-x3d+binary.svg │ │ ├── model-x3d+vrml.svg │ │ ├── model-x3d+xml.svg │ │ ├── model-x3d.svg │ │ ├── model.svg │ │ ├── multipart-encrypted.svg │ │ ├── music.svg │ │ ├── none.svg │ │ ├── odf.svg │ │ ├── office-contact.svg │ │ ├── office-document-rtl.svg │ │ ├── office-document.svg │ │ ├── office-illustration.svg │ │ ├── office-spreadsheet.svg │ │ ├── openoffice3-drawing.svg │ │ ├── openofficeorg3-database.svg │ │ ├── openofficeorg3-drawing.svg │ │ ├── openofficeorg3-extension.svg │ │ ├── openofficeorg3-oasis-database.svg │ │ ├── openofficeorg3-oasis-spreadsheet.svg │ │ ├── opera-extension.svg │ │ ├── opera-widget.svg │ │ ├── package-gdebi.svg │ │ ├── package-x-generic.svg │ │ ├── package.svg │ │ ├── package_editors.svg │ │ ├── package_wordprocessing.svg │ │ ├── pdf.svg │ │ ├── plan.svg │ │ ├── plasma.svg │ │ ├── playlist-automatic.svg │ │ ├── playlist.svg │ │ ├── podcast.svg │ │ ├── pplication-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ ├── presentate.svg │ │ ├── print.svg │ │ ├── radio.svg │ │ ├── rar.svg │ │ ├── raw.svg │ │ ├── rpm.svg │ │ ├── rss.svg │ │ ├── script.svg │ │ ├── shellscript.svg │ │ ├── sound.svg │ │ ├── source-c-plus-plus.svg │ │ ├── source-c.svg │ │ ├── source-h.svg │ │ ├── source-java.svg │ │ ├── source-p.svg │ │ ├── source-php.svg │ │ ├── source-pl.svg │ │ ├── source-playlist.svg │ │ ├── source-ruby.svg │ │ ├── source-smart-playlist.svg │ │ ├── source-ui.svg │ │ ├── spreadsheet.svg │ │ ├── stock_calendar.svg │ │ ├── stock_new-drawing.svg │ │ ├── stock_new-html.svg │ │ ├── stock_new-master-document.svg │ │ ├── stock_new-presentation.svg │ │ ├── stock_new-spreadsheet.svg │ │ ├── stock_new-template.svg │ │ ├── stock_new-text.svg │ │ ├── stock_script.svg │ │ ├── stock_scripts.svg │ │ ├── svg.svg │ │ ├── tar.svg │ │ ├── tcl.svg │ │ ├── tex.svg │ │ ├── text-c-sharp.svg │ │ ├── text-c.svg │ │ ├── text-calendar.svg │ │ ├── text-csharp.svg │ │ ├── text-css.svg │ │ ├── text-csv.svg │ │ ├── text-directory.svg │ │ ├── text-dockerfile.svg │ │ ├── text-enriched-rtl.svg │ │ ├── text-enriched.svg │ │ ├── text-html.svg │ │ ├── text-html_alt.svg │ │ ├── text-htmlh.svg │ │ ├── text-javascript.svg │ │ ├── text-markdown.svg │ │ ├── text-mathml.svg │ │ ├── text-mht.svg │ │ ├── text-plain.svg │ │ ├── text-rdf+xml.svg │ │ ├── text-rdf.svg │ │ ├── text-richtext-rtl.svg │ │ ├── text-richtext.svg │ │ ├── text-rtf.svg │ │ ├── text-rtl.svg │ │ ├── text-rust.svg │ │ ├── text-sgml.svg │ │ ├── text-spreadsheet.svg │ │ ├── text-sqml.svg │ │ ├── text-troff.svg │ │ ├── text-vcalendar.svg │ │ ├── text-vnd.abc.svg │ │ ├── text-vnd.kde.kcrash-report.svg │ │ ├── text-vnd.trolltech.linguist.svg │ │ ├── text-vnd.wap.wml.svg │ │ ├── text-wiki.svg │ │ ├── text-x-adasrc.svg │ │ ├── text-x-apport.svg │ │ ├── text-x-authors.svg │ │ ├── text-x-bak.svg │ │ ├── text-x-bibtex.svg │ │ ├── text-x-c++.svg │ │ ├── text-x-c++hdr.svg │ │ ├── text-x-c++src.svg │ │ ├── text-x-c.svg │ │ ├── text-x-changelog.svg │ │ ├── text-x-chdr.svg │ │ ├── text-x-cmake.svg │ │ ├── text-x-copying.svg │ │ ├── text-x-cpp.svg │ │ ├── text-x-credits.svg │ │ ├── text-x-csharp.svg │ │ ├── text-x-csrc.svg │ │ ├── text-x-css.svg │ │ ├── text-x-dtd.svg │ │ ├── text-x-generic-rtl.svg │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ ├── text-x-generic.svg │ │ ├── text-x-gettext-translation.svg │ │ ├── text-x-go.svg │ │ ├── text-x-haskell.svg │ │ ├── text-x-hex.svg │ │ ├── text-x-install.svg │ │ ├── text-x-java-source.svg │ │ ├── text-x-java.svg │ │ ├── text-x-javascript.svg │ │ ├── text-x-katefilelist.svg │ │ ├── text-x-kotlin.svg │ │ ├── text-x-ldif.svg │ │ ├── text-x-lilypond.svg │ │ ├── text-x-log.svg │ │ ├── text-x-lua.svg │ │ ├── text-x-lyx.svg │ │ ├── text-x-makefile.svg │ │ ├── text-x-markdown.svg │ │ ├── text-x-meson.svg │ │ ├── text-x-microdvd.svg │ │ ├── text-x-nfo.svg │ │ ├── text-x-objchdr.svg │ │ ├── text-x-objcsrc.svg │ │ ├── text-x-opml+xml.svg │ │ ├── text-x-opml.svg │ │ ├── text-x-pascal.svg │ │ ├── text-x-patch.svg │ │ ├── text-x-perl.svg │ │ ├── text-x-php.svg │ │ ├── text-x-plain.svg │ │ ├── text-x-po.svg │ │ ├── text-x-preview.svg │ │ ├── text-x-python.svg │ │ ├── text-x-python3.svg │ │ ├── text-x-qml.svg │ │ ├── text-x-r.svg │ │ ├── text-x-readme.svg │ │ ├── text-x-rpm-spec.svg │ │ ├── text-x-rsrc.svg │ │ ├── text-x-ruby.svg │ │ ├── text-x-rust.svg │ │ ├── text-x-sass.svg │ │ ├── text-x-scala.svg │ │ ├── text-x-script.svg │ │ ├── text-x-scss.svg │ │ ├── text-x-source.svg │ │ ├── text-x-sql.svg │ │ ├── text-x-ssa.svg │ │ ├── text-x-tcl.svg │ │ ├── text-x-tex.svg │ │ ├── text-x-texinfo.svg │ │ ├── text-x-vcard.svg │ │ ├── text-x-xslfo.svg │ │ ├── text-x.svg │ │ ├── text-xhtml+xml.svg │ │ ├── text-xmcd.svg │ │ ├── text-xml.svg │ │ ├── text.svg │ │ ├── text2.svg │ │ ├── tgz.svg │ │ ├── torrent.svg │ │ ├── trash.svg │ │ ├── txt.svg │ │ ├── txt2.svg │ │ ├── unknown.svg │ │ ├── uri-mms.svg │ │ ├── uri-mmst.svg │ │ ├── uri-mmsu.svg │ │ ├── uri-pnm.svg │ │ ├── uri-rtspt.svg │ │ ├── uri-rtspu.svg │ │ ├── vcalendar.svg │ │ ├── vcard.svg │ │ ├── vector.svg │ │ ├── video-mlt-playlist.svg │ │ ├── video-mp2t.svg │ │ ├── video-mp4.svg │ │ ├── video-quicktime.svg │ │ ├── video-vivo.svg │ │ ├── video-vnd.rn-realvideo.svg │ │ ├── video-wavelet.svg │ │ ├── video-webm.svg │ │ ├── video-x-anim.svg │ │ ├── video-x-flic.svg │ │ ├── video-x-flv.svg │ │ ├── video-x-generic.svg │ │ ├── video-x-google-vlc-plugin.svg │ │ ├── video-x-javafx.svg │ │ ├── video-x-matroska.svg │ │ ├── video-x-mng.svg │ │ ├── video-x-ms-asf-plugin.svg │ │ ├── video-x-ms-asf.svg │ │ ├── video-x-ms-wmp.svg │ │ ├── video-x-ms-wmv.svg │ │ ├── video-x-msvideo.svg │ │ ├── video-x-nsv.svg │ │ ├── video-x-ogm+ogg.svg │ │ ├── video-x-sgi-movie.svg │ │ ├── video-x-theora+ogg.svg │ │ ├── video-x-wmv.svg │ │ ├── video.svg │ │ ├── viewbib.svg │ │ ├── viewdvi.svg │ │ ├── viewhtml.svg │ │ ├── viewpdf.svg │ │ ├── viewps.svg │ │ ├── virtualbox-hdd.svg │ │ ├── virtualbox-ova.svg │ │ ├── virtualbox-ovf.svg │ │ ├── virtualbox-vbox-extpack.svg │ │ ├── virtualbox-vbox.svg │ │ ├── virtualbox-vdi.svg │ │ ├── virtualbox-vhd.svg │ │ ├── virtualbox-vmdk.svg │ │ ├── vnd.ms-publisher.svg │ │ ├── vnd.oasis.opendocument.drawing.svg │ │ ├── word.svg │ │ ├── wordprocessing-rtl.svg │ │ ├── wordprocessing.svg │ │ ├── www.svg │ │ ├── x-content-blank-cd.svg │ │ ├── x-kde-nsplugin-generated.svg │ │ ├── x-mail-distribution-list.svg │ │ ├── x-media-podcast.svg │ │ ├── x-office-address-book.svg │ │ ├── x-office-address-book1.svg │ │ ├── x-office-calendar.svg │ │ ├── x-office-contact.svg │ │ ├── x-office-document-rtl.svg │ │ ├── x-office-document.svg │ │ ├── x-office-drawing.svg │ │ ├── x-office-presentation-rtl.svg │ │ ├── x-office-presentation.svg │ │ ├── x-office-spreadsheet.svg │ │ ├── x-world-x-3dmf.svg │ │ ├── xml.svg │ │ └── zip.svg │ ├── panel │ │ ├── 1password-panel-locked.svg │ │ ├── 1password-panel.svg │ │ ├── 5g.svg │ │ ├── QMPlay2-panel.svg │ │ ├── ac-adapter.svg │ │ ├── account-logged-in.svg │ │ ├── acestream-tray.svg │ │ ├── airplane-mode.svg │ │ ├── akonaditray.svg │ │ ├── alarm-clock-panel.svg │ │ ├── alarm-clock-triggered.svg │ │ ├── albert-panel.svg │ │ ├── albert-tray.svg │ │ ├── amd-alto.svg │ │ ├── amd-bajo.svg │ │ ├── amd-medio.svg │ │ ├── anatine-indicator.svg │ │ ├── anatine-notification.svg │ │ ├── android-messages-desktop-tray-unread.svg │ │ ├── android-messages-desktop-tray.svg │ │ ├── antimicro-panel.svg │ │ ├── antimicrox_trayicon.svg │ │ ├── ao-app-tray.svg │ │ ├── application-running.svg │ │ ├── applications-chat-panel.svg │ │ ├── applications-email-panel.svg │ │ ├── audacious-panel.svg │ │ ├── audio-input-microphone-high-panel.svg │ │ ├── audio-input-microphone-high.svg │ │ ├── audio-input-microphone-low-zero-panel.svg │ │ ├── audio-input-microphone-low.svg │ │ ├── audio-input-microphone-medium.svg │ │ ├── audio-input-microphone-muted.svg │ │ ├── audio-input-microphone-none-panel.svg │ │ ├── audio-off.svg │ │ ├── audio-on.svg │ │ ├── audio-output-none-panel.svg │ │ ├── audio-output-none.svg │ │ ├── audio-ready.svg │ │ ├── audio-recorder-off.svg │ │ ├── audio-recorder-on.svg │ │ ├── audio-recorder-paused.svg │ │ ├── audio-volume-high-panel.svg │ │ ├── audio-volume-high-symbolic.svg │ │ ├── audio-volume-high.svg │ │ ├── audio-volume-low-panel.svg │ │ ├── audio-volume-low-symbolic.svg │ │ ├── audio-volume-low-zero-panel.svg │ │ ├── audio-volume-low.svg │ │ ├── audio-volume-medium-panel.svg │ │ ├── audio-volume-medium-symbolic.svg │ │ ├── audio-volume-medium.svg │ │ ├── audio-volume-muted-blocked-panel.svg │ │ ├── audio-volume-muted-blocking-panel.svg │ │ ├── audio-volume-muted-blocking.svg │ │ ├── audio-volume-muted-panel.svg │ │ ├── audio-volume-muted-symbolic.svg │ │ ├── audio-volume-muted.svg │ │ ├── audio-volume-off.svg │ │ ├── autokey-status-error.svg │ │ ├── autokey-status.svg │ │ ├── avatar-default.svg │ │ ├── bad-signal-lock.svg │ │ ├── bad-signal.svg │ │ ├── banshee-panel.svg │ │ ├── barrier-connected.svg │ │ ├── barrier-disconnected.svg │ │ ├── barrier-transfering.svg │ │ ├── battery-000-charging.svg │ │ ├── battery-000.svg │ │ ├── battery-010-charging.svg │ │ ├── battery-010.svg │ │ ├── battery-020-charging.svg │ │ ├── battery-020.svg │ │ ├── battery-030-charging.svg │ │ ├── battery-030.svg │ │ ├── battery-040-charging.svg │ │ ├── battery-040.svg │ │ ├── battery-050-charging.svg │ │ ├── battery-050.svg │ │ ├── battery-060-charging.svg │ │ ├── battery-060.svg │ │ ├── battery-070-charging.svg │ │ ├── battery-070.svg │ │ ├── battery-080-charging.svg │ │ ├── battery-080.svg │ │ ├── battery-090-charging.svg │ │ ├── battery-090.svg │ │ ├── battery-100-charged.svg │ │ ├── battery-100-charging.svg │ │ ├── battery-100.svg │ │ ├── battery-caution-charging-symbolic.svg │ │ ├── battery-caution-charging.svg │ │ ├── battery-caution-symbolic.svg │ │ ├── battery-caution.svg │ │ ├── battery-charged.svg │ │ ├── battery-empty-charging-symbolic.svg │ │ ├── battery-empty-charging.svg │ │ ├── battery-empty-symbolic.svg │ │ ├── battery-empty.svg │ │ ├── battery-full-charged-symbolic.svg │ │ ├── battery-full-charged.svg │ │ ├── battery-full-charging-symbolic.svg │ │ ├── battery-full-charging.svg │ │ ├── battery-full-symbolic.svg │ │ ├── battery-full.svg │ │ ├── battery-good-charging-symbolic.svg │ │ ├── battery-good-charging.svg │ │ ├── battery-good-symbolic.svg │ │ ├── battery-good.svg │ │ ├── battery-low-charging-symbolic.svg │ │ ├── battery-low-charging.svg │ │ ├── battery-low-symbolic.svg │ │ ├── battery-low.svg │ │ ├── battery-medium-charging.svg │ │ ├── battery-medium.svg │ │ ├── battery-missing-symbolic.svg │ │ ├── battery-missing.svg │ │ ├── battery_charged.svg │ │ ├── battery_full.svg │ │ ├── battery_plugged.svg │ │ ├── bitcoin-indicator.svg │ │ ├── bitwarden-tray.svg │ │ ├── blueberry-tray-active.svg │ │ ├── blueberry-tray-disabled.svg │ │ ├── blueberry-tray.svg │ │ ├── blueman-active.svg │ │ ├── blueman-disabled.svg │ │ ├── blueman-tray-active.svg │ │ ├── blueman-tray-disabled.svg │ │ ├── blueman-tray.svg │ │ ├── blueman.svg │ │ ├── bluetooth-active.svg │ │ ├── bluetooth-disabled.svg │ │ ├── bluetooth-offline.svg │ │ ├── bluetooth-online.svg │ │ ├── bluetooth-paired.svg │ │ ├── bomi-panel.svg │ │ ├── both-bad-signal-lock.svg │ │ ├── both-bad-signal.svg │ │ ├── both-good-signal-lock.svg │ │ ├── both-good-signal.svg │ │ ├── both-high-signal-lock.svg │ │ ├── both-high-signal.svg │ │ ├── both-low-signal-lock.svg │ │ ├── both-low-signal.svg │ │ ├── brave-tray.svg │ │ ├── btsync-gui-0.svg │ │ ├── btsync-gui-1.svg │ │ ├── btsync-gui-10.svg │ │ ├── btsync-gui-11.svg │ │ ├── btsync-gui-2.svg │ │ ├── btsync-gui-3.svg │ │ ├── btsync-gui-4.svg │ │ ├── btsync-gui-5.svg │ │ ├── btsync-gui-6.svg │ │ ├── btsync-gui-7.svg │ │ ├── btsync-gui-8.svg │ │ ├── btsync-gui-9.svg │ │ ├── btsync-gui-connecting.svg │ │ ├── btsync-gui-disconnected.svg │ │ ├── btsync-gui-paused.svg │ │ ├── bumblebee-indicator-active.svg │ │ ├── bumblebee-indicator.svg │ │ ├── cadence-panel.svg │ │ ├── caffeine-cup-empty.svg │ │ ├── caffeine-cup-full.svg │ │ ├── calibre-tray.svg │ │ ├── camera-off.svg │ │ ├── camera-on.svg │ │ ├── camera-ready.svg │ │ ├── cantata-panel.svg │ │ ├── caps-lock-off.svg │ │ ├── caps-lock-on.svg │ │ ├── capslock-off.svg │ │ ├── capslock-on.svg │ │ ├── changes-allow.svg │ │ ├── changes-prevent.svg │ │ ├── cisco-tray-connected.svg │ │ ├── cisco-tray-disconnecting.svg │ │ ├── cisco-tray-notconnected.svg │ │ ├── cisco-tray-quarantined.svg │ │ ├── cisco-tray-reconnecting.svg │ │ ├── classicmenu-indicator-dark.svg │ │ ├── classicmenu-indicator.svg │ │ ├── clementine-panel-grey.svg │ │ ├── clementine-panel.svg │ │ ├── clickup-desktop-tray.svg │ │ ├── clipboard.svg │ │ ├── clipit-trayicon-panel.svg │ │ ├── clipman.svg │ │ ├── cloudstatus.svg │ │ ├── com.github.bcedu.vgrive-panel.svg │ │ ├── connect_creating.svg │ │ ├── connect_established.svg │ │ ├── connect_no.svg │ │ ├── copy-error.svg │ │ ├── copy-insync.svg │ │ ├── copy-paused.svg │ │ ├── copy-sync1.svg │ │ ├── copy-sync2.svg │ │ ├── copy-sync3.svg │ │ ├── copy-sync4.svg │ │ ├── copy-sync5.svg │ │ ├── copy-sync6.svg │ │ ├── copy-sync7.svg │ │ ├── copy-sync8.svg │ │ ├── copy-update.svg │ │ ├── copyq-busy.svg │ │ ├── copyq-normal.svg │ │ ├── corectrl-panel.svg │ │ ├── cpod-tray.svg │ │ ├── cpu-frequency-indicator.svg │ │ ├── cpufreq-icon.svg │ │ ├── crow-translate-tray.svg │ │ ├── cryptfolder-closed-light.svg │ │ ├── cryptfolder-indicator-light.svg │ │ ├── cryptfolder-open-light.svg │ │ ├── cryptkeeper.svg │ │ ├── de.haeckerfelix.gradio-symbolic.svg │ │ ├── deadbeef-panel.svg │ │ ├── deltachat-tray.svg │ │ ├── deluge-panel.svg │ │ ├── desktopconnected.svg │ │ ├── desktopdisconnected.svg │ │ ├── desktoptrusted.svg │ │ ├── dialog-password-panel.svg │ │ ├── dino-status-away.svg │ │ ├── dino-status-chat.svg │ │ ├── dino-status-dnd.svg │ │ ├── dino-status-online.svg │ │ ├── diodon-panel.svg │ │ ├── discord-tray-connected.svg │ │ ├── discord-tray-deafened.svg │ │ ├── discord-tray-muted.svg │ │ ├── discord-tray-speaking.svg │ │ ├── discord-tray-unread.svg │ │ ├── discord-tray.svg │ │ ├── disper-panel.svg │ │ ├── dnfdragora.svg │ │ ├── drive-removable-media-usb-panel.svg │ │ ├── dropboxstatus-blank.svg │ │ ├── dropboxstatus-busy.svg │ │ ├── dropboxstatus-busy2.svg │ │ ├── dropboxstatus-idle.svg │ │ ├── dropboxstatus-logo.svg │ │ ├── dropboxstatus-x.svg │ │ ├── electron-mail-tray.svg │ │ ├── element-desktop-tray.svg │ │ ├── empathy-available.svg │ │ ├── empathy-away.svg │ │ ├── empathy-busy.svg │ │ ├── empathy-extended-away.svg │ │ ├── empathy-invisible.svg │ │ ├── empathy-offline.svg │ │ ├── enpass-status.svg │ │ ├── everpad-mono.svg │ │ ├── exaile-pause.svg │ │ ├── exaile-play.svg │ │ ├── face-smile-panel.svg │ │ ├── fcitx-anthy-panel.svg │ │ ├── fcitx-bopomofo-panel.svg │ │ ├── fcitx-cangjie-panel.svg │ │ ├── fcitx-chewing-panel.svg │ │ ├── fcitx-erbi-panel.svg │ │ ├── fcitx-googlepinyin-panel.svg │ │ ├── fcitx-hangul-panel.svg │ │ ├── fcitx-kbd-panel.svg │ │ ├── fcitx-kkc-panel.svg │ │ ├── fcitx-panel.svg │ │ ├── fcitx-pinyin-libpinyin-panel.svg │ │ ├── fcitx-pinyin-panel.svg │ │ ├── fcitx-rime-panel.svg │ │ ├── fcitx-sayura-panel.svg │ │ ├── fcitx-shuangpin-libpinyin-panel.svg │ │ ├── fcitx-shuangpin-panel.svg │ │ ├── fcitx-skk-panel.svg │ │ ├── fcitx-sunpinyin-panel.svg │ │ ├── fcitx-unikey-panel.svg │ │ ├── fcitx-wbpy.svg │ │ ├── fcitx-wubi-panel.svg │ │ ├── fcitx-zhuyin-panel.svg │ │ ├── fcitx-ziranma-panel.svg │ │ ├── feedindicator-active.svg │ │ ├── feedindicator-attention.svg │ │ ├── file-manager.svg │ │ ├── firewall-applet-error.svg │ │ ├── firewall-applet-panic.svg │ │ ├── firewall-applet.svg │ │ ├── flameshot-tray.svg │ │ ├── flameshot.svg │ │ ├── flareget-panel.svg │ │ ├── fluxgui-light.svg │ │ ├── fluxgui-panel.svg │ │ ├── franz-attention-panel.svg │ │ ├── franz-panel.svg │ │ ├── fusion-icon-panel.svg │ │ ├── gammastep-status-off.svg │ │ ├── gammastep-status-on.svg │ │ ├── gdlauncher-tray.svg │ │ ├── gitify-tray-active.svg │ │ ├── gitify-tray.svg │ │ ├── gitlab-tray.svg │ │ ├── gitter-indicator-disconnected.svg │ │ ├── gitter-indicator-notification.svg │ │ ├── gitter-indicator.svg │ │ ├── glipper.svg │ │ ├── gmail-tray-unread.svg │ │ ├── gmail-tray.svg │ │ ├── gnome-netstatus-disconn.svg │ │ ├── gnome-netstatus-error.svg │ │ ├── gnome-netstatus-idle.svg │ │ ├── gnome-netstatus-rx.svg │ │ ├── gnome-netstatus-tx.svg │ │ ├── gnome-netstatus-txrx.svg │ │ ├── gnome-pie-symbolic.svg │ │ ├── gnote-panel.svg │ │ ├── goldendict-scan-tray.svg │ │ ├── goldendict-tray.svg │ │ ├── good-signal-lock.svg │ │ ├── good-signal.svg │ │ ├── google-chrome-no-notification-disabled.svg │ │ ├── google-chrome-no-notification.svg │ │ ├── google-chrome-notification-disabled.svg │ │ ├── google-chrome-notification.svg │ │ ├── google-chrome-panel.svg │ │ ├── google-chrome-tray.svg │ │ ├── google-hangouts-panel.svg │ │ ├── google-music-manager-panel.svg │ │ ├── google-tasks-indicator-light-normal.svg │ │ ├── google-tasks-indicator-light-starred.svg │ │ ├── gpaste.svg │ │ ├── gpm-ac-adapter.svg │ │ ├── gpm-battery-000-charging.svg │ │ ├── gpm-battery-000.svg │ │ ├── gpm-battery-020-charging.svg │ │ ├── gpm-battery-020.svg │ │ ├── gpm-battery-040-charging.svg │ │ ├── gpm-battery-040.svg │ │ ├── gpm-battery-060-charging.svg │ │ ├── gpm-battery-060.svg │ │ ├── gpm-battery-080-charging.svg │ │ ├── gpm-battery-080.svg │ │ ├── gpm-battery-100-charging.svg │ │ ├── gpm-battery-100.svg │ │ ├── gpm-battery-charged.svg │ │ ├── gpm-battery-empty.svg │ │ ├── gpm-battery-missing.svg │ │ ├── gpm-brightness-kbd-disabled.svg │ │ ├── gpm-brightness-kbd-invalid.svg │ │ ├── gpm-brightness-kbd.svg │ │ ├── gpm-brightness-lcd-disabled.svg │ │ ├── gpm-brightness-lcd-invalid.svg │ │ ├── gpm-brightness-lcd.svg │ │ ├── gpm-hibernate.svg │ │ ├── gpm-inhibit-invalid.svg │ │ ├── gpm-inhibit.svg │ │ ├── gpm-keyboard-000.svg │ │ ├── gpm-keyboard-020.svg │ │ ├── gpm-keyboard-040.svg │ │ ├── gpm-keyboard-060.svg │ │ ├── gpm-keyboard-080.svg │ │ ├── gpm-keyboard-100.svg │ │ ├── gpm-monitor.svg │ │ ├── gpm-mouse-000.svg │ │ ├── gpm-mouse-020.svg │ │ ├── gpm-mouse-040.svg │ │ ├── gpm-mouse-060.svg │ │ ├── gpm-mouse-080.svg │ │ ├── gpm-mouse-100.svg │ │ ├── gpm-phone-000.svg │ │ ├── gpm-phone-020.svg │ │ ├── gpm-phone-040.svg │ │ ├── gpm-phone-060.svg │ │ ├── gpm-phone-080.svg │ │ ├── gpm-phone-100.svg │ │ ├── gpm-primary-000-charging.svg │ │ ├── gpm-primary-000.svg │ │ ├── gpm-primary-020-charging.svg │ │ ├── gpm-primary-020.svg │ │ ├── gpm-primary-040-charging.svg │ │ ├── gpm-primary-040.svg │ │ ├── gpm-primary-060-charging.svg │ │ ├── gpm-primary-060.svg │ │ ├── gpm-primary-080-charging.svg │ │ ├── gpm-primary-080.svg │ │ ├── gpm-primary-100-charging.svg │ │ ├── gpm-primary-100.svg │ │ ├── gpm-primary-charged.svg │ │ ├── gpm-primary-missing.svg │ │ ├── gpm-ups-000-charging.svg │ │ ├── gpm-ups-000.svg │ │ ├── gpm-ups-020-charging.svg │ │ ├── gpm-ups-020.svg │ │ ├── gpm-ups-040-charging.svg │ │ ├── gpm-ups-040.svg │ │ ├── gpm-ups-060-charging.svg │ │ ├── gpm-ups-060.svg │ │ ├── gpm-ups-080-charging.svg │ │ ├── gpm-ups-080.svg │ │ ├── gpm-ups-100-charging.svg │ │ ├── gpm-ups-100.svg │ │ ├── gpm-ups-charged.svg │ │ ├── gpm-ups-missing.svg │ │ ├── gpmdp-tray-pause.svg │ │ ├── gpmdp-tray-play.svg │ │ ├── gpmdp-tray.svg │ │ ├── grive-app-ind-con-1.svg │ │ ├── grive-app-ind-con-2.svg │ │ ├── grive-app-ind-con-3.svg │ │ ├── grive-app-ind-sleep.svg │ │ ├── grive-app-ind.svg │ │ ├── gsd-xrandr.svg │ │ ├── gsm-3g-full-secure.svg │ │ ├── gsm-3g-full.svg │ │ ├── gsm-3g-high-secure.svg │ │ ├── gsm-3g-high.svg │ │ ├── gsm-3g-low-secure.svg │ │ ├── gsm-3g-low.svg │ │ ├── gsm-3g-medium-secure.svg │ │ ├── gsm-3g-medium.svg │ │ ├── gsm-3g-none-secure.svg │ │ ├── gsm-3g-none.svg │ │ ├── gtg-panel.svg │ │ ├── gtk-dialog-authentication-panel.svg │ │ ├── guake-indicator.svg │ │ ├── guake-tray.svg │ │ ├── guitarix-tray.svg │ │ ├── haguichi-connected.svg │ │ ├── haguichi-connecting-1.svg │ │ ├── haguichi-connecting-2.svg │ │ ├── haguichi-connecting-3.svg │ │ ├── haguichi-disconnected.svg │ │ ├── hangouts-available.svg │ │ ├── hangouts-notification.svg │ │ ├── hangouts-offline.svg │ │ ├── hangouts-working.svg │ │ ├── harmony-tray.svg │ │ ├── hexchat-fileoffer.svg │ │ ├── hexchat-highlight.svg │ │ ├── hexchat-indicator.svg │ │ ├── hexchat-message.svg │ │ ├── high-signal-lock.svg │ │ ├── high-signal.svg │ │ ├── hipchat4-attention.svg │ │ ├── hipchat4.svg │ │ ├── hp-indicator.svg │ │ ├── idle-bad-signal-lock.svg │ │ ├── idle-bad-signal.svg │ │ ├── idle-good-signal-lock.svg │ │ ├── idle-good-signal.svg │ │ ├── idle-high-signal-lock.svg │ │ ├── idle-high-signal.svg │ │ ├── idle-low-signal-lock.svg │ │ ├── idle-low-signal.svg │ │ ├── indicator-cpufreq-100.svg │ │ ├── indicator-cpufreq-25.svg │ │ ├── indicator-cpufreq-50.svg │ │ ├── indicator-cpufreq-75.svg │ │ ├── indicator-cpufreq.svg │ │ ├── indicator-feedindicator-attention.svg │ │ ├── indicator-feedindicator.svg │ │ ├── indicator-fortune.svg │ │ ├── indicator-keyboard.svg │ │ ├── indicator-lunar-satelite.svg │ │ ├── indicator-lunar.svg │ │ ├── indicator-messages-new.svg │ │ ├── indicator-messages-red.svg │ │ ├── indicator-messages.svg │ │ ├── indicator-notification-read-dnd.svg │ │ ├── indicator-notification-read.svg │ │ ├── indicator-notification-unread-dnd.svg │ │ ├── indicator-notification-unread.svg │ │ ├── indicator-privacy-panel.svg │ │ ├── indicator-rss-aware-attention.svg │ │ ├── indicator-rss-aware.svg │ │ ├── indicator-sensors-battery.svg │ │ ├── indicator-sensors-case.svg │ │ ├── indicator-sensors-chip.svg │ │ ├── indicator-sensors-cpu.svg │ │ ├── indicator-sensors-disk.svg │ │ ├── indicator-sensors-fan.svg │ │ ├── indicator-sensors-gpu.svg │ │ ├── indicator-sensors-memory.svg │ │ ├── indicator-sound-switcher.svg │ │ ├── indicator-stardate.svg │ │ ├── indicator-stickynotes-mono.svg │ │ ├── indicator-trashindicator-attention.svg │ │ ├── indicator-trashindicator.svg │ │ ├── indicator-virtual-box.svg │ │ ├── indicator-workspaces-1.svg │ │ ├── indicator-workspaces-2.svg │ │ ├── indicator-workspaces-3.svg │ │ ├── indicator-workspaces-4.svg │ │ ├── indicator-workspaces-5.svg │ │ ├── indicator-workspaces-6.svg │ │ ├── indicator-workspaces-7.svg │ │ ├── indicator-workspaces-8.svg │ │ ├── input-caps-on.svg │ │ ├── input-keyboard-virtual-off.svg │ │ ├── input-keyboard-virtual-on.svg │ │ ├── input-keyboard.svg │ │ ├── input-touchpad-off.svg │ │ ├── input-touchpad-on.svg │ │ ├── insync-action.svg │ │ ├── insync-error.svg │ │ ├── insync-feed.svg │ │ ├── insync-normal.svg │ │ ├── insync-offline.svg │ │ ├── insync-paused.svg │ │ ├── insync-share.svg │ │ ├── insync-synced.svg │ │ ├── insync-syncing.svg │ │ ├── irc-channel-joined.svg │ │ ├── irc-channel-parted.svg │ │ ├── irccloud-desktop-tray.svg │ │ ├── jdownloader-indicator.svg │ │ ├── joplin-tray.svg │ │ ├── kaku-tray.svg │ │ ├── kazam-countdown.svg │ │ ├── kazam-paused.svg │ │ ├── kazam-recording.svg │ │ ├── kazam-stopped.svg │ │ ├── kdeconnectindicatordark.svg │ │ ├── keepassx-indicator.svg │ │ ├── keepassx-locked.svg │ │ ├── keepassxc-dark.svg │ │ ├── keepassxc-locked.svg │ │ ├── keepassxc-monochrome-dark-locked.svg │ │ ├── keepassxc-monochrome-dark.svg │ │ ├── keepassxc-monochrome-light-locked.svg │ │ ├── keepassxc-monochrome-light.svg │ │ ├── keepassxc-panel.svg │ │ ├── keepassxc-unlocked.svg │ │ ├── keybase-badged-error.svg │ │ ├── keybase-badged-uploading.svg │ │ ├── keybase-badged.svg │ │ ├── keybase-error.svg │ │ ├── keybase-tray.svg │ │ ├── keybase-update.svg │ │ ├── keybase-uploading.svg │ │ ├── keyboard-battery-caution.svg │ │ ├── keyboard-battery-empty.svg │ │ ├── keyboard-battery-full.svg │ │ ├── keyboard-battery-good.svg │ │ ├── keyboard-battery-low.svg │ │ ├── keyboard-battery-medium.svg │ │ ├── knemo-modem-error.svg │ │ ├── knemo-modem-idle.svg │ │ ├── knemo-modem-offline.svg │ │ ├── knemo-modem-receive.svg │ │ ├── knemo-modem-transmit-receive.svg │ │ ├── knemo-modem-transmit.svg │ │ ├── knemo-monitor-error.svg │ │ ├── knemo-monitor-idle.svg │ │ ├── knemo-monitor-offline.svg │ │ ├── knemo-monitor-receive.svg │ │ ├── knemo-monitor-transmit-receive.svg │ │ ├── knemo-monitor-transmit.svg │ │ ├── knemo-network-error.svg │ │ ├── knemo-network-idle.svg │ │ ├── knemo-network-offline.svg │ │ ├── knemo-network-receive.svg │ │ ├── knemo-network-transmit-receive.svg │ │ ├── knemo-network-transmit.svg │ │ ├── knemo-wireless-error.svg │ │ ├── knemo-wireless-idle.svg │ │ ├── knemo-wireless-offline.svg │ │ ├── knemo-wireless-receive.svg │ │ ├── knemo-wireless-transmit-receive.svg │ │ ├── knemo-wireless-transmit.svg │ │ ├── kotatogram-attention-panel.svg │ │ ├── kotatogram-mute-panel.svg │ │ ├── kotatogram-panel.svg │ │ ├── krb-expiring-ticket.svg │ │ ├── krb-no-valid-ticket.svg │ │ ├── krb-valid-ticket.svg │ │ ├── krudiotray-light-off16.svg │ │ ├── krudiotray-light-on16.svg │ │ ├── ladi-started.svg │ │ ├── ladi-starting.svg │ │ ├── ladi-stopped.svg │ │ ├── laptop-connected.svg │ │ ├── laptop-disconnected.svg │ │ ├── laptop-trusted.svg │ │ ├── laptopattention.svg │ │ ├── laptopconnected.svg │ │ ├── laptopdisconnected.svg │ │ ├── laptoptrusted.svg │ │ ├── liferea-available.svg │ │ ├── liferea-unread.svg │ │ ├── listen.moe-desktop-app-tray.svg │ │ ├── livewallpaper-indicator.svg │ │ ├── lookit-panel.svg │ │ ├── low-signal-lock.svg │ │ ├── low-signal.svg │ │ ├── lutris-panel.svg │ │ ├── lyricfier-tray.svg │ │ ├── mailspring-tray-empty.svg │ │ ├── mailspring-tray-full-newitems.svg │ │ ├── mailspring-tray-full.svg │ │ ├── manjaro-settings-manager-panel.svg │ │ ├── manjaro-settings-manager.svg │ │ ├── manjaro-welcome.svg │ │ ├── manjaro.svg │ │ ├── mate-sensors-applet-battery.svg │ │ ├── mate-sensors-applet-case.svg │ │ ├── mate-sensors-applet-chip.svg │ │ ├── mate-sensors-applet-cpu.svg │ │ ├── mate-sensors-applet-drive-harddisk.svg │ │ ├── mate-sensors-applet-fan.svg │ │ ├── mate-sensors-applet-gpu.svg │ │ ├── mate-sensors-applet-memory.svg │ │ ├── megalogging.svg │ │ ├── megapaused.svg │ │ ├── megasynching.svg │ │ ├── megauptodate.svg │ │ ├── megawarning.svg │ │ ├── mellowplayer-panel.svg │ │ ├── messenger-indicator.svg │ │ ├── messenger-notification.svg │ │ ├── mic-off.svg │ │ ├── mic-on.svg │ │ ├── mic-ready.svg │ │ ├── mic-volume-high.svg │ │ ├── mic-volume-low.svg │ │ ├── mic-volume-medium.svg │ │ ├── mic-volume-muted.svg │ │ ├── microphone-sensitivity-high.svg │ │ ├── microphone-sensitivity-low.svg │ │ ├── microphone-sensitivity-medium.svg │ │ ├── microphone-sensitivity-muted.svg │ │ ├── minetime-tray.svg │ │ ├── mini-calendar.svg │ │ ├── mintupdate-checking.svg │ │ ├── mintupdate-error.svg │ │ ├── mintupdate-installing.svg │ │ ├── mintupdate-up-to-date.svg │ │ ├── mintupdate-updates-available.svg │ │ ├── mnotify-none-wireframe.svg │ │ ├── mnotify-some-wireframe.svg │ │ ├── mntray-news.svg │ │ ├── mntray-regular.svg │ │ ├── motrix-tray-active.svg │ │ ├── motrix-tray.svg │ │ ├── mouse-battery-caution.svg │ │ ├── mouse-battery-empty.svg │ │ ├── mouse-battery-full.svg │ │ ├── mouse-battery-good.svg │ │ ├── mouse-battery-low.svg │ │ ├── mouse-battery-medium.svg │ │ ├── msd-xrandr.svg │ │ ├── mstdn-panel.svg │ │ ├── mullvad-tray-1.svg │ │ ├── mullvad-tray-10.svg │ │ ├── mullvad-tray-2.svg │ │ ├── mullvad-tray-3.svg │ │ ├── mullvad-tray-4.svg │ │ ├── mullvad-tray-5.svg │ │ ├── mullvad-tray-6.svg │ │ ├── mullvad-tray-7.svg │ │ ├── mullvad-tray-8.svg │ │ ├── mullvad-tray-9.svg │ │ ├── mumble-indicator.svg │ │ ├── museeks-tray.svg │ │ ├── museeq-offline.svg │ │ ├── museeq-panel.svg │ │ ├── mynotes-tray.svg │ │ ├── network-cellular-3g.svg │ │ ├── network-cellular-4g.svg │ │ ├── network-cellular-acquiring.svg │ │ ├── network-cellular-cdma-1x.svg │ │ ├── network-cellular-connected.svg │ │ ├── network-cellular-edge.svg │ │ ├── network-cellular-evdo.svg │ │ ├── network-cellular-gprs.svg │ │ ├── network-cellular-hspa.svg │ │ ├── network-cellular-no-route.svg │ │ ├── network-cellular-offline.svg │ │ ├── network-cellular-secure-signal-excellent.svg │ │ ├── network-cellular-secure-signal-good.svg │ │ ├── network-cellular-secure-signal-low.svg │ │ ├── network-cellular-secure-signal-none.svg │ │ ├── network-cellular-secure-signal-ok.svg │ │ ├── network-cellular-secure-signal-weak.svg │ │ ├── network-cellular-signal-acquiring.svg │ │ ├── network-cellular-signal-excellent.svg │ │ ├── network-cellular-signal-good.svg │ │ ├── network-cellular-signal-low.svg │ │ ├── network-cellular-signal-none.svg │ │ ├── network-cellular-signal-ok.svg │ │ ├── network-cellular-signal-weak.svg │ │ ├── network-cellular-umts.svg │ │ ├── network-disconnected.svg │ │ ├── network-error.svg │ │ ├── network-idle.svg │ │ ├── network-offline.svg │ │ ├── network-receive.svg │ │ ├── network-transmit-receive.svg │ │ ├── network-transmit.svg │ │ ├── network-vpn-acquiring.svg │ │ ├── network-vpn.svg │ │ ├── network-wired-acquiring.svg │ │ ├── network-wired-no-route.svg │ │ ├── network-wired-offline.svg │ │ ├── network-wired-secure.svg │ │ ├── network-wired.svg │ │ ├── network-wireless-acquiring.svg │ │ ├── network-wireless-connected-00.svg │ │ ├── network-wireless-connected-100.svg │ │ ├── network-wireless-connected-25.svg │ │ ├── network-wireless-connected-50.svg │ │ ├── network-wireless-connected-75.svg │ │ ├── network-wireless-connected.svg │ │ ├── network-wireless-disconnected.svg │ │ ├── network-wireless-encrypted.svg │ │ ├── network-wireless-hotspot.svg │ │ ├── network-wireless-no-route.svg │ │ ├── network-wireless-offline.svg │ │ ├── network-wireless-secure-signal-excellent.svg │ │ ├── network-wireless-secure-signal-good.svg │ │ ├── network-wireless-secure-signal-low.svg │ │ ├── network-wireless-secure-signal-none.svg │ │ ├── network-wireless-secure-signal-ok.svg │ │ ├── network-wireless-signal-excellent.svg │ │ ├── network-wireless-signal-good.svg │ │ ├── network-wireless-signal-low.svg │ │ ├── network-wireless-signal-none.svg │ │ ├── network-wireless-signal-ok.svg │ │ ├── network-wireless-signal-weak.svg │ │ ├── new-messages-red.svg │ │ ├── nitroshare-indicator.svg │ │ ├── nixnote2-tray.svg │ │ ├── nm-adhoc.svg │ │ ├── nm-device-wired-autoip.svg │ │ ├── nm-device-wired-secure.svg │ │ ├── nm-device-wired-secureoffline.svg │ │ ├── nm-device-wired.svg │ │ ├── nm-device-wireless.svg │ │ ├── nm-device-wwan.svg │ │ ├── nm-mb-roam.svg │ │ ├── nm-no-connection.svg │ │ ├── nm-secure-lock.svg │ │ ├── nm-signal-0-secure.svg │ │ ├── nm-signal-0.svg │ │ ├── nm-signal-00-secure.svg │ │ ├── nm-signal-00.svg │ │ ├── nm-signal-100-secure.svg │ │ ├── nm-signal-100.svg │ │ ├── nm-signal-25-secure.svg │ │ ├── nm-signal-25.svg │ │ ├── nm-signal-50-secure.svg │ │ ├── nm-signal-50.svg │ │ ├── nm-signal-75-secure.svg │ │ ├── nm-signal-75.svg │ │ ├── nm-tech-3g.svg │ │ ├── nm-tech-4g.svg │ │ ├── nm-tech-cdma-1x.svg │ │ ├── nm-tech-edge.svg │ │ ├── nm-tech-evdo.svg │ │ ├── nm-tech-gprs.svg │ │ ├── nm-tech-hspa.svg │ │ ├── nm-tech-lte.svg │ │ ├── nm-tech-umts.svg │ │ ├── nm-vpn-active-lock.svg │ │ ├── nm-vpn-lock.svg │ │ ├── nm-vpn-standalone-lock.svg │ │ ├── nm-wwan-tower.svg │ │ ├── no-signal.svg │ │ ├── nomachine-disabled.svg │ │ ├── nomachine-indicator.svg │ │ ├── notes-panel.svg │ │ ├── nozbe-tray.svg │ │ ├── num-lock-off.svg │ │ ├── num-lock-on.svg │ │ ├── numlock-off.svg │ │ ├── numlock-on.svg │ │ ├── nutstore-offline-panel.svg │ │ ├── nutstore-oops-panel.svg │ │ ├── nutstore-panel.svg │ │ ├── nutstore-paused-panel.svg │ │ ├── nutstore-synchronized-panel.svg │ │ ├── nutstore-synchronizing-panel.svg │ │ ├── nylas-tray-empty.svg │ │ ├── nylas-tray-full-newitems.svg │ │ ├── nylas-tray-full.svg │ │ ├── obs-tray-active.svg │ │ ├── obs-tray.svg │ │ ├── octopi-error.svg │ │ ├── octopi-indicator.svg │ │ ├── octopi-info.svg │ │ ├── octopi-ok.svg │ │ ├── odrive-tray-grey.svg │ │ ├── odrive-tray-sync.svg │ │ ├── odrive-tray.svg │ │ ├── onboard-mono.svg │ │ ├── onboard-panel.svg │ │ ├── openbazaar-system-tray.svg │ │ ├── opensnitch-tray-alert.svg │ │ ├── opensnitch-tray-off.svg │ │ ├── opensnitch-tray-pause.svg │ │ ├── opensnitch-tray-red.svg │ │ ├── opensnitch-tray.svg │ │ ├── optimus-tray-intel-symbolic.svg │ │ ├── optimus-tray-intel.svg │ │ ├── optimus-tray-nvidia-symbolic.svg │ │ ├── optimus-tray-nvidia.svg │ │ ├── org.nicotine_plus.Nicotine-away.svg │ │ ├── org.nicotine_plus.Nicotine-connect.svg │ │ ├── org.nicotine_plus.Nicotine-disconnect.svg │ │ ├── org.nicotine_plus.Nicotine-msg.svg │ │ ├── org.sparkleshare.SparkleShare-syncing-down.svg │ │ ├── org.sparkleshare.SparkleShare-syncing-error.svg │ │ ├── org.sparkleshare.SparkleShare-syncing-up.svg │ │ ├── org.sparkleshare.SparkleShare-syncing.svg │ │ ├── overgrive-app-ind-con-1.svg │ │ ├── overgrive-app-ind-con-2.svg │ │ ├── overgrive-app-ind-con-3.svg │ │ ├── overgrive-app-ind-sleep.svg │ │ ├── overgrive-app-ind.svg │ │ ├── package-available-locked.svg │ │ ├── package-available.svg │ │ ├── package-broken.svg │ │ ├── package-downgrade.svg │ │ ├── package-install.svg │ │ ├── package-installed-locked.svg │ │ ├── package-installed-outdated.svg │ │ ├── package-installed-updated.svg │ │ ├── package-new.svg │ │ ├── package-purge.svg │ │ ├── package-reinstall.svg │ │ ├── package-remove.svg │ │ ├── package-supported.svg │ │ ├── package-upgrade.svg │ │ ├── pamac-tray-no-update.svg │ │ ├── pamac-tray-update.svg │ │ ├── pcloud-offline.svg │ │ ├── pcloud-ok.svg │ │ ├── pcloud-pause.svg │ │ ├── pcloud-sync.svg │ │ ├── pcloud-warning.svg │ │ ├── persepolis-tray.svg │ │ ├── phone-battery-caution.svg │ │ ├── phone-battery-empty.svg │ │ ├── phone-battery-full.svg │ │ ├── phone-battery-good.svg │ │ ├── phone-battery-low.svg │ │ ├── phone-battery-medium.svg │ │ ├── pia_tray_connected.svg │ │ ├── pia_tray_connecting.svg │ │ ├── pia_tray_disconnected.svg │ │ ├── pidgin-tray-available.svg │ │ ├── pidgin-tray-away.svg │ │ ├── pidgin-tray-busy.svg │ │ ├── pidgin-tray-connect.svg │ │ ├── pidgin-tray-invisible.svg │ │ ├── pidgin-tray-offline.svg │ │ ├── pidgin-tray-pending.svg │ │ ├── pidgin-tray-xa.svg │ │ ├── pithos-tray-icon.svg │ │ ├── pithos-tray-plugin.svg │ │ ├── pocket-casts-tray.svg │ │ ├── pomodoneapp-break.svg │ │ ├── pomodoneapp-indicator.svg │ │ ├── pomodoneapp-paused.svg │ │ ├── pomodoneapp-started.svg │ │ ├── pomodoro-indicator-light-00.svg │ │ ├── pomodoro-indicator-light-01.svg │ │ ├── pomodoro-indicator-light-02.svg │ │ ├── pomodoro-indicator-light-03.svg │ │ ├── pomodoro-indicator-light-04.svg │ │ ├── pomodoro-indicator-light-05.svg │ │ ├── pomodoro-indicator-light-06.svg │ │ ├── pomodoro-indicator-light-07.svg │ │ ├── pomodoro-indicator-light-08.svg │ │ ├── pomodoro-indicator-light-09.svg │ │ ├── pomodoro-indicator-light-10.svg │ │ ├── pomodoro-indicator-light-11.svg │ │ ├── pomodoro-indicator-light-12.svg │ │ ├── pomodoro-indicator-light-13.svg │ │ ├── pomodoro-indicator-light-14.svg │ │ ├── pomodoro-indicator-light-15.svg │ │ ├── pomodoro-indicator-light-16.svg │ │ ├── pomodoro-indicator-light-17.svg │ │ ├── pomodoro-indicator-light-18.svg │ │ ├── pomodoro-indicator-light-19.svg │ │ ├── pomodoro-indicator-light-20.svg │ │ ├── pomodoro-indicator-light-21.svg │ │ ├── pomodoro-indicator-light-22.svg │ │ ├── pomodoro-indicator-light-23.svg │ │ ├── pomodoro-indicator-light-24.svg │ │ ├── pomodoro-indicator-light-25.svg │ │ ├── pomodoro-indicator-light-26.svg │ │ ├── pomodoro-indicator-light-27.svg │ │ ├── pomodoro-indicator-light-28.svg │ │ ├── pomodoro-indicator-light-29.svg │ │ ├── pomodoro-indicator-light-30.svg │ │ ├── pomodoro-indicator-light-31.svg │ │ ├── pomodoro-indicator-light-32.svg │ │ ├── pomodoro-indicator-light-33.svg │ │ ├── pomodoro-indicator-light-34.svg │ │ ├── pomodoro-indicator-light-35.svg │ │ ├── pomodoro-indicator-light-36.svg │ │ ├── pomodoro-indicator-light-37.svg │ │ ├── pomodoro-indicator-light-38.svg │ │ ├── pomodoro-indicator-light-39.svg │ │ ├── pomodoro-indicator-light-40.svg │ │ ├── pomodoro-indicator-light-41.svg │ │ ├── pomodoro-indicator-light-42.svg │ │ ├── pomodoro-indicator-light-43.svg │ │ ├── pomodoro-indicator-light-44.svg │ │ ├── pomodoro-indicator-light-45.svg │ │ ├── pomodoro-indicator-light-46.svg │ │ ├── pomodoro-indicator-light-47.svg │ │ ├── pomodoro-indicator-light-48.svg │ │ ├── pomodoro-indicator-light-49.svg │ │ ├── pomodoro-indicator-light-50.svg │ │ ├── pomodoro-indicator-light-51.svg │ │ ├── pomodoro-indicator-light-52.svg │ │ ├── pomodoro-indicator-light-53.svg │ │ ├── pomodoro-indicator-light-54.svg │ │ ├── pomodoro-indicator-light-55.svg │ │ ├── pomodoro-indicator-light-56.svg │ │ ├── pomodoro-indicator-light-57.svg │ │ ├── pomodoro-indicator-light-58.svg │ │ ├── pomodoro-indicator-light-59.svg │ │ ├── pomodoro-indicator-light-60.svg │ │ ├── pomodoro-indicator-light-61.svg │ │ ├── pomodoro-start-light.svg │ │ ├── pomodoro-stop-light.svg │ │ ├── popcorntime-tray.svg │ │ ├── pragha-panel.svg │ │ ├── preferences-desktop-accessibility-panel.svg │ │ ├── preferences-system-bluetooth-active.svg │ │ ├── preferences-system-bluetooth-inactive.svg │ │ ├── premid-tray.svg │ │ ├── prime-hybrid.svg │ │ ├── prime-intel.svg │ │ ├── prime-nvidia.svg │ │ ├── process-syncing-down.svg │ │ ├── process-syncing-error.svg │ │ ├── process-syncing-idle.svg │ │ ├── process-syncing-up.svg │ │ ├── process-syncing.svg │ │ ├── protonmail-indicator.svg │ │ ├── protonmail-notification.svg │ │ ├── protonvpn-tray.svg │ │ ├── psensor_hot.svg │ │ ├── psensor_normal.svg │ │ ├── pushbullet-indicator-disabled.svg │ │ ├── pushbullet-indicator-light.svg │ │ ├── pushbullet-indicator-paused.svg │ │ ├── pushbullet-indicator-sync0-light.svg │ │ ├── pushbullet-indicator-sync1-light.svg │ │ ├── pushbullet-indicator-sync2-light.svg │ │ ├── pushbullet-indicator-sync3-light.svg │ │ ├── pushbullet-indicator-transparent.svg │ │ ├── pushbullet-indicator.svg │ │ ├── qalculate-tray.svg │ │ ├── qbittorrent-panel.svg │ │ ├── qbittorrent-tray-dark.svg │ │ ├── qbittorrent-tray-light.svg │ │ ├── qbittorrent-tray.svg │ │ ├── qelectrotech-indicator.svg │ │ ├── qjoypad-tray.svg │ │ ├── qnapi-panel.svg │ │ ├── qomp-pause-panel.svg │ │ ├── qomp-play-panel.svg │ │ ├── qomp-stop-panel.svg │ │ ├── qtox-away.svg │ │ ├── qtox-busy.svg │ │ ├── qtox-event.svg │ │ ├── qtox-invisible.svg │ │ ├── qtox-offline.svg │ │ ├── qtox-online.svg │ │ ├── qtpass-tray.svg │ │ ├── quota.svg │ │ ├── radiotray-ng-off.svg │ │ ├── radiotray-ng-on.svg │ │ ├── radiotray_connecting.svg │ │ ├── radiotray_off.svg │ │ ├── radiotray_on.svg │ │ ├── rambox-indicator.svg │ │ ├── rambox-notification.svg │ │ ├── rclonetray-connected-tray.svg │ │ ├── rclonetray-tray.svg │ │ ├── receiving-bad-signal-lock.svg │ │ ├── receiving-bad-signal.svg │ │ ├── receiving-good-signal-lock.svg │ │ ├── receiving-good-signal.svg │ │ ├── receiving-high-signal-lock.svg │ │ ├── receiving-high-signal.svg │ │ ├── receiving-low-signal-lock.svg │ │ ├── receiving-low-signal.svg │ │ ├── record-desktop-indicator-recording.svg │ │ ├── record-desktop-indicator.svg │ │ ├── redshift-status-off.svg │ │ ├── redshift-status-on.svg │ │ ├── remmina-panel.svg │ │ ├── remote-folder-sync-down.svg │ │ ├── remote-folder-sync-up.svg │ │ ├── remote-folder-sync.svg │ │ ├── rescuetime-indicator.svg │ │ ├── rescuetime-offline.svg │ │ ├── rhythmbox-indicator.svg │ │ ├── rhythmbox-notplaying.svg │ │ ├── rhythmbox-panel.svg │ │ ├── rhythmbox-playing.svg │ │ ├── riot-tray.svg │ │ ├── rocketchat-tray-1.svg │ │ ├── rocketchat-tray-2.svg │ │ ├── rocketchat-tray-3.svg │ │ ├── rocketchat-tray-4.svg │ │ ├── rocketchat-tray-5.svg │ │ ├── rocketchat-tray-6.svg │ │ ├── rocketchat-tray-7.svg │ │ ├── rocketchat-tray-8.svg │ │ ├── rocketchat-tray-9-plus.svg │ │ ├── rocketchat-tray-9.svg │ │ ├── rocketchat-tray-alert.svg │ │ ├── rocketchat-tray-dot.svg │ │ ├── rocketchat-tray.svg │ │ ├── rsibreak0.svg │ │ ├── rsibreak1.svg │ │ ├── rsibreak2.svg │ │ ├── rsibreak3.svg │ │ ├── rsibreak4.svg │ │ ├── rsibreakx.svg │ │ ├── rto-proxy-tray.svg │ │ ├── safeeyes_disabled.svg │ │ ├── safeeyes_enabled.svg │ │ ├── scc-alive.svg │ │ ├── scc-dead.svg │ │ ├── scc-error.svg │ │ ├── scc-unknown.svg │ │ ├── screencloud-idle.svg │ │ ├── screencloud-uploading.svg │ │ ├── scrllock-off.svg │ │ ├── scrllock-on.svg │ │ ├── scroll-lock-off.svg │ │ ├── scroll-lock-on.svg │ │ ├── scudcloud-attention-1.svg │ │ ├── scudcloud-attention-2.svg │ │ ├── scudcloud-attention-3.svg │ │ ├── scudcloud-attention-4.svg │ │ ├── scudcloud-attention-5.svg │ │ ├── scudcloud-attention-6.svg │ │ ├── scudcloud-attention-7.svg │ │ ├── scudcloud-attention-8.svg │ │ ├── scudcloud-attention-9.svg │ │ ├── scudcloud-attention.svg │ │ ├── scudcloud.svg │ │ ├── seafile-status-error.svg │ │ ├── seafile-status-notification.svg │ │ ├── seafile-status-offline.svg │ │ ├── seafile-status-ok.svg │ │ ├── seafile-status-paused.svg │ │ ├── seafile-status-syncing-1.svg │ │ ├── seafile-status-syncing-2.svg │ │ ├── security-high.svg │ │ ├── security-low.svg │ │ ├── security-medium.svg │ │ ├── sendanywhere-tray.svg │ │ ├── sflphone-indicator.svg │ │ ├── sflphone-notification.svg │ │ ├── sflphone-offline.svg │ │ ├── shutter-panel.svg │ │ ├── si-syncthing-0.svg │ │ ├── si-syncthing-1.svg │ │ ├── si-syncthing-10.svg │ │ ├── si-syncthing-11.svg │ │ ├── si-syncthing-2.svg │ │ ├── si-syncthing-3.svg │ │ ├── si-syncthing-4.svg │ │ ├── si-syncthing-5.svg │ │ ├── si-syncthing-6.svg │ │ ├── si-syncthing-7.svg │ │ ├── si-syncthing-8.svg │ │ ├── si-syncthing-9.svg │ │ ├── si-syncthing-idle.svg │ │ ├── si-syncthing-unknown.svg │ │ ├── signal-100.svg │ │ ├── signal-25.svg │ │ ├── signal-50.svg │ │ ├── signal-75.svg │ │ ├── signal-tray.svg │ │ ├── signal-unread-1.svg │ │ ├── signal-unread-10.svg │ │ ├── signal-unread-2.svg │ │ ├── signal-unread-3.svg │ │ ├── signal-unread-4.svg │ │ ├── signal-unread-5.svg │ │ ├── signal-unread-6.svg │ │ ├── signal-unread-7.svg │ │ ├── signal-unread-8.svg │ │ ├── signal-unread-9.svg │ │ ├── simplescreenrecorder-error.svg │ │ ├── simplescreenrecorder-idle.svg │ │ ├── simplescreenrecorder-panel.svg │ │ ├── simplescreenrecorder-paused.svg │ │ ├── simplescreenrecorder-recording.svg │ │ ├── sirikali-panel.svg │ │ ├── skype-indicator.svg │ │ ├── skype-status-away-notification.svg │ │ ├── skype-status-away.svg │ │ ├── skype-status-connected-notification.svg │ │ ├── skype-status-connected.svg │ │ ├── skype-status-connecting-0.svg │ │ ├── skype-status-connecting-1.svg │ │ ├── skype-status-connecting-2.svg │ │ ├── skype-status-connecting-3.svg │ │ ├── skype-status-disturb-notification.svg │ │ ├── skype-status-disturb.svg │ │ ├── skype-status-hidden-notification.svg │ │ ├── skype-status-hidden.svg │ │ ├── skype-status-invisible-notification.svg │ │ ├── skype-status-invisible.svg │ │ ├── skype-status-offline-notification.svg │ │ ├── skype-status-offline.svg │ │ ├── slack-indicator-highlight.svg │ │ ├── slack-indicator-unread.svg │ │ ├── slack-indicator.svg │ │ ├── smartcode-stremio-tray.svg │ │ ├── smartphone-connected.svg │ │ ├── smartphone-disconnected.svg │ │ ├── smartphone-trusted.svg │ │ ├── smartphoneattention.svg │ │ ├── smartphoneconnected.svg │ │ ├── smartphonedisconnected.svg │ │ ├── smartphonetrusted.svg │ │ ├── smplayer-panel.svg │ │ ├── software-update-available.svg │ │ ├── software-update-urgent.svg │ │ ├── solaar-attention.svg │ │ ├── solaar-indicator.svg │ │ ├── spotify-indicator.svg │ │ ├── start-here-lxqt.svg │ │ ├── start-here-manjaro.svg │ │ ├── start-here.svg │ │ ├── state-download.svg │ │ ├── state-error.svg │ │ ├── state-information.svg │ │ ├── state-offline.svg │ │ ├── state-ok.svg │ │ ├── state-pause.svg │ │ ├── state-sync.svg │ │ ├── state-warning.svg │ │ ├── steadyflow-alert-panel.svg │ │ ├── steadyflow-panel.svg │ │ ├── steam_tray_mono.svg │ │ ├── stock_weather-cloudy.svg │ │ ├── stock_weather-few-clouds.svg │ │ ├── stock_weather-fog.svg │ │ ├── stock_weather-night-clear.svg │ │ ├── stock_weather-night-few-clouds.svg │ │ ├── stock_weather-showers.svg │ │ ├── stock_weather-snow.svg │ │ ├── stock_weather-storm.svg │ │ ├── stock_weather-sunny.svg │ │ ├── strawberry-panel-grey.svg │ │ ├── strawberry-panel.svg │ │ ├── superproductivity-tray-0.svg │ │ ├── superproductivity-tray-1.svg │ │ ├── superproductivity-tray-10.svg │ │ ├── superproductivity-tray-11.svg │ │ ├── superproductivity-tray-12.svg │ │ ├── superproductivity-tray-13.svg │ │ ├── superproductivity-tray-14.svg │ │ ├── superproductivity-tray-15.svg │ │ ├── superproductivity-tray-2.svg │ │ ├── superproductivity-tray-3.svg │ │ ├── superproductivity-tray-4.svg │ │ ├── superproductivity-tray-5.svg │ │ ├── superproductivity-tray-6.svg │ │ ├── superproductivity-tray-7.svg │ │ ├── superproductivity-tray-8.svg │ │ ├── superproductivity-tray-9.svg │ │ ├── superproductivity-tray-run.svg │ │ ├── superproductivity-tray.svg │ │ ├── synapse-panel.svg │ │ ├── synergy-panel-ok.svg │ │ ├── synergy-panel.svg │ │ ├── syspeek-0.svg │ │ ├── syspeek-10.svg │ │ ├── syspeek-100.svg │ │ ├── syspeek-20.svg │ │ ├── syspeek-30.svg │ │ ├── syspeek-40.svg │ │ ├── syspeek-50.svg │ │ ├── syspeek-60.svg │ │ ├── syspeek-70.svg │ │ ├── syspeek-80.svg │ │ ├── syspeek-90.svg │ │ ├── system-devices-information.svg │ │ ├── system-devices-panel-alert.svg │ │ ├── system-devices-panel-information.svg │ │ ├── system-devices-panel.svg │ │ ├── system-file-manager-panel.svg │ │ ├── system-restart-panel.svg │ │ ├── system-shutdown-panel-restart.svg │ │ ├── system-shutdown-panel.svg │ │ ├── system-software-update-panel.svg │ │ ├── tablet-connected.svg │ │ ├── tablet-disconnected.svg │ │ ├── tabletattention.svg │ │ ├── tabletconnected.svg │ │ ├── tabletdisconnected.svg │ │ ├── tablettrusted.svg │ │ ├── tartube-check-tray.svg │ │ ├── tartube-download-tray.svg │ │ ├── tartube-info-tray.svg │ │ ├── tartube-refresh-tray.svg │ │ ├── tartube-tidy-tray.svg │ │ ├── tartube-tray.svg │ │ ├── tartube-update-tray.svg │ │ ├── teams-for-linux-tray.svg │ │ ├── teams-tray-activity.svg │ │ ├── teams-tray-available.svg │ │ ├── teams-tray-away.svg │ │ ├── teams-tray-busy.svg │ │ ├── teams-tray-dnd.svg │ │ ├── teams-tray-error.svg │ │ ├── teams-tray-noactivity.svg │ │ ├── teams-tray-offline.svg │ │ ├── teams-tray-offshift.svg │ │ ├── teams-tray-onshift.svg │ │ ├── teamviewer-indicator-away.svg │ │ ├── teamviewer-indicator-busy.svg │ │ ├── teamviewer-indicator-connected.svg │ │ ├── teamviewer-indicator-error.svg │ │ ├── teamviewer-indicator-offline.svg │ │ ├── teamviewer-indicator.svg │ │ ├── telegram-attention-panel.svg │ │ ├── telegram-mute-panel.svg │ │ ├── telegram-panel.svg │ │ ├── thunderbird-attention-panel.svg │ │ ├── thunderbird-panel.svg │ │ ├── timekpr-panel.svg │ │ ├── todo-indicator.svg │ │ ├── todoist-tray.svg │ │ ├── tomahawk-indicator.svg │ │ ├── tomboy-panel.svg │ │ ├── touchpad-indicator-light-disabled.svg │ │ ├── touchpad-indicator-light-enabled.svg │ │ ├── touchpad-indicator-light.svg │ │ ├── transmission-panel.svg │ │ ├── transmission-tray-icon.svg │ │ ├── transmitting-bad-signal-lock.svg │ │ ├── transmitting-bad-signal.svg │ │ ├── transmitting-good-signal-lock.svg │ │ ├── transmitting-good-signal.svg │ │ ├── transmitting-high-signal-lock.svg │ │ ├── transmitting-high-signal.svg │ │ ├── transmitting-low-signal-lock.svg │ │ ├── transmitting-low-signal.svg │ │ ├── tray-message.svg │ │ ├── tray-new-im.svg │ │ ├── tray-offline.svg │ │ ├── tray-online.svg │ │ ├── trimage-indicator.svg │ │ ├── tusk-indicator.svg │ │ ├── tutanota-desktop-tray.svg │ │ ├── tvconnected.svg │ │ ├── tvdisconnected.svg │ │ ├── tvtrusted.svg │ │ ├── tweet-tray-panel.svg │ │ ├── twitch-indicator.svg │ │ ├── ubuntuone-client-error.svg │ │ ├── ubuntuone-client-idle.svg │ │ ├── ubuntuone-client-offline.svg │ │ ├── ubuntuone-client-paused.svg │ │ ├── ubuntuone-client-updating.svg │ │ ├── uget-tray-default.svg │ │ ├── uget-tray-downloading.svg │ │ ├── uget-tray-error.svg │ │ ├── ulauncher-indicator.svg │ │ ├── update-high.svg │ │ ├── update-low.svg │ │ ├── update-medium.svg │ │ ├── update-none.svg │ │ ├── updates-notifier-inactive.svg │ │ ├── updates-notifier.svg │ │ ├── user-available-panel.svg │ │ ├── user-available.svg │ │ ├── user-away-panel.svg │ │ ├── user-away.svg │ │ ├── user-busy-panel.svg │ │ ├── user-busy.svg │ │ ├── user-idle-panel.svg │ │ ├── user-idle.svg │ │ ├── user-invisible-panel.svg │ │ ├── user-invisible.svg │ │ ├── user-offline-panel.svg │ │ ├── user-offline.svg │ │ ├── user-online.svg │ │ ├── user-status-new.svg │ │ ├── user-status-pending.svg │ │ ├── utools-tray.svg │ │ ├── variety-indicator.svg │ │ ├── veracrypt-panel.svg │ │ ├── viber-normal.svg │ │ ├── viber-notification.svg │ │ ├── virt-manager-panel.svg │ │ ├── vivaldi-tray.svg │ │ ├── vk-tray.svg │ │ ├── vlc-panel.svg │ │ ├── volume-level-high-panel.svg │ │ ├── volume-level-high.svg │ │ ├── volume-level-low-panel.svg │ │ ├── volume-level-low.svg │ │ ├── volume-level-medium-panel.svg │ │ ├── volume-level-medium.svg │ │ ├── volume-level-muted-panel.svg │ │ ├── volume-level-muted.svg │ │ ├── volume-level-none-panel.svg │ │ ├── volume-level-none.svg │ │ ├── vorta-tray-active.svg │ │ ├── vorta-tray.svg │ │ ├── weather-clear-night-000.svg │ │ ├── weather-clear-night-010.svg │ │ ├── weather-clear-night-020.svg │ │ ├── weather-clear-night-030.svg │ │ ├── weather-clear-night-040.svg │ │ ├── weather-clear-night-050.svg │ │ ├── weather-clear-night-060.svg │ │ ├── weather-clear-night-070.svg │ │ ├── weather-clear-night-080.svg │ │ ├── weather-clear-night-090.svg │ │ ├── weather-clear-night-100.svg │ │ ├── weather-clear-night-110.svg │ │ ├── weather-clear-night-120.svg │ │ ├── weather-clear-night-130.svg │ │ ├── weather-clear-night-140.svg │ │ ├── weather-clear-night-150.svg │ │ ├── weather-clear-night-160.svg │ │ ├── weather-clear-night-170.svg │ │ ├── weather-clear-night-180.svg │ │ ├── weather-clear-night-190.svg │ │ ├── weather-clear-night-200.svg │ │ ├── weather-clear-night-210.svg │ │ ├── weather-clear-night-220.svg │ │ ├── weather-clear-night-230.svg │ │ ├── weather-clear-night-240.svg │ │ ├── weather-clear-night-250.svg │ │ ├── weather-clear-night-260.svg │ │ ├── weather-clear-night-270.svg │ │ ├── weather-clear-night-280.svg │ │ ├── weather-clear-night-290.svg │ │ ├── weather-clear-night-300.svg │ │ ├── weather-clear-night-310.svg │ │ ├── weather-clear-night-320.svg │ │ ├── weather-clear-night-330.svg │ │ ├── weather-clear-night-340.svg │ │ ├── weather-clear-night-350.svg │ │ ├── weather-clear-night.svg │ │ ├── weather-clear.svg │ │ ├── weather-clouds-night.svg │ │ ├── weather-clouds.svg │ │ ├── weather-cloudy.svg │ │ ├── weather-few-clouds-night-000.svg │ │ ├── weather-few-clouds-night-010.svg │ │ ├── weather-few-clouds-night-020.svg │ │ ├── weather-few-clouds-night-030.svg │ │ ├── weather-few-clouds-night-040.svg │ │ ├── weather-few-clouds-night-050.svg │ │ ├── weather-few-clouds-night-060.svg │ │ ├── weather-few-clouds-night-070.svg │ │ ├── weather-few-clouds-night-080.svg │ │ ├── weather-few-clouds-night-090.svg │ │ ├── weather-few-clouds-night-100.svg │ │ ├── weather-few-clouds-night-110.svg │ │ ├── weather-few-clouds-night-120.svg │ │ ├── weather-few-clouds-night-130.svg │ │ ├── weather-few-clouds-night-140.svg │ │ ├── weather-few-clouds-night-150.svg │ │ ├── weather-few-clouds-night-160.svg │ │ ├── weather-few-clouds-night-170.svg │ │ ├── weather-few-clouds-night-180.svg │ │ ├── weather-few-clouds-night-190.svg │ │ ├── weather-few-clouds-night-200.svg │ │ ├── weather-few-clouds-night-210.svg │ │ ├── weather-few-clouds-night-220.svg │ │ ├── weather-few-clouds-night-230.svg │ │ ├── weather-few-clouds-night-240.svg │ │ ├── weather-few-clouds-night-250.svg │ │ ├── weather-few-clouds-night-260.svg │ │ ├── weather-few-clouds-night-270.svg │ │ ├── weather-few-clouds-night-280.svg │ │ ├── weather-few-clouds-night-290.svg │ │ ├── weather-few-clouds-night-300.svg │ │ ├── weather-few-clouds-night-310.svg │ │ ├── weather-few-clouds-night-320.svg │ │ ├── weather-few-clouds-night-330.svg │ │ ├── weather-few-clouds-night-340.svg │ │ ├── weather-few-clouds-night-350.svg │ │ ├── weather-few-clouds-night.svg │ │ ├── weather-few-clouds.svg │ │ ├── weather-fog.svg │ │ ├── weather-freezing-rain.svg │ │ ├── weather-hail.svg │ │ ├── weather-many-clouds.svg │ │ ├── weather-mist.svg │ │ ├── weather-none-available.svg │ │ ├── weather-overcast.svg │ │ ├── weather-severe-alert.svg │ │ ├── weather-showers-day.svg │ │ ├── weather-showers-night.svg │ │ ├── weather-showers-scattered-day.svg │ │ ├── weather-showers-scattered-night.svg │ │ ├── weather-showers-scattered.svg │ │ ├── weather-showers.svg │ │ ├── weather-snow-day.svg │ │ ├── weather-snow-night.svg │ │ ├── weather-snow-rain.svg │ │ ├── weather-snow-scattered-day.svg │ │ ├── weather-snow-scattered-night.svg │ │ ├── weather-snow-scattered.svg │ │ ├── weather-snow.svg │ │ ├── weather-storm-day.svg │ │ ├── weather-storm-night.svg │ │ ├── weather-storm.svg │ │ ├── weather-windy.svg │ │ ├── webtorrent-desktop-panel.svg │ │ ├── wechat-tray-unread.svg │ │ ├── wechat-tray.svg │ │ ├── whatsapp-msg.svg │ │ ├── whatsapp-tray.svg │ │ ├── whatsapp-warning-msg.svg │ │ ├── whatsapp-warning.svg │ │ ├── whatsie-tray-attention.svg │ │ ├── whatsie-tray.svg │ │ ├── whiskermenu-manjaro.svg │ │ ├── wire-tray-attention.svg │ │ ├── wire-tray.svg │ │ ├── wired.svg │ │ ├── wiznote-indicator.svg │ │ ├── workrave-indicator-quiet.svg │ │ ├── workrave-indicator-suspended.svg │ │ ├── workrave-indicator.svg │ │ ├── x-tile-panel.svg │ │ ├── xchat-panel.svg │ │ ├── xfce-newmail.svg │ │ ├── xfce-nomail.svg │ │ ├── xfce4-battery-caution-charging.svg │ │ ├── xfce4-battery-caution.svg │ │ ├── xfce4-battery-critical-charging.svg │ │ ├── xfce4-battery-critical.svg │ │ ├── xfce4-battery-full-charging.svg │ │ ├── xfce4-battery-full.svg │ │ ├── xfce4-battery-good-charging.svg │ │ ├── xfce4-battery-good.svg │ │ ├── xfce4-battery-low-charging.svg │ │ ├── xfce4-battery-low.svg │ │ ├── xfce4-battery-missing.svg │ │ ├── xfce4-battery-ok-charging.svg │ │ ├── xfce4-battery-ok.svg │ │ ├── xfce4-battery-plugin.svg │ │ ├── xfce4-fsguard-plugin-urgent.svg │ │ ├── xfce4-fsguard-plugin-warning.svg │ │ ├── xfce4-fsguard-plugin.svg │ │ ├── xfce4-mixer-muted.svg │ │ ├── xfce4-mixer-no-muted.svg │ │ ├── xfce4-mixer-no-record.svg │ │ ├── xfce4-mixer-record.svg │ │ ├── xfce4-mixer-volume-high.svg │ │ ├── xfce4-mixer-volume-low-medium.svg │ │ ├── xfce4-mixer-volume-low.svg │ │ ├── xfce4-mixer-volume-medium.svg │ │ ├── xfce4-mixer-volume-muted.svg │ │ ├── xfce4-mixer-volume-ultra-low.svg │ │ ├── xfce4-mixer-volume-very-high.svg │ │ ├── xfce4-notes-plugin.svg │ │ ├── xfce4-whiskermenu.svg │ │ ├── xfpm-ac-adapter.svg │ │ ├── xfpm-battery-000-charging.svg │ │ ├── xfpm-battery-000.svg │ │ ├── xfpm-battery-020-charging.svg │ │ ├── xfpm-battery-020.svg │ │ ├── xfpm-battery-040-charging.svg │ │ ├── xfpm-battery-040.svg │ │ ├── xfpm-battery-060-charging.svg │ │ ├── xfpm-battery-060.svg │ │ ├── xfpm-battery-080-charging.svg │ │ ├── xfpm-battery-080.svg │ │ ├── xfpm-battery-100-charging.svg │ │ ├── xfpm-battery-100.svg │ │ ├── xfpm-battery-caution-charging.svg │ │ ├── xfpm-battery-caution.svg │ │ ├── xfpm-battery-critical-charging.svg │ │ ├── xfpm-battery-critical.svg │ │ ├── xfpm-battery-empty.svg │ │ ├── xfpm-battery-full-charging.svg │ │ ├── xfpm-battery-full.svg │ │ ├── xfpm-battery-good-charging.svg │ │ ├── xfpm-battery-good.svg │ │ ├── xfpm-battery-low-charging.svg │ │ ├── xfpm-battery-low.svg │ │ ├── xfpm-battery-missing.svg │ │ ├── xfpm-battery-ok-charging.svg │ │ ├── xfpm-battery-ok.svg │ │ ├── xfpm-brightness-lcd.svg │ │ ├── xfpm-keyboard-000.svg │ │ ├── xfpm-keyboard-020.svg │ │ ├── xfpm-keyboard-030.svg │ │ ├── xfpm-keyboard-040.svg │ │ ├── xfpm-keyboard-060.svg │ │ ├── xfpm-keyboard-080.svg │ │ ├── xfpm-keyboard-100.svg │ │ ├── xfpm-mouse-000.svg │ │ ├── xfpm-mouse-020.svg │ │ ├── xfpm-mouse-030.svg │ │ ├── xfpm-mouse-040.svg │ │ ├── xfpm-mouse-060.svg │ │ ├── xfpm-mouse-080.svg │ │ ├── xfpm-mouse-100.svg │ │ ├── xfpm-phone-000.svg │ │ ├── xfpm-phone-020.svg │ │ ├── xfpm-phone-030.svg │ │ ├── xfpm-phone-040.svg │ │ ├── xfpm-phone-060.svg │ │ ├── xfpm-phone-080.svg │ │ ├── xfpm-phone-100.svg │ │ ├── xfpm-primary-000-charging.svg │ │ ├── xfpm-primary-000.svg │ │ ├── xfpm-primary-020-charging.svg │ │ ├── xfpm-primary-020.svg │ │ ├── xfpm-primary-040-charging.svg │ │ ├── xfpm-primary-040.svg │ │ ├── xfpm-primary-060-charging.svg │ │ ├── xfpm-primary-060.svg │ │ ├── xfpm-primary-080-charging.svg │ │ ├── xfpm-primary-080.svg │ │ ├── xfpm-primary-100-charging.svg │ │ ├── xfpm-primary-100.svg │ │ ├── xfpm-primary-charged.svg │ │ ├── xfpm-primary-missing.svg │ │ ├── xfpm-ups-000-charging.svg │ │ ├── xfpm-ups-000.svg │ │ ├── xfpm-ups-020-charging.svg │ │ ├── xfpm-ups-020.svg │ │ ├── xfpm-ups-040-charging.svg │ │ ├── xfpm-ups-040.svg │ │ ├── xfpm-ups-060-charging.svg │ │ ├── xfpm-ups-060.svg │ │ ├── xfpm-ups-080-charging.svg │ │ ├── xfpm-ups-080.svg │ │ ├── xfpm-ups-100-charging.svg │ │ ├── xfpm-ups-100.svg │ │ ├── xfpm-ups-charged.svg │ │ ├── xfpm-ups-missing.svg │ │ ├── xkbmod-indicator.svg │ │ ├── y-ppa-indicator.svg │ │ ├── yate-tray-incomingcall.svg │ │ ├── yate-tray-incomingchat.svg │ │ ├── yate-tray-info.svg │ │ ├── yate-tray-notification.svg │ │ ├── yate-tray.svg │ │ ├── yd-busy1.svg │ │ ├── yd-busy2.svg │ │ ├── yd-busy3.svg │ │ ├── yd-busy4.svg │ │ ├── yd-busy5.svg │ │ ├── yd-ind-error.svg │ │ ├── yd-ind-idle.svg │ │ ├── yd-ind-pause.svg │ │ ├── youtube-indicator-downloading-light.svg │ │ ├── youtube-indicator-light-disabled.svg │ │ ├── youtube-indicator-light-sync0.svg │ │ ├── youtube-indicator-light-sync1.svg │ │ ├── youtube-indicator-light-sync2.svg │ │ ├── youtube-indicator-light-sync3.svg │ │ ├── youtube-indicator-light-sync4.svg │ │ ├── youtube-indicator-light-sync5.svg │ │ ├── youtube-indicator-light-sync6.svg │ │ ├── youtube-indicator-light-sync7.svg │ │ ├── youtube-indicator-light-sync8.svg │ │ ├── youtube-indicator-light-sync9.svg │ │ ├── youtube-indicator-light.svg │ │ ├── youtube-music-desktop-app-tray-pause.svg │ │ ├── youtube-music-desktop-app-tray-play.svg │ │ ├── youtube-music-desktop-app-tray.svg │ │ ├── youtube-music-tray.svg │ │ ├── yum-indicator-error.svg │ │ ├── yum-indicator-info.svg │ │ ├── yum-indicator-no-updates.svg │ │ ├── yum-indicator-updates.svg │ │ ├── yum-indicator-working.svg │ │ ├── zeal-panel.svg │ │ ├── zeal-tray.svg │ │ └── zim-panel.svg │ └── places │ │ ├── akonadi-phone-home.svg │ │ ├── application-x-gnome-saved-search.svg │ │ ├── bookmark-missing.svg │ │ ├── bookmarks.svg │ │ ├── certificate-server.svg │ │ ├── desktop.svg │ │ ├── document-multiple.svg │ │ ├── document-open-recent.svg │ │ ├── edit-copy.svg │ │ ├── edittrash.svg │ │ ├── emptytrash.svg │ │ ├── favorites.svg │ │ ├── folder-activities.svg │ │ ├── folder-add.svg │ │ ├── folder-apple.svg │ │ ├── folder-black.svg │ │ ├── folder-blue.svg │ │ ├── folder-bookmark.svg │ │ ├── folder-bookmarks.svg │ │ ├── folder-brown.svg │ │ ├── folder-camera.svg │ │ ├── folder-cd.svg │ │ ├── folder-cloud.svg │ │ ├── folder-copy-cloud.svg │ │ ├── folder-cyan.svg │ │ ├── folder-decrypted.svg │ │ ├── folder-desktop.svg │ │ ├── folder-development.svg │ │ ├── folder-documents-open.svg │ │ ├── folder-documents-symbolic.svg │ │ ├── folder-documents.svg │ │ ├── folder-download-open.svg │ │ ├── folder-download-symbolic.svg │ │ ├── folder-download.svg │ │ ├── folder-downloads-symbolic.svg │ │ ├── folder-downloads.svg │ │ ├── folder-drag-accept.svg │ │ ├── folder-dropbox.svg │ │ ├── folder-encrypted.svg │ │ ├── folder-favorites.svg │ │ ├── folder-games.svg │ │ ├── folder-gdrive.svg │ │ ├── folder-git.svg │ │ ├── folder-github.svg │ │ ├── folder-gitlab.svg │ │ ├── folder-gnome.svg │ │ ├── folder-google-drive.svg │ │ ├── folder-green.svg │ │ ├── folder-grey.svg │ │ ├── folder-home.svg │ │ ├── folder-html.svg │ │ ├── folder-image-people.svg │ │ ├── folder-image.svg │ │ ├── folder-images.svg │ │ ├── folder-important.svg │ │ ├── folder-java.svg │ │ ├── folder-linux.svg │ │ ├── folder-locked.svg │ │ ├── folder-magenta.svg │ │ ├── folder-mail-cloud.svg │ │ ├── folder-mail.svg │ │ ├── folder-mega.svg │ │ ├── folder-meocloud.svg │ │ ├── folder-music-open.svg │ │ ├── folder-music-symbolic.svg │ │ ├── folder-music.svg │ │ ├── folder-network.svg │ │ ├── folder-open-recent.svg │ │ ├── folder-open.svg │ │ ├── folder-orange.svg │ │ ├── folder-owncloud.svg │ │ ├── folder-pcloud.svg │ │ ├── folder-photo.svg │ │ ├── folder-photos.svg │ │ ├── folder-picture-symbolic.svg │ │ ├── folder-picture.svg │ │ ├── folder-pictures-open.svg │ │ ├── folder-pictures-symbolic.svg │ │ ├── folder-pictures.svg │ │ ├── folder-print.svg │ │ ├── folder-private.svg │ │ ├── folder-publicshare-open.svg │ │ ├── folder-publicshare.svg │ │ ├── folder-recent.svg │ │ ├── folder-red.svg │ │ ├── folder-remote-ftp.svg │ │ ├── folder-remote-nfs.svg │ │ ├── folder-remote-open.svg │ │ ├── folder-remote-smb.svg │ │ ├── folder-remote-ssh.svg │ │ ├── folder-remote-symbolic.svg │ │ ├── folder-remote.svg │ │ ├── folder-root.svg │ │ ├── folder-saved-search-alt.svg │ │ ├── folder-saved-search.svg │ │ ├── folder-script.svg │ │ ├── folder-sound.svg │ │ ├── folder-steam.svg │ │ ├── folder-symbolic.svg │ │ ├── folder-tar.svg │ │ ├── folder-temp.svg │ │ ├── folder-templates-open.svg │ │ ├── folder-templates-symbolic.svg │ │ ├── folder-templates.svg │ │ ├── folder-text.svg │ │ ├── folder-torrent.svg │ │ ├── folder-txt.svg │ │ ├── folder-unlocked.svg │ │ ├── folder-vbox.svg │ │ ├── folder-video.svg │ │ ├── folder-videocamera.svg │ │ ├── folder-videos-open.svg │ │ ├── folder-videos-symbolic.svg │ │ ├── folder-videos.svg │ │ ├── folder-violet.svg │ │ ├── folder-visiting.svg │ │ ├── folder-wifi.svg │ │ ├── folder-wine.svg │ │ ├── folder-yandex-disk.svg │ │ ├── folder-yellow.svg │ │ ├── folder.svg │ │ ├── folder_download.svg │ │ ├── folder_downloads.svg │ │ ├── folder_home.svg │ │ ├── folder_html.svg │ │ ├── folder_images.svg │ │ ├── folder_open.svg │ │ ├── folder_pictures.svg │ │ ├── folders-documents.svg │ │ ├── folders-downloads.svg │ │ ├── folders-music.svg │ │ ├── folders-publicshare.svg │ │ ├── folders-videos.svg │ │ ├── globe.svg │ │ ├── gnome-ccdesktop.svg │ │ ├── gnome-desktop-config.svg │ │ ├── gnome-dev-network.svg │ │ ├── gnome-dev-trash-empty.svg │ │ ├── gnome-dev-trash-full.svg │ │ ├── gnome-folder.svg │ │ ├── gnome-fs-blockdev.svg │ │ ├── gnome-fs-bookmark-missing.svg │ │ ├── gnome-fs-bookmark.svg │ │ ├── gnome-fs-dav.svg │ │ ├── gnome-fs-desktop.svg │ │ ├── gnome-fs-dev.svg │ │ ├── gnome-fs-directory-accept.svg │ │ ├── gnome-fs-directory-visiting.svg │ │ ├── gnome-fs-directory.svg │ │ ├── gnome-fs-ftp.svg │ │ ├── gnome-fs-home.svg │ │ ├── gnome-fs-network.svg │ │ ├── gnome-fs-nfs.svg │ │ ├── gnome-fs-server.svg │ │ ├── gnome-fs-share.svg │ │ ├── gnome-fs-smb.svg │ │ ├── gnome-fs-ssh.svg │ │ ├── gnome-fs-trash-empty-accept.svg │ │ ├── gnome-fs-trash-empty.svg │ │ ├── gnome-fs-trash-full.svg │ │ ├── gnome-fs-web.svg │ │ ├── gnome-home.svg │ │ ├── gnome-mime-x-directory-nfs-server.svg │ │ ├── gnome-mime-x-directory-smb-server.svg │ │ ├── gnome-mime-x-directory-smb-share.svg │ │ ├── gnome-mime-x-directory-smb-workgroup.svg │ │ ├── gnome-stock-trash-empty.svg │ │ ├── gnome-stock-trash-full.svg │ │ ├── gnome-stock-trash.svg │ │ ├── go-home-large.svg │ │ ├── go-home.svg │ │ ├── gohome.svg │ │ ├── gtg-home.svg │ │ ├── gtk-directory.svg │ │ ├── gtk-home.svg │ │ ├── gtk-network.svg │ │ ├── inode-directory.svg │ │ ├── insync-folder.svg │ │ ├── kfm_home.svg │ │ ├── knetattach.svg │ │ ├── library-music.svg │ │ ├── library-podcast.svg │ │ ├── mail-folder-inbox.svg │ │ ├── mail-folder-outbox.svg │ │ ├── mail-folder-sent.svg │ │ ├── mail-message.svg │ │ ├── mail-sent.svg │ │ ├── neat.svg │ │ ├── network-server-database.svg │ │ ├── network-server-symbolic.svg │ │ ├── network-server.svg │ │ ├── network-workgroup-symbolic.svg │ │ ├── network-workgroup.svg │ │ ├── network.svg │ │ ├── network_fs.svg │ │ ├── network_local.svg │ │ ├── nfs.svg │ │ ├── other-desktop.svg │ │ ├── redhat-home.svg │ │ ├── redhat-network-server.svg │ │ ├── redhat-system-group.svg │ │ ├── repository.svg │ │ ├── samba.svg │ │ ├── server.svg │ │ ├── start-here-kde.svg │ │ ├── stock_bookmark.svg │ │ ├── stock_delete-bookmark.svg │ │ ├── stock_folder.svg │ │ ├── stock_home.svg │ │ ├── stock_music-library.svg │ │ ├── stock_open.svg │ │ ├── stock_shared-by-me.svg │ │ ├── stock_shared-to-me.svg │ │ ├── stock_trash_empty.svg │ │ ├── stock_trash_full.svg │ │ ├── trash-empty.svg │ │ ├── trash-full.svg │ │ ├── trashcan_empty.svg │ │ ├── trashcan_full.svg │ │ ├── user-bookmarks-symbolic.svg │ │ ├── user-bookmarks.svg │ │ ├── user-desktop-symbolic.svg │ │ ├── user-desktop.svg │ │ ├── user-home-open.svg │ │ ├── user-home-symbolic.svg │ │ ├── user-home.svg │ │ ├── user-images.svg │ │ ├── user-pictures.svg │ │ ├── user-share.svg │ │ ├── user-trash-full-symbolic.svg │ │ ├── user-trash-full.svg │ │ ├── user-trash-symbolic.svg │ │ ├── user-trash.svg │ │ ├── xfce-trash_empty.svg │ │ └── xfce-trash_full.svg │ ├── 22 │ ├── actions │ │ ├── CVnamespace.svg │ │ ├── Finished.svg │ │ ├── Info-amarok.svg │ │ ├── PrePostCondition.svg │ │ ├── SuggestionError.svg │ │ ├── SuggestionTM.svg │ │ ├── accept_signal.svg │ │ ├── accept_time_event.svg │ │ ├── account-add.svg │ │ ├── account-close.svg │ │ ├── account-delete.svg │ │ ├── account-edit.svg │ │ ├── account-reopen.svg │ │ ├── account-types-asset.svg │ │ ├── account-types-cash.svg │ │ ├── account-types-checking.svg │ │ ├── account-types-closed.svg │ │ ├── account-types-credit-card.svg │ │ ├── account-types-expense.svg │ │ ├── account-types-income.svg │ │ ├── account-types-investments.svg │ │ ├── account-types-liability.svg │ │ ├── account-types-loan.svg │ │ ├── account-types-reconciled.svg │ │ ├── account-types-savings.svg │ │ ├── account-update-online-all.svg │ │ ├── account-update-online.svg │ │ ├── account.svg │ │ ├── acrobat.svg │ │ ├── action-albumfolder-importdir2.svg │ │ ├── action-rss_tag.svg │ │ ├── action-unavailable.svg │ │ ├── activities.svg │ │ ├── activity-fork.svg │ │ ├── actor.svg │ │ ├── add-files-to-archive.svg │ │ ├── add-folder-to-archive.svg │ │ ├── add-placemark.svg │ │ ├── add.svg │ │ ├── address-book-new.svg │ │ ├── addressbook-details.svg │ │ ├── adjustcurves.svg │ │ ├── adjusthsl.svg │ │ ├── adjustlevels.svg │ │ ├── adjustrgb.svg │ │ ├── adress-book-new.svg │ │ ├── aggregation.svg │ │ ├── akonadi-phone-home.svg │ │ ├── akonadiconsole.svg │ │ ├── albumfolder-importdir.svg │ │ ├── albumfolder-importimages.svg │ │ ├── albumfolder-new.svg │ │ ├── albumfolder-properties.svg │ │ ├── albumfolder-user-trash.svg │ │ ├── align-horizontal-baseline.svg │ │ ├── align-horizontal-bottom-out.svg │ │ ├── align-horizontal-center.svg │ │ ├── align-horizontal-left-out.svg │ │ ├── align-horizontal-left-to-anchor.svg │ │ ├── align-horizontal-left.svg │ │ ├── align-horizontal-node.svg │ │ ├── align-horizontal-right-out.svg │ │ ├── align-horizontal-right-to-anchor.svg │ │ ├── align-horizontal-right.svg │ │ ├── align-horizontal-top-out.svg │ │ ├── align-vertical-baseline.svg │ │ ├── align-vertical-bottom-out.svg │ │ ├── align-vertical-bottom-to-anchor.svg │ │ ├── align-vertical-bottom.svg │ │ ├── align-vertical-center.svg │ │ ├── align-vertical-node.svg │ │ ├── align-vertical-top-out.svg │ │ ├── align-vertical-top-to-anchor.svg │ │ ├── align-vertical-top.svg │ │ ├── amarok_artist.svg │ │ ├── amarok_cart_add.svg │ │ ├── amarok_cart_remove.svg │ │ ├── amarok_cart_view.svg │ │ ├── amarok_change_language.svg │ │ ├── amarok_clock.svg │ │ ├── amarok_lyrics.svg │ │ ├── amarok_playcount.svg │ │ ├── amarok_playlist.svg │ │ ├── amarok_playlist_refresh.svg │ │ ├── amarok_scripts.svg │ │ ├── anchor.svg │ │ ├── animal.svg │ │ ├── animation-stage.svg │ │ ├── answer-correct.svg │ │ ├── answer.svg │ │ ├── antivignetting.svg │ │ ├── application-exit.svg │ │ ├── application-menu.svg │ │ ├── application-rss+xml.svg │ │ ├── applications-other.svg │ │ ├── appointment-missed.svg │ │ ├── appointment-new.svg │ │ ├── appointment-soon.svg │ │ ├── appointment.svg │ │ ├── approved.svg │ │ ├── archive-extract.svg │ │ ├── archive-insert-directory.svg │ │ ├── archive-insert.svg │ │ ├── archive-remove.svg │ │ ├── archive.svg │ │ ├── arrow-down-double.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left-double.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right-double.svg │ │ ├── arrow-right.svg │ │ ├── arrow-up-double.svg │ │ ├── arrow-up.svg │ │ ├── arrow.svg │ │ ├── artifact.svg │ │ ├── artistictext-tool.svg │ │ ├── association.svg │ │ ├── atmosphere.svg │ │ ├── attention.svg │ │ ├── audio-off.svg │ │ ├── audio-on.svg │ │ ├── audio-ready.svg │ │ ├── audio-volume-high.svg │ │ ├── audio-volume-low.svg │ │ ├── audio-volume-medium.svg │ │ ├── audio-volume-muted.svg │ │ ├── auto-scale-all.svg │ │ ├── auto-scale-x.svg │ │ ├── auto-scale-y.svg │ │ ├── auto-transition.svg │ │ ├── auto-type.svg │ │ ├── autocorrection.svg │ │ ├── automated-tasks.svg │ │ ├── back.svg │ │ ├── backgroundtool.svg │ │ ├── backup.svg │ │ ├── bank.svg │ │ ├── bboxnext.svg │ │ ├── bboxprev.svg │ │ ├── beamerblock.svg │ │ ├── beamerframe.svg │ │ ├── bell.svg │ │ ├── bibtex.svg │ │ ├── bigskip.svg │ │ ├── bitmap-trace.svg │ │ ├── black_sum.svg │ │ ├── blueman-plugin.svg │ │ ├── blueman-send-file.svg │ │ ├── blueman-trust.svg │ │ ├── blueman-untrust.svg │ │ ├── blurfx.svg │ │ ├── blurimage.svg │ │ ├── bonobo-component-browser.svg │ │ ├── bookmark-add-folder.svg │ │ ├── bookmark-edit.svg │ │ ├── bookmark-new-list.svg │ │ ├── bookmark-new.svg │ │ ├── bookmark-remove.svg │ │ ├── bookmark-toolbar.svg │ │ ├── bookmark.svg │ │ ├── bookmark_add.svg │ │ ├── bookmarks-organize.svg │ │ ├── bookmarks.svg │ │ ├── bookmarks_list_add.svg │ │ ├── borderpainter.svg │ │ ├── bordertool.svg │ │ ├── bottom.svg │ │ ├── boundingbox_bottom.svg │ │ ├── boundingbox_bottom_left.svg │ │ ├── boundingbox_bottom_right.svg │ │ ├── boundingbox_center.svg │ │ ├── boundingbox_left.svg │ │ ├── boundingbox_right.svg │ │ ├── boundingbox_top.svg │ │ ├── boundingbox_top_left.svg │ │ ├── boundingbox_top_right.svg │ │ ├── box.svg │ │ ├── bqm-add.svg │ │ ├── bqm-addqueue.svg │ │ ├── bqm-commit.svg │ │ ├── bqm-diff.svg │ │ ├── bqm-remove.svg │ │ ├── bqm-rmqueue.svg │ │ ├── bqm-update.svg │ │ ├── branch.svg │ │ ├── browser-download.svg │ │ ├── budget-add.svg │ │ ├── budget-delete.svg │ │ ├── budget-edit.svg │ │ ├── budget.svg │ │ ├── burst.svg │ │ ├── button_cancel.svg │ │ ├── button_ok.svg │ │ ├── bwtonal.svg │ │ ├── cab_extract.svg │ │ ├── cab_view.svg │ │ ├── cache.svg │ │ ├── calendar-go-today.svg │ │ ├── call-start.svg │ │ ├── call-stop.svg │ │ ├── call-voicemail.svg │ │ ├── calligraphy.svg │ │ ├── callout-shape.svg │ │ ├── camera-off.svg │ │ ├── camera-on.svg │ │ ├── camera-ready.svg │ │ ├── cancel.svg │ │ ├── cards-block.svg │ │ ├── categories.svg │ │ ├── category-delete.svg │ │ ├── category-edit.svg │ │ ├── category.svg │ │ ├── category2parent.svg │ │ ├── cd.svg │ │ ├── cell_edit.svg │ │ ├── cell_layout.svg │ │ ├── channelmixer.svg │ │ ├── character-set.svg │ │ ├── charcoaltool.svg │ │ ├── check-filled.svg │ │ ├── check_constraint.svg │ │ ├── checkbox.svg │ │ ├── checkmark.svg │ │ ├── child2category.svg │ │ ├── choice-rhomb.svg │ │ ├── choice-round.svg │ │ ├── chronometer-lap.svg │ │ ├── chronometer-pause.svg │ │ ├── chronometer-reset.svg │ │ ├── chronometer-start.svg │ │ ├── chronometer.svg │ │ ├── circular-arrow-shape.svg │ │ ├── class-or-package.svg │ │ ├── class.svg │ │ ├── clear_left.svg │ │ ├── clock-large.svg │ │ ├── clock.svg │ │ ├── cloud-download.svg │ │ ├── cloud-upload.svg │ │ ├── cm_briefview.svg │ │ ├── cm_columnsview.svg │ │ ├── cm_copyfullnamestoclip.svg │ │ ├── cm_extractfiles.svg │ │ ├── cm_flatview.svg │ │ ├── cm_markinvert.svg │ │ ├── cm_markminus.svg │ │ ├── cm_markplus.svg │ │ ├── cm_multirename.svg │ │ ├── cm_options.svg │ │ ├── cm_packfiles.svg │ │ ├── cm_refresh.svg │ │ ├── cm_runterm.svg │ │ ├── cm_search.svg │ │ ├── cm_syncdirs.svg │ │ ├── cm_thumbnailsview.svg │ │ ├── cm_viewhistorynext.svg │ │ ├── cm_viewhistoryprev.svg │ │ ├── code-block.svg │ │ ├── code-class.svg │ │ ├── code-context.svg │ │ ├── code-function.svg │ │ ├── code-typedef.svg │ │ ├── code-variable.svg │ │ ├── collapse-all.svg │ │ ├── collapse.svg │ │ ├── collection-rescan-amarok.svg │ │ ├── color-fill.svg │ │ ├── color-gradient.svg │ │ ├── color-management.svg │ │ ├── color-mode-black-white.svg │ │ ├── color-mode-hue-shift-negative.svg │ │ ├── color-mode-hue-shift-positive.svg │ │ ├── color-mode-invert-image.svg │ │ ├── color-mode-invert-text.svg │ │ ├── color-picker-black.svg │ │ ├── color-picker-grey.svg │ │ ├── color-picker-white.svg │ │ ├── color-picker.svg │ │ ├── color-select.svg │ │ ├── colorfx.svg │ │ ├── colormanagement.svg │ │ ├── colorneg.svg │ │ ├── colors-chromablue.svg │ │ ├── colors-chromagreen.svg │ │ ├── colors-chromared.svg │ │ ├── colors-luma.svg │ │ ├── combined_fragment.svg │ │ ├── compass.svg │ │ ├── component.svg │ │ ├── composite-track-off.svg │ │ ├── composite-track-on.svg │ │ ├── composite-track-preview.svg │ │ ├── composition.svg │ │ ├── configuration.svg │ │ ├── configure-toolbars.svg │ │ ├── configure.svg │ │ ├── configure_kile.svg │ │ ├── configure_project.svg │ │ ├── configure_toolbars.svg │ │ ├── contact-new.svg │ │ ├── containment.svg │ │ ├── contents.svg │ │ ├── contexthelp.svg │ │ ├── contrast.svg │ │ ├── convert.svg │ │ ├── cookies.svg │ │ ├── coordinate.svg │ │ ├── copy-coordinates.svg │ │ ├── createpath.svg │ │ ├── cross-shape.svg │ │ ├── crosshairs.svg │ │ ├── currenttrack_pause.svg │ │ ├── currenttrack_play.svg │ │ ├── cursor-arrow.svg │ │ ├── curve-connector.svg │ │ ├── dashboard-show.svg │ │ ├── database-change-key.svg │ │ ├── database-index.svg │ │ ├── database-lock.svg │ │ ├── datatype.svg │ │ ├── dblatex.svg │ │ ├── debug-execute-from-cursor.svg │ │ ├── debug-execute-to-cursor.svg │ │ ├── debug-run-cursor.svg │ │ ├── debug-run.svg │ │ ├── debug-step-instruction.svg │ │ ├── debug-step-into-instruction.svg │ │ ├── debug-step-into.svg │ │ ├── debug-step-out.svg │ │ ├── debug-step-over.svg │ │ ├── deep-history.svg │ │ ├── delete-comment.svg │ │ ├── delete-table-row.svg │ │ ├── delete.svg │ │ ├── dependency.svg │ │ ├── depth16to8.svg │ │ ├── depth8to16.svg │ │ ├── description.svg │ │ ├── device.svg │ │ ├── dfrac.svg │ │ ├── diag_activity.svg │ │ ├── diag_class.svg │ │ ├── diag_component.svg │ │ ├── dialog-align-and-distribute.svg │ │ ├── dialog-apply.svg │ │ ├── dialog-cancel.svg │ │ ├── dialog-close.svg │ │ ├── dialog-error.svg │ │ ├── dialog-fill-and-stroke.svg │ │ ├── dialog-filters.svg │ │ ├── dialog-icon-preview.svg │ │ ├── dialog-information.svg │ │ ├── dialog-input-devices.svg │ │ ├── dialog-layers.svg │ │ ├── dialog-memory.svg │ │ ├── dialog-messages.svg │ │ ├── dialog-no.svg │ │ ├── dialog-object-properties.svg │ │ ├── dialog-ok-apply.svg │ │ ├── dialog-ok.svg │ │ ├── dialog-password.svg │ │ ├── dialog-path-effects.svg │ │ ├── dialog-rows-and-columns.svg │ │ ├── dialog-scripts.svg │ │ ├── dialog-selectors.svg │ │ ├── dialog-templates.svg │ │ ├── dialog-text-and-font.svg │ │ ├── dialog-tile-clones.svg │ │ ├── dialog-transform.svg │ │ ├── dialog-warning.svg │ │ ├── dialog-xml-editor.svg │ │ ├── dialog-yes.svg │ │ ├── dirsync.svg │ │ ├── discrete.svg │ │ ├── displaymathmode.svg │ │ ├── distortionfx.svg │ │ ├── distribute-graph-directed.svg │ │ ├── distribute-graph.svg │ │ ├── distribute-horizontal-baseline.svg │ │ ├── distribute-horizontal-center.svg │ │ ├── distribute-horizontal-equal.svg │ │ ├── distribute-horizontal-gaps.svg │ │ ├── distribute-horizontal-left.svg │ │ ├── distribute-horizontal-margin.svg │ │ ├── distribute-horizontal-node.svg │ │ ├── distribute-horizontal-page.svg │ │ ├── distribute-horizontal-right.svg │ │ ├── distribute-horizontal-x.svg │ │ ├── distribute-horizontal.svg │ │ ├── distribute-randomize.svg │ │ ├── distribute-remove-overlaps.svg │ │ ├── distribute-unclump.svg │ │ ├── distribute-vertical-baseline.svg │ │ ├── distribute-vertical-bottom.svg │ │ ├── distribute-vertical-center.svg │ │ ├── distribute-vertical-equal.svg │ │ ├── distribute-vertical-gaps.svg │ │ ├── distribute-vertical-margin.svg │ │ ├── distribute-vertical-node.svg │ │ ├── distribute-vertical-page.svg │ │ ├── distribute-vertical-top.svg │ │ ├── distribute-vertical-y.svg │ │ ├── distribute-vertical.svg │ │ ├── document-cleanup.svg │ │ ├── document-close.svg │ │ ├── document-decrypt.svg │ │ ├── document-download.svg │ │ ├── document-edit-decrypt-verify.svg │ │ ├── document-edit-decrypt.svg │ │ ├── document-edit-encrypt.svg │ │ ├── document-edit-sign-encrypt.svg │ │ ├── document-edit-sign.svg │ │ ├── document-edit-verify.svg │ │ ├── document-edit.svg │ │ ├── document-encrypt.svg │ │ ├── document-encrypted.svg │ │ ├── document-export-ocal.svg │ │ ├── document-export-table.svg │ │ ├── document-export.svg │ │ ├── document-import-ocal.svg │ │ ├── document-import.svg │ │ ├── document-multiple.svg │ │ ├── document-new-from-template.svg │ │ ├── document-new.svg │ │ ├── document-open-data.svg │ │ ├── document-open-folder.svg │ │ ├── document-open-recent.svg │ │ ├── document-open-remote.svg │ │ ├── document-open.svg │ │ ├── document-page-setup.svg │ │ ├── document-preview-archive.svg │ │ ├── document-preview.svg │ │ ├── document-print-direct.svg │ │ ├── document-print-frame.svg │ │ ├── document-print-preview.svg │ │ ├── document-print.svg │ │ ├── document-properties.svg │ │ ├── document-replace.svg │ │ ├── document-revert-rtl.svg │ │ ├── document-revert.svg │ │ ├── document-save-all.svg │ │ ├── document-save-as-template.svg │ │ ├── document-save-as.svg │ │ ├── document-save.svg │ │ ├── document-send.svg │ │ ├── document-share.svg │ │ ├── document-sign.svg │ │ ├── document-swap.svg │ │ ├── documentation.svg │ │ ├── documentinfo.svg │ │ ├── dontknow.svg │ │ ├── double-page.svg │ │ ├── down.svg │ │ ├── download-amarok.svg │ │ ├── download-later.svg │ │ ├── download.svg │ │ ├── drag-surface.svg │ │ ├── draw-arrow-back.svg │ │ ├── draw-arrow-down.svg │ │ ├── draw-arrow-forward.svg │ │ ├── draw-arrow-up.svg │ │ ├── draw-arrow.svg │ │ ├── draw-bezier-curves.svg │ │ ├── draw-brush.svg │ │ ├── draw-calligraphic.svg │ │ ├── draw-circle.svg │ │ ├── draw-connector.svg │ │ ├── draw-cross.svg │ │ ├── draw-cuboid.svg │ │ ├── draw-donut.svg │ │ ├── draw-ellipse.svg │ │ ├── draw-eraser-delete-objects.svg │ │ ├── draw-eraser.svg │ │ ├── draw-freehand.svg │ │ ├── draw-geometry.svg │ │ ├── draw-halfcircle1.svg │ │ ├── draw-halfcircle2.svg │ │ ├── draw-halfcircle3.svg │ │ ├── draw-halfcircle4.svg │ │ ├── draw-highlight.svg │ │ ├── draw-line.svg │ │ ├── draw-path.svg │ │ ├── draw-polygon-star.svg │ │ ├── draw-polygon.svg │ │ ├── draw-polyline.svg │ │ ├── draw-rectangle-rounded.svg │ │ ├── draw-rectangle.svg │ │ ├── draw-spiral.svg │ │ ├── draw-square-inverted-corners.svg │ │ ├── draw-star.svg │ │ ├── draw-text.svg │ │ ├── draw-triangle.svg │ │ ├── draw-triangle1.svg │ │ ├── draw-triangle2.svg │ │ ├── draw-triangle3.svg │ │ ├── draw-triangle4.svg │ │ ├── draw-watercolor.svg │ │ ├── dvipdf.svg │ │ ├── dvipng.svg │ │ ├── dvips.svg │ │ ├── dvisearch.svg │ │ ├── dynamic-amarok.svg │ │ ├── earthquake.svg │ │ ├── edit-add.svg │ │ ├── edit-bomb.svg │ │ ├── edit-clear-all.svg │ │ ├── edit-clear-history.svg │ │ ├── edit-clear-list.svg │ │ ├── edit-clear-locationbar-ltr.svg │ │ ├── edit-clear-locationbar-rtl.svg │ │ ├── edit-clear-rtl.svg │ │ ├── edit-clear.svg │ │ ├── edit-clone-unlink.svg │ │ ├── edit-clone.svg │ │ ├── edit-comment.svg │ │ ├── edit-copy.svg │ │ ├── edit-cut.svg │ │ ├── edit-delete-remove.svg │ │ ├── edit-delete-shred.svg │ │ ├── edit-delete.svg │ │ ├── edit-download.svg │ │ ├── edit-duplicate.svg │ │ ├── edit-entry.svg │ │ ├── edit-find-mail.svg │ │ ├── edit-find-project.svg │ │ ├── edit-find-replace.svg │ │ ├── edit-find-user.svg │ │ ├── edit-find.svg │ │ ├── edit-flag.svg │ │ ├── edit-group.svg │ │ ├── edit-guides.svg │ │ ├── edit-image-face-add.svg │ │ ├── edit-image-face-detect.svg │ │ ├── edit-image-face-recognize.svg │ │ ├── edit-image-face-show.svg │ │ ├── edit-line-width.svg │ │ ├── edit-link.svg │ │ ├── edit-map.svg │ │ ├── edit-mark.svg │ │ ├── edit-node.svg │ │ ├── edit-none.svg │ │ ├── edit-opacity.svg │ │ ├── edit-paste-in-place.svg │ │ ├── edit-paste-style.svg │ │ ├── edit-paste.svg │ │ ├── edit-redo.svg │ │ ├── edit-rename.svg │ │ ├── edit-reset.svg │ │ ├── edit-select-all-layers.svg │ │ ├── edit-select-all.svg │ │ ├── edit-select-invert.svg │ │ ├── edit-select-lasso.svg │ │ ├── edit-select-none.svg │ │ ├── edit-select-original.svg │ │ ├── edit-select-text.svg │ │ ├── edit-select.svg │ │ ├── edit-table-cell-merge.svg │ │ ├── edit-table-cell-split.svg │ │ ├── edit-table-delete-column.svg │ │ ├── edit-table-delete-row.svg │ │ ├── edit-table-insert-column-left.svg │ │ ├── edit-table-insert-column-right.svg │ │ ├── edit-table-insert-row-above.svg │ │ ├── edit-table-insert-row-below.svg │ │ ├── edit-table-insert-row-under.svg │ │ ├── edit-text-frame-update.svg │ │ ├── edit-undo-history.svg │ │ ├── edit-undo.svg │ │ ├── edit.svg │ │ ├── edit_animation.svg │ │ ├── editclear.svg │ │ ├── editcopy.svg │ │ ├── editcut.svg │ │ ├── editdelete.svg │ │ ├── editimage.svg │ │ ├── editor.svg │ │ ├── editpaste.svg │ │ ├── editpath.svg │ │ ├── edittext.svg │ │ ├── edittrash.svg │ │ ├── ellipse-shape.svg │ │ ├── embosstool.svg │ │ ├── emph.svg │ │ ├── emptytrash.svg │ │ ├── end_of_life.svg │ │ ├── end_state.svg │ │ ├── enterprise.svg │ │ ├── entity.svg │ │ ├── entrance_animations.svg │ │ ├── entry-clone.svg │ │ ├── entry-delete.svg │ │ ├── entry-edit.svg │ │ ├── entry-new.svg │ │ ├── enum.svg │ │ ├── enumerate.svg │ │ ├── epiphany-download.svg │ │ ├── equalizer.svg │ │ ├── error.svg │ │ ├── errornext.svg │ │ ├── errorprev.svg │ │ ├── escape-direction-all.svg │ │ ├── escape-direction-down.svg │ │ ├── escape-direction-horizontal.svg │ │ ├── escape-direction-left.svg │ │ ├── escape-direction-right.svg │ │ ├── escape-direction-up.svg │ │ ├── escape-direction-vertical.svg │ │ ├── exception.svg │ │ ├── exchange-positions-clockwise.svg │ │ ├── exchange-positions-zorder.svg │ │ ├── exchange-positions.svg │ │ ├── exifinfo.svg │ │ ├── exit.svg │ │ ├── exit_animations.svg │ │ ├── expand-all.svg │ │ ├── expand.svg │ │ ├── extract-archive.svg │ │ ├── favicon-download.svg │ │ ├── favorite-genres-amarok.svg │ │ ├── favorite.svg │ │ ├── favorites.svg │ │ ├── fcitx-anthy.svg │ │ ├── fcitx-bopomofo.svg │ │ ├── fcitx-cangjie.svg │ │ ├── fcitx-chewing.svg │ │ ├── fcitx-chn.svg │ │ ├── fcitx-chttrans-active.svg │ │ ├── fcitx-chttrans-inactive.svg │ │ ├── fcitx-erbi.svg │ │ ├── fcitx-fullwidth-active.svg │ │ ├── fcitx-fullwidth-inactive.svg │ │ ├── fcitx-googlepinyin.svg │ │ ├── fcitx-handwriting-active.svg │ │ ├── fcitx-handwriting-inactive.svg │ │ ├── fcitx-hangul.svg │ │ ├── fcitx-kbd.svg │ │ ├── fcitx-kkc.svg │ │ ├── fcitx-pinyin-libpinyin.svg │ │ ├── fcitx-pinyin.svg │ │ ├── fcitx-punc-active.svg │ │ ├── fcitx-punc-inactive.svg │ │ ├── fcitx-remind-active.svg │ │ ├── fcitx-remind-inactive.svg │ │ ├── fcitx-rime-deploy.svg │ │ ├── fcitx-rime-sync.svg │ │ ├── fcitx-rime.svg │ │ ├── fcitx-sayura.svg │ │ ├── fcitx-shuangpin-libpinyin.svg │ │ ├── fcitx-shuangpin.svg │ │ ├── fcitx-skk.svg │ │ ├── fcitx-sunpinyin.svg │ │ ├── fcitx-unikey.svg │ │ ├── fcitx-vk-active.svg │ │ ├── fcitx-vk-inactive.svg │ │ ├── fcitx-wbpy.svg │ │ ├── fcitx-wubi.svg │ │ ├── fcitx-zhuyin.svg │ │ ├── fcitx-ziranma.svg │ │ ├── feed-subscribe.svg │ │ ├── file-zoom-in.svg │ │ ├── file-zoom-out.svg │ │ ├── filefind.svg │ │ ├── filegrep.svg │ │ ├── filename-album-amarok.svg │ │ ├── filename-and-amarok.svg │ │ ├── filename-artist-amarok.svg │ │ ├── filename-bpm-amarok.svg │ │ ├── filename-comment-amarok.svg │ │ ├── filename-composer-amarok.svg │ │ ├── filename-dash-amarok.svg │ │ ├── filename-discnumber-amarok.svg │ │ ├── filename-divider.svg │ │ ├── filename-dot-amarok.svg │ │ ├── filename-filetype-amarok.svg │ │ ├── filename-genre-amarok.svg │ │ ├── filename-group-length.svg │ │ ├── filename-group-tracks.svg │ │ ├── filename-ignore-amarok.svg │ │ ├── filename-initial-amarok.svg │ │ ├── filename-last-played.svg │ │ ├── filename-moodbar.svg │ │ ├── filename-sample-rate.svg │ │ ├── filename-slash-amarok.svg │ │ ├── filename-space-amarok.svg │ │ ├── filename-title-amarok.svg │ │ ├── filename-track-amarok.svg │ │ ├── filename-underscore-amarok.svg │ │ ├── filename-year-amarok.svg │ │ ├── filenew.svg │ │ ├── fileopen.svg │ │ ├── fileprint.svg │ │ ├── filequickprint.svg │ │ ├── filesave.svg │ │ ├── filesaveas.svg │ │ ├── fileview-preview.svg │ │ ├── fill-color.svg │ │ ├── fill-rule-even-odd.svg │ │ ├── fill-rule-nonzero.svg │ │ ├── filmgrain.svg │ │ ├── final_activity.svg │ │ ├── find-location.svg │ │ ├── find.svg │ │ ├── fingerprint.svg │ │ ├── fitbest.svg │ │ ├── fitheight.svg │ │ ├── fitmanual.svg │ │ ├── fitsize.svg │ │ ├── fitwidth.svg │ │ ├── flag-black.svg │ │ ├── flag-blue.svg │ │ ├── flag-green.svg │ │ ├── flag-red.svg │ │ ├── flag-yellow.svg │ │ ├── flag.svg │ │ ├── flash.svg │ │ ├── flashlight-off.svg │ │ ├── flashlight-on.svg │ │ ├── flower-shape.svg │ │ ├── fm-compact.svg │ │ ├── fm-details.svg │ │ ├── fm-icons.svg │ │ ├── fm-new.svg │ │ ├── fm-thumbs.svg │ │ ├── focus-legacy-systray.svg │ │ ├── focus-top-bar.svg │ │ ├── focus-windows.svg │ │ ├── folder-copy.svg │ │ ├── folder-move.svg │ │ ├── folder-new.svg │ │ ├── folder-open-recent.svg │ │ ├── folder-open.svg │ │ ├── folder-saved-search.svg │ │ ├── folder-stash.svg │ │ ├── folder-sync.svg │ │ ├── folder-tag.svg │ │ ├── folder_color_picker.svg │ │ ├── folder_new.svg │ │ ├── followmouse.svg │ │ ├── font-disable.svg │ │ ├── font-enable.svg │ │ ├── font-select.svg │ │ ├── font.svg │ │ ├── food.svg │ │ ├── footsteps.svg │ │ ├── forecast.svg │ │ ├── foreignkey_constraint.svg │ │ ├── fork.svg │ │ ├── format-add-node.svg │ │ ├── format-align-vertical-bottom.svg │ │ ├── format-align-vertical-center.svg │ │ ├── format-align-vertical-top.svg │ │ ├── format-border-set-all.svg │ │ ├── format-border-set-bottom.svg │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ ├── format-border-set-diagonal-tl-br.svg │ │ ├── format-border-set-external.svg │ │ ├── format-border-set-internal-horizontal.svg │ │ ├── format-border-set-internal-vertical.svg │ │ ├── format-border-set-internal.svg │ │ ├── format-border-set-left.svg │ │ ├── format-border-set-none.svg │ │ ├── format-border-set-right.svg │ │ ├── format-border-set-top.svg │ │ ├── format-border-style.svg │ │ ├── format-break-node.svg │ │ ├── format-connect-node.svg │ │ ├── format-convert-to-path.svg │ │ ├── format-currency.svg │ │ ├── format-disconnect-node.svg │ │ ├── format-fill-color.svg │ │ ├── format-font-size-less.svg │ │ ├── format-font-size-more.svg │ │ ├── format-indent-less.svg │ │ ├── format-indent-more.svg │ │ ├── format-insert-node.svg │ │ ├── format-join-node.svg │ │ ├── format-justify-center.svg │ │ ├── format-justify-fill.svg │ │ ├── format-justify-left.svg │ │ ├── format-justify-right.svg │ │ ├── format-line-spacing-double.svg │ │ ├── format-line-spacing-normal.svg │ │ ├── format-line-spacing-triple.svg │ │ ├── format-list-ordered.svg │ │ ├── format-list-unordered.svg │ │ ├── format-node-corner.svg │ │ ├── format-node-curve.svg │ │ ├── format-node-line.svg │ │ ├── format-node-smooth.svg │ │ ├── format-node-symmetric.svg │ │ ├── format-number-percent.svg │ │ ├── format-precision-less.svg │ │ ├── format-precision-more.svg │ │ ├── format-remove-node.svg │ │ ├── format-segment-curve.svg │ │ ├── format-segment-line.svg │ │ ├── format-stroke-color.svg │ │ ├── format-text-blockquote.svg │ │ ├── format-text-bold.svg │ │ ├── format-text-capitalize.svg │ │ ├── format-text-code.svg │ │ ├── format-text-color.svg │ │ ├── format-text-direction-horizontal.svg │ │ ├── format-text-direction-ltr.svg │ │ ├── format-text-direction-r2l.svg │ │ ├── format-text-direction-rtl.svg │ │ ├── format-text-direction-vertical-lr.svg │ │ ├── format-text-direction-vertical.svg │ │ ├── format-text-italic.svg │ │ ├── format-text-larger.svg │ │ ├── format-text-lowercase.svg │ │ ├── format-text-remove-formatting.svg │ │ ├── format-text-smaller.svg │ │ ├── format-text-strikethrough.svg │ │ ├── format-text-subscript.svg │ │ ├── format-text-superscript.svg │ │ ├── format-text-symbol.svg │ │ ├── format-text-underline-squiggle.svg │ │ ├── format-text-underline.svg │ │ ├── format-text-uppercase.svg │ │ ├── formula.svg │ │ ├── forward.svg │ │ ├── freerotation.svg │ │ ├── games-achievements.svg │ │ ├── games-config-background.svg │ │ ├── games-config-board.svg │ │ ├── games-config-custom.svg │ │ ├── games-config-options.svg │ │ ├── games-config-theme.svg │ │ ├── games-config-tiles.svg │ │ ├── games-difficult.svg │ │ ├── games-endturn.svg │ │ ├── games-highscores.svg │ │ ├── games-hint.svg │ │ ├── games-solve.svg │ │ ├── geany-build.svg │ │ ├── geany-close-all.svg │ │ ├── geany-save-all.svg │ │ ├── gearhead-shape.svg │ │ ├── generalisation.svg │ │ ├── generalise.svg │ │ ├── get-hot-new-stuff.svg │ │ ├── giggle-branch.svg │ │ ├── giggle-diff-view.svg │ │ ├── giggle-history-view.svg │ │ ├── giggle-remote.svg │ │ ├── giggle-tag.svg │ │ ├── globe.svg │ │ ├── gnome-app-install-star.svg │ │ ├── gnome-lockscreen.svg │ │ ├── gnome-searchtool.svg │ │ ├── gnome-stock-mail-fwd.svg │ │ ├── gnome-stock-mail-new.svg │ │ ├── gnome-stock-mail-rpl.svg │ │ ├── gnome-stock-mail-snd.svg │ │ ├── gnumeric-autofilter-delete.svg │ │ ├── gnumeric-autofilter.svg │ │ ├── gnumeric-autosum.svg │ │ ├── gnumeric-brush.svg │ │ ├── gnumeric-bucket.svg │ │ ├── gnumeric-cells-merge.svg │ │ ├── gnumeric-cells-split.svg │ │ ├── gnumeric-column-add.svg │ │ ├── gnumeric-column-delete.svg │ │ ├── gnumeric-column-hide.svg │ │ ├── gnumeric-column-size.svg │ │ ├── gnumeric-column-unhide.svg │ │ ├── gnumeric-comment-add.svg │ │ ├── gnumeric-comment-delete.svg │ │ ├── gnumeric-comment-edit.svg │ │ ├── gnumeric-component-insert-shaped.svg │ │ ├── gnumeric-data-slicer.svg │ │ ├── gnumeric-font.svg │ │ ├── gnumeric-format-accounting.svg │ │ ├── gnumeric-format-border-all.svg │ │ ├── gnumeric-format-border-bottom.svg │ │ ├── gnumeric-format-border-diag.svg │ │ ├── gnumeric-format-border-double-bottom.svg │ │ ├── gnumeric-format-border-inside-horiz.svg │ │ ├── gnumeric-format-border-left.svg │ │ ├── gnumeric-format-border-none.svg │ │ ├── gnumeric-format-border-outside.svg │ │ ├── gnumeric-format-border-rev-diag.svg │ │ ├── gnumeric-format-border-right.svg │ │ ├── gnumeric-format-border-thick-bottom.svg │ │ ├── gnumeric-format-border-thick-outside.svg │ │ ├── gnumeric-format-border-top-n-bottom.svg │ │ ├── gnumeric-format-border-top-n-double-bottom.svg │ │ ├── gnumeric-format-border-top-n-thick-bottom.svg │ │ ├── gnumeric-format-border-top.svg │ │ ├── gnumeric-format-percentage.svg │ │ ├── gnumeric-format-precision-decrease.svg │ │ ├── gnumeric-format-precision-increase.svg │ │ ├── gnumeric-format-thousand-separator.svg │ │ ├── gnumeric-formulaguru.svg │ │ ├── gnumeric-graphguru.svg │ │ ├── gnumeric-group.svg │ │ ├── gnumeric-link-add.svg │ │ ├── gnumeric-link-delete.svg │ │ ├── gnumeric-link-edit.svg │ │ ├── gnumeric-link-email.svg │ │ ├── gnumeric-link-external.svg │ │ ├── gnumeric-link-internal.svg │ │ ├── gnumeric-link-url.svg │ │ ├── gnumeric-object-arrow.svg │ │ ├── gnumeric-object-button.svg │ │ ├── gnumeric-object-checkbox.svg │ │ ├── gnumeric-object-combo.svg │ │ ├── gnumeric-object-ellipse.svg │ │ ├── gnumeric-object-label.svg │ │ ├── gnumeric-object-line.svg │ │ ├── gnumeric-object-list.svg │ │ ├── gnumeric-object-rectangle.svg │ │ ├── gnumeric-object-scrollbar.svg │ │ ├── gnumeric-object-spinbutton.svg │ │ ├── gnumeric-pagesetup-hf-cell.svg │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ ├── gnumeric-pagesetup-hf-time.svg │ │ ├── gnumeric-protection-no.svg │ │ ├── gnumeric-protection-yes.svg │ │ ├── gnumeric-row-add.svg │ │ ├── gnumeric-row-delete.svg │ │ ├── gnumeric-row-hide.svg │ │ ├── gnumeric-row-size.svg │ │ ├── gnumeric-row-unhide.svg │ │ ├── gnumeric-subscript.svg │ │ ├── gnumeric-superscript.svg │ │ ├── gnumeric-ungroup.svg │ │ ├── gnumeric-visible.svg │ │ ├── go-bottom.svg │ │ ├── go-down-search.svg │ │ ├── go-down-skip.svg │ │ ├── go-down-symbolic.svg │ │ ├── go-down.svg │ │ ├── go-first-view-page.svg │ │ ├── go-first-view.svg │ │ ├── go-first.svg │ │ ├── go-home-large.svg │ │ ├── go-home-symbolic.svg │ │ ├── go-home.svg │ │ ├── go-jump-declaration.svg │ │ ├── go-jump-definition.svg │ │ ├── go-jump-locationbar.svg │ │ ├── go-jump-rtl.svg │ │ ├── go-jump-today.svg │ │ ├── go-jump.svg │ │ ├── go-last-view-page.svg │ │ ├── go-last-view.svg │ │ ├── go-last.svg │ │ ├── go-left-symbolic.svg │ │ ├── go-left.svg │ │ ├── go-next-context.svg │ │ ├── go-next-skip.svg │ │ ├── go-next-symbolic.svg │ │ ├── go-next-use.svg │ │ ├── go-next-view-page.svg │ │ ├── go-next-view.svg │ │ ├── go-next.svg │ │ ├── go-parent-folder.svg │ │ ├── go-previous-context.svg │ │ ├── go-previous-skip.svg │ │ ├── go-previous-symbolic.svg │ │ ├── go-previous-use.svg │ │ ├── go-previous-view-page.svg │ │ ├── go-previous-view.svg │ │ ├── go-previous.svg │ │ ├── go-right-symbolic.svg │ │ ├── go-right.svg │ │ ├── go-today.svg │ │ ├── go-top.svg │ │ ├── go-up-search.svg │ │ ├── go-up-skip.svg │ │ ├── go-up-symbolic.svg │ │ ├── go-up.svg │ │ ├── gohome.svg │ │ ├── gpg.svg │ │ ├── gpgsm.svg │ │ ├── gps.svg │ │ ├── gradient.svg │ │ ├── graphics.svg │ │ ├── grid-rectangular.svg │ │ ├── group-delete.svg │ │ ├── group-edit.svg │ │ ├── group-new.svg │ │ ├── group.svg │ │ ├── gtg-home.svg │ │ ├── gtg-note-new.svg │ │ ├── gtg-people.svg │ │ ├── gtg-plugin.svg │ │ ├── gtg-tag-new.svg │ │ ├── gtg-tag.svg │ │ ├── gtg-tags-all.svg │ │ ├── gtg-tags-none.svg │ │ ├── gtg-task-dismiss.svg │ │ ├── gtg-task-done.svg │ │ ├── gtg-task-new.svg │ │ ├── gtg-task-undismiss.svg │ │ ├── gtg-task-undone.svg │ │ ├── gtg-work.svg │ │ ├── gtk-about.svg │ │ ├── gtk-add.svg │ │ ├── gtk-apply.svg │ │ ├── gtk-authentication.svg │ │ ├── gtk-bold.svg │ │ ├── gtk-cancel.svg │ │ ├── gtk-cdrom.svg │ │ ├── gtk-clear.svg │ │ ├── gtk-close.svg │ │ ├── gtk-color-picker.svg │ │ ├── gtk-connect.svg │ │ ├── gtk-convert.svg │ │ ├── gtk-copy.svg │ │ ├── gtk-cut.svg │ │ ├── gtk-delete.svg │ │ ├── gtk-directory.svg │ │ ├── gtk-disconnect.svg │ │ ├── gtk-dnd-multiple.svg │ │ ├── gtk-edit.svg │ │ ├── gtk-execute.svg │ │ ├── gtk-file.svg │ │ ├── gtk-find-and-replace.svg │ │ ├── gtk-find.svg │ │ ├── gtk-floppy.svg │ │ ├── gtk-fullscreen.svg │ │ ├── gtk-go-back-ltr.svg │ │ ├── gtk-go-back-rtl.svg │ │ ├── gtk-go-down.svg │ │ ├── gtk-go-forward-ltr.svg │ │ ├── gtk-go-forward-rtl.svg │ │ ├── gtk-go-up.svg │ │ ├── gtk-goto-bottom.svg │ │ ├── gtk-goto-first-ltr.svg │ │ ├── gtk-goto-first-rtl.svg │ │ ├── gtk-goto-last-ltr.svg │ │ ├── gtk-goto-last-rtl.svg │ │ ├── gtk-goto-top.svg │ │ ├── gtk-home.svg │ │ ├── gtk-indent-ltr.svg │ │ ├── gtk-indent-rtl.svg │ │ ├── gtk-index.svg │ │ ├── gtk-info.svg │ │ ├── gtk-italic.svg │ │ ├── gtk-jump-to-ltr.svg │ │ ├── gtk-jump-to-rtl.svg │ │ ├── gtk-justify-center.svg │ │ ├── gtk-justify-fill.svg │ │ ├── gtk-justify-left.svg │ │ ├── gtk-justify-right.svg │ │ ├── gtk-leave-fullscreen.svg │ │ ├── gtk-media-forward-ltr.svg │ │ ├── gtk-media-forward-rtl.svg │ │ ├── gtk-media-next-ltr.svg │ │ ├── gtk-media-next-rtl.svg │ │ ├── gtk-media-pause.svg │ │ ├── gtk-media-play-ltr.svg │ │ ├── gtk-media-previous-ltr.svg │ │ ├── gtk-media-previous-rtl.svg │ │ ├── gtk-media-record.svg │ │ ├── gtk-media-rewind-ltr.svg │ │ ├── gtk-media-rewind-rtl.svg │ │ ├── gtk-media-stop.svg │ │ ├── gtk-network.svg │ │ ├── gtk-new.svg │ │ ├── gtk-no.svg │ │ ├── gtk-ok.svg │ │ ├── gtk-open.svg │ │ ├── gtk-paste.svg │ │ ├── gtk-preferences.svg │ │ ├── gtk-print-preview.svg │ │ ├── gtk-print.svg │ │ ├── gtk-properties.svg │ │ ├── gtk-quit.svg │ │ ├── gtk-refresh.svg │ │ ├── gtk-remove.svg │ │ ├── gtk-revert-to-saved-ltr.svg │ │ ├── gtk-revert-to-saved-rtl.svg │ │ ├── gtk-save-as.svg │ │ ├── gtk-save.svg │ │ ├── gtk-select-all.svg │ │ ├── gtk-select-color.svg │ │ ├── gtk-select-font.svg │ │ ├── gtk-spell-check.svg │ │ ├── gtk-stop.svg │ │ ├── gtk-tab-duplicate.svg │ │ ├── gtk-tab-new.svg │ │ ├── gtk-undelete-ltr.svg │ │ ├── gtk-undelete-rtl.svg │ │ ├── gtk-yes.svg │ │ ├── gtk-zoom-fit.svg │ │ ├── guides.svg │ │ ├── hand.svg │ │ ├── handle-left.svg │ │ ├── handle-move.svg │ │ ├── handle-right.svg │ │ ├── handle-sort.svg │ │ ├── hb-activity.svg │ │ ├── hb-add-queue.svg │ │ ├── hb-complete.svg │ │ ├── hb-edit.svg │ │ ├── hb-pause.svg │ │ ├── hb-picture.svg │ │ ├── hb-presets.svg │ │ ├── hb-remove.svg │ │ ├── hb-showqueue.svg │ │ ├── hb-source.svg │ │ ├── hb-start.svg │ │ ├── hb-stop.svg │ │ ├── headphones.svg │ │ ├── help-about.svg │ │ ├── help-contents.svg │ │ ├── help-contextual.svg │ │ ├── help-donate.svg │ │ ├── help-feedback.svg │ │ ├── help-hint.svg │ │ ├── help-info.svg │ │ ├── help-keybord-shortcuts.svg │ │ ├── help-latex.svg │ │ ├── help-whatsthis.svg │ │ ├── help.svg │ │ ├── hexagon-shape.svg │ │ ├── hide-categories.svg │ │ ├── hide-reconciled.svg │ │ ├── hide_table_column.svg │ │ ├── hide_table_row.svg │ │ ├── hidemouse.svg │ │ ├── hint.svg │ │ ├── history.svg │ │ ├── history_entry.svg │ │ ├── hook-notifier.svg │ │ ├── horizontal.svg │ │ ├── hotpixels.svg │ │ ├── icon_console.svg │ │ ├── icon_details.svg │ │ ├── identity.svg │ │ ├── im-aim.svg │ │ ├── im-ban-kick-user.svg │ │ ├── im-ban-user.svg │ │ ├── im-facebook.svg │ │ ├── im-gadugadu.svg │ │ ├── im-google-talk.svg │ │ ├── im-google.svg │ │ ├── im-groupwise.svg │ │ ├── im-icq.svg │ │ ├── im-identi.ca.svg │ │ ├── im-invisible-user.svg │ │ ├── im-irc.svg │ │ ├── im-jabber.svg │ │ ├── im-kick-user.svg │ │ ├── im-local-xmpp.svg │ │ ├── im-message-new.svg │ │ ├── im-msn.svg │ │ ├── im-nov.svg │ │ ├── im-qq.svg │ │ ├── im-skype.svg │ │ ├── im-twitter.svg │ │ ├── im-user-away.svg │ │ ├── im-user-busy.svg │ │ ├── im-user-offline.svg │ │ ├── im-user-online.svg │ │ ├── im-user.svg │ │ ├── im-yahoo.svg │ │ ├── im-youtube.svg │ │ ├── image-adjust.svg │ │ ├── image-auto-adjust.svg │ │ ├── image-crop.svg │ │ ├── image-denoise.svg │ │ ├── image-filter.svg │ │ ├── image-loading.svg │ │ ├── image-missing.svg │ │ ├── image-red-eye.svg │ │ ├── image-sharpen.svg │ │ ├── image-straighten.svg │ │ ├── imagecomment.svg │ │ ├── inbox.svg │ │ ├── initial_state.svg │ │ ├── inpainting.svg │ │ ├── input-mouse-click-left.svg │ │ ├── input-mouse-click-middle.svg │ │ ├── input-mouse-click-right.svg │ │ ├── insert-button.svg │ │ ├── insert-emoticon.svg │ │ ├── insert-endnote.svg │ │ ├── insert-footnote.svg │ │ ├── insert-horizontal-rule.svg │ │ ├── insert-image.svg │ │ ├── insert-link.svg │ │ ├── insert-math-expression.svg │ │ ├── insert-more-mark.svg │ │ ├── insert-object.svg │ │ ├── insert-page-break.svg │ │ ├── insert-table-of-contents.svg │ │ ├── insert-table-row.svg │ │ ├── insert-table.svg │ │ ├── insert-tableofcontents.svg │ │ ├── insert-text-frame.svg │ │ ├── insert-text.svg │ │ ├── insertcell.svg │ │ ├── institution-add.svg │ │ ├── institution-delete.svg │ │ ├── institution-edit.svg │ │ ├── institution.svg │ │ ├── interface.svg │ │ ├── internet-amarok.svg │ │ ├── internet-services.svg │ │ ├── invertimage.svg │ │ ├── investment-add.svg │ │ ├── investment-delete.svg │ │ ├── investment-update-online-all.svg │ │ ├── investment-update-online.svg │ │ ├── investment.svg │ │ ├── irc-channel-active.svg │ │ ├── irc-channel-inactive.svg │ │ ├── irc-close-channel.svg │ │ ├── irc-join-channel.svg │ │ ├── irc-operator.svg │ │ ├── irc-remove-operator.svg │ │ ├── irc-unvoice.svg │ │ ├── irc-voice.svg │ │ ├── item.svg │ │ ├── itemize.svg │ │ ├── items-tags.svg │ │ ├── itmages-add.svg │ │ ├── itmages-cancel.svg │ │ ├── itmages-copy-link.svg │ │ ├── itmages-error.svg │ │ ├── itmages-folder.svg │ │ ├── itmages-information.svg │ │ ├── itmages-open-browser.svg │ │ ├── itmages-question.svg │ │ ├── itmages-quit.svg │ │ ├── itmages-remove.svg │ │ ├── itmages-resize.svg │ │ ├── itmages-rotate.svg │ │ ├── itmages-select-all.svg │ │ ├── itmages-settings.svg │ │ ├── itmages-stop.svg │ │ ├── itmages-tools.svg │ │ ├── itmages-upload.svg │ │ ├── itmages-utils.svg │ │ ├── itmages-warning.svg │ │ ├── join.svg │ │ ├── journal-new.svg │ │ ├── junction.svg │ │ ├── kdeconnect.svg │ │ ├── kdenlive-add-clip.svg │ │ ├── kdenlive-add-color-clip.svg │ │ ├── kdenlive-add-slide-clip.svg │ │ ├── kdenlive-add-text-clip.svg │ │ ├── kdenlive-align-bottom.svg │ │ ├── kdenlive-align-hor.svg │ │ ├── kdenlive-align-left.svg │ │ ├── kdenlive-align-none.svg │ │ ├── kdenlive-align-right.svg │ │ ├── kdenlive-align-top.svg │ │ ├── kdenlive-align-vert.svg │ │ ├── kdenlive-composite.svg │ │ ├── kdenlive-custom-effect.svg │ │ ├── kdenlive-deleffect.svg │ │ ├── kdenlive-down.svg │ │ ├── kdenlive-hide-audio.svg │ │ ├── kdenlive-hide-video.svg │ │ ├── kdenlive-insert-edit.svg │ │ ├── kdenlive-insert-rect.svg │ │ ├── kdenlive-insert-unicode.svg │ │ ├── kdenlive-lock.svg │ │ ├── kdenlive-menu.svg │ │ ├── kdenlive-no-composite.svg │ │ ├── kdenlive-normal-edit.svg │ │ ├── kdenlive-object-height.svg │ │ ├── kdenlive-object-width.svg │ │ ├── kdenlive-overwrite-edit.svg │ │ ├── kdenlive-select-all.svg │ │ ├── kdenlive-select-images.svg │ │ ├── kdenlive-select-rects.svg │ │ ├── kdenlive-select-texts.svg │ │ ├── kdenlive-select-tool.svg │ │ ├── kdenlive-show-audio.svg │ │ ├── kdenlive-show-audiothumb.svg │ │ ├── kdenlive-show-markers.svg │ │ ├── kdenlive-show-video.svg │ │ ├── kdenlive-show-videothumb.svg │ │ ├── kdenlive-snap.svg │ │ ├── kdenlive-spacer-tool.svg │ │ ├── kdenlive-split-audio.svg │ │ ├── kdenlive-track-has-effect.svg │ │ ├── kdenlive-track_has_effect.svg │ │ ├── kdenlive-unlock.svg │ │ ├── kdenlive-unselect-all.svg │ │ ├── kdenlive-up.svg │ │ ├── kdenlive-zindex-bottom.svg │ │ ├── kdenlive-zindex-down.svg │ │ ├── kdenlive-zindex-top.svg │ │ ├── kdenlive-zindex-up.svg │ │ ├── kdenlive-zone-end.svg │ │ ├── kdenlive-zone-start.svg │ │ ├── kdenlive-zoom-large.svg │ │ ├── kdenlive-zoom-small.svg │ │ ├── kdocumentinfo.svg │ │ ├── key-enter.svg │ │ ├── key_enter.svg │ │ ├── kfm_home.svg │ │ ├── kmousetool_off.svg │ │ ├── kmousetool_on.svg │ │ ├── kmouth-phrase-new.svg │ │ ├── kmouth-phrase.svg │ │ ├── kmouth-phrasebook.svg │ │ ├── kmouth-phresebook-new.svg │ │ ├── knotes_alarm.svg │ │ ├── knotes_date.svg │ │ ├── knotes_delete.svg │ │ ├── know.svg │ │ ├── kontes_close.svg │ │ ├── kr_combine.svg │ │ ├── kr_comparedirs.svg │ │ ├── kr_diskusage.svg │ │ ├── kr_jumpback.svg │ │ ├── kr_mountman.svg │ │ ├── kr_setjumpback.svg │ │ ├── kr_syncbrowse_off.svg │ │ ├── kr_syncbrowse_on.svg │ │ ├── kr_unselect.svg │ │ ├── kstars_advanced.svg │ │ ├── kstars_catalog.svg │ │ ├── kstars_cbound.svg │ │ ├── kstars_clines.svg │ │ ├── kstars_cnames.svg │ │ ├── kstars_colors.svg │ │ ├── kstars_constellationart.svg │ │ ├── kstars_deepsky.svg │ │ ├── kstars_ekos.svg │ │ ├── kstars_fitsviewer.svg │ │ ├── kstars_flag.svg │ │ ├── kstars_grid.svg │ │ ├── kstars_guides.svg │ │ ├── kstars_hgrid.svg │ │ ├── kstars_horizon.svg │ │ ├── kstars_indi.svg │ │ ├── kstars_mw.svg │ │ ├── kstars_planets.svg │ │ ├── kstars_satellites.svg │ │ ├── kstars_solarsystem.svg │ │ ├── kstars_stars.svg │ │ ├── kstars_supernovae.svg │ │ ├── kstars_xplanet.svg │ │ ├── kt-add-feeds.svg │ │ ├── kt-add-filters.svg │ │ ├── kt-bandwidth-scheduler.svg │ │ ├── kt-change-tracker.svg │ │ ├── kt-check-data.svg │ │ ├── kt-chunks.svg │ │ ├── kt-encrypted.svg │ │ ├── kt-info-widget.svg │ │ ├── kt-magnet.svg │ │ ├── kt-pause.svg │ │ ├── kt-plugins.svg │ │ ├── kt-queue-manager.svg │ │ ├── kt-remove-feeds.svg │ │ ├── kt-remove-filters.svg │ │ ├── kt-remove.svg │ │ ├── kt-restore-defaults.svg │ │ ├── kt-set-max-download-speed.svg │ │ ├── kt-set-max-upload-speed.svg │ │ ├── kt-show-statusbar.svg │ │ ├── kt-speed-limits.svg │ │ ├── kt-start-all.svg │ │ ├── kt-start.svg │ │ ├── kt-stop-all.svg │ │ ├── kt-stop.svg │ │ ├── kt-upnp.svg │ │ ├── ktnef_extract_all_to.svg │ │ ├── ktnef_extract_to.svg │ │ ├── l2h.svg │ │ ├── label-amarok.svg │ │ ├── label.svg │ │ ├── labplot-1x-zoom.svg │ │ ├── labplot-2x-zoom.svg │ │ ├── labplot-3x-zoom.svg │ │ ├── labplot-4x-zoom.svg │ │ ├── labplot-5x-zoom.svg │ │ ├── labplot-TeX-logo.svg │ │ ├── labplot-auto-scale-all.svg │ │ ├── labplot-auto-scale-x.svg │ │ ├── labplot-auto-scale-y.svg │ │ ├── labplot-axis-horizontal.svg │ │ ├── labplot-axis-vertical.svg │ │ ├── labplot-cursor-arrow.svg │ │ ├── labplot-editbreaklayout.svg │ │ ├── labplot-editgrid.svg │ │ ├── labplot-edithlayout.svg │ │ ├── labplot-editvlayout.svg │ │ ├── labplot-format-text-symbol.svg │ │ ├── labplot-matrix-new.svg │ │ ├── labplot-matrix.svg │ │ ├── labplot-plot-axis-points.svg │ │ ├── labplot-shift-down-y.svg │ │ ├── labplot-shift-left-x.svg │ │ ├── labplot-shift-right-x.svg │ │ ├── labplot-shift-up-y.svg │ │ ├── labplot-spreadsheet-new.svg │ │ ├── labplot-spreadsheet.svg │ │ ├── labplot-transform-move.svg │ │ ├── labplot-workbook-new.svg │ │ ├── labplot-workbook.svg │ │ ├── labplot-worksheet-new.svg │ │ ├── labplot-worksheet.svg │ │ ├── labplot-xy-curve-points.svg │ │ ├── labplot-xy-curve-segments.svg │ │ ├── labplot-xy-curve.svg │ │ ├── labplot-xy-equation-curve.svg │ │ ├── labplot-xy-fit-curve.svg │ │ ├── labplot-xy-fourier-filter-curve.svg │ │ ├── labplot-xy-fourier-transform-curve.svg │ │ ├── labplot-xy-interpolation-curve.svg │ │ ├── labplot-xy-plot-four-axes.svg │ │ ├── labplot-xy-plot-two-axes-centered-origin.svg │ │ ├── labplot-xy-plot-two-axes-centered.svg │ │ ├── labplot-xy-plot-two-axes.svg │ │ ├── labplot-xy-smoothing-curve.svg │ │ ├── labplot-zoom-in-x.svg │ │ ├── labplot-zoom-in-y.svg │ │ ├── labplot-zoom-out-x.svg │ │ ├── labplot-zoom-out-y.svg │ │ ├── labplot-zoom-select-x.svg │ │ ├── labplot-zoom-select-y.svg │ │ ├── labplot-zoom-select.svg │ │ ├── languages.svg │ │ ├── latex-config.svg │ │ ├── latex.svg │ │ ├── layer-bottom.svg │ │ ├── layer-delete.svg │ │ ├── layer-duplicate.svg │ │ ├── layer-lower.svg │ │ ├── layer-new.svg │ │ ├── layer-next.svg │ │ ├── layer-previous.svg │ │ ├── layer-raise.svg │ │ ├── layer-rename.svg │ │ ├── layer-top.svg │ │ ├── layer-visible-off.svg │ │ ├── layer-visible-on.svg │ │ ├── ledger.svg │ │ ├── lens.svg │ │ ├── lensautofix.svg │ │ ├── lensdistortion.svg │ │ ├── libpeas-plugin.svg │ │ ├── license.svg │ │ ├── lighttable.svg │ │ ├── lighttableadd.svg │ │ ├── lilypond.svg │ │ ├── linear.svg │ │ ├── lines-connector.svg │ │ ├── link.svg │ │ ├── list-add-font.svg │ │ ├── list-add-user.svg │ │ ├── list-add.svg │ │ ├── list-remove-all.svg │ │ ├── list-remove-user.svg │ │ ├── list-remove.svg │ │ ├── list-resource-add.svg │ │ ├── location.svg │ │ ├── locationbar_erase.svg │ │ ├── lock.svg │ │ ├── love-amarok.svg │ │ ├── love.svg │ │ ├── lpi-bug.svg │ │ ├── lpi-help.svg │ │ ├── lpi-translate.svg │ │ ├── mail-archive.svg │ │ ├── mail-attachment.svg │ │ ├── mail-deleted.svg │ │ ├── mail-encrypted-full.svg │ │ ├── mail-encrypted-part.svg │ │ ├── mail-encrypted.svg │ │ ├── mail-flag.svg │ │ ├── mail-flagged.svg │ │ ├── mail-folder-inbox.svg │ │ ├── mail-folder-outbox.svg │ │ ├── mail-folder-sent.svg │ │ ├── mail-forward.svg │ │ ├── mail-forwarded-replied.svg │ │ ├── mail-forwarded.svg │ │ ├── mail-inbox.svg │ │ ├── mail-invitation.svg │ │ ├── mail-mark-important.svg │ │ ├── mail-mark-junk.svg │ │ ├── mail-mark-notjunk.svg │ │ ├── mail-mark-read.svg │ │ ├── mail-mark-task.svg │ │ ├── mail-mark-unread-new.svg │ │ ├── mail-mark-unread.svg │ │ ├── mail-meeting-request-reply.svg │ │ ├── mail-message-new-list.svg │ │ ├── mail-message-new.svg │ │ ├── mail-message.svg │ │ ├── mail-move.svg │ │ ├── mail-open-multiple.svg │ │ ├── mail-outbox.svg │ │ ├── mail-queue.svg │ │ ├── mail-queued.svg │ │ ├── mail-read.svg │ │ ├── mail-receive.svg │ │ ├── mail-replied.svg │ │ ├── mail-reply-all.svg │ │ ├── mail-reply-custom-all.svg │ │ ├── mail-reply-custom.svg │ │ ├── mail-reply-list.svg │ │ ├── mail-reply-sender.svg │ │ ├── mail-send-receive.svg │ │ ├── mail-send.svg │ │ ├── mail-sent.svg │ │ ├── mail-signature-unknown.svg │ │ ├── mail-signed-full.svg │ │ ├── mail-signed-fully.svg │ │ ├── mail-signed-part.svg │ │ ├── mail-signed-verified.svg │ │ ├── mail-signed.svg │ │ ├── mail-tagged.svg │ │ ├── mail-task.svg │ │ ├── mail-thread-ignored.svg │ │ ├── mail-thread-watch.svg │ │ ├── mail-unread-multiple.svg │ │ ├── mail-unread-new.svg │ │ ├── mail-unread.svg │ │ ├── mail_forward.svg │ │ ├── mail_generic.svg │ │ ├── mail_new.svg │ │ ├── mail_reply.svg │ │ ├── mail_replyall.svg │ │ ├── makeidx.svg │ │ ├── manga.svg │ │ ├── map-flat.svg │ │ ├── map-globe.svg │ │ ├── map-gnomonic.svg │ │ ├── map-mercator.svg │ │ ├── mark-location.svg │ │ ├── markasblank.svg │ │ ├── math0.svg │ │ ├── mathmode.svg │ │ ├── measure.svg │ │ ├── media-album-cover-manager-amarok.svg │ │ ├── media-album-cover.svg │ │ ├── media-album-repeat-amarok.svg │ │ ├── media-album-track.svg │ │ ├── media-eject.svg │ │ ├── media-forward.svg │ │ ├── media-import-audio-cd.svg │ │ ├── media-mount.svg │ │ ├── media-mout.svg │ │ ├── media-pause.svg │ │ ├── media-play.svg │ │ ├── media-playback-pause.svg │ │ ├── media-playback-paused.svg │ │ ├── media-playback-playing.svg │ │ ├── media-playback-start-rtl.svg │ │ ├── media-playback-start.svg │ │ ├── media-playback-stop.svg │ │ ├── media-playback-stopped.svg │ │ ├── media-playlist-append.svg │ │ ├── media-playlist-normal.svg │ │ ├── media-playlist-play.svg │ │ ├── media-playlist-repeat-amarok.svg │ │ ├── media-playlist-repeat-song.svg │ │ ├── media-playlist-repeat.svg │ │ ├── media-playlist-shuffle.svg │ │ ├── media-random-albums-amarok.svg │ │ ├── media-random-tracks-amarok.svg │ │ ├── media-record.svg │ │ ├── media-repeat-album-amarok.svg │ │ ├── media-repeat-all.svg │ │ ├── media-repeat-none.svg │ │ ├── media-repeat-playlist-amarok.svg │ │ ├── media-repeat-single.svg │ │ ├── media-repeat-track-amarok.svg │ │ ├── media-rewind.svg │ │ ├── media-seek-backward.svg │ │ ├── media-seek-forward.svg │ │ ├── media-show-active-track-amarok.svg │ │ ├── media-skip-backward.svg │ │ ├── media-skip-forward.svg │ │ ├── media-standard-track-progression-amarok.svg │ │ ├── media-stop.svg │ │ ├── media-track-add-amarok.svg │ │ ├── media-track-edit-amarok.svg │ │ ├── media-track-queue-amarok.svg │ │ ├── media-track-remove-amarok.svg │ │ ├── media-track-show-active.svg │ │ ├── media-view-subtitles.svg │ │ ├── medskip.svg │ │ ├── meeting-attending-tentative.svg │ │ ├── meeting-attending.svg │ │ ├── meeting-participant-no-response.svg │ │ ├── meeting-participant-request-response.svg │ │ ├── meld-version-control.svg │ │ ├── menu_new.svg │ │ ├── menu_new_sep.svg │ │ ├── merge.svg │ │ ├── mesh-gradient.svg │ │ ├── message-close.svg │ │ ├── messagebox_warning.svg │ │ ├── mic-off.svg │ │ ├── mic-on.svg │ │ ├── mic-ready.svg │ │ ├── milestone.svg │ │ ├── minuet-chords.svg │ │ ├── minuet-intervals.svg │ │ ├── minuet-rhythms.svg │ │ ├── minuet-scales.svg │ │ ├── mode1.svg │ │ ├── mode2.svg │ │ ├── mode3.svg │ │ ├── mode4.svg │ │ ├── mode5.svg │ │ ├── modified.svg │ │ ├── motion_path_animations.svg │ │ ├── mpost.svg │ │ ├── msgid2msgstr.svg │ │ ├── multimedia-volume-control.svg │ │ ├── multirow.svg │ │ ├── music-amarok.svg │ │ ├── music-note-16th.svg │ │ ├── nemo-eject.svg │ │ ├── network-connect.svg │ │ ├── network-disconnect.svg │ │ ├── new-24h-appointment.svg │ │ ├── new-audio-alarm.svg │ │ ├── new-command-alarm.svg │ │ ├── newline.svg │ │ ├── news-subscribe.svg │ │ ├── news-unsubscribe.svg │ │ ├── next.svg │ │ ├── nextfuzzy.svg │ │ ├── nextfuzzyuntrans.svg │ │ ├── nextuntranslated.svg │ │ ├── no-marker.svg │ │ ├── no.svg │ │ ├── nocover.svg │ │ ├── node-add.svg │ │ ├── node-break.svg │ │ ├── node-delete-segment.svg │ │ ├── node-delete.svg │ │ ├── node-join-segment.svg │ │ ├── node-join.svg │ │ ├── node-segment-curve.svg │ │ ├── node-segment-line.svg │ │ ├── node-transform.svg │ │ ├── node-type-auto-smooth.svg │ │ ├── node-type-cusp.svg │ │ ├── node-type-smooth.svg │ │ ├── node-type-symmetric.svg │ │ ├── node.svg │ │ ├── noisereduction.svg │ │ ├── non-starred.svg │ │ ├── note.svg │ │ ├── notifications-disabled.svg │ │ ├── notifications.svg │ │ ├── nroot.svg │ │ ├── object-align-horizontal-center-calligra.svg │ │ ├── object-align-horizontal-left-calligra.svg │ │ ├── object-align-horizontal-right-calligra.svg │ │ ├── object-align-vertical-bottom-calligra.svg │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ ├── object-align-vertical-center-calligra.svg │ │ ├── object-align-vertical-top-calligra.svg │ │ ├── object-columns.svg │ │ ├── object-crop.svg │ │ ├── object-flip-horizontal.svg │ │ ├── object-flip-vertical.svg │ │ ├── object-group-calligra.svg │ │ ├── object-group.svg │ │ ├── object-hidden.svg │ │ ├── object-inverse.svg │ │ ├── object-locked.svg │ │ ├── object-order-back-calligra.svg │ │ ├── object-order-back.svg │ │ ├── object-order-front-calligra.svg │ │ ├── object-order-front.svg │ │ ├── object-order-lower-calligra.svg │ │ ├── object-order-lower.svg │ │ ├── object-order-raise-calligra.svg │ │ ├── object-order-raise.svg │ │ ├── object-rotate-left.svg │ │ ├── object-rotate-right.svg │ │ ├── object-rows.svg │ │ ├── object-select.svg │ │ ├── object-straighten.svg │ │ ├── object-to-path.svg │ │ ├── object-ungroup-calligra.svg │ │ ├── object-ungroup-pop-selection.svg │ │ ├── object-ungroup.svg │ │ ├── object-unlocked.svg │ │ ├── object-visible.svg │ │ ├── object.svg │ │ ├── object_node.svg │ │ ├── off-outline.svg │ │ ├── off.svg │ │ ├── office-chart-area-focus-peak-node.svg │ │ ├── office-chart-area-percentage.svg │ │ ├── office-chart-area-stacked.svg │ │ ├── office-chart-area.svg │ │ ├── office-chart-bar-percentage.svg │ │ ├── office-chart-bar-stacked.svg │ │ ├── office-chart-bar.svg │ │ ├── office-chart-line-forecast.svg │ │ ├── office-chart-line-percentage.svg │ │ ├── office-chart-line-stacked.svg │ │ ├── office-chart-line.svg │ │ ├── office-chart-pie.svg │ │ ├── office-chart-polar-stacked.svg │ │ ├── office-chart-polar.svg │ │ ├── office-chart-ring.svg │ │ ├── office-chart-scatter.svg │ │ ├── office-chart-tall-pie.svg │ │ ├── office-report.svg │ │ ├── offline-settings.svg │ │ ├── offline.svg │ │ ├── oilpaint.svg │ │ ├── ok.svg │ │ ├── on-outline.svg │ │ ├── on.svg │ │ ├── online-banking.svg │ │ ├── online.svg │ │ ├── open-for-editing.svg │ │ ├── open-magnet.svg │ │ ├── open-menu.svg │ │ ├── outbox.svg │ │ ├── output_win.svg │ │ ├── overexposure.svg │ │ ├── overflow-menu-left.svg │ │ ├── overflow-menu-right.svg │ │ ├── overflow-menu.svg │ │ ├── package.svg │ │ ├── package_settings.svg │ │ ├── page-2sides.svg │ │ ├── page-3sides.svg │ │ ├── page-4sides.svg │ │ ├── page-simple.svg │ │ ├── page-zoom.svg │ │ ├── paint-gradient-conical.svg │ │ ├── paint-gradient-linear.svg │ │ ├── paint-gradient-mesh.svg │ │ ├── paint-gradient-radial.svg │ │ ├── paint-none.svg │ │ ├── paint-pattern.svg │ │ ├── paint-solid.svg │ │ ├── paint-swatch.svg │ │ ├── paint-unknown.svg │ │ ├── pan-down.svg │ │ ├── pan-end.svg │ │ ├── pan-start.svg │ │ ├── pan-up.svg │ │ ├── pane-hide.svg │ │ ├── pane-show.svg │ │ ├── paper-color.svg │ │ ├── paperclip.svg │ │ ├── password-copy.svg │ │ ├── password-generate.svg │ │ ├── password-generator.svg │ │ ├── password-show-off.svg │ │ ├── password-show-on.svg │ │ ├── path-break-apart.svg │ │ ├── path-clip-edit.svg │ │ ├── path-combine.svg │ │ ├── path-cut.svg │ │ ├── path-difference.svg │ │ ├── path-division.svg │ │ ├── path-effect-parameter-next.svg │ │ ├── path-exclusion.svg │ │ ├── path-inset.svg │ │ ├── path-intersection.svg │ │ ├── path-mask-edit.svg │ │ ├── path-mode-bezier.svg │ │ ├── path-mode-polyline-paraxial.svg │ │ ├── path-mode-polyline.svg │ │ ├── path-mode-spiro.svg │ │ ├── path-offset-dynamic.svg │ │ ├── path-offset-linked.svg │ │ ├── path-outset.svg │ │ ├── path-reverse.svg │ │ ├── path-simplify.svg │ │ ├── path-union.svg │ │ ├── pathshape.svg │ │ ├── payee-rename.svg │ │ ├── pdf-annotations.svg │ │ ├── pdflatex.svg │ │ ├── pdftex.svg │ │ ├── pentagon-shape.svg │ │ ├── perspective.svg │ │ ├── pgp-keys.svg │ │ ├── photo.svg │ │ ├── photos-amarok.svg │ │ ├── pin.svg │ │ ├── pipe.svg │ │ ├── pixelart-trace.svg │ │ ├── player-eject.svg │ │ ├── player-time.svg │ │ ├── player-volume-muted.svg │ │ ├── player-volume.svg │ │ ├── player_eject.svg │ │ ├── player_end.svg │ │ ├── player_fwd.svg │ │ ├── player_pause.svg │ │ ├── player_play.svg │ │ ├── player_playlist.svg │ │ ├── player_record.svg │ │ ├── player_rew.svg │ │ ├── player_start.svg │ │ ├── player_stop.svg │ │ ├── playlist-automatic.svg │ │ ├── playlist-generator.svg │ │ ├── playlist-queue.svg │ │ ├── playlist-similar.svg │ │ ├── playlist-sort.svg │ │ ├── plugins.svg │ │ ├── podcast-amarok.svg │ │ ├── podcast-new.svg │ │ ├── poedit-fuzzy.svg │ │ ├── poedit-status-automatic.svg │ │ ├── poedit-status-bookmark.svg │ │ ├── poedit-status-cat-mid.svg │ │ ├── poedit-status-cat-no.svg │ │ ├── poedit-status-cat-ok.svg │ │ ├── poedit-status-comment.svg │ │ ├── poedit-sync.svg │ │ ├── poedit-update.svg │ │ ├── poedit-validate.svg │ │ ├── pointer.svg │ │ ├── polygon-add-nodes.svg │ │ ├── polygon-merge-nodes.svg │ │ ├── port.svg │ │ ├── postalcode.svg │ │ ├── practice-setup.svg │ │ ├── practice-start.svg │ │ ├── practice-stop.svg │ │ ├── precondition.svg │ │ ├── preferences-activities.svg │ │ ├── preferences-desktop-user-password.svg │ │ ├── preferences-indicator-amarok.svg │ │ ├── preferences-media-playback-amarok.svg │ │ ├── preferences-other.svg │ │ ├── preferences-system-session-services.svg │ │ ├── preferences-system.svg │ │ ├── preflight-verifier.svg │ │ ├── presence_away.svg │ │ ├── presence_offline.svg │ │ ├── presence_online.svg │ │ ├── presence_unknown.svg │ │ ├── prevfuzzy.svg │ │ ├── prevfuzzyuntrans.svg │ │ ├── preview-add-zone.svg │ │ ├── preview-remove-all.svg │ │ ├── preview-remove-zone.svg │ │ ├── preview-render-off.svg │ │ ├── preview-render-on.svg │ │ ├── preview.svg │ │ ├── preview_math.svg │ │ ├── preview_sel.svg │ │ ├── previous.svg │ │ ├── prevuntranslated.svg │ │ ├── primarykey_constraint.svg │ │ ├── privatebrowsing.svg │ │ ├── process-stop.svg │ │ ├── project-defaults.svg │ │ ├── project-development-close-all.svg │ │ ├── project-development-close.svg │ │ ├── project-development-new-template.svg │ │ ├── project-development.svg │ │ ├── project-open.svg │ │ ├── project_add.svg │ │ ├── project_archive.svg │ │ ├── project_rebuild.svg │ │ ├── project_remove.svg │ │ ├── project_show.svg │ │ ├── projectgrep.svg │ │ ├── ps2pdf.svg │ │ ├── qa.svg │ │ ├── qlipper.svg │ │ ├── query-free-busy.svg │ │ ├── question.svg │ │ ├── quick.svg │ │ ├── quickopen-class.svg │ │ ├── quickopen-file.svg │ │ ├── quickopen-function.svg │ │ ├── quickopen.svg │ │ ├── quickview.svg │ │ ├── quickwizard.svg │ │ ├── rabbitvcs-about.svg │ │ ├── rabbitvcs-add.svg │ │ ├── rabbitvcs-annotate.svg │ │ ├── rabbitvcs-applypatch.svg │ │ ├── rabbitvcs-asynchronous.svg │ │ ├── rabbitvcs-branch.svg │ │ ├── rabbitvcs-bug.svg │ │ ├── rabbitvcs-changes.svg │ │ ├── rabbitvcs-checkmods.svg │ │ ├── rabbitvcs-checkout.svg │ │ ├── rabbitvcs-cleanup.svg │ │ ├── rabbitvcs-clear.svg │ │ ├── rabbitvcs-commit.svg │ │ ├── rabbitvcs-compare.svg │ │ ├── rabbitvcs-createpatch.svg │ │ ├── rabbitvcs-dbus.svg │ │ ├── rabbitvcs-delete.svg │ │ ├── rabbitvcs-diff.svg │ │ ├── rabbitvcs-drive.svg │ │ ├── rabbitvcs-editconflicts.svg │ │ ├── rabbitvcs-emblems.svg │ │ ├── rabbitvcs-export.svg │ │ ├── rabbitvcs-help.svg │ │ ├── rabbitvcs-import.svg │ │ ├── rabbitvcs-lock.svg │ │ ├── rabbitvcs-merge.svg │ │ ├── rabbitvcs-monkey.svg │ │ ├── rabbitvcs-properties.svg │ │ ├── rabbitvcs-push.svg │ │ ├── rabbitvcs-refresh.svg │ │ ├── rabbitvcs-relocate.svg │ │ ├── rabbitvcs-rename.svg │ │ ├── rabbitvcs-reset.svg │ │ ├── rabbitvcs-resolve.svg │ │ ├── rabbitvcs-revert.svg │ │ ├── rabbitvcs-run.svg │ │ ├── rabbitvcs-settings.svg │ │ ├── rabbitvcs-show_log.svg │ │ ├── rabbitvcs-stop.svg │ │ ├── rabbitvcs-switch.svg │ │ ├── rabbitvcs-unlock.svg │ │ ├── rabbitvcs-unstage.svg │ │ ├── rabbitvcs-update.svg │ │ ├── raindrop.svg │ │ ├── randomize.svg │ │ ├── rating-unrated.svg │ │ ├── rating.svg │ │ ├── ratiocrop.svg │ │ ├── realization.svg │ │ ├── recently_used.svg │ │ ├── reconcile-finish.svg │ │ ├── reconcile.svg │ │ ├── record.svg │ │ ├── rectangle-shape.svg │ │ ├── redeyes.svg │ │ ├── redhat-home.svg │ │ ├── refactor.svg │ │ ├── refreshstructure.svg │ │ ├── region.svg │ │ ├── relation.svg │ │ ├── relationship.svg │ │ ├── reload.svg │ │ ├── reload3.svg │ │ ├── reload_all_tabs.svg │ │ ├── reload_page.svg │ │ ├── remove-amarok.svg │ │ ├── remove-link.svg │ │ ├── remove.svg │ │ ├── removecell.svg │ │ ├── repeat.svg │ │ ├── reply-all-rtl.svg │ │ ├── reply-all.svg │ │ ├── reply.svg │ │ ├── resource-calendar-child-insert.svg │ │ ├── resource-calendar-child.svg │ │ ├── resource-calendar-insert.svg │ │ ├── resource-group-new.svg │ │ ├── resource-group.svg │ │ ├── restoration.svg │ │ ├── retweet.svg │ │ ├── reverse.svg │ │ ├── revert.svg │ │ ├── rhythmbox-set-star.svg │ │ ├── rhythmbox-unset-star.svg │ │ ├── rime-disable.svg │ │ ├── rime-im.svg │ │ ├── rime-latin.svg │ │ ├── roll.svg │ │ ├── routeplanning.svg │ │ ├── rss.svg │ │ ├── run-build-clean.svg │ │ ├── run-build-configure.svg │ │ ├── run-build-file.svg │ │ ├── run-build-install-root.svg │ │ ├── run-build-install.svg │ │ ├── run-build-prune.svg │ │ ├── run-build.svg │ │ ├── run-clean.svg │ │ ├── run-install.svg │ │ ├── scriptnew.svg │ │ ├── scriptopen.svg │ │ ├── seahorse-sign-bad.svg │ │ ├── seahorse-sign-ok.svg │ │ ├── seahorse-sign.svg │ │ ├── search-icon.svg │ │ ├── search.svg │ │ ├── select-rectangular.svg │ │ ├── select.svg │ │ ├── selection-bottom.svg │ │ ├── selection-end.svg │ │ ├── selection-lower.svg │ │ ├── selection-make-bitmap-copy.svg │ │ ├── selection-move-to-layer-above.svg │ │ ├── selection-move-to-layer-below.svg │ │ ├── selection-raise.svg │ │ ├── selection-start.svg │ │ ├── selection-top.svg │ │ ├── selection.svg │ │ ├── semi-starred.svg │ │ ├── send-to.svg │ │ ├── send_signal.svg │ │ ├── services.svg │ │ ├── set-language.svg │ │ ├── setroubleshoot_icon.svg │ │ ├── settings-configure.svg │ │ ├── settings.svg │ │ ├── shallow-history.svg │ │ ├── shape-choose.svg │ │ ├── shapes.svg │ │ ├── sharpenimage.svg │ │ ├── shear.svg │ │ ├── shoot.svg │ │ ├── show-all-effects.svg │ │ ├── show-dialogs.svg │ │ ├── show-gpu-effects.svg │ │ ├── show-grid.svg │ │ ├── show-guides.svg │ │ ├── show-hidden.svg │ │ ├── show-menu.svg │ │ ├── show-node-handles.svg │ │ ├── show-offline.svg │ │ ├── show-path-outline.svg │ │ ├── show_table_column.svg │ │ ├── show_table_row.svg │ │ ├── shuffle.svg │ │ ├── sidebar-places.svg │ │ ├── sidebar.svg │ │ ├── similarartists-amarok.svg │ │ ├── skg-chart-bubble.svg │ │ ├── skrooge_credit_card.svg │ │ ├── skrooge_less.svg │ │ ├── skrooge_more.svg │ │ ├── skrooge_much_less.svg │ │ ├── skrooge_much_more.svg │ │ ├── skrooge_type.svg │ │ ├── slanted.svg │ │ ├── slideshow-plugin.svg │ │ ├── smallclock.svg │ │ ├── smallfrac.svg │ │ ├── smallskip.svg │ │ ├── smartnewline.svg │ │ ├── smiley-add.svg │ │ ├── smiley-shape.svg │ │ ├── smiley.svg │ │ ├── smooth.svg │ │ ├── snap-angle.svg │ │ ├── snap-bounding-box-center.svg │ │ ├── snap-bounding-box-corners.svg │ │ ├── snap-bounding-box-edges.svg │ │ ├── snap-bounding-box-midpoints.svg │ │ ├── snap-bounding-box.svg │ │ ├── snap-extension.svg │ │ ├── snap-grid-guide-intersections.svg │ │ ├── snap-guideline.svg │ │ ├── snap-intersection.svg │ │ ├── snap-node.svg │ │ ├── snap-nodes-center.svg │ │ ├── snap-nodes-cusp.svg │ │ ├── snap-nodes-intersection.svg │ │ ├── snap-nodes-midpoint.svg │ │ ├── snap-nodes-path.svg │ │ ├── snap-nodes-rotation-center.svg │ │ ├── snap-nodes-smooth.svg │ │ ├── snap-orthogonal.svg │ │ ├── snap-page.svg │ │ ├── snap-text-baseline.svg │ │ ├── snap.svg │ │ ├── social.svg │ │ ├── sort-name.svg │ │ ├── sort-presence.svg │ │ ├── sort_incr.svg │ │ ├── soundkonverter-replaygain.svg │ │ ├── spacefm-find.svg │ │ ├── speaker.svg │ │ ├── special_paste.svg │ │ ├── specific-setup.svg │ │ ├── speedometer.svg │ │ ├── spiral-shape.svg │ │ ├── split.svg │ │ ├── spreadsheetshape.svg │ │ ├── sqrt.svg │ │ ├── standard-connector.svg │ │ ├── star-off.svg │ │ ├── star-on.svg │ │ ├── star-shape.svg │ │ ├── starred.svg │ │ ├── start-over.svg │ │ ├── start.svg │ │ ├── state-fork.svg │ │ ├── stateshape.svg │ │ ├── statetool.svg │ │ ├── step_object_Anchor.svg │ │ ├── step_object_Box.svg │ │ ├── step_object_ChargedParticle.svg │ │ ├── step_object_CircularMotor.svg │ │ ├── step_object_Controller.svg │ │ ├── step_object_CoulombForce.svg │ │ ├── step_object_Disk.svg │ │ ├── step_object_Gas.svg │ │ ├── step_object_GasParticle.svg │ │ ├── step_object_Graph.svg │ │ ├── step_object_GravitationForce.svg │ │ ├── step_object_LinearMotor.svg │ │ ├── step_object_Meter.svg │ │ ├── step_object_Note.svg │ │ ├── step_object_Particle.svg │ │ ├── step_object_Pin.svg │ │ ├── step_object_Polygon.svg │ │ ├── step_object_Rope.svg │ │ ├── step_object_SoftBody.svg │ │ ├── step_object_Spring.svg │ │ ├── step_object_Stick.svg │ │ ├── step_object_Tracer.svg │ │ ├── step_object_WeightForce.svg │ │ ├── sticky_zoom.svg │ │ ├── stock_about.svg │ │ ├── stock_add-bookmark.svg │ │ ├── stock_bell.svg │ │ ├── stock_bottom.svg │ │ ├── stock_calc-accept.svg │ │ ├── stock_calc-cancel.svg │ │ ├── stock_check-filled.svg │ │ ├── stock_close.svg │ │ ├── stock_contact-list.svg │ │ ├── stock_copy.svg │ │ ├── stock_cut.svg │ │ ├── stock_delete.svg │ │ ├── stock_down.svg │ │ ├── stock_edit.svg │ │ ├── stock_exit.svg │ │ ├── stock_file-properites.svg │ │ ├── stock_file-properties.svg │ │ ├── stock_first.svg │ │ ├── stock_folder-copy.svg │ │ ├── stock_folder-move.svg │ │ ├── stock_folder_properties.svg │ │ ├── stock_fullscreen.svg │ │ ├── stock_gtk-dnd-multiple.svg │ │ ├── stock_help-add-bookmark.svg │ │ ├── stock_home.svg │ │ ├── stock_insert-note.svg │ │ ├── stock_insert-rule.svg │ │ ├── stock_insert-table.svg │ │ ├── stock_last.svg │ │ ├── stock_leave-fullscreen.svg │ │ ├── stock_left.svg │ │ ├── stock_mail-compose.svg │ │ ├── stock_mail-filters-apply.svg │ │ ├── stock_mail-flag-for-followup-done.svg │ │ ├── stock_mail-flag-for-followup.svg │ │ ├── stock_mail-forward.svg │ │ ├── stock_mail-open-multiple.svg │ │ ├── stock_mail-reply-to-all.svg │ │ ├── stock_mail-reply.svg │ │ ├── stock_mail-send-receive.svg │ │ ├── stock_mail-send.svg │ │ ├── stock_mail-unread-multiple.svg │ │ ├── stock_mark.svg │ │ ├── stock_media-fwd.svg │ │ ├── stock_media-next.svg │ │ ├── stock_media-pause.svg │ │ ├── stock_media-play.svg │ │ ├── stock_media-prev.svg │ │ ├── stock_media-rec.svg │ │ ├── stock_media-rew.svg │ │ ├── stock_media-stop.svg │ │ ├── stock_navigator.svg │ │ ├── stock_new-24h-appointment.svg │ │ ├── stock_new-address-book.svg │ │ ├── stock_new-appointment.svg │ │ ├── stock_new-bcard.svg │ │ ├── stock_new-dir.svg │ │ ├── stock_new-tab.svg │ │ ├── stock_new-text.svg │ │ ├── stock_new-window.svg │ │ ├── stock_no.svg │ │ ├── stock_not.svg │ │ ├── stock_notes.svg │ │ ├── stock_paste.svg │ │ ├── stock_people.svg │ │ ├── stock_print-preview.svg │ │ ├── stock_print-setup.svg │ │ ├── stock_print.svg │ │ ├── stock_properties.svg │ │ ├── stock_redo.svg │ │ ├── stock_refresh.svg │ │ ├── stock_right.svg │ │ ├── stock_save-as.svg │ │ ├── stock_save.svg │ │ ├── stock_score-high.svg │ │ ├── stock_score-higher.svg │ │ ├── stock_score-highest.svg │ │ ├── stock_score-low.svg │ │ ├── stock_score-lower.svg │ │ ├── stock_score-lowest.svg │ │ ├── stock_score-normal.svg │ │ ├── stock_search.svg │ │ ├── stock_select-all.svg │ │ ├── stock_select-column.svg │ │ ├── stock_select-row.svg │ │ ├── stock_shared-by-me.svg │ │ ├── stock_shared-to-me.svg │ │ ├── stock_show-all.svg │ │ ├── stock_stop.svg │ │ ├── stock_task-assigned-to.svg │ │ ├── stock_task-assigned.svg │ │ ├── stock_task-recurring.svg │ │ ├── stock_task.svg │ │ ├── stock_text-monospaced.svg │ │ ├── stock_thunar-shortcuts.svg │ │ ├── stock_timezone.svg │ │ ├── stock_todo.svg │ │ ├── stock_top.svg │ │ ├── stock_undo.svg │ │ ├── stock_up.svg │ │ ├── stock_video-conferencing.svg │ │ ├── stock_view-details.svg │ │ ├── stock_volume.svg │ │ ├── stock_xfburn-audio-cd.svg │ │ ├── stock_xfburn-blank-cdrw.svg │ │ ├── stock_xfburn-data-copy.svg │ │ ├── stock_xfburn-format-dvdrw.svg │ │ ├── stock_xfburn-new-data-composition.svg │ │ ├── stock_xfburn.svg │ │ ├── stock_yes.svg │ │ ├── stock_zoom-page.svg │ │ ├── stop.svg │ │ ├── story-editor.svg │ │ ├── straight-connector.svg │ │ ├── stroke-cap-bevel.svg │ │ ├── stroke-cap-butt.svg │ │ ├── stroke-cap-miter.svg │ │ ├── stroke-cap-round.svg │ │ ├── stroke-cap-square.svg │ │ ├── stroke-join-bevel.svg │ │ ├── stroke-join-miter.svg │ │ ├── stroke-join-round.svg │ │ ├── stroke-to-path.svg │ │ ├── strong.svg │ │ ├── structure.svg │ │ ├── subsystem.svg │ │ ├── svn-commit.svg │ │ ├── svn-update.svg │ │ ├── swap-panels.svg │ │ ├── symbols.svg │ │ ├── system-help.svg │ │ ├── system-lock-screen.svg │ │ ├── system-log-out.svg │ │ ├── system-reboot.svg │ │ ├── system-run.svg │ │ ├── system-save-session.svg │ │ ├── system-search.svg │ │ ├── system-shutdown.svg │ │ ├── system-software-install.svg │ │ ├── system-suspend-hibernate.svg │ │ ├── system-suspend.svg │ │ ├── system-switch-user.svg │ │ ├── system-upgrade.svg │ │ ├── system-users.svg │ │ ├── tab-close-other.svg │ │ ├── tab-close.svg │ │ ├── tab-detach.svg │ │ ├── tab-duplicate.svg │ │ ├── tab-new-background.svg │ │ ├── tab-new.svg │ │ ├── tab.svg │ │ ├── tab_breakoff.svg │ │ ├── tab_duplicate.svg │ │ ├── tab_new.svg │ │ ├── tab_new_bg.svg │ │ ├── tab_remove.svg │ │ ├── tab_remove_other.svg │ │ ├── table.svg │ │ ├── tag-addressbook.svg │ │ ├── tag-assigned.svg │ │ ├── tag-delete.svg │ │ ├── tag-edit.svg │ │ ├── tag-events.svg │ │ ├── tag-folder.svg │ │ ├── tag-new.svg │ │ ├── tag-people.svg │ │ ├── tag-places.svg │ │ ├── tag-properties.svg │ │ ├── tag-recents.svg │ │ ├── tag-reset.svg │ │ ├── tag.svg │ │ ├── tap-create.svg │ │ ├── tap-extract-to.svg │ │ ├── tap-extract.svg │ │ ├── task-attempt.svg │ │ ├── task-attention.svg │ │ ├── task-due.svg │ │ ├── task-new.svg │ │ ├── task-past-due.svg │ │ ├── taxes-finances.svg │ │ ├── template.svg │ │ ├── terminator_horiz.svg │ │ ├── terminator_vert.svg │ │ ├── texcompiler.svg │ │ ├── texlion.svg │ │ ├── text-convert-to-regular.svg │ │ ├── text-field.svg │ │ ├── text-flow-into-frame.svg │ │ ├── text-frame-link.svg │ │ ├── text-frame-unlink.svg │ │ ├── text-orientation-auto.svg │ │ ├── text-orientation-sideways.svg │ │ ├── text-orientation-upright.svg │ │ ├── text-put-on-path.svg │ │ ├── text-remove-from-path.svg │ │ ├── text-speak.svg │ │ ├── text-unflow.svg │ │ ├── text-unkern.svg │ │ ├── text-wiki.svg │ │ ├── text-wrap.svg │ │ ├── text_horz_kern.svg │ │ ├── text_letter_spacing.svg │ │ ├── text_line_spacing.svg │ │ ├── text_remove_kerns.svg │ │ ├── text_rotation.svg │ │ ├── text_subscript.svg │ │ ├── text_superscript.svg │ │ ├── text_vert_kern.svg │ │ ├── text_word_spacing.svg │ │ ├── texture.svg │ │ ├── timeline-extract.svg │ │ ├── timeline-insert.svg │ │ ├── timeline-lift.svg │ │ ├── timeline-overwrite.svg │ │ ├── timeline-use-zone-off.svg │ │ ├── timeline-use-zone-on.svg │ │ ├── tiny-pause.svg │ │ ├── tiny-start.svg │ │ ├── tool-animator.svg │ │ ├── tool-measure.svg │ │ ├── tool-node-editor.svg │ │ ├── tool-pointer.svg │ │ ├── tool-spray.svg │ │ ├── tool-text.svg │ │ ├── tool-tweak.svg │ │ ├── tool_brush.svg │ │ ├── tool_cellformatting.svg │ │ ├── tool_color_eraser.svg │ │ ├── tool_color_picker.svg │ │ ├── tool_curve.svg │ │ ├── tool_ellipse.svg │ │ ├── tool_elliptical_selection.svg │ │ ├── tool_eraser.svg │ │ ├── tool_flood_fill.svg │ │ ├── tool_free_form_selection.svg │ │ ├── tool_imageeffects.svg │ │ ├── tool_line.svg │ │ ├── tool_pagelayout.svg │ │ ├── tool_pen.svg │ │ ├── tool_polygon.svg │ │ ├── tool_polyline.svg │ │ ├── tool_rect_selection.svg │ │ ├── tool_rectangle.svg │ │ ├── tool_references.svg │ │ ├── tool_review.svg │ │ ├── tool_rounded_rectangle.svg │ │ ├── tool_spraycan.svg │ │ ├── tool_text.svg │ │ ├── tools-check-spelling.svg │ │ ├── tools-media-optical-burn-image.svg │ │ ├── tools-media-optical-burn.svg │ │ ├── tools-media-optical-copy.svg │ │ ├── tools-media-optical-erase.svg │ │ ├── tools-media-optical-format.svg │ │ ├── tools-report-bug.svg │ │ ├── tools-rip-audio-cd.svg │ │ ├── tools-rip-video-cd.svg │ │ ├── tools-rip-video-dvd.svg │ │ ├── tools-wizard.svg │ │ ├── tools.svg │ │ ├── top.svg │ │ ├── torrents.svg │ │ ├── transaction-add.svg │ │ ├── transaction-delete.svg │ │ ├── transaction-edit.svg │ │ ├── transaction-find.svg │ │ ├── transaction-report.svg │ │ ├── transfers.svg │ │ ├── transform-affect-gradient.svg │ │ ├── transform-affect-pattern.svg │ │ ├── transform-affect-rounded-corners.svg │ │ ├── transform-affect-stroke.svg │ │ ├── transform-browse.svg │ │ ├── transform-crop-and-resize.svg │ │ ├── transform-crop.svg │ │ ├── transform-move-horizontal.svg │ │ ├── transform-move-vertical.svg │ │ ├── transform-move.svg │ │ ├── transform-rotate.svg │ │ ├── transform-scale-horizontal.svg │ │ ├── transform-scale-textbox-points.svg │ │ ├── transform-scale-vertical.svg │ │ ├── transform-scale.svg │ │ ├── transform-shear-down.svg │ │ ├── transform-shear-left.svg │ │ ├── transform-shear-right.svg │ │ ├── transform-shear-up.svg │ │ ├── transform-skew-horizontal.svg │ │ ├── transform-skew-vertical.svg │ │ ├── transsearch.svg │ │ ├── trash-empty.svg │ │ ├── trashcan_empty.svg │ │ ├── trashcan_full.svg │ │ ├── trim-margins.svg │ │ ├── trim-to-selection.svg │ │ ├── twitter-dm.svg │ │ ├── twitter-home.svg │ │ ├── twitter-mentions.svg │ │ ├── twitter-profile.svg │ │ ├── typewriter.svg │ │ ├── umbr-coll-message-asynchronous.svg │ │ ├── umbr-coll-message-synchronous.svg │ │ ├── umbr-message-asynchronous.svg │ │ ├── umbr-message-found.svg │ │ ├── umbr-message-lost.svg │ │ ├── umbr-message-synchronous.svg │ │ ├── umbrello_diagram_activity.svg │ │ ├── umbrello_diagram_class.svg │ │ ├── umbrello_diagram_collaboration.svg │ │ ├── umbrello_diagram_component.svg │ │ ├── umbrello_diagram_deployment.svg │ │ ├── umbrello_diagram_entityrelationship.svg │ │ ├── umbrello_diagram_sequence.svg │ │ ├── umbrello_diagram_state.svg │ │ ├── umbrello_diagram_usecase.svg │ │ ├── underexposure.svg │ │ ├── undo.svg │ │ ├── uniassociation.svg │ │ ├── unique_constraint.svg │ │ ├── unlock.svg │ │ ├── unmarkasblank.svg │ │ ├── up.svg │ │ ├── upcomingevents-amarok.svg │ │ ├── upindicator.svg │ │ ├── upload-media.svg │ │ ├── url-copy.svg │ │ ├── usecase.svg │ │ ├── user-group-delete.svg │ │ ├── user-group-new.svg │ │ ├── user-group-properties.svg │ │ ├── user-identity.svg │ │ ├── user-others.svg │ │ ├── user-properties.svg │ │ ├── user-trash-full.svg │ │ ├── user-trash.svg │ │ ├── user.svg │ │ ├── usermenu-delete.svg │ │ ├── usermenu-down.svg │ │ ├── usermenu-up.svg │ │ ├── username-copy.svg │ │ ├── vcs-commit-cvs-cervisia.svg │ │ ├── vcs-diff-cvs-cervisia.svg │ │ ├── vcs-remove-cvs-cervisia.svg │ │ ├── vcs-status-cvs-cervisia.svg │ │ ├── vcs-update-cvs-cervisia.svg │ │ ├── verb.svg │ │ ├── verbatim.svg │ │ ├── vertical.svg │ │ ├── videoclip-amarok.svg │ │ ├── view-bank-account-checking.svg │ │ ├── view-bank-account-savings.svg │ │ ├── view-bank-account.svg │ │ ├── view-bank-add.svg │ │ ├── view-bank-delete.svg │ │ ├── view-bank-edit.svg │ │ ├── view-bank.svg │ │ ├── view-barcode-add.svg │ │ ├── view-barcode-qr.svg │ │ ├── view-barcode.svg │ │ ├── view-calendar-agenda.svg │ │ ├── view-calendar-birthday.svg │ │ ├── view-calendar-day.svg │ │ ├── view-calendar-holiday.svg │ │ ├── view-calendar-journal.svg │ │ ├── view-calendar-list.svg │ │ ├── view-calendar-month.svg │ │ ├── view-calendar-special-occasion.svg │ │ ├── view-calendar-tasks.svg │ │ ├── view-calendar-time-spent.svg │ │ ├── view-calendar-timeline.svg │ │ ├── view-calendar-upcoming-days.svg │ │ ├── view-calendar-upcoming-events.svg │ │ ├── view-calendar-wedding-anniversary.svg │ │ ├── view-calendar-week.svg │ │ ├── view-calendar-whatsnext.svg │ │ ├── view-calendar-workweek.svg │ │ ├── view-calendar.svg │ │ ├── view-catalog.svg │ │ ├── view-categories-expenditures.svg │ │ ├── view-categories-incomes.svg │ │ ├── view-categories.svg │ │ ├── view-certificate-add.svg │ │ ├── view-certificate-export-secret.svg │ │ ├── view-certificate-export-server.svg │ │ ├── view-certificate-export.svg │ │ ├── view-certificate-import.svg │ │ ├── view-certificate-server-configure.svg │ │ ├── view-certificate-sign.svg │ │ ├── view-certificate.svg │ │ ├── view-choose.svg │ │ ├── view-close.svg │ │ ├── view-column.svg │ │ ├── view-compact.svg │ │ ├── view-continuous.svg │ │ ├── view-conversation-balloon.svg │ │ ├── view-coverflow.svg │ │ ├── view-currency-list.svg │ │ ├── view-dual.svg │ │ ├── view-file-columns.svg │ │ ├── view-filter-rtl.svg │ │ ├── view-filter.svg │ │ ├── view-financial-account-add.svg │ │ ├── view-financial-account-asset-closed.svg │ │ ├── view-financial-account-asset.svg │ │ ├── view-financial-account-cash-closed.svg │ │ ├── view-financial-account-cash.svg │ │ ├── view-financial-account-checking-closed.svg │ │ ├── view-financial-account-checking.svg │ │ ├── view-financial-account-close.svg │ │ ├── view-financial-account-closed.svg │ │ ├── view-financial-account-credit-card-closed.svg │ │ ├── view-financial-account-credit-card.svg │ │ ├── view-financial-account-delete.svg │ │ ├── view-financial-account-edit.svg │ │ ├── view-financial-account-investment-closed.svg │ │ ├── view-financial-account-investment-security-closed.svg │ │ ├── view-financial-account-investment-security.svg │ │ ├── view-financial-account-investment.svg │ │ ├── view-financial-account-liability-closed.svg │ │ ├── view-financial-account-liability.svg │ │ ├── view-financial-account-loan-closed.svg │ │ ├── view-financial-account-loan.svg │ │ ├── view-financial-account-reopen.svg │ │ ├── view-financial-account-savings-closed.svg │ │ ├── view-financial-account-savings.svg │ │ ├── view-financial-account.svg │ │ ├── view-financial-budget.svg │ │ ├── view-financial-category-add.svg │ │ ├── view-financial-category-delete.svg │ │ ├── view-financial-category-edit.svg │ │ ├── view-financial-category-expense.svg │ │ ├── view-financial-category-income.svg │ │ ├── view-financial-category.svg │ │ ├── view-financial-list.svg │ │ ├── view-financial-transfer-reconcile.svg │ │ ├── view-financial-transfer-reconciled.svg │ │ ├── view-financial-transfer-unreconciled.svg │ │ ├── view-form-action.svg │ │ ├── view-form.svg │ │ ├── view-fullscreen.svg │ │ ├── view-grid.svg │ │ ├── view-group.svg │ │ ├── view-hidden.svg │ │ ├── view-history.svg │ │ ├── view-institution-add.svg │ │ ├── view-institution-delete.svg │ │ ├── view-institution-edit.svg │ │ ├── view-institution.svg │ │ ├── view-left-close.svg │ │ ├── view-list-compact.svg │ │ ├── view-list-details.svg │ │ ├── view-list-icons.svg │ │ ├── view-list-images.svg │ │ ├── view-list-text.svg │ │ ├── view-list-tree.svg │ │ ├── view-list-video.svg │ │ ├── view-list.svg │ │ ├── view-media-album-cover.svg │ │ ├── view-media-artist.svg │ │ ├── view-media-chart.svg │ │ ├── view-media-config.svg │ │ ├── view-media-equalizer.svg │ │ ├── view-media-favorite.svg │ │ ├── view-media-genre.svg │ │ ├── view-media-lyrics.svg │ │ ├── view-media-playcount.svg │ │ ├── view-media-playlist.svg │ │ ├── view-media-publisher.svg │ │ ├── view-media-queue.svg │ │ ├── view-media-recent.svg │ │ ├── view-media-similarartists.svg │ │ ├── view-media-subtitles-hidden.svg │ │ ├── view-media-subtitles.svg │ │ ├── view-media-title.svg │ │ ├── view-media-track.svg │ │ ├── view-media-visualization.svg │ │ ├── view-more-horizontal.svg │ │ ├── view-more.svg │ │ ├── view-multiple-objects.svg │ │ ├── view-object-histogram-linear.svg │ │ ├── view-object-histogram-logarithmic.svg │ │ ├── view-paged.svg │ │ ├── view-pages-continuous.svg │ │ ├── view-pages-facing-first-centered.svg │ │ ├── view-pages-facing.svg │ │ ├── view-pages-overview.svg │ │ ├── view-pages-single.svg │ │ ├── view-pim-calendar.svg │ │ ├── view-pim-contacts.svg │ │ ├── view-pim-journal.svg │ │ ├── view-pim-mail.svg │ │ ├── view-pim-news.svg │ │ ├── view-pim-notes.svg │ │ ├── view-pim-summary.svg │ │ ├── view-pim-tasks-pending.svg │ │ ├── view-pim-tasks.svg │ │ ├── view-presentation.svg │ │ ├── view-preview.svg │ │ ├── view-process-all-tree.svg │ │ ├── view-process-all.svg │ │ ├── view-process-own.svg │ │ ├── view-process-system.svg │ │ ├── view-process-tree.svg │ │ ├── view-process-users.svg │ │ ├── view-readermode-active.svg │ │ ├── view-readermode.svg │ │ ├── view-refresh.svg │ │ ├── view-resource-calendar.svg │ │ ├── view-restore.svg │ │ ├── view-right-close.svg │ │ ├── view-right-new.svg │ │ ├── view-services-scripted-amarok.svg │ │ ├── view-sidetree.svg │ │ ├── view-sort-ascending-name.svg │ │ ├── view-sort-ascending.svg │ │ ├── view-sort-descending-name.svg │ │ ├── view-sort-descending.svg │ │ ├── view-sort.svg │ │ ├── view-split-effect.svg │ │ ├── view-split-left-right.svg │ │ ├── view-split-top-bottom.svg │ │ ├── view-statistics.svg │ │ ├── view-table-of-contents-ltr.svg │ │ ├── view-table-of-contents-rtl.svg │ │ ├── view-task-add.svg │ │ ├── view-task-child-add.svg │ │ ├── view-task-child.svg │ │ ├── view-task.svg │ │ ├── view-time-schedule-baselined-add.svg │ │ ├── view-time-schedule-baselined-remove.svg │ │ ├── view-time-schedule-baselined.svg │ │ ├── view-time-schedule-calculus.svg │ │ ├── view-time-schedule-child-insert.svg │ │ ├── view-time-schedule-edit.svg │ │ ├── view-time-schedule-insert.svg │ │ ├── view-time-schedule.svg │ │ ├── view-unsplit-effect.svg │ │ ├── view-user-offline-kopete.svg │ │ ├── view-visible.svg │ │ ├── view-web-browser-dom-tree.svg │ │ ├── view_choose.svg │ │ ├── view_detailed.svg │ │ ├── view_fit_to_page.svg │ │ ├── view_icon.svg │ │ ├── view_left_right.svg │ │ ├── view_multicolumn.svg │ │ ├── view_text.svg │ │ ├── view_top_bottom.svg │ │ ├── view_tree.svg │ │ ├── viewbib.svg │ │ ├── viewdvi.svg │ │ ├── viewhtml.svg │ │ ├── viewimage.svg │ │ ├── viewlog.svg │ │ ├── viewmagfit.svg │ │ ├── viewpdf.svg │ │ ├── viewps.svg │ │ ├── vinyl.svg │ │ ├── virtual-desktops.svg │ │ ├── visibility.svg │ │ ├── vm_clone_wizard.svg │ │ ├── vm_new.svg │ │ ├── wallet-closed.svg │ │ ├── wallet-open.svg │ │ ├── warnnext.svg │ │ ├── warnprev.svg │ │ ├── web-browser.svg │ │ ├── whitebalance.svg │ │ ├── widget-alternatives.svg │ │ ├── window-close.svg │ │ ├── window-duplicate.svg │ │ ├── window-keep-above.svg │ │ ├── window-keep-below.svg │ │ ├── window-maximize.svg │ │ ├── window-minimize.svg │ │ ├── window-new.svg │ │ ├── window-next.svg │ │ ├── window-pin.svg │ │ ├── window-previous.svg │ │ ├── window-restore.svg │ │ ├── window-shade.svg │ │ ├── window-unpin.svg │ │ ├── window-unshade.svg │ │ ├── window.svg │ │ ├── window_fullscreen.svg │ │ ├── window_new.svg │ │ ├── window_nofullscreen.svg │ │ ├── wizard_math.svg │ │ ├── wizard_pdftools.svg │ │ ├── wizard_pstools.svg │ │ ├── wizard_tabular.svg │ │ ├── x-clementine-album.svg │ │ ├── x-clementine-albums.svg │ │ ├── x-clementine-artist.svg │ │ ├── x-clementine-shuffle.svg │ │ ├── x-office-address-book.svg │ │ ├── x-shape-connection.svg │ │ ├── x-shape-formula.svg │ │ ├── x-shape-image.svg │ │ ├── x-shape-text.svg │ │ ├── x-zoom-in.svg │ │ ├── x-zoom-out.svg │ │ ├── xc_crosshair.svg │ │ ├── xml-attribute-delete.svg │ │ ├── xml-element-new.svg │ │ ├── xml-node-delete.svg │ │ ├── xml-node-duplicate.svg │ │ ├── xml-text-new.svg │ │ ├── y-zoom-in.svg │ │ ├── y-zoom-out.svg │ │ ├── zone-in.svg │ │ ├── zone-out.svg │ │ ├── zoom-1-to-2.svg │ │ ├── zoom-2-to-1.svg │ │ ├── zoom-best-fit.svg │ │ ├── zoom-center-page.svg │ │ ├── zoom-double-size.svg │ │ ├── zoom-draw.svg │ │ ├── zoom-fit-best.svg │ │ ├── zoom-fit-drawing.svg │ │ ├── zoom-fit-height.svg │ │ ├── zoom-fit-page.svg │ │ ├── zoom-fit-selection.svg │ │ ├── zoom-fit-width.svg │ │ ├── zoom-half-size.svg │ │ ├── zoom-in-large.svg │ │ ├── zoom-in-x.svg │ │ ├── zoom-in-y.svg │ │ ├── zoom-in.svg │ │ ├── zoom-next.svg │ │ ├── zoom-original.svg │ │ ├── zoom-out-large.svg │ │ ├── zoom-out-x.svg │ │ ├── zoom-out-y.svg │ │ ├── zoom-out.svg │ │ ├── zoom-pixels.svg │ │ ├── zoom-previous.svg │ │ ├── zoom-select-fit.svg │ │ ├── zoom-select-x.svg │ │ ├── zoom-select-y.svg │ │ ├── zoom-select.svg │ │ └── zoom.svg │ ├── devices │ │ ├── blueman-desktop.svg │ │ ├── blueman-laptop.svg │ │ ├── computer-laptop.svg │ │ ├── computer.svg │ │ ├── device-notifier.svg │ │ ├── display.svg │ │ ├── drive-harddisk-USB.svg │ │ ├── drive-harddisk-encrypted.svg │ │ ├── drive-harddisk-ieee1394.svg │ │ ├── drive-harddisk-root.svg │ │ ├── drive-harddisk-solidstate.svg │ │ ├── drive-harddisk-system.svg │ │ ├── drive-harddisk.svg │ │ ├── drive-multidisk.svg │ │ ├── drive-multipartition.svg │ │ ├── drive-removable-media-usb-pendrive.svg │ │ ├── drive-removable-media-usb.svg │ │ ├── drive-removable-media.svg │ │ ├── gnome-dev-computer.svg │ │ ├── gnome-dev-harddisk-1394.svg │ │ ├── gnome-dev-harddisk-usb.svg │ │ ├── gnome-dev-harddisk.svg │ │ ├── gnome-dev-removable-1394.svg │ │ ├── gnome-dev-removable-usb.svg │ │ ├── gnome-dev-removable.svg │ │ ├── gnome-fs-blockdev.svg │ │ ├── laptop.svg │ │ ├── media-removable.svg │ │ ├── removable-media.svg │ │ ├── unity-fallback-mount-helper.svg │ │ └── video-display.svg │ ├── emblems │ │ ├── checkmark.svg │ │ ├── emblem-added.svg │ │ ├── emblem-checked.svg │ │ ├── emblem-default.svg │ │ ├── emblem-documents.svg │ │ ├── emblem-downloads.svg │ │ ├── emblem-dropbox-syncing.svg │ │ ├── emblem-dropbox-unsyncable.svg │ │ ├── emblem-dropbox-uptodate.svg │ │ ├── emblem-encrypted-locked.svg │ │ ├── emblem-encrypted-unlocked.svg │ │ ├── emblem-error.svg │ │ ├── emblem-favorite.svg │ │ ├── emblem-generic.svg │ │ ├── emblem-important.svg │ │ ├── emblem-information.svg │ │ ├── emblem-insync-error-shared.svg │ │ ├── emblem-insync-error.svg │ │ ├── emblem-insync-synced-callbacks-active.svg │ │ ├── emblem-insync-synced-callbacks.svg │ │ ├── emblem-insync-synced-shared.svg │ │ ├── emblem-insync-synced.svg │ │ ├── emblem-insync-syncing-shared.svg │ │ ├── emblem-insync-syncing.svg │ │ ├── emblem-link.svg │ │ ├── emblem-locked.svg │ │ ├── emblem-mail.svg │ │ ├── emblem-mounted.svg │ │ ├── emblem-new.svg │ │ ├── emblem-noread.svg │ │ ├── emblem-nowrite.svg │ │ ├── emblem-package.svg │ │ ├── emblem-pause.svg │ │ ├── emblem-photos.svg │ │ ├── emblem-question.svg │ │ ├── emblem-rabbitvcs-added.svg │ │ ├── emblem-rabbitvcs-calculating.svg │ │ ├── emblem-rabbitvcs-complicated.svg │ │ ├── emblem-rabbitvcs-conflicted.svg │ │ ├── emblem-rabbitvcs-deleted.svg │ │ ├── emblem-rabbitvcs-eerror.svg │ │ ├── emblem-rabbitvcs-ignored.svg │ │ ├── emblem-rabbitvcs-locked.svg │ │ ├── emblem-rabbitvcs-modified.svg │ │ ├── emblem-rabbitvcs-normal.svg │ │ ├── emblem-rabbitvcs-obstructed.svg │ │ ├── emblem-rabbitvcs-read_only.svg │ │ ├── emblem-rabbitvcs-unversioned.svg │ │ ├── emblem-readonly.svg │ │ ├── emblem-remove.svg │ │ ├── emblem-shared.svg │ │ ├── emblem-success.svg │ │ ├── emblem-symbolic-link.svg │ │ ├── emblem-synchronizing.svg │ │ ├── emblem-system.svg │ │ ├── emblem-unavailable.svg │ │ ├── emblem-unlocked.svg │ │ ├── emblem-unmounted.svg │ │ ├── emblem-unreadable.svg │ │ ├── emblem-urgent.svg │ │ ├── emblem-warning.svg │ │ ├── emblem-web.svg │ │ ├── rating-unrated.svg │ │ ├── rating.svg │ │ ├── vcs-added.svg │ │ ├── vcs-conflicting.svg │ │ ├── vcs-locally-modified-unstaged.svg │ │ ├── vcs-locally-modified.svg │ │ ├── vcs-normal.svg │ │ ├── vcs-removed.svg │ │ └── vcs-update-required.svg │ ├── mimetypes │ │ ├── android-package-archive.svg │ │ ├── application-atom+xml.svg │ │ ├── application-certificate.svg │ │ ├── application-dicom.svg │ │ ├── application-epub+zip.svg │ │ ├── application-illustrator.svg │ │ ├── application-javascript.svg │ │ ├── application-json.svg │ │ ├── application-mac-binhex40.svg │ │ ├── application-msonenote.svg │ │ ├── application-msoutlook.svg │ │ ├── application-msword-template.svg │ │ ├── application-msword.svg │ │ ├── application-octet-stream.svg │ │ ├── application-ogg.svg │ │ ├── application-pdf.svg │ │ ├── application-pgp-encrypted.svg │ │ ├── application-pgp-keys.svg │ │ ├── application-pgp-signature.svg │ │ ├── application-pgp.svg │ │ ├── application-pkcs12.svg │ │ ├── application-pkcs7-mime.svg │ │ ├── application-pkcs7-signature.svg │ │ ├── application-pkix-cerl.svg │ │ ├── application-pkix-cert.svg │ │ ├── application-postscript.svg │ │ ├── application-relaxng.svg │ │ ├── application-rss+xml.svg │ │ ├── application-rtf.svg │ │ ├── application-sql.svg │ │ ├── application-sxw.svg │ │ ├── application-vnd-google-earth-kml.svg │ │ ├── application-vnd.android.package-archive.svg │ │ ├── application-vnd.appimage.svg │ │ ├── application-vnd.apple.pkpass.svg │ │ ├── application-vnd.debian.binary-package.svg │ │ ├── application-vnd.google-earth.kml+xml.svg │ │ ├── application-vnd.iccprofile.svg │ │ ├── application-vnd.ms-access.svg │ │ ├── application-vnd.ms-excel.addin.macroenabled.12.svg │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12.svg │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12.svg │ │ ├── application-vnd.ms-excel.svg │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ ├── application-vnd.ms-infopath.svg │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12.svg │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12.svg │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12.svg │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg │ │ ├── application-vnd.ms-powerpoint.svg │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ ├── application-vnd.ms-publisher.svg │ │ ├── application-vnd.ms-word.document.macroenabled.12.svg │ │ ├── application-vnd.ms-word.svg │ │ ├── application-vnd.ms-word.template.macroenabled.12.svg │ │ ├── application-vnd.nintendo.snes.rom.svg │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ ├── application-vnd.oasis.opendocument.database.svg │ │ ├── application-vnd.oasis.opendocument.draw.template.svg │ │ ├── application-vnd.oasis.opendocument.drawing.svg │ │ ├── application-vnd.oasis.opendocument.drawing.template.svg │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ ├── application-vnd.oasis.opendocument.graphics.svg │ │ ├── application-vnd.oasis.opendocument.image.svg │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ ├── application-vnd.oasis.opendocument.presentation.svg │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ ├── application-vnd.oasis.opendocument.spreadsheet.svg │ │ ├── application-vnd.oasis.opendocument.text-master.svg │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ ├── application-vnd.oasis.opendocument.text.svg │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ ├── application-vnd.rar.svg │ │ ├── application-vnd.rn-realmedia.svg │ │ ├── application-vnd.scribus.svg │ │ ├── application-vnd.sqlite3.svg │ │ ├── application-vnd.stardivision.calc.svg │ │ ├── application-vnd.stardivision.draw.svg │ │ ├── application-vnd.stardivision.mail.svg │ │ ├── application-vnd.stardivision.math.svg │ │ ├── application-vnd.sun.xml.calc.svg │ │ ├── application-vnd.sun.xml.calc.template.svg │ │ ├── application-vnd.sun.xml.draw.svg │ │ ├── application-vnd.sun.xml.draw.template.svg │ │ ├── application-vnd.sun.xml.impress.svg │ │ ├── application-vnd.sun.xml.impress.template.svg │ │ ├── application-vnd.sun.xml.math.svg │ │ ├── application-vnd.sun.xml.writer.global.svg │ │ ├── application-vnd.sun.xml.writer.svg │ │ ├── application-vnd.sun.xml.writer.template.svg │ │ ├── application-vnd.visio.svg │ │ ├── application-vnd.wordperfect.svg │ │ ├── application-wps-office.doc.svg │ │ ├── application-wps-office.docx.svg │ │ ├── application-wps-office.dot.svg │ │ ├── application-wps-office.dotx.svg │ │ ├── application-wps-office.pot.svg │ │ ├── application-wps-office.potx.svg │ │ ├── application-wps-office.ppt.svg │ │ ├── application-wps-office.pptx.svg │ │ ├── application-wps-office.xls.svg │ │ ├── application-wps-office.xlsx.svg │ │ ├── application-wps-office.xlt.svg │ │ ├── application-wps-office.xltx.svg │ │ ├── application-x-7z-compressed.svg │ │ ├── application-x-abiword.svg │ │ ├── application-x-ace.svg │ │ ├── application-x-apple-diskimage.svg │ │ ├── application-x-applix-spreadsheet.svg │ │ ├── application-x-applix-word.svg │ │ ├── application-x-ar.svg │ │ ├── application-x-arc.svg │ │ ├── application-x-archive.svg │ │ ├── application-x-arj.svg │ │ ├── application-x-audacity-project.svg │ │ ├── application-x-awk.svg │ │ ├── application-x-bittorrent.svg │ │ ├── application-x-blender.svg │ │ ├── application-x-bzdvi.svg │ │ ├── application-x-bzip-compressed-tar.svg │ │ ├── application-x-bzip.svg │ │ ├── application-x-cd-image.svg │ │ ├── application-x-cda.svg │ │ ├── application-x-chm.svg │ │ ├── application-x-compress.svg │ │ ├── application-x-compressed-tar.svg │ │ ├── application-x-cpio.svg │ │ ├── application-x-cue.svg │ │ ├── application-x-deb.svg │ │ ├── application-x-designer.svg │ │ ├── application-x-desktop.svg │ │ ├── application-x-egon.svg │ │ ├── application-x-executable-script.svg │ │ ├── application-x-executable.svg │ │ ├── application-x-fictionbook+xml.svg │ │ ├── application-x-flash-video.svg │ │ ├── application-x-font-afm.svg │ │ ├── application-x-font-bdf.svg │ │ ├── application-x-font-otf.svg │ │ ├── application-x-font-pcf.svg │ │ ├── application-x-font-snf.svg │ │ ├── application-x-font-ttf.svg │ │ ├── application-x-font-type1.svg │ │ ├── application-x-gameboy-rom.svg │ │ ├── application-x-gamecube-rom.svg │ │ ├── application-x-gba-rom.svg │ │ ├── application-x-gettext-translation.svg │ │ ├── application-x-gnumeric.svg │ │ ├── application-x-gzdvi.svg │ │ ├── application-x-gzip.svg │ │ ├── application-x-gzpostscript.svg │ │ ├── application-x-iso.svg │ │ ├── application-x-iso9660-appimage.svg │ │ ├── application-x-it87.svg │ │ ├── application-x-jar.svg │ │ ├── application-x-java-applet.svg │ │ ├── application-x-java-archive.svg │ │ ├── application-x-java.svg │ │ ├── application-x-javascript.svg │ │ ├── application-x-k3b.svg │ │ ├── application-x-kcsrc.svg │ │ ├── application-x-kdenlivetitle.svg │ │ ├── application-x-kexi-connectiondata.svg │ │ ├── application-x-kexiproject-shortcut.svg │ │ ├── application-x-kexiproject-sqlite.svg │ │ ├── application-x-kexiproject-sqlite2.svg │ │ ├── application-x-kexiproject-sqlite3.svg │ │ ├── application-x-kformula.svg │ │ ├── application-x-kgetlist.svg │ │ ├── application-x-kontour.svg │ │ ├── application-x-kplato.svg │ │ ├── application-x-krita.svg │ │ ├── application-x-kvtml.svg │ │ ├── application-x-kword.svg │ │ ├── application-x-lha.svg │ │ ├── application-x-lyx.svg │ │ ├── application-x-lzma-compressed-tar.svg │ │ ├── application-x-lzop.svg │ │ ├── application-x-m4.svg │ │ ├── application-x-macbinary.svg │ │ ├── application-x-marble.svg │ │ ├── application-x-mimearchive.svg │ │ ├── application-x-mplayer2.svg │ │ ├── application-x-ms-dos-executable.svg │ │ ├── application-x-ms-shortcut.svg │ │ ├── application-x-mswinurl.svg │ │ ├── application-x-mswrite.svg │ │ ├── application-x-n64-rom.svg │ │ ├── application-x-nes-rom.svg │ │ ├── application-x-nintendo-ds-rom.svg │ │ ├── application-x-nzb.svg │ │ ├── application-x-object.svg │ │ ├── application-x-pak.svg │ │ ├── application-x-partial-download.svg │ │ ├── application-x-pem-key.svg │ │ ├── application-x-perl.svg │ │ ├── application-x-php.svg │ │ ├── application-x-pkcs12.svg │ │ ├── application-x-pkcs7-certificates.svg │ │ ├── application-x-plasma.svg │ │ ├── application-x-python-bytecode.svg │ │ ├── application-x-qet-element.svg │ │ ├── application-x-qet-project.svg │ │ ├── application-x-quattropro.svg │ │ ├── application-x-rar.svg │ │ ├── application-x-raw-disk-image.svg │ │ ├── application-x-rdata.svg │ │ ├── application-x-root.svg │ │ ├── application-x-rpm.svg │ │ ├── application-x-ruby.svg │ │ ├── application-x-sharedlib.svg │ │ ├── application-x-shellscript.svg │ │ ├── application-x-shockwave-flash.svg │ │ ├── application-x-siag.svg │ │ ├── application-x-sif.svg │ │ ├── application-x-skg.svg │ │ ├── application-x-skgc.svg │ │ ├── application-x-smb-server.svg │ │ ├── application-x-smb-workgroup.svg │ │ ├── application-x-source-rpm.svg │ │ ├── application-x-sqlite2.svg │ │ ├── application-x-sqlite3.svg │ │ ├── application-x-srt.svg │ │ ├── application-x-srtrip.svg │ │ ├── application-x-subrip.svg │ │ ├── application-x-tar.svg │ │ ├── application-x-tarz.svg │ │ ├── application-x-tgif.svg │ │ ├── application-x-theme.svg │ │ ├── application-x-trash.svg │ │ ├── application-x-troff-man.svg │ │ ├── application-x-tzo.svg │ │ ├── application-x-wmf.svg │ │ ├── application-x-x509-ca-cert.svg │ │ ├── application-x-x509-user-cert.svg │ │ ├── application-x-xliff.svg │ │ ├── application-x-xpinstall.svg │ │ ├── application-x-xz-compressed-tar.svg │ │ ├── application-x-xz-pkg.svg │ │ ├── application-x-zerosize.svg │ │ ├── application-x-zip-compressed-fb2.svg │ │ ├── application-x-zoo.svg │ │ ├── application-xhtml+xml.svg │ │ ├── application-xmind.svg │ │ ├── application-xml.svg │ │ ├── application-xsd.svg │ │ ├── application-xslt+xml.svg │ │ ├── application-zip.svg │ │ ├── audio-ac3.svg │ │ ├── audio-flac.svg │ │ ├── audio-midi.svg │ │ ├── audio-mp2.svg │ │ ├── audio-mp3.svg │ │ ├── audio-mp4.svg │ │ ├── audio-prs.sid.svg │ │ ├── audio-vn.rn-realmedia.svg │ │ ├── audio-vnd.rn-realvideo.svg │ │ ├── audio-x-adpcm.svg │ │ ├── audio-x-aiff.svg │ │ ├── audio-x-flac+ogg.svg │ │ ├── audio-x-flac.svg │ │ ├── audio-x-generic.svg │ │ ├── audio-x-monkey.svg │ │ ├── audio-x-mp2.svg │ │ ├── audio-x-mpeg.svg │ │ ├── audio-x-speex+ogg.svg │ │ ├── audio-x-wav.svg │ │ ├── audiobook.svg │ │ ├── encrypted.svg │ │ ├── font-otf.svg │ │ ├── font-ttf.svg │ │ ├── fonts-package.svg │ │ ├── image-bmp.svg │ │ ├── image-gif.svg │ │ ├── image-ico.svg │ │ ├── image-jpeg.svg │ │ ├── image-jpeg2000.svg │ │ ├── image-png.svg │ │ ├── image-svg+xml-compressed.svg │ │ ├── image-svg+xml.svg │ │ ├── image-tiff.svg │ │ ├── image-vnd.dgn.svg │ │ ├── image-vnd.djvu.svg │ │ ├── image-vnd.dwg.svg │ │ ├── image-vnd.microsoft.icon.svg │ │ ├── image-x-adobe-dng.svg │ │ ├── image-x-compressed-xcf.svg │ │ ├── image-x-emf.svg │ │ ├── image-x-eps.svg │ │ ├── image-x-generic.svg │ │ ├── image-x-ico.svg │ │ ├── image-x-icon.svg │ │ ├── image-x-krita.svg │ │ ├── image-x-portable-bitmap.svg │ │ ├── image-x-psd.svg │ │ ├── image-x-psdimage-x-psd.svg │ │ ├── image-x-svg+xml.svg │ │ ├── image-x-tga.svg │ │ ├── image-x-vnd.trolltech.qpicture.svg │ │ ├── image-x-win-bitmap.svg │ │ ├── image-x-win-bmp.svg │ │ ├── image-x-wmf.svg │ │ ├── image-x-xcf.svg │ │ ├── image-x-xfig.svg │ │ ├── libreoffice-database.svg │ │ ├── libreoffice-drawing-template.svg │ │ ├── libreoffice-drawing.svg │ │ ├── libreoffice-extension.svg │ │ ├── libreoffice-formula.svg │ │ ├── libreoffice-master-document.svg │ │ ├── libreoffice-oasis-database.svg │ │ ├── libreoffice-oasis-drawing-template.svg │ │ ├── libreoffice-oasis-drawing.svg │ │ ├── libreoffice-oasis-formula.svg │ │ ├── libreoffice-oasis-master-document.svg │ │ ├── libreoffice-oasis-presentation-template.svg │ │ ├── libreoffice-oasis-presentation.svg │ │ ├── libreoffice-oasis-spreadsheet-template.svg │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ ├── libreoffice-oasis-text-template.svg │ │ ├── libreoffice-oasis-text.svg │ │ ├── libreoffice-oasis-web-template.svg │ │ ├── libreoffice-presentation-template.svg │ │ ├── libreoffice-presentation.svg │ │ ├── libreoffice-spreadsheet-template.svg │ │ ├── libreoffice-spreadsheet.svg │ │ ├── libreoffice-text-template.svg │ │ ├── libreoffice-text.svg │ │ ├── message-news.svg │ │ ├── message-partial.svg │ │ ├── message-rfc822.svg │ │ ├── message-x-gnu-rmail.svg │ │ ├── message.svg │ │ ├── none.svg │ │ ├── odf.svg │ │ ├── package-x-generic.svg │ │ ├── podcast.svg │ │ ├── text-calendar.svg │ │ ├── text-csharp.svg │ │ ├── text-css.svg │ │ ├── text-csv.svg │ │ ├── text-directory.svg │ │ ├── text-dockerfile.svg │ │ ├── text-enriched.svg │ │ ├── text-html.svg │ │ ├── text-markdown.svg │ │ ├── text-mathml.svg │ │ ├── text-plain.svg │ │ ├── text-rdf+xml.svg │ │ ├── text-rdf.svg │ │ ├── text-rtf.svg │ │ ├── text-rust.svg │ │ ├── text-sgml.svg │ │ ├── text-troff.svg │ │ ├── text-vcalendar.svg │ │ ├── text-vnd.abc.svg │ │ ├── text-vnd.kde.kcrash-report.svg │ │ ├── text-vnd.trolltech.linguist.svg │ │ ├── text-vnd.wap.wml.svg │ │ ├── text-wiki.svg │ │ ├── text-x-adasrc.svg │ │ ├── text-x-apport.svg │ │ ├── text-x-authors.svg │ │ ├── text-x-bibtex.svg │ │ ├── text-x-c++hdr.svg │ │ ├── text-x-c++src.svg │ │ ├── text-x-changelog.svg │ │ ├── text-x-chdr.svg │ │ ├── text-x-cmake.svg │ │ ├── text-x-copying.svg │ │ ├── text-x-credits.svg │ │ ├── text-x-csharp.svg │ │ ├── text-x-csrc.svg │ │ ├── text-x-dtd.svg │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ ├── text-x-generic.svg │ │ ├── text-x-gettext-translation.svg │ │ ├── text-x-go.svg │ │ ├── text-x-haskell.svg │ │ ├── text-x-hex.svg │ │ ├── text-x-install.svg │ │ ├── text-x-java-source.svg │ │ ├── text-x-java.svg │ │ ├── text-x-javascript.svg │ │ ├── text-x-katefilelist.svg │ │ ├── text-x-kotlin.svg │ │ ├── text-x-ldif.svg │ │ ├── text-x-lilypond.svg │ │ ├── text-x-log.svg │ │ ├── text-x-lua.svg │ │ ├── text-x-makefile.svg │ │ ├── text-x-markdown.svg │ │ ├── text-x-nfo.svg │ │ ├── text-x-objchdr.svg │ │ ├── text-x-objcsrc.svg │ │ ├── text-x-opml+xml.svg │ │ ├── text-x-opml.svg │ │ ├── text-x-pascal.svg │ │ ├── text-x-patch.svg │ │ ├── text-x-plain.svg │ │ ├── text-x-po.svg │ │ ├── text-x-python.svg │ │ ├── text-x-python3.svg │ │ ├── text-x-qml.svg │ │ ├── text-x-r.svg │ │ ├── text-x-readme.svg │ │ ├── text-x-rpm-spec.svg │ │ ├── text-x-rust.svg │ │ ├── text-x-scala.svg │ │ ├── text-x-script.svg │ │ ├── text-x-sql.svg │ │ ├── text-x-tcl.svg │ │ ├── text-x-tex.svg │ │ ├── text-x-texinfo.svg │ │ ├── text-x-vcard.svg │ │ ├── text-x-xslfo.svg │ │ ├── text-xmcd.svg │ │ ├── text-xml.svg │ │ ├── unknown.svg │ │ ├── uri-mms.svg │ │ ├── uri-mmst.svg │ │ ├── uri-pnm.svg │ │ ├── uri-rtspt.svg │ │ ├── uri-rtspu.svg │ │ ├── video-mlt-playlist.svg │ │ ├── video-mp2t.svg │ │ ├── video-mp4.svg │ │ ├── video-vivo.svg │ │ ├── video-vnd.rn-realvideo.svg │ │ ├── video-wavelet.svg │ │ ├── video-webm.svg │ │ ├── video-x-anim.svg │ │ ├── video-x-flic.svg │ │ ├── video-x-flv.svg │ │ ├── video-x-generic.svg │ │ ├── video-x-google-vlc-plugin.svg │ │ ├── video-x-javafx.svg │ │ ├── video-x-matroska.svg │ │ ├── video-x-mng.svg │ │ ├── video-x-ms-wmp.svg │ │ ├── video-x-ms-wmv.svg │ │ ├── video-x-msvideo.svg │ │ ├── video-x-ogm+ogg.svg │ │ ├── video-x-theora+ogg.svg │ │ ├── video-x-wmv.svg │ │ ├── viewbib.svg │ │ ├── viewdvi.svg │ │ ├── viewhtml.svg │ │ ├── viewpdf.svg │ │ ├── viewps.svg │ │ ├── virtualbox-hdd.svg │ │ ├── virtualbox-ova.svg │ │ ├── virtualbox-ovf.svg │ │ ├── virtualbox-vbox-extpack.svg │ │ ├── virtualbox-vbox.svg │ │ ├── virtualbox-vdi.svg │ │ ├── virtualbox-vhd.svg │ │ ├── virtualbox-vmdk.svg │ │ ├── vnd.ms-publisher.svg │ │ ├── x-kde-nsplugin-generated.svg │ │ ├── x-mail-distribution-list.svg │ │ ├── x-media-podcast.svg │ │ ├── x-office-address-book.svg │ │ ├── x-office-calendar.svg │ │ ├── x-office-contact.svg │ │ ├── x-office-document.svg │ │ ├── x-office-drawing.svg │ │ ├── x-office-presentation.svg │ │ └── x-office-spreadsheet.svg │ ├── panel │ │ ├── 1password-panel-locked.svg │ │ ├── 1password-panel.svg │ │ ├── 5g.svg │ │ ├── QMPlay2-panel.svg │ │ ├── ac-adapter.svg │ │ ├── account-logged-in.svg │ │ ├── acestream-tray.svg │ │ ├── airplane-mode-symbolic.svg │ │ ├── airplane-mode.svg │ │ ├── akonaditray.svg │ │ ├── alarm-clock-panel.svg │ │ ├── alarm-clock-triggered.svg │ │ ├── albert-panel.svg │ │ ├── albert-tray.svg │ │ ├── amd-alto.svg │ │ ├── amd-bajo.svg │ │ ├── amd-medio.svg │ │ ├── anatine-indicator.svg │ │ ├── anatine-notification.svg │ │ ├── android-messages-desktop-tray-unread.svg │ │ ├── android-messages-desktop-tray.svg │ │ ├── antimicro-panel.svg │ │ ├── antimicrox_trayicon.svg │ │ ├── ao-app-tray.svg │ │ ├── application-running.svg │ │ ├── applications-chat-panel.svg │ │ ├── applications-email-panel.svg │ │ ├── appointment-symbolic.svg │ │ ├── audacious-panel.svg │ │ ├── audio-input-microphone-high-panel.svg │ │ ├── audio-input-microphone-high.svg │ │ ├── audio-input-microphone-low-zero-panel.svg │ │ ├── audio-input-microphone-low.svg │ │ ├── audio-input-microphone-medium.svg │ │ ├── audio-input-microphone-muted.svg │ │ ├── audio-input-microphone-none-panel.svg │ │ ├── audio-off.svg │ │ ├── audio-on.svg │ │ ├── audio-output-none-panel.svg │ │ ├── audio-output-none.svg │ │ ├── audio-ready.svg │ │ ├── audio-recorder-off.svg │ │ ├── audio-recorder-on.svg │ │ ├── audio-recorder-paused.svg │ │ ├── audio-volume-high-panel.svg │ │ ├── audio-volume-high-symbolic.svg │ │ ├── audio-volume-high.svg │ │ ├── audio-volume-low-panel.svg │ │ ├── audio-volume-low-symbolic.svg │ │ ├── audio-volume-low-zero-panel.svg │ │ ├── audio-volume-low.svg │ │ ├── audio-volume-medium-panel.svg │ │ ├── audio-volume-medium-symbolic.svg │ │ ├── audio-volume-medium.svg │ │ ├── audio-volume-muted-blocked-panel.svg │ │ ├── audio-volume-muted-blocking-panel.svg │ │ ├── audio-volume-muted-blocking-symbolic.svg │ │ ├── audio-volume-muted-blocking.svg │ │ ├── audio-volume-muted-panel.svg │ │ ├── audio-volume-muted-symbolic.svg │ │ ├── audio-volume-muted.svg │ │ ├── audio-volume-off.svg │ │ ├── autokey-status-error.svg │ │ ├── autokey-status.svg │ │ ├── avatar-default.svg │ │ ├── bad-signal-lock.svg │ │ ├── bad-signal.svg │ │ ├── banshee-panel.svg │ │ ├── barrier-connected.svg │ │ ├── barrier-disconnected.svg │ │ ├── barrier-transfering.svg │ │ ├── battery-000-charging.svg │ │ ├── battery-000.svg │ │ ├── battery-010-charging.svg │ │ ├── battery-010.svg │ │ ├── battery-020-charging.svg │ │ ├── battery-020.svg │ │ ├── battery-030-charging.svg │ │ ├── battery-030.svg │ │ ├── battery-040-charging.svg │ │ ├── battery-040.svg │ │ ├── battery-050-charging.svg │ │ ├── battery-050.svg │ │ ├── battery-060-charging.svg │ │ ├── battery-060.svg │ │ ├── battery-070-charging.svg │ │ ├── battery-070.svg │ │ ├── battery-080-charging.svg │ │ ├── battery-080.svg │ │ ├── battery-090-charging.svg │ │ ├── battery-090.svg │ │ ├── battery-100-charged.svg │ │ ├── battery-100-charging.svg │ │ ├── battery-100.svg │ │ ├── battery-ac-adapter-symbolic.svg │ │ ├── battery-caution-charging-symbolic.svg │ │ ├── battery-caution-charging.svg │ │ ├── battery-caution-symbolic.svg │ │ ├── battery-caution.svg │ │ ├── battery-charged.svg │ │ ├── battery-empty-charging-symbolic.svg │ │ ├── battery-empty-charging.svg │ │ ├── battery-empty-symbolic.svg │ │ ├── battery-empty.svg │ │ ├── battery-full-charged-symbolic.svg │ │ ├── battery-full-charged.svg │ │ ├── battery-full-charging-symbolic.svg │ │ ├── battery-full-charging.svg │ │ ├── battery-full-symbolic.svg │ │ ├── battery-full.svg │ │ ├── battery-good-charging-symbolic.svg │ │ ├── battery-good-charging.svg │ │ ├── battery-good-symbolic.svg │ │ ├── battery-good.svg │ │ ├── battery-low-charging-symbolic.svg │ │ ├── battery-low-charging.svg │ │ ├── battery-low-symbolic.svg │ │ ├── battery-low.svg │ │ ├── battery-medium-charging.svg │ │ ├── battery-medium.svg │ │ ├── battery-missing-symbolic.svg │ │ ├── battery-missing.svg │ │ ├── battery_charged.svg │ │ ├── battery_full.svg │ │ ├── battery_plugged.svg │ │ ├── bitcoin-indicator.svg │ │ ├── bitwarden-tray.svg │ │ ├── blueberry-tray-active.svg │ │ ├── blueberry-tray-disabled.svg │ │ ├── blueberry-tray.svg │ │ ├── blueman-active.svg │ │ ├── blueman-disabled.svg │ │ ├── blueman-tray-active.svg │ │ ├── blueman-tray-disabled.svg │ │ ├── blueman-tray.svg │ │ ├── blueman.svg │ │ ├── bluetooth-active-symbolic.svg │ │ ├── bluetooth-active.svg │ │ ├── bluetooth-disabled.svg │ │ ├── bluetooth-offline.svg │ │ ├── bluetooth-online.svg │ │ ├── bluetooth-paired-symbolic.svg │ │ ├── bluetooth-paired.svg │ │ ├── bomi-panel.svg │ │ ├── both-bad-signal-lock.svg │ │ ├── both-bad-signal.svg │ │ ├── both-good-signal-lock.svg │ │ ├── both-good-signal.svg │ │ ├── both-high-signal-lock.svg │ │ ├── both-high-signal.svg │ │ ├── both-low-signal-lock.svg │ │ ├── both-low-signal.svg │ │ ├── brave-tray.svg │ │ ├── btsync-gui-0.svg │ │ ├── btsync-gui-1.svg │ │ ├── btsync-gui-10.svg │ │ ├── btsync-gui-11.svg │ │ ├── btsync-gui-2.svg │ │ ├── btsync-gui-3.svg │ │ ├── btsync-gui-4.svg │ │ ├── btsync-gui-5.svg │ │ ├── btsync-gui-6.svg │ │ ├── btsync-gui-7.svg │ │ ├── btsync-gui-8.svg │ │ ├── btsync-gui-9.svg │ │ ├── btsync-gui-connecting.svg │ │ ├── btsync-gui-disconnected.svg │ │ ├── btsync-gui-paused.svg │ │ ├── bumblebee-indicator-active.svg │ │ ├── bumblebee-indicator.svg │ │ ├── cadence-panel.svg │ │ ├── caffeine-cup-empty.svg │ │ ├── caffeine-cup-full.svg │ │ ├── calibre-tray.svg │ │ ├── camera-off.svg │ │ ├── camera-on.svg │ │ ├── camera-ready.svg │ │ ├── cantata-panel.svg │ │ ├── caps-lock-off.svg │ │ ├── caps-lock-on.svg │ │ ├── capslock-off.svg │ │ ├── capslock-on.svg │ │ ├── changes-allow.svg │ │ ├── changes-prevent.svg │ │ ├── cisco-tray-connected.svg │ │ ├── cisco-tray-disconnecting.svg │ │ ├── cisco-tray-notconnected.svg │ │ ├── cisco-tray-quarantined.svg │ │ ├── cisco-tray-reconnecting.svg │ │ ├── classicmenu-indicator-dark.svg │ │ ├── classicmenu-indicator.svg │ │ ├── clementine-panel-grey.svg │ │ ├── clementine-panel.svg │ │ ├── clickup-desktop-tray.svg │ │ ├── clipboard.svg │ │ ├── clipit-trayicon-panel.svg │ │ ├── clipit-trayicon.svg │ │ ├── clipman.svg │ │ ├── cloudstatus.svg │ │ ├── com.github.bcedu.vgrive-panel.svg │ │ ├── computer-fail.svg │ │ ├── connect_creating.svg │ │ ├── connect_established.svg │ │ ├── connect_no.svg │ │ ├── copy-error.svg │ │ ├── copy-insync.svg │ │ ├── copy-paused.svg │ │ ├── copy-sync1.svg │ │ ├── copy-sync2.svg │ │ ├── copy-sync3.svg │ │ ├── copy-sync4.svg │ │ ├── copy-sync5.svg │ │ ├── copy-sync6.svg │ │ ├── copy-sync7.svg │ │ ├── copy-sync8.svg │ │ ├── copy-update.svg │ │ ├── copyq-busy.svg │ │ ├── copyq-normal.svg │ │ ├── corectrl-panel.svg │ │ ├── cpod-tray.svg │ │ ├── cpu-frequency-indicator.svg │ │ ├── cpufreq-icon.svg │ │ ├── crow-translate-tray.svg │ │ ├── cryptfolder-closed-light.svg │ │ ├── cryptfolder-indicator-light.svg │ │ ├── cryptfolder-open-light.svg │ │ ├── cryptkeeper.svg │ │ ├── de.haeckerfelix.gradio-symbolic.svg │ │ ├── deadbeef-panel.svg │ │ ├── deltachat-tray.svg │ │ ├── deluge-panel.svg │ │ ├── desktopconnected.svg │ │ ├── desktopdisconnected.svg │ │ ├── desktoptrusted.svg │ │ ├── dialog-error.svg │ │ ├── dialog-information.svg │ │ ├── dialog-password-panel.svg │ │ ├── dialog-question.svg │ │ ├── dialog-warning.svg │ │ ├── dino-status-away.svg │ │ ├── dino-status-chat.svg │ │ ├── dino-status-dnd.svg │ │ ├── dino-status-online.svg │ │ ├── diodon-panel.svg │ │ ├── discord-tray-connected.svg │ │ ├── discord-tray-deafened.svg │ │ ├── discord-tray-muted.svg │ │ ├── discord-tray-speaking.svg │ │ ├── discord-tray-unread.svg │ │ ├── discord-tray.svg │ │ ├── disper-panel.svg │ │ ├── display-brightness-symbolic.svg │ │ ├── dnfdragora.svg │ │ ├── drive-removable-media-usb-panel.svg │ │ ├── dropboxstatus-blank.svg │ │ ├── dropboxstatus-busy.svg │ │ ├── dropboxstatus-busy2.svg │ │ ├── dropboxstatus-idle.svg │ │ ├── dropboxstatus-logo.svg │ │ ├── dropboxstatus-x.svg │ │ ├── electron-mail-tray.svg │ │ ├── element-desktop-tray.svg │ │ ├── empathy-available.svg │ │ ├── empathy-away.svg │ │ ├── empathy-busy.svg │ │ ├── empathy-extended-away.svg │ │ ├── empathy-invisible.svg │ │ ├── empathy-offline.svg │ │ ├── encrypted.svg │ │ ├── enpass-status.svg │ │ ├── everpad-mono.svg │ │ ├── exaile-pause.svg │ │ ├── exaile-play.svg │ │ ├── face-smile-panel.svg │ │ ├── fcitx-anthy-panel.svg │ │ ├── fcitx-bopomofo-panel.svg │ │ ├── fcitx-cangjie-panel.svg │ │ ├── fcitx-chewing-panel.svg │ │ ├── fcitx-erbi-panel.svg │ │ ├── fcitx-googlepinyin-panel.svg │ │ ├── fcitx-hangul-panel.svg │ │ ├── fcitx-kbd-panel.svg │ │ ├── fcitx-kkc-panel.svg │ │ ├── fcitx-panel.svg │ │ ├── fcitx-pinyin-libpinyin-panel.svg │ │ ├── fcitx-pinyin-panel.svg │ │ ├── fcitx-rime-panel.svg │ │ ├── fcitx-sayura-panel.svg │ │ ├── fcitx-shuangpin-libpinyin-panel.svg │ │ ├── fcitx-shuangpin-panel.svg │ │ ├── fcitx-skk-panel.svg │ │ ├── fcitx-sunpinyin-panel.svg │ │ ├── fcitx-unikey-panel.svg │ │ ├── fcitx-wbpy.svg │ │ ├── fcitx-wubi-panel.svg │ │ ├── fcitx-zhuyin-panel.svg │ │ ├── fcitx-ziranma-panel.svg │ │ ├── feedindicator-active.svg │ │ ├── feedindicator-attention.svg │ │ ├── file-manager.svg │ │ ├── firewall-applet-error.svg │ │ ├── firewall-applet-panic.svg │ │ ├── firewall-applet.svg │ │ ├── flameshot-tray.svg │ │ ├── flameshot.svg │ │ ├── flareget-panel.svg │ │ ├── fluxgui-light.svg │ │ ├── fluxgui-panel.svg │ │ ├── franz-attention-panel.svg │ │ ├── franz-panel.svg │ │ ├── fusion-icon-panel.svg │ │ ├── gammastep-status-off.svg │ │ ├── gammastep-status-on.svg │ │ ├── gdlauncher-tray.svg │ │ ├── gitify-tray-active.svg │ │ ├── gitify-tray.svg │ │ ├── gitlab-tray.svg │ │ ├── gitter-indicator-disconnected.svg │ │ ├── gitter-indicator-notification.svg │ │ ├── gitter-indicator.svg │ │ ├── glipper.svg │ │ ├── gmail-tray-unread.svg │ │ ├── gmail-tray.svg │ │ ├── gnome-netstatus-disconn.svg │ │ ├── gnome-netstatus-error.svg │ │ ├── gnome-netstatus-idle.svg │ │ ├── gnome-netstatus-rx.svg │ │ ├── gnome-netstatus-tx.svg │ │ ├── gnome-netstatus-txrx.svg │ │ ├── gnome-pie-symbolic.svg │ │ ├── gnote-panel.svg │ │ ├── goldendict-scan-tray.svg │ │ ├── goldendict-tray.svg │ │ ├── good-signal-lock.svg │ │ ├── good-signal.svg │ │ ├── google-chrome-no-notification-disabled.svg │ │ ├── google-chrome-no-notification.svg │ │ ├── google-chrome-notification-disabled.svg │ │ ├── google-chrome-notification.svg │ │ ├── google-chrome-panel.svg │ │ ├── google-chrome-tray.svg │ │ ├── google-hangouts-panel.svg │ │ ├── google-music-manager-panel.svg │ │ ├── google-tasks-indicator-light-normal.svg │ │ ├── google-tasks-indicator-light-starred.svg │ │ ├── gpaste.svg │ │ ├── gpm-ac-adapter.svg │ │ ├── gpm-battery-000-charging.svg │ │ ├── gpm-battery-000.svg │ │ ├── gpm-battery-020-charging.svg │ │ ├── gpm-battery-020.svg │ │ ├── gpm-battery-040-charging.svg │ │ ├── gpm-battery-040.svg │ │ ├── gpm-battery-060-charging.svg │ │ ├── gpm-battery-060.svg │ │ ├── gpm-battery-080-charging.svg │ │ ├── gpm-battery-080.svg │ │ ├── gpm-battery-100-charging.svg │ │ ├── gpm-battery-100.svg │ │ ├── gpm-battery-charged.svg │ │ ├── gpm-battery-empty.svg │ │ ├── gpm-battery-missing.svg │ │ ├── gpm-brightness-kbd-disabled.svg │ │ ├── gpm-brightness-kbd-invalid.svg │ │ ├── gpm-brightness-kbd.svg │ │ ├── gpm-brightness-lcd-disabled.svg │ │ ├── gpm-brightness-lcd-invalid.svg │ │ ├── gpm-brightness-lcd.svg │ │ ├── gpm-hibernate.svg │ │ ├── gpm-inhibit-invalid.svg │ │ ├── gpm-inhibit.svg │ │ ├── gpm-keyboard-000.svg │ │ ├── gpm-keyboard-020.svg │ │ ├── gpm-keyboard-040.svg │ │ ├── gpm-keyboard-060.svg │ │ ├── gpm-keyboard-080.svg │ │ ├── gpm-keyboard-100.svg │ │ ├── gpm-monitor.svg │ │ ├── gpm-mouse-000.svg │ │ ├── gpm-mouse-020.svg │ │ ├── gpm-mouse-040.svg │ │ ├── gpm-mouse-060.svg │ │ ├── gpm-mouse-080.svg │ │ ├── gpm-mouse-100.svg │ │ ├── gpm-phone-000.svg │ │ ├── gpm-phone-020.svg │ │ ├── gpm-phone-040.svg │ │ ├── gpm-phone-060.svg │ │ ├── gpm-phone-080.svg │ │ ├── gpm-phone-100.svg │ │ ├── gpm-primary-000-charging.svg │ │ ├── gpm-primary-000.svg │ │ ├── gpm-primary-020-charging.svg │ │ ├── gpm-primary-020.svg │ │ ├── gpm-primary-040-charging.svg │ │ ├── gpm-primary-040.svg │ │ ├── gpm-primary-060-charging.svg │ │ ├── gpm-primary-060.svg │ │ ├── gpm-primary-080-charging.svg │ │ ├── gpm-primary-080.svg │ │ ├── gpm-primary-100-charging.svg │ │ ├── gpm-primary-100.svg │ │ ├── gpm-primary-charged.svg │ │ ├── gpm-primary-missing.svg │ │ ├── gpm-ups-000-charging.svg │ │ ├── gpm-ups-000.svg │ │ ├── gpm-ups-020-charging.svg │ │ ├── gpm-ups-020.svg │ │ ├── gpm-ups-040-charging.svg │ │ ├── gpm-ups-040.svg │ │ ├── gpm-ups-060-charging.svg │ │ ├── gpm-ups-060.svg │ │ ├── gpm-ups-080-charging.svg │ │ ├── gpm-ups-080.svg │ │ ├── gpm-ups-100-charging.svg │ │ ├── gpm-ups-100.svg │ │ ├── gpm-ups-charged.svg │ │ ├── gpm-ups-missing.svg │ │ ├── gpmdp-tray-pause.svg │ │ ├── gpmdp-tray-play.svg │ │ ├── gpmdp-tray.svg │ │ ├── grive-app-ind-con-1.svg │ │ ├── grive-app-ind-con-2.svg │ │ ├── grive-app-ind-con-3.svg │ │ ├── grive-app-ind-sleep.svg │ │ ├── grive-app-ind.svg │ │ ├── gsd-xrandr.svg │ │ ├── gsm-3g-full-secure.svg │ │ ├── gsm-3g-full.svg │ │ ├── gsm-3g-high-secure.svg │ │ ├── gsm-3g-high.svg │ │ ├── gsm-3g-low-secure.svg │ │ ├── gsm-3g-low.svg │ │ ├── gsm-3g-medium-secure.svg │ │ ├── gsm-3g-medium.svg │ │ ├── gsm-3g-none-secure.svg │ │ ├── gsm-3g-none.svg │ │ ├── gtg-panel.svg │ │ ├── gtk-dialog-authentication-panel.svg │ │ ├── gtk-dialog-authentication.svg │ │ ├── gtk-dialog-error.svg │ │ ├── gtk-dialog-info.svg │ │ ├── gtk-dialog-question.svg │ │ ├── gtk-dialog-warning.svg │ │ ├── gtk-missing-image.svg │ │ ├── guake-indicator.svg │ │ ├── guake-tray.svg │ │ ├── guitarix-tray.svg │ │ ├── haguichi-connected.svg │ │ ├── haguichi-connecting-1.svg │ │ ├── haguichi-connecting-2.svg │ │ ├── haguichi-connecting-3.svg │ │ ├── haguichi-disconnected.svg │ │ ├── hangouts-available.svg │ │ ├── hangouts-notification.svg │ │ ├── hangouts-offline.svg │ │ ├── hangouts-working.svg │ │ ├── harmony-tray.svg │ │ ├── hexchat-fileoffer.svg │ │ ├── hexchat-highlight.svg │ │ ├── hexchat-indicator.svg │ │ ├── hexchat-message.svg │ │ ├── high-signal-lock.svg │ │ ├── high-signal.svg │ │ ├── high-temp-icon.svg │ │ ├── hipchat4-attention.svg │ │ ├── hipchat4.svg │ │ ├── hp-indicator.svg │ │ ├── idle-bad-signal-lock.svg │ │ ├── idle-bad-signal.svg │ │ ├── idle-good-signal-lock.svg │ │ ├── idle-good-signal.svg │ │ ├── idle-high-signal-lock.svg │ │ ├── idle-high-signal.svg │ │ ├── idle-low-signal-lock.svg │ │ ├── idle-low-signal.svg │ │ ├── image-missing.svg │ │ ├── indicator-cpufreq-100.svg │ │ ├── indicator-cpufreq-25.svg │ │ ├── indicator-cpufreq-50.svg │ │ ├── indicator-cpufreq-75.svg │ │ ├── indicator-cpufreq.svg │ │ ├── indicator-feedindicator-attention.svg │ │ ├── indicator-feedindicator.svg │ │ ├── indicator-fortune.svg │ │ ├── indicator-keyboard-Ak.svg │ │ ├── indicator-keyboard-Am.svg │ │ ├── indicator-keyboard-Ar-1.svg │ │ ├── indicator-keyboard-Ar-10.svg │ │ ├── indicator-keyboard-Ar-11.svg │ │ ├── indicator-keyboard-Ar-2.svg │ │ ├── indicator-keyboard-Ar-3.svg │ │ ├── indicator-keyboard-Ar-4.svg │ │ ├── indicator-keyboard-Ar-5.svg │ │ ├── indicator-keyboard-Ar-6.svg │ │ ├── indicator-keyboard-Ar-7.svg │ │ ├── indicator-keyboard-Ar-8.svg │ │ ├── indicator-keyboard-Ar-9.svg │ │ ├── indicator-keyboard-Ar.svg │ │ ├── indicator-keyboard-Av.svg │ │ ├── indicator-keyboard-Az-1.svg │ │ ├── indicator-keyboard-Az-2.svg │ │ ├── indicator-keyboard-Az.svg │ │ ├── indicator-keyboard-Be-1.svg │ │ ├── indicator-keyboard-Be-10.svg │ │ ├── indicator-keyboard-Be-11.svg │ │ ├── indicator-keyboard-Be-12.svg │ │ ├── indicator-keyboard-Be-13.svg │ │ ├── indicator-keyboard-Be-14.svg │ │ ├── indicator-keyboard-Be-2.svg │ │ ├── indicator-keyboard-Be-3.svg │ │ ├── indicator-keyboard-Be-4.svg │ │ ├── indicator-keyboard-Be-5.svg │ │ ├── indicator-keyboard-Be-6.svg │ │ ├── indicator-keyboard-Be-7.svg │ │ ├── indicator-keyboard-Be-8.svg │ │ ├── indicator-keyboard-Be-9.svg │ │ ├── indicator-keyboard-Be.svg │ │ ├── indicator-keyboard-Bg-1.svg │ │ ├── indicator-keyboard-Bg-2.svg │ │ ├── indicator-keyboard-Bg-3.svg │ │ ├── indicator-keyboard-Bg.svg │ │ ├── indicator-keyboard-Bm.svg │ │ ├── indicator-keyboard-Bn-1.svg │ │ ├── indicator-keyboard-Bn-2.svg │ │ ├── indicator-keyboard-Bn-3.svg │ │ ├── indicator-keyboard-Bn-4.svg │ │ ├── indicator-keyboard-Bn.svg │ │ ├── indicator-keyboard-Br-1.svg │ │ ├── indicator-keyboard-Br-2.svg │ │ ├── indicator-keyboard-Br-3.svg │ │ ├── indicator-keyboard-Br.svg │ │ ├── indicator-keyboard-Bs-1.svg │ │ ├── indicator-keyboard-Bs-2.svg │ │ ├── indicator-keyboard-Bs-3.svg │ │ ├── indicator-keyboard-Bs-4.svg │ │ ├── indicator-keyboard-Bs-5.svg │ │ ├── indicator-keyboard-Bs.svg │ │ ├── indicator-keyboard-By-1.svg │ │ ├── indicator-keyboard-By-2.svg │ │ ├── indicator-keyboard-By-3.svg │ │ ├── indicator-keyboard-By.svg │ │ ├── indicator-keyboard-Ch.svg │ │ ├── indicator-keyboard-Cm-1.svg │ │ ├── indicator-keyboard-Cm-2.svg │ │ ├── indicator-keyboard-Cm-3.svg │ │ ├── indicator-keyboard-Cm-4.svg │ │ ├── indicator-keyboard-Cm-5.svg │ │ ├── indicator-keyboard-Cm.svg │ │ ├── indicator-keyboard-Cr-1.svg │ │ ├── indicator-keyboard-Cr-2.svg │ │ ├── indicator-keyboard-Cr-3.svg │ │ ├── indicator-keyboard-Cr.svg │ │ ├── indicator-keyboard-Cs-1.svg │ │ ├── indicator-keyboard-Cs-2.svg │ │ ├── indicator-keyboard-Cs-3.svg │ │ ├── indicator-keyboard-Cs-4.svg │ │ ├── indicator-keyboard-Cs-5.svg │ │ ├── indicator-keyboard-Cs-6.svg │ │ ├── indicator-keyboard-Cs.svg │ │ ├── indicator-keyboard-Da-1.svg │ │ ├── indicator-keyboard-Da-2.svg │ │ ├── indicator-keyboard-Da-3.svg │ │ ├── indicator-keyboard-Da-4.svg │ │ ├── indicator-keyboard-Da-5.svg │ │ ├── indicator-keyboard-Da.svg │ │ ├── indicator-keyboard-De-1.svg │ │ ├── indicator-keyboard-De-10.svg │ │ ├── indicator-keyboard-De-11.svg │ │ ├── indicator-keyboard-De-12.svg │ │ ├── indicator-keyboard-De-13.svg │ │ ├── indicator-keyboard-De-14.svg │ │ ├── indicator-keyboard-De-15.svg │ │ ├── indicator-keyboard-De-16.svg │ │ ├── indicator-keyboard-De-17.svg │ │ ├── indicator-keyboard-De-18.svg │ │ ├── indicator-keyboard-De-19.svg │ │ ├── indicator-keyboard-De-2.svg │ │ ├── indicator-keyboard-De-20.svg │ │ ├── indicator-keyboard-De-21.svg │ │ ├── indicator-keyboard-De-22.svg │ │ ├── indicator-keyboard-De-23.svg │ │ ├── indicator-keyboard-De-24.svg │ │ ├── indicator-keyboard-De-25.svg │ │ ├── indicator-keyboard-De-3.svg │ │ ├── indicator-keyboard-De-4.svg │ │ ├── indicator-keyboard-De-5.svg │ │ ├── indicator-keyboard-De-6.svg │ │ ├── indicator-keyboard-De-7.svg │ │ ├── indicator-keyboard-De-8.svg │ │ ├── indicator-keyboard-De-9.svg │ │ ├── indicator-keyboard-De.svg │ │ ├── indicator-keyboard-Dv.svg │ │ ├── indicator-keyboard-Dz.svg │ │ ├── indicator-keyboard-Ee.svg │ │ ├── indicator-keyboard-En-1.svg │ │ ├── indicator-keyboard-En-10.svg │ │ ├── indicator-keyboard-En-11.svg │ │ ├── indicator-keyboard-En-12.svg │ │ ├── indicator-keyboard-En-13.svg │ │ ├── indicator-keyboard-En-14.svg │ │ ├── indicator-keyboard-En-15.svg │ │ ├── indicator-keyboard-En-16.svg │ │ ├── indicator-keyboard-En-17.svg │ │ ├── indicator-keyboard-En-18.svg │ │ ├── indicator-keyboard-En-19.svg │ │ ├── indicator-keyboard-En-2.svg │ │ ├── indicator-keyboard-En-20.svg │ │ ├── indicator-keyboard-En-21.svg │ │ ├── indicator-keyboard-En-22.svg │ │ ├── indicator-keyboard-En-23.svg │ │ ├── indicator-keyboard-En-24.svg │ │ ├── indicator-keyboard-En-25.svg │ │ ├── indicator-keyboard-En-26.svg │ │ ├── indicator-keyboard-En-27.svg │ │ ├── indicator-keyboard-En-28.svg │ │ ├── indicator-keyboard-En-29.svg │ │ ├── indicator-keyboard-En-3.svg │ │ ├── indicator-keyboard-En-30.svg │ │ ├── indicator-keyboard-En-31.svg │ │ ├── indicator-keyboard-En-32.svg │ │ ├── indicator-keyboard-En-33.svg │ │ ├── indicator-keyboard-En-34.svg │ │ ├── indicator-keyboard-En-35.svg │ │ ├── indicator-keyboard-En-4.svg │ │ ├── indicator-keyboard-En-5.svg │ │ ├── indicator-keyboard-En-6.svg │ │ ├── indicator-keyboard-En-7.svg │ │ ├── indicator-keyboard-En-8.svg │ │ ├── indicator-keyboard-En-9.svg │ │ ├── indicator-keyboard-En.svg │ │ ├── indicator-keyboard-Eo-1.svg │ │ ├── indicator-keyboard-Eo-2.svg │ │ ├── indicator-keyboard-Eo.svg │ │ ├── indicator-keyboard-Es-1.svg │ │ ├── indicator-keyboard-Es-10.svg │ │ ├── indicator-keyboard-Es-11.svg │ │ ├── indicator-keyboard-Es-12.svg │ │ ├── indicator-keyboard-Es-2.svg │ │ ├── indicator-keyboard-Es-3.svg │ │ ├── indicator-keyboard-Es-4.svg │ │ ├── indicator-keyboard-Es-5.svg │ │ ├── indicator-keyboard-Es-6.svg │ │ ├── indicator-keyboard-Es-7.svg │ │ ├── indicator-keyboard-Es-8.svg │ │ ├── indicator-keyboard-Es-9.svg │ │ ├── indicator-keyboard-Es.svg │ │ ├── indicator-keyboard-Et-1.svg │ │ ├── indicator-keyboard-Et-2.svg │ │ ├── indicator-keyboard-Et-3.svg │ │ ├── indicator-keyboard-Et-4.svg │ │ ├── indicator-keyboard-Et.svg │ │ ├── indicator-keyboard-Fa-1.svg │ │ ├── indicator-keyboard-Fa-2.svg │ │ ├── indicator-keyboard-Fa-3.svg │ │ ├── indicator-keyboard-Fa-4.svg │ │ ├── indicator-keyboard-Fa.svg │ │ ├── indicator-keyboard-Ff.svg │ │ ├── indicator-keyboard-Fi-1.svg │ │ ├── indicator-keyboard-Fi-2.svg │ │ ├── indicator-keyboard-Fi-3.svg │ │ ├── indicator-keyboard-Fi-4.svg │ │ ├── indicator-keyboard-Fi-5.svg │ │ ├── indicator-keyboard-Fi.svg │ │ ├── indicator-keyboard-Fo-1.svg │ │ ├── indicator-keyboard-Fo-2.svg │ │ ├── indicator-keyboard-Fo.svg │ │ ├── indicator-keyboard-Fr-1.svg │ │ ├── indicator-keyboard-Fr-10.svg │ │ ├── indicator-keyboard-Fr-11.svg │ │ ├── indicator-keyboard-Fr-12.svg │ │ ├── indicator-keyboard-Fr-13.svg │ │ ├── indicator-keyboard-Fr-14.svg │ │ ├── indicator-keyboard-Fr-15.svg │ │ ├── indicator-keyboard-Fr-16.svg │ │ ├── indicator-keyboard-Fr-17.svg │ │ ├── indicator-keyboard-Fr-18.svg │ │ ├── indicator-keyboard-Fr-19.svg │ │ ├── indicator-keyboard-Fr-2.svg │ │ ├── indicator-keyboard-Fr-20.svg │ │ ├── indicator-keyboard-Fr-21.svg │ │ ├── indicator-keyboard-Fr-22.svg │ │ ├── indicator-keyboard-Fr-23.svg │ │ ├── indicator-keyboard-Fr-24.svg │ │ ├── indicator-keyboard-Fr-25.svg │ │ ├── indicator-keyboard-Fr-26.svg │ │ ├── indicator-keyboard-Fr-27.svg │ │ ├── indicator-keyboard-Fr-28.svg │ │ ├── indicator-keyboard-Fr-29.svg │ │ ├── indicator-keyboard-Fr-3.svg │ │ ├── indicator-keyboard-Fr-30.svg │ │ ├── indicator-keyboard-Fr-31.svg │ │ ├── indicator-keyboard-Fr-4.svg │ │ ├── indicator-keyboard-Fr-5.svg │ │ ├── indicator-keyboard-Fr-6.svg │ │ ├── indicator-keyboard-Fr-7.svg │ │ ├── indicator-keyboard-Fr-8.svg │ │ ├── indicator-keyboard-Fr-9.svg │ │ ├── indicator-keyboard-Fr.svg │ │ ├── indicator-keyboard-Ga-1.svg │ │ ├── indicator-keyboard-Ga-2.svg │ │ ├── indicator-keyboard-Ga.svg │ │ ├── indicator-keyboard-Gr-1.svg │ │ ├── indicator-keyboard-Gr-2.svg │ │ ├── indicator-keyboard-Gr-3.svg │ │ ├── indicator-keyboard-Gr-4.svg │ │ ├── indicator-keyboard-Gr-5.svg │ │ ├── indicator-keyboard-Gr.svg │ │ ├── indicator-keyboard-Gu.svg │ │ ├── indicator-keyboard-Ha-1.svg │ │ ├── indicator-keyboard-Ha-2.svg │ │ ├── indicator-keyboard-Ha.svg │ │ ├── indicator-keyboard-He-1.svg │ │ ├── indicator-keyboard-He-2.svg │ │ ├── indicator-keyboard-He-3.svg │ │ ├── indicator-keyboard-He-4.svg │ │ ├── indicator-keyboard-He.svg │ │ ├── indicator-keyboard-Hi-1.svg │ │ ├── indicator-keyboard-Hi-2.svg │ │ ├── indicator-keyboard-Hi-3.svg │ │ ├── indicator-keyboard-Hi.svg │ │ ├── indicator-keyboard-Hr-1.svg │ │ ├── indicator-keyboard-Hr-2.svg │ │ ├── indicator-keyboard-Hr-3.svg │ │ ├── indicator-keyboard-Hr-4.svg │ │ ├── indicator-keyboard-Hr-5.svg │ │ ├── indicator-keyboard-Hr.svg │ │ ├── indicator-keyboard-Hu-1.svg │ │ ├── indicator-keyboard-Hu-10.svg │ │ ├── indicator-keyboard-Hu-11.svg │ │ ├── indicator-keyboard-Hu-12.svg │ │ ├── indicator-keyboard-Hu-13.svg │ │ ├── indicator-keyboard-Hu-14.svg │ │ ├── indicator-keyboard-Hu-15.svg │ │ ├── indicator-keyboard-Hu-16.svg │ │ ├── indicator-keyboard-Hu-17.svg │ │ ├── indicator-keyboard-Hu-18.svg │ │ ├── indicator-keyboard-Hu-19.svg │ │ ├── indicator-keyboard-Hu-2.svg │ │ ├── indicator-keyboard-Hu-20.svg │ │ ├── indicator-keyboard-Hu-3.svg │ │ ├── indicator-keyboard-Hu-4.svg │ │ ├── indicator-keyboard-Hu-5.svg │ │ ├── indicator-keyboard-Hu-6.svg │ │ ├── indicator-keyboard-Hu-7.svg │ │ ├── indicator-keyboard-Hu-8.svg │ │ ├── indicator-keyboard-Hu-9.svg │ │ ├── indicator-keyboard-Hu.svg │ │ ├── indicator-keyboard-Hy-1.svg │ │ ├── indicator-keyboard-Hy-2.svg │ │ ├── indicator-keyboard-Hy-3.svg │ │ ├── indicator-keyboard-Hy-4.svg │ │ ├── indicator-keyboard-Hy-5.svg │ │ ├── indicator-keyboard-Hy-6.svg │ │ ├── indicator-keyboard-Hy.svg │ │ ├── indicator-keyboard-Ie-1.svg │ │ ├── indicator-keyboard-Ie-2.svg │ │ ├── indicator-keyboard-Ie-3.svg │ │ ├── indicator-keyboard-Ie-4.svg │ │ ├── indicator-keyboard-Ie-5.svg │ │ ├── indicator-keyboard-Ie.svg │ │ ├── indicator-keyboard-Ig.svg │ │ ├── indicator-keyboard-Ik.svg │ │ ├── indicator-keyboard-In-1.svg │ │ ├── indicator-keyboard-In-2.svg │ │ ├── indicator-keyboard-In-3.svg │ │ ├── indicator-keyboard-In-4.svg │ │ ├── indicator-keyboard-In-5.svg │ │ ├── indicator-keyboard-In.svg │ │ ├── indicator-keyboard-Is-1.svg │ │ ├── indicator-keyboard-Is-2.svg │ │ ├── indicator-keyboard-Is-3.svg │ │ ├── indicator-keyboard-Is-4.svg │ │ ├── indicator-keyboard-Is-5.svg │ │ ├── indicator-keyboard-Is.svg │ │ ├── indicator-keyboard-It-1.svg │ │ ├── indicator-keyboard-It-2.svg │ │ ├── indicator-keyboard-It-3.svg │ │ ├── indicator-keyboard-It-4.svg │ │ ├── indicator-keyboard-It-5.svg │ │ ├── indicator-keyboard-It-6.svg │ │ ├── indicator-keyboard-It.svg │ │ ├── indicator-keyboard-Ja-1.svg │ │ ├── indicator-keyboard-Ja-2.svg │ │ ├── indicator-keyboard-Ja-3.svg │ │ ├── indicator-keyboard-Ja-4.svg │ │ ├── indicator-keyboard-Ja-5.svg │ │ ├── indicator-keyboard-Ja-6.svg │ │ ├── indicator-keyboard-Ja-7.svg │ │ ├── indicator-keyboard-Ja.svg │ │ ├── indicator-keyboard-Ka-1.svg │ │ ├── indicator-keyboard-Ka-2.svg │ │ ├── indicator-keyboard-Ka-3.svg │ │ ├── indicator-keyboard-Ka-4.svg │ │ ├── indicator-keyboard-Ka.svg │ │ ├── indicator-keyboard-Ki-1.svg │ │ ├── indicator-keyboard-Ki-2.svg │ │ ├── indicator-keyboard-Ki-3.svg │ │ ├── indicator-keyboard-Ki.svg │ │ ├── indicator-keyboard-Kk-1.svg │ │ ├── indicator-keyboard-Kk-2.svg │ │ ├── indicator-keyboard-Kk.svg │ │ ├── indicator-keyboard-Km.svg │ │ ├── indicator-keyboard-Kn-1.svg │ │ ├── indicator-keyboard-Kn-2.svg │ │ ├── indicator-keyboard-Kn.svg │ │ ├── indicator-keyboard-Ko-1.svg │ │ ├── indicator-keyboard-Ko-2.svg │ │ ├── indicator-keyboard-Ko.svg │ │ ├── indicator-keyboard-Ku-1.svg │ │ ├── indicator-keyboard-Ku-10.svg │ │ ├── indicator-keyboard-Ku-11.svg │ │ ├── indicator-keyboard-Ku-12.svg │ │ ├── indicator-keyboard-Ku-13.svg │ │ ├── indicator-keyboard-Ku-14.svg │ │ ├── indicator-keyboard-Ku-2.svg │ │ ├── indicator-keyboard-Ku-3.svg │ │ ├── indicator-keyboard-Ku-4.svg │ │ ├── indicator-keyboard-Ku-5.svg │ │ ├── indicator-keyboard-Ku-6.svg │ │ ├── indicator-keyboard-Ku-7.svg │ │ ├── indicator-keyboard-Ku-8.svg │ │ ├── indicator-keyboard-Ku-9.svg │ │ ├── indicator-keyboard-Ku.svg │ │ ├── indicator-keyboard-Lo-1.svg │ │ ├── indicator-keyboard-Lo-2.svg │ │ ├── indicator-keyboard-Lo.svg │ │ ├── indicator-keyboard-Lt-1.svg │ │ ├── indicator-keyboard-Lt-2.svg │ │ ├── indicator-keyboard-Lt-3.svg │ │ ├── indicator-keyboard-Lt-4.svg │ │ ├── indicator-keyboard-Lt-5.svg │ │ ├── indicator-keyboard-Lt-6.svg │ │ ├── indicator-keyboard-Lt.svg │ │ ├── indicator-keyboard-Lv-1.svg │ │ ├── indicator-keyboard-Lv-2.svg │ │ ├── indicator-keyboard-Lv-3.svg │ │ ├── indicator-keyboard-Lv-4.svg │ │ ├── indicator-keyboard-Lv-5.svg │ │ ├── indicator-keyboard-Lv-6.svg │ │ ├── indicator-keyboard-Lv-7.svg │ │ ├── indicator-keyboard-Lv.svg │ │ ├── indicator-keyboard-Md.svg │ │ ├── indicator-keyboard-Mi.svg │ │ ├── indicator-keyboard-Mk-1.svg │ │ ├── indicator-keyboard-Mk-2.svg │ │ ├── indicator-keyboard-Mk.svg │ │ ├── indicator-keyboard-Ml-1.svg │ │ ├── indicator-keyboard-Ml-2.svg │ │ ├── indicator-keyboard-Ml-3.svg │ │ ├── indicator-keyboard-Ml.svg │ │ ├── indicator-keyboard-Mn.svg │ │ ├── indicator-keyboard-Mr.svg │ │ ├── indicator-keyboard-Mt-1.svg │ │ ├── indicator-keyboard-Mt-2.svg │ │ ├── indicator-keyboard-Mt.svg │ │ ├── indicator-keyboard-My.svg │ │ ├── indicator-keyboard-Ne.svg │ │ ├── indicator-keyboard-Nl-1.svg │ │ ├── indicator-keyboard-Nl-2.svg │ │ ├── indicator-keyboard-Nl-3.svg │ │ ├── indicator-keyboard-Nl-4.svg │ │ ├── indicator-keyboard-Nl.svg │ │ ├── indicator-keyboard-No-1.svg │ │ ├── indicator-keyboard-No-2.svg │ │ ├── indicator-keyboard-No-3.svg │ │ ├── indicator-keyboard-No-4.svg │ │ ├── indicator-keyboard-No-5.svg │ │ ├── indicator-keyboard-No-6.svg │ │ ├── indicator-keyboard-No-7.svg │ │ ├── indicator-keyboard-No-8.svg │ │ ├── indicator-keyboard-No.svg │ │ ├── indicator-keyboard-Or.svg │ │ ├── indicator-keyboard-Pa-1.svg │ │ ├── indicator-keyboard-Pa-2.svg │ │ ├── indicator-keyboard-Pa.svg │ │ ├── indicator-keyboard-Ph-1.svg │ │ ├── indicator-keyboard-Ph-10.svg │ │ ├── indicator-keyboard-Ph-2.svg │ │ ├── indicator-keyboard-Ph-3.svg │ │ ├── indicator-keyboard-Ph-4.svg │ │ ├── indicator-keyboard-Ph-5.svg │ │ ├── indicator-keyboard-Ph-6.svg │ │ ├── indicator-keyboard-Ph-7.svg │ │ ├── indicator-keyboard-Ph-8.svg │ │ ├── indicator-keyboard-Ph-9.svg │ │ ├── indicator-keyboard-Ph.svg │ │ ├── indicator-keyboard-Pl-1.svg │ │ ├── indicator-keyboard-Pl-2.svg │ │ ├── indicator-keyboard-Pl-3.svg │ │ ├── indicator-keyboard-Pl-4.svg │ │ ├── indicator-keyboard-Pl-5.svg │ │ ├── indicator-keyboard-Pl-6.svg │ │ ├── indicator-keyboard-Pl-7.svg │ │ ├── indicator-keyboard-Pl-8.svg │ │ ├── indicator-keyboard-Pl-9.svg │ │ ├── indicator-keyboard-Pl.svg │ │ ├── indicator-keyboard-Ps-1.svg │ │ ├── indicator-keyboard-Ps-2.svg │ │ ├── indicator-keyboard-Ps.svg │ │ ├── indicator-keyboard-Pt-1.svg │ │ ├── indicator-keyboard-Pt-10.svg │ │ ├── indicator-keyboard-Pt-11.svg │ │ ├── indicator-keyboard-Pt-12.svg │ │ ├── indicator-keyboard-Pt-13.svg │ │ ├── indicator-keyboard-Pt-14.svg │ │ ├── indicator-keyboard-Pt-15.svg │ │ ├── indicator-keyboard-Pt-2.svg │ │ ├── indicator-keyboard-Pt-3.svg │ │ ├── indicator-keyboard-Pt-4.svg │ │ ├── indicator-keyboard-Pt-5.svg │ │ ├── indicator-keyboard-Pt-6.svg │ │ ├── indicator-keyboard-Pt-7.svg │ │ ├── indicator-keyboard-Pt-8.svg │ │ ├── indicator-keyboard-Pt-9.svg │ │ ├── indicator-keyboard-Pt.svg │ │ ├── indicator-keyboard-Ro-1.svg │ │ ├── indicator-keyboard-Ro-2.svg │ │ ├── indicator-keyboard-Ro-3.svg │ │ ├── indicator-keyboard-Ro-4.svg │ │ ├── indicator-keyboard-Ro-5.svg │ │ ├── indicator-keyboard-Ro.svg │ │ ├── indicator-keyboard-Ru-1.svg │ │ ├── indicator-keyboard-Ru-10.svg │ │ ├── indicator-keyboard-Ru-11.svg │ │ ├── indicator-keyboard-Ru-12.svg │ │ ├── indicator-keyboard-Ru-13.svg │ │ ├── indicator-keyboard-Ru-14.svg │ │ ├── indicator-keyboard-Ru-15.svg │ │ ├── indicator-keyboard-Ru-16.svg │ │ ├── indicator-keyboard-Ru-17.svg │ │ ├── indicator-keyboard-Ru-18.svg │ │ ├── indicator-keyboard-Ru-19.svg │ │ ├── indicator-keyboard-Ru-2.svg │ │ ├── indicator-keyboard-Ru-20.svg │ │ ├── indicator-keyboard-Ru-21.svg │ │ ├── indicator-keyboard-Ru-22.svg │ │ ├── indicator-keyboard-Ru-23.svg │ │ ├── indicator-keyboard-Ru-24.svg │ │ ├── indicator-keyboard-Ru-25.svg │ │ ├── indicator-keyboard-Ru-26.svg │ │ ├── indicator-keyboard-Ru-27.svg │ │ ├── indicator-keyboard-Ru-3.svg │ │ ├── indicator-keyboard-Ru-4.svg │ │ ├── indicator-keyboard-Ru-5.svg │ │ ├── indicator-keyboard-Ru-6.svg │ │ ├── indicator-keyboard-Ru-7.svg │ │ ├── indicator-keyboard-Ru-8.svg │ │ ├── indicator-keyboard-Ru-9.svg │ │ ├── indicator-keyboard-Ru.svg │ │ ├── indicator-keyboard-Sa.svg │ │ ├── indicator-keyboard-Sd.svg │ │ ├── indicator-keyboard-Si-1.svg │ │ ├── indicator-keyboard-Si-2.svg │ │ ├── indicator-keyboard-Si.svg │ │ ├── indicator-keyboard-Sk-1.svg │ │ ├── indicator-keyboard-Sk-2.svg │ │ ├── indicator-keyboard-Sk-3.svg │ │ ├── indicator-keyboard-Sk-4.svg │ │ ├── indicator-keyboard-Sk.svg │ │ ├── indicator-keyboard-Sl-1.svg │ │ ├── indicator-keyboard-Sl-2.svg │ │ ├── indicator-keyboard-Sl-3.svg │ │ ├── indicator-keyboard-Sl-4.svg │ │ ├── indicator-keyboard-Sl.svg │ │ ├── indicator-keyboard-Sq.svg │ │ ├── indicator-keyboard-Sr-1.svg │ │ ├── indicator-keyboard-Sr-10.svg │ │ ├── indicator-keyboard-Sr-11.svg │ │ ├── indicator-keyboard-Sr-12.svg │ │ ├── indicator-keyboard-Sr-13.svg │ │ ├── indicator-keyboard-Sr-14.svg │ │ ├── indicator-keyboard-Sr-15.svg │ │ ├── indicator-keyboard-Sr-16.svg │ │ ├── indicator-keyboard-Sr-17.svg │ │ ├── indicator-keyboard-Sr-2.svg │ │ ├── indicator-keyboard-Sr-3.svg │ │ ├── indicator-keyboard-Sr-4.svg │ │ ├── indicator-keyboard-Sr-5.svg │ │ ├── indicator-keyboard-Sr-6.svg │ │ ├── indicator-keyboard-Sr-7.svg │ │ ├── indicator-keyboard-Sr-8.svg │ │ ├── indicator-keyboard-Sr-9.svg │ │ ├── indicator-keyboard-Sr.svg │ │ ├── indicator-keyboard-Sv-1.svg │ │ ├── indicator-keyboard-Sv-2.svg │ │ ├── indicator-keyboard-Sv-3.svg │ │ ├── indicator-keyboard-Sv-4.svg │ │ ├── indicator-keyboard-Sv-5.svg │ │ ├── indicator-keyboard-Sv-6.svg │ │ ├── indicator-keyboard-Sv-7.svg │ │ ├── indicator-keyboard-Sv.svg │ │ ├── indicator-keyboard-Sw-1.svg │ │ ├── indicator-keyboard-Sw-2.svg │ │ ├── indicator-keyboard-Sw.svg │ │ ├── indicator-keyboard-Sy-1.svg │ │ ├── indicator-keyboard-Sy-2.svg │ │ ├── indicator-keyboard-Sy.svg │ │ ├── indicator-keyboard-Ta-1.svg │ │ ├── indicator-keyboard-Ta-2.svg │ │ ├── indicator-keyboard-Ta-3.svg │ │ ├── indicator-keyboard-Ta-4.svg │ │ ├── indicator-keyboard-Ta-5.svg │ │ ├── indicator-keyboard-Ta-6.svg │ │ ├── indicator-keyboard-Ta.svg │ │ ├── indicator-keyboard-Te-1.svg │ │ ├── indicator-keyboard-Te-2.svg │ │ ├── indicator-keyboard-Te-3.svg │ │ ├── indicator-keyboard-Te.svg │ │ ├── indicator-keyboard-Tg-1.svg │ │ ├── indicator-keyboard-Tg-2.svg │ │ ├── indicator-keyboard-Tg.svg │ │ ├── indicator-keyboard-Th-1.svg │ │ ├── indicator-keyboard-Th-2.svg │ │ ├── indicator-keyboard-Th-3.svg │ │ ├── indicator-keyboard-Th.svg │ │ ├── indicator-keyboard-Tk-1.svg │ │ ├── indicator-keyboard-Tk-2.svg │ │ ├── indicator-keyboard-Tk.svg │ │ ├── indicator-keyboard-Tn.svg │ │ ├── indicator-keyboard-Tr-1.svg │ │ ├── indicator-keyboard-Tr-2.svg │ │ ├── indicator-keyboard-Tr-3.svg │ │ ├── indicator-keyboard-Tr-4.svg │ │ ├── indicator-keyboard-Tr-5.svg │ │ ├── indicator-keyboard-Tr.svg │ │ ├── indicator-keyboard-Uk-1.svg │ │ ├── indicator-keyboard-Uk-2.svg │ │ ├── indicator-keyboard-Uk-3.svg │ │ ├── indicator-keyboard-Uk-4.svg │ │ ├── indicator-keyboard-Uk-5.svg │ │ ├── indicator-keyboard-Uk-6.svg │ │ ├── indicator-keyboard-Uk-7.svg │ │ ├── indicator-keyboard-Uk-8.svg │ │ ├── indicator-keyboard-Uk.svg │ │ ├── indicator-keyboard-Ur-1.svg │ │ ├── indicator-keyboard-Ur-2.svg │ │ ├── indicator-keyboard-Ur-3.svg │ │ ├── indicator-keyboard-Ur-4.svg │ │ ├── indicator-keyboard-Ur-5.svg │ │ ├── indicator-keyboard-Ur-6.svg │ │ ├── indicator-keyboard-Ur.svg │ │ ├── indicator-keyboard-Uz-1.svg │ │ ├── indicator-keyboard-Uz-2.svg │ │ ├── indicator-keyboard-Uz-3.svg │ │ ├── indicator-keyboard-Uz-4.svg │ │ ├── indicator-keyboard-Uz.svg │ │ ├── indicator-keyboard-Vi.svg │ │ ├── indicator-keyboard-Wo.svg │ │ ├── indicator-keyboard-Xs.svg │ │ ├── indicator-keyboard-Yo.svg │ │ ├── indicator-keyboard-Zh-1.svg │ │ ├── indicator-keyboard-Zh-2.svg │ │ ├── indicator-keyboard-Zh-3.svg │ │ ├── indicator-keyboard-Zh-4.svg │ │ ├── indicator-keyboard-Zh-5.svg │ │ ├── indicator-keyboard-Zh-6.svg │ │ ├── indicator-keyboard-Zh.svg │ │ ├── indicator-keyboard.svg │ │ ├── indicator-lunar-satelite.svg │ │ ├── indicator-lunar.svg │ │ ├── indicator-messages-new.svg │ │ ├── indicator-messages-red.svg │ │ ├── indicator-messages.svg │ │ ├── indicator-notification-read-dnd.svg │ │ ├── indicator-notification-read.svg │ │ ├── indicator-notification-unread-dnd.svg │ │ ├── indicator-notification-unread.svg │ │ ├── indicator-privacy-panel.svg │ │ ├── indicator-rss-aware-attention.svg │ │ ├── indicator-rss-aware.svg │ │ ├── indicator-sensors-battery.svg │ │ ├── indicator-sensors-case.svg │ │ ├── indicator-sensors-chip.svg │ │ ├── indicator-sensors-cpu.svg │ │ ├── indicator-sensors-disk.svg │ │ ├── indicator-sensors-fan.svg │ │ ├── indicator-sensors-gpu.svg │ │ ├── indicator-sensors-memory.svg │ │ ├── indicator-sound-switcher.svg │ │ ├── indicator-stardate.svg │ │ ├── indicator-stickynotes-mono.svg │ │ ├── indicator-trashindicator-attention.svg │ │ ├── indicator-trashindicator.svg │ │ ├── indicator-virtual-box.svg │ │ ├── indicator-workspaces-1.svg │ │ ├── indicator-workspaces-2.svg │ │ ├── indicator-workspaces-3.svg │ │ ├── indicator-workspaces-4.svg │ │ ├── indicator-workspaces-5.svg │ │ ├── indicator-workspaces-6.svg │ │ ├── indicator-workspaces-7.svg │ │ ├── indicator-workspaces-8.svg │ │ ├── input-caps-on.svg │ │ ├── input-keyboard-virtual-off.svg │ │ ├── input-keyboard-virtual-on.svg │ │ ├── input-keyboard.svg │ │ ├── input-touchpad-off.svg │ │ ├── input-touchpad-on.svg │ │ ├── insync-action.svg │ │ ├── insync-error.svg │ │ ├── insync-feed.svg │ │ ├── insync-normal.svg │ │ ├── insync-offline.svg │ │ ├── insync-paused.svg │ │ ├── insync-share.svg │ │ ├── insync-synced.svg │ │ ├── insync-syncing.svg │ │ ├── irc-channel-joined.svg │ │ ├── irc-channel-parted.svg │ │ ├── irccloud-desktop-tray.svg │ │ ├── jdownloader-indicator.svg │ │ ├── joplin-tray.svg │ │ ├── kaku-tray.svg │ │ ├── kazam-countdown.svg │ │ ├── kazam-paused.svg │ │ ├── kazam-recording.svg │ │ ├── kazam-stopped.svg │ │ ├── kdeconnectindicatordark.svg │ │ ├── keepassx-indicator.svg │ │ ├── keepassx-locked.svg │ │ ├── keepassxc-dark.svg │ │ ├── keepassxc-locked.svg │ │ ├── keepassxc-monochrome-dark-locked.svg │ │ ├── keepassxc-monochrome-dark.svg │ │ ├── keepassxc-monochrome-light-locked.svg │ │ ├── keepassxc-monochrome-light.svg │ │ ├── keepassxc-panel.svg │ │ ├── keepassxc-unlocked.svg │ │ ├── keybase-badged-error.svg │ │ ├── keybase-badged-uploading.svg │ │ ├── keybase-badged.svg │ │ ├── keybase-error.svg │ │ ├── keybase-tray.svg │ │ ├── keybase-update.svg │ │ ├── keybase-uploading.svg │ │ ├── keyboard-battery-caution.svg │ │ ├── keyboard-battery-empty.svg │ │ ├── keyboard-battery-full.svg │ │ ├── keyboard-battery-good.svg │ │ ├── keyboard-battery-low.svg │ │ ├── keyboard-battery-medium.svg │ │ ├── kmixdocked.svg │ │ ├── kmixdocked_error.svg │ │ ├── kmixdocked_mute.svg │ │ ├── knemo-modem-error.svg │ │ ├── knemo-modem-idle.svg │ │ ├── knemo-modem-offline.svg │ │ ├── knemo-modem-receive.svg │ │ ├── knemo-modem-transmit-receive.svg │ │ ├── knemo-modem-transmit.svg │ │ ├── knemo-monitor-error.svg │ │ ├── knemo-monitor-idle.svg │ │ ├── knemo-monitor-offline.svg │ │ ├── knemo-monitor-receive.svg │ │ ├── knemo-monitor-transmit-receive.svg │ │ ├── knemo-monitor-transmit.svg │ │ ├── knemo-network-error.svg │ │ ├── knemo-network-idle.svg │ │ ├── knemo-network-offline.svg │ │ ├── knemo-network-receive.svg │ │ ├── knemo-network-transmit-receive.svg │ │ ├── knemo-network-transmit.svg │ │ ├── knemo-wireless-error.svg │ │ ├── knemo-wireless-idle.svg │ │ ├── knemo-wireless-offline.svg │ │ ├── knemo-wireless-receive.svg │ │ ├── knemo-wireless-transmit-receive.svg │ │ ├── knemo-wireless-transmit.svg │ │ ├── kotatogram-attention-panel.svg │ │ ├── kotatogram-mute-panel.svg │ │ ├── kotatogram-panel.svg │ │ ├── krb-expiring-ticket.svg │ │ ├── krb-no-valid-ticket.svg │ │ ├── krb-valid-ticket.svg │ │ ├── krudiotray-light-off22.svg │ │ ├── krudiotray-light-on22.svg │ │ ├── ladi-started.svg │ │ ├── ladi-starting.svg │ │ ├── ladi-stopped.svg │ │ ├── laptop-connected.svg │ │ ├── laptop-disconnected.svg │ │ ├── laptop-trusted.svg │ │ ├── laptopattention.svg │ │ ├── laptopconnected.svg │ │ ├── laptopdisconnected.svg │ │ ├── laptoptrusted.svg │ │ ├── liferea-available.svg │ │ ├── liferea-unread.svg │ │ ├── listen.moe-desktop-app-tray.svg │ │ ├── livewallpaper-indicator.svg │ │ ├── lookit-panel.svg │ │ ├── low-signal-lock.svg │ │ ├── low-signal.svg │ │ ├── low-temp-icon.svg │ │ ├── lutris-panel.svg │ │ ├── lyricfier-tray.svg │ │ ├── mailspring-tray-empty.svg │ │ ├── mailspring-tray-full-newitems.svg │ │ ├── mailspring-tray-full.svg │ │ ├── manjaro-settings-manager-panel.svg │ │ ├── manjaro-settings-manager.svg │ │ ├── manjaro-welcome.svg │ │ ├── manjaro.svg │ │ ├── mate-sensors-applet-battery.svg │ │ ├── mate-sensors-applet-case.svg │ │ ├── mate-sensors-applet-chip.svg │ │ ├── mate-sensors-applet-cpu.svg │ │ ├── mate-sensors-applet-drive-harddisk.svg │ │ ├── mate-sensors-applet-fan.svg │ │ ├── mate-sensors-applet-gpu.svg │ │ ├── mate-sensors-applet-memory.svg │ │ ├── megalogging.svg │ │ ├── megapaused.svg │ │ ├── megasynching.svg │ │ ├── megauptodate.svg │ │ ├── megawarning.svg │ │ ├── mellowplayer-panel.svg │ │ ├── messagebox_critical.svg │ │ ├── messagebox_info.svg │ │ ├── messagebox_warning.svg │ │ ├── messenger-indicator.svg │ │ ├── messenger-notification.svg │ │ ├── mic-off.svg │ │ ├── mic-on.svg │ │ ├── mic-ready.svg │ │ ├── mic-volume-high.svg │ │ ├── mic-volume-low.svg │ │ ├── mic-volume-medium.svg │ │ ├── mic-volume-muted.svg │ │ ├── microphone-sensitivity-high.svg │ │ ├── microphone-sensitivity-low.svg │ │ ├── microphone-sensitivity-medium.svg │ │ ├── microphone-sensitivity-muted.svg │ │ ├── minetime-tray.svg │ │ ├── mini-calendar.svg │ │ ├── mintupdate-checking.svg │ │ ├── mintupdate-error.svg │ │ ├── mintupdate-installing.svg │ │ ├── mintupdate-up-to-date.svg │ │ ├── mintupdate-updates-available.svg │ │ ├── mnotify-none-wireframe.svg │ │ ├── mnotify-some-wireframe.svg │ │ ├── mntray-news.svg │ │ ├── mntray-regular.svg │ │ ├── motrix-tray-active.svg │ │ ├── motrix-tray.svg │ │ ├── mouse-battery-caution.svg │ │ ├── mouse-battery-empty.svg │ │ ├── mouse-battery-full.svg │ │ ├── mouse-battery-good.svg │ │ ├── mouse-battery-low.svg │ │ ├── mouse-battery-medium.svg │ │ ├── msd-xrandr.svg │ │ ├── mstdn-panel.svg │ │ ├── mullvad-tray-1.svg │ │ ├── mullvad-tray-10.svg │ │ ├── mullvad-tray-2.svg │ │ ├── mullvad-tray-3.svg │ │ ├── mullvad-tray-4.svg │ │ ├── mullvad-tray-5.svg │ │ ├── mullvad-tray-6.svg │ │ ├── mullvad-tray-7.svg │ │ ├── mullvad-tray-8.svg │ │ ├── mullvad-tray-9.svg │ │ ├── mumble-indicator.svg │ │ ├── museeks-tray.svg │ │ ├── museeq-offline.svg │ │ ├── museeq-panel.svg │ │ ├── mynotes-tray.svg │ │ ├── network-cellular-3g.svg │ │ ├── network-cellular-4g.svg │ │ ├── network-cellular-acquiring.svg │ │ ├── network-cellular-cdma-1x.svg │ │ ├── network-cellular-connected.svg │ │ ├── network-cellular-edge.svg │ │ ├── network-cellular-evdo.svg │ │ ├── network-cellular-gprs.svg │ │ ├── network-cellular-hspa.svg │ │ ├── network-cellular-no-route.svg │ │ ├── network-cellular-offline.svg │ │ ├── network-cellular-secure-signal-excellent.svg │ │ ├── network-cellular-secure-signal-good.svg │ │ ├── network-cellular-secure-signal-low.svg │ │ ├── network-cellular-secure-signal-none.svg │ │ ├── network-cellular-secure-signal-ok.svg │ │ ├── network-cellular-signal-excellent.svg │ │ ├── network-cellular-signal-good.svg │ │ ├── network-cellular-signal-low.svg │ │ ├── network-cellular-signal-none.svg │ │ ├── network-cellular-signal-ok.svg │ │ ├── network-cellular-umts.svg │ │ ├── network-disconnected.svg │ │ ├── network-error.svg │ │ ├── network-idle.svg │ │ ├── network-offline-symbolic.svg │ │ ├── network-offline.svg │ │ ├── network-receive.svg │ │ ├── network-transmit-receive.svg │ │ ├── network-transmit.svg │ │ ├── network-vpn-acquiring.svg │ │ ├── network-vpn-lock-symbolic.svg │ │ ├── network-vpn-symbolic.svg │ │ ├── network-vpn.svg │ │ ├── network-wired-acquiring-symbolic.svg │ │ ├── network-wired-acquiring.svg │ │ ├── network-wired-disconnected-symbolic.svg │ │ ├── network-wired-no-route.svg │ │ ├── network-wired-offline-symbolic.svg │ │ ├── network-wired-offline.svg │ │ ├── network-wired-secure-symbolic.svg │ │ ├── network-wired-secure.svg │ │ ├── network-wired-symbolic.svg │ │ ├── network-wired.svg │ │ ├── network-wireless-acquiring.svg │ │ ├── network-wireless-connected-00.svg │ │ ├── network-wireless-connected-100.svg │ │ ├── network-wireless-connected-25.svg │ │ ├── network-wireless-connected-50.svg │ │ ├── network-wireless-connected-75.svg │ │ ├── network-wireless-connected.svg │ │ ├── network-wireless-disconnected.svg │ │ ├── network-wireless-encrypted.svg │ │ ├── network-wireless-hotspot.svg │ │ ├── network-wireless-no-route-symbolic.svg │ │ ├── network-wireless-no-route.svg │ │ ├── network-wireless-offline-symbolic.svg │ │ ├── network-wireless-offline.svg │ │ ├── network-wireless-secure-signal-excellent.svg │ │ ├── network-wireless-secure-signal-good.svg │ │ ├── network-wireless-secure-signal-low.svg │ │ ├── network-wireless-secure-signal-none.svg │ │ ├── network-wireless-secure-signal-ok.svg │ │ ├── network-wireless-signal-excellent-secure-symbolic.svg │ │ ├── network-wireless-signal-excellent-symbolic.svg │ │ ├── network-wireless-signal-excellent.svg │ │ ├── network-wireless-signal-good-secure-symbolic.svg │ │ ├── network-wireless-signal-good-symbolic.svg │ │ ├── network-wireless-signal-good.svg │ │ ├── network-wireless-signal-low.svg │ │ ├── network-wireless-signal-none-symbolic.svg │ │ ├── network-wireless-signal-none.svg │ │ ├── network-wireless-signal-ok-secure-symbolic.svg │ │ ├── network-wireless-signal-ok-symbolic.svg │ │ ├── network-wireless-signal-ok.svg │ │ ├── network-wireless-signal-weak-secure-symbolic.svg │ │ ├── network-wireless-signal-weak-symbolic.svg │ │ ├── network-wireless-signal-weak.svg │ │ ├── new-messages-red.svg │ │ ├── nitroshare-indicator.svg │ │ ├── nixnote2-tray.svg │ │ ├── nm-adhoc.svg │ │ ├── nm-device-wired-autoip.svg │ │ ├── nm-device-wired-secure.svg │ │ ├── nm-device-wired-secureoffline.svg │ │ ├── nm-device-wired.svg │ │ ├── nm-device-wireless.svg │ │ ├── nm-device-wwan.svg │ │ ├── nm-mb-roam.svg │ │ ├── nm-no-connection.svg │ │ ├── nm-secure-lock.svg │ │ ├── nm-signal-0-secure.svg │ │ ├── nm-signal-0.svg │ │ ├── nm-signal-00-secure.svg │ │ ├── nm-signal-00.svg │ │ ├── nm-signal-100-secure.svg │ │ ├── nm-signal-100.svg │ │ ├── nm-signal-25-secure.svg │ │ ├── nm-signal-25.svg │ │ ├── nm-signal-50-secure.svg │ │ ├── nm-signal-50.svg │ │ ├── nm-signal-75-secure.svg │ │ ├── nm-signal-75.svg │ │ ├── nm-tech-3g.svg │ │ ├── nm-tech-4g.svg │ │ ├── nm-tech-cdma-1x.svg │ │ ├── nm-tech-edge.svg │ │ ├── nm-tech-evdo.svg │ │ ├── nm-tech-gprs.svg │ │ ├── nm-tech-hspa.svg │ │ ├── nm-tech-lte.svg │ │ ├── nm-tech-umts.svg │ │ ├── nm-vpn-active-lock.svg │ │ ├── nm-vpn-lock.svg │ │ ├── nm-vpn-standalone-lock.svg │ │ ├── nm-wwan-tower.svg │ │ ├── nm_adhoc.svg │ │ ├── nm_device_vpn.svg │ │ ├── nm_device_wired.svg │ │ ├── nm_device_wwan.svg │ │ ├── no-signal.svg │ │ ├── nomachine-disabled.svg │ │ ├── nomachine-indicator.svg │ │ ├── normal-temp-icon.svg │ │ ├── notes-panel.svg │ │ ├── notification-display-brightness.svg │ │ ├── notification-new-symbolic.svg │ │ ├── notification-symbolic.svg │ │ ├── nozbe-tray.svg │ │ ├── num-lock-off.svg │ │ ├── num-lock-on.svg │ │ ├── numlock-off.svg │ │ ├── numlock-on.svg │ │ ├── nutstore-offline-panel.svg │ │ ├── nutstore-oops-panel.svg │ │ ├── nutstore-panel.svg │ │ ├── nutstore-paused-panel.svg │ │ ├── nutstore-synchronized-panel.svg │ │ ├── nutstore-synchronizing-panel.svg │ │ ├── nylas-tray-empty.svg │ │ ├── nylas-tray-full-newitems.svg │ │ ├── nylas-tray-full.svg │ │ ├── obs-tray-active.svg │ │ ├── obs-tray.svg │ │ ├── octopi-error.svg │ │ ├── octopi-indicator.svg │ │ ├── octopi-info.svg │ │ ├── octopi-ok.svg │ │ ├── odrive-tray-grey.svg │ │ ├── odrive-tray-sync.svg │ │ ├── odrive-tray.svg │ │ ├── onboard-mono.svg │ │ ├── onboard-panel.svg │ │ ├── openbazaar-system-tray.svg │ │ ├── opensnitch-tray-alert.svg │ │ ├── opensnitch-tray-off.svg │ │ ├── opensnitch-tray-pause.svg │ │ ├── opensnitch-tray-red.svg │ │ ├── opensnitch-tray.svg │ │ ├── optimus-indicator-intel.svg │ │ ├── optimus-indicator-nvidia.svg │ │ ├── optimus-tray-intel-symbolic.svg │ │ ├── optimus-tray-intel.svg │ │ ├── optimus-tray-nvidia-symbolic.svg │ │ ├── optimus-tray-nvidia.svg │ │ ├── org.nicotine_plus.Nicotine-away.svg │ │ ├── org.nicotine_plus.Nicotine-connect.svg │ │ ├── org.nicotine_plus.Nicotine-disconnect.svg │ │ ├── org.nicotine_plus.Nicotine-msg.svg │ │ ├── org.sparkleshare.SparkleShare-syncing-down.svg │ │ ├── org.sparkleshare.SparkleShare-syncing-error.svg │ │ ├── org.sparkleshare.SparkleShare-syncing-up.svg │ │ ├── org.sparkleshare.SparkleShare-syncing.svg │ │ ├── overgrive-app-ind-con-1.svg │ │ ├── overgrive-app-ind-con-2.svg │ │ ├── overgrive-app-ind-con-3.svg │ │ ├── overgrive-app-ind-sleep.svg │ │ ├── overgrive-app-ind.svg │ │ ├── pamac-tray-no-update.svg │ │ ├── pamac-tray-update.svg │ │ ├── pcloud-offline.svg │ │ ├── pcloud-ok.svg │ │ ├── pcloud-pause.svg │ │ ├── pcloud-sync.svg │ │ ├── pcloud-warning.svg │ │ ├── persepolis-tray.svg │ │ ├── phone-battery-caution.svg │ │ ├── phone-battery-empty.svg │ │ ├── phone-battery-full.svg │ │ ├── phone-battery-good.svg │ │ ├── phone-battery-low.svg │ │ ├── phone-battery-medium.svg │ │ ├── pia_tray_connected.svg │ │ ├── pia_tray_connecting.svg │ │ ├── pia_tray_disconnected.svg │ │ ├── pidgin-tray-available.svg │ │ ├── pidgin-tray-away.svg │ │ ├── pidgin-tray-busy.svg │ │ ├── pidgin-tray-connect.svg │ │ ├── pidgin-tray-invisible.svg │ │ ├── pidgin-tray-offline.svg │ │ ├── pidgin-tray-pending.svg │ │ ├── pidgin-tray-xa.svg │ │ ├── pithos-tray-icon.svg │ │ ├── pithos-tray-plugin.svg │ │ ├── pocket-casts-tray.svg │ │ ├── pomodoneapp-break.svg │ │ ├── pomodoneapp-indicator.svg │ │ ├── pomodoneapp-paused.svg │ │ ├── pomodoneapp-started.svg │ │ ├── pomodoro-indicator-light-00.svg │ │ ├── pomodoro-indicator-light-01.svg │ │ ├── pomodoro-indicator-light-02.svg │ │ ├── pomodoro-indicator-light-03.svg │ │ ├── pomodoro-indicator-light-04.svg │ │ ├── pomodoro-indicator-light-05.svg │ │ ├── pomodoro-indicator-light-06.svg │ │ ├── pomodoro-indicator-light-07.svg │ │ ├── pomodoro-indicator-light-08.svg │ │ ├── pomodoro-indicator-light-09.svg │ │ ├── pomodoro-indicator-light-10.svg │ │ ├── pomodoro-indicator-light-11.svg │ │ ├── pomodoro-indicator-light-12.svg │ │ ├── pomodoro-indicator-light-13.svg │ │ ├── pomodoro-indicator-light-14.svg │ │ ├── pomodoro-indicator-light-15.svg │ │ ├── pomodoro-indicator-light-16.svg │ │ ├── pomodoro-indicator-light-17.svg │ │ ├── pomodoro-indicator-light-18.svg │ │ ├── pomodoro-indicator-light-19.svg │ │ ├── pomodoro-indicator-light-20.svg │ │ ├── pomodoro-indicator-light-21.svg │ │ ├── pomodoro-indicator-light-22.svg │ │ ├── pomodoro-indicator-light-23.svg │ │ ├── pomodoro-indicator-light-24.svg │ │ ├── pomodoro-indicator-light-25.svg │ │ ├── pomodoro-indicator-light-26.svg │ │ ├── pomodoro-indicator-light-27.svg │ │ ├── pomodoro-indicator-light-28.svg │ │ ├── pomodoro-indicator-light-29.svg │ │ ├── pomodoro-indicator-light-30.svg │ │ ├── pomodoro-indicator-light-31.svg │ │ ├── pomodoro-indicator-light-32.svg │ │ ├── pomodoro-indicator-light-33.svg │ │ ├── pomodoro-indicator-light-34.svg │ │ ├── pomodoro-indicator-light-35.svg │ │ ├── pomodoro-indicator-light-36.svg │ │ ├── pomodoro-indicator-light-37.svg │ │ ├── pomodoro-indicator-light-38.svg │ │ ├── pomodoro-indicator-light-39.svg │ │ ├── pomodoro-indicator-light-40.svg │ │ ├── pomodoro-indicator-light-41.svg │ │ ├── pomodoro-indicator-light-42.svg │ │ ├── pomodoro-indicator-light-43.svg │ │ ├── pomodoro-indicator-light-44.svg │ │ ├── pomodoro-indicator-light-45.svg │ │ ├── pomodoro-indicator-light-46.svg │ │ ├── pomodoro-indicator-light-47.svg │ │ ├── pomodoro-indicator-light-48.svg │ │ ├── pomodoro-indicator-light-49.svg │ │ ├── pomodoro-indicator-light-50.svg │ │ ├── pomodoro-indicator-light-51.svg │ │ ├── pomodoro-indicator-light-52.svg │ │ ├── pomodoro-indicator-light-53.svg │ │ ├── pomodoro-indicator-light-54.svg │ │ ├── pomodoro-indicator-light-55.svg │ │ ├── pomodoro-indicator-light-56.svg │ │ ├── pomodoro-indicator-light-57.svg │ │ ├── pomodoro-indicator-light-58.svg │ │ ├── pomodoro-indicator-light-59.svg │ │ ├── pomodoro-indicator-light-60.svg │ │ ├── pomodoro-indicator-light-61.svg │ │ ├── pomodoro-start-light.svg │ │ ├── pomodoro-stop-light.svg │ │ ├── popcorntime-tray.svg │ │ ├── pragha-panel.svg │ │ ├── preferences-desktop-accessibility-panel.svg │ │ ├── preferences-system-bluetooth-active.svg │ │ ├── preferences-system-bluetooth-inactive.svg │ │ ├── premid-tray.svg │ │ ├── prime-hybrid.svg │ │ ├── prime-intel.svg │ │ ├── prime-nvidia.svg │ │ ├── printer-printing-symbolic.svg │ │ ├── process-syncing-down.svg │ │ ├── process-syncing-error.svg │ │ ├── process-syncing-idle.svg │ │ ├── process-syncing-up.svg │ │ ├── process-syncing.svg │ │ ├── process-working-symbolic.svg │ │ ├── protonmail-indicator.svg │ │ ├── protonmail-notification.svg │ │ ├── protonvpn-tray.svg │ │ ├── psensor_hot.svg │ │ ├── psensor_normal.svg │ │ ├── pushbullet-indicator-disabled.svg │ │ ├── pushbullet-indicator-light.svg │ │ ├── pushbullet-indicator-paused.svg │ │ ├── pushbullet-indicator-sync0-light.svg │ │ ├── pushbullet-indicator-sync1-light.svg │ │ ├── pushbullet-indicator-sync2-light.svg │ │ ├── pushbullet-indicator-sync3-light.svg │ │ ├── pushbullet-indicator-transparent.svg │ │ ├── pushbullet-indicator.svg │ │ ├── qalculate-tray.svg │ │ ├── qbittorrent-panel.svg │ │ ├── qbittorrent-tray-dark.svg │ │ ├── qbittorrent-tray-light.svg │ │ ├── qbittorrent-tray.svg │ │ ├── qelectrotech-indicator.svg │ │ ├── qjoypad-tray.svg │ │ ├── qnapi-panel.svg │ │ ├── qomp-pause-panel.svg │ │ ├── qomp-play-panel.svg │ │ ├── qomp-stop-panel.svg │ │ ├── qtox-away.svg │ │ ├── qtox-busy.svg │ │ ├── qtox-event.svg │ │ ├── qtox-invisible.svg │ │ ├── qtox-offline.svg │ │ ├── qtox-online.svg │ │ ├── qtpass-tray.svg │ │ ├── quota.svg │ │ ├── radiotray-ng-off.svg │ │ ├── radiotray-ng-on.svg │ │ ├── radiotray_connecting.svg │ │ ├── radiotray_off.svg │ │ ├── radiotray_on.svg │ │ ├── rambox-indicator.svg │ │ ├── rambox-notification.svg │ │ ├── rclonetray-connected-tray.svg │ │ ├── rclonetray-tray.svg │ │ ├── receiving-bad-signal-lock.svg │ │ ├── receiving-bad-signal.svg │ │ ├── receiving-good-signal-lock.svg │ │ ├── receiving-good-signal.svg │ │ ├── receiving-high-signal-lock.svg │ │ ├── receiving-high-signal.svg │ │ ├── receiving-low-signal-lock.svg │ │ ├── receiving-low-signal.svg │ │ ├── record-desktop-indicator-recording.svg │ │ ├── record-desktop-indicator.svg │ │ ├── redshift-status-off.svg │ │ ├── redshift-status-on.svg │ │ ├── remmina-panel.svg │ │ ├── remote-folder-sync-down.svg │ │ ├── remote-folder-sync-up.svg │ │ ├── remote-folder-sync.svg │ │ ├── rescuetime-indicator.svg │ │ ├── rescuetime-offline.svg │ │ ├── rhythmbox-indicator.svg │ │ ├── rhythmbox-notplaying.svg │ │ ├── rhythmbox-panel.svg │ │ ├── rhythmbox-playing.svg │ │ ├── riot-tray.svg │ │ ├── rocketchat-tray-1.svg │ │ ├── rocketchat-tray-2.svg │ │ ├── rocketchat-tray-3.svg │ │ ├── rocketchat-tray-4.svg │ │ ├── rocketchat-tray-5.svg │ │ ├── rocketchat-tray-6.svg │ │ ├── rocketchat-tray-7.svg │ │ ├── rocketchat-tray-8.svg │ │ ├── rocketchat-tray-9-plus.svg │ │ ├── rocketchat-tray-9.svg │ │ ├── rocketchat-tray-alert.svg │ │ ├── rocketchat-tray-dot.svg │ │ ├── rocketchat-tray.svg │ │ ├── rsibreak0.svg │ │ ├── rsibreak1.svg │ │ ├── rsibreak2.svg │ │ ├── rsibreak3.svg │ │ ├── rsibreak4.svg │ │ ├── rsibreakx.svg │ │ ├── rto-proxy-tray.svg │ │ ├── safeeyes_disabled.svg │ │ ├── safeeyes_enabled.svg │ │ ├── scc-alive.svg │ │ ├── scc-dead.svg │ │ ├── scc-error.svg │ │ ├── scc-unknown.svg │ │ ├── screencloud-idle.svg │ │ ├── screencloud-uploading.svg │ │ ├── scrllock-off.svg │ │ ├── scrllock-on.svg │ │ ├── scroll-lock-off.svg │ │ ├── scroll-lock-on.svg │ │ ├── scudcloud-attention-1.svg │ │ ├── scudcloud-attention-2.svg │ │ ├── scudcloud-attention-3.svg │ │ ├── scudcloud-attention-4.svg │ │ ├── scudcloud-attention-5.svg │ │ ├── scudcloud-attention-6.svg │ │ ├── scudcloud-attention-7.svg │ │ ├── scudcloud-attention-8.svg │ │ ├── scudcloud-attention-9.svg │ │ ├── scudcloud-attention.svg │ │ ├── scudcloud.svg │ │ ├── seafile-status-error.svg │ │ ├── seafile-status-notification.svg │ │ ├── seafile-status-offline.svg │ │ ├── seafile-status-ok.svg │ │ ├── seafile-status-paused.svg │ │ ├── seafile-status-syncing-1.svg │ │ ├── seafile-status-syncing-2.svg │ │ ├── security-high.svg │ │ ├── security-low.svg │ │ ├── security-medium.svg │ │ ├── sendanywhere-tray.svg │ │ ├── sflphone-indicator.svg │ │ ├── sflphone-notification.svg │ │ ├── sflphone-offline.svg │ │ ├── shutter-panel.svg │ │ ├── si-syncthing-0.svg │ │ ├── si-syncthing-1.svg │ │ ├── si-syncthing-10.svg │ │ ├── si-syncthing-11.svg │ │ ├── si-syncthing-2.svg │ │ ├── si-syncthing-3.svg │ │ ├── si-syncthing-4.svg │ │ ├── si-syncthing-5.svg │ │ ├── si-syncthing-6.svg │ │ ├── si-syncthing-7.svg │ │ ├── si-syncthing-8.svg │ │ ├── si-syncthing-9.svg │ │ ├── si-syncthing-idle.svg │ │ ├── si-syncthing-unknown.svg │ │ ├── signal-100.svg │ │ ├── signal-25.svg │ │ ├── signal-50.svg │ │ ├── signal-75.svg │ │ ├── signal-tray.svg │ │ ├── signal-unread-1.svg │ │ ├── signal-unread-10.svg │ │ ├── signal-unread-2.svg │ │ ├── signal-unread-3.svg │ │ ├── signal-unread-4.svg │ │ ├── signal-unread-5.svg │ │ ├── signal-unread-6.svg │ │ ├── signal-unread-7.svg │ │ ├── signal-unread-8.svg │ │ ├── signal-unread-9.svg │ │ ├── simplescreenrecorder-error.svg │ │ ├── simplescreenrecorder-idle.svg │ │ ├── simplescreenrecorder-panel.svg │ │ ├── simplescreenrecorder-paused.svg │ │ ├── simplescreenrecorder-recording.svg │ │ ├── sirikali-panel.svg │ │ ├── skype-indicator.svg │ │ ├── skype-status-away-notification.svg │ │ ├── skype-status-away.svg │ │ ├── skype-status-connected-notification.svg │ │ ├── skype-status-connected.svg │ │ ├── skype-status-connecting-0.svg │ │ ├── skype-status-connecting-1.svg │ │ ├── skype-status-connecting-2.svg │ │ ├── skype-status-connecting-3.svg │ │ ├── skype-status-disturb-notification.svg │ │ ├── skype-status-disturb.svg │ │ ├── skype-status-hidden-notification.svg │ │ ├── skype-status-hidden.svg │ │ ├── skype-status-invisible-notification.svg │ │ ├── skype-status-invisible.svg │ │ ├── skype-status-offline-notification.svg │ │ ├── skype-status-offline.svg │ │ ├── slack-indicator-highlight.svg │ │ ├── slack-indicator-unread.svg │ │ ├── slack-indicator.svg │ │ ├── smartcode-stremio-tray.svg │ │ ├── smartphone-connected.svg │ │ ├── smartphone-disconnected.svg │ │ ├── smartphone-trusted.svg │ │ ├── smartphoneattention.svg │ │ ├── smartphoneconnected.svg │ │ ├── smartphonedisconnected.svg │ │ ├── smartphonetrusted.svg │ │ ├── smplayer-panel.svg │ │ ├── software-update-available.svg │ │ ├── software-update-urgent.svg │ │ ├── solaar-attention.svg │ │ ├── solaar-indicator.svg │ │ ├── spotify-indicator.svg │ │ ├── start-here-lxqt.svg │ │ ├── start-here-manjaro.svg │ │ ├── start-here-symbolic.svg │ │ ├── start-here.svg │ │ ├── state-download.svg │ │ ├── state-error.svg │ │ ├── state-information.svg │ │ ├── state-offline.svg │ │ ├── state-ok.svg │ │ ├── state-pause.svg │ │ ├── state-sync.svg │ │ ├── state-warning.svg │ │ ├── state_paused.svg │ │ ├── state_running.svg │ │ ├── state_shutoff.svg │ │ ├── status_lock.svg │ │ ├── steadyflow-alert-panel.svg │ │ ├── steadyflow-panel.svg │ │ ├── steam_tray_mono.svg │ │ ├── stock_dialog-error.svg │ │ ├── stock_dialog-info.svg │ │ ├── stock_dialog-question.svg │ │ ├── stock_dialog-warning.svg │ │ ├── stock_lock.svg │ │ ├── stock_weather-cloudy.svg │ │ ├── stock_weather-few-clouds.svg │ │ ├── stock_weather-fog.svg │ │ ├── stock_weather-night-clear.svg │ │ ├── stock_weather-night-few-clouds.svg │ │ ├── stock_weather-showers.svg │ │ ├── stock_weather-snow.svg │ │ ├── stock_weather-storm.svg │ │ ├── strawberry-panel-grey.svg │ │ ├── strawberry-panel.svg │ │ ├── superproductivity-tray-0.svg │ │ ├── superproductivity-tray-1.svg │ │ ├── superproductivity-tray-10.svg │ │ ├── superproductivity-tray-11.svg │ │ ├── superproductivity-tray-12.svg │ │ ├── superproductivity-tray-13.svg │ │ ├── superproductivity-tray-14.svg │ │ ├── superproductivity-tray-15.svg │ │ ├── superproductivity-tray-2.svg │ │ ├── superproductivity-tray-3.svg │ │ ├── superproductivity-tray-4.svg │ │ ├── superproductivity-tray-5.svg │ │ ├── superproductivity-tray-6.svg │ │ ├── superproductivity-tray-7.svg │ │ ├── superproductivity-tray-8.svg │ │ ├── superproductivity-tray-9.svg │ │ ├── superproductivity-tray-run.svg │ │ ├── superproductivity-tray.svg │ │ ├── synapse-panel.svg │ │ ├── synergy-panel-ok.svg │ │ ├── synergy-panel.svg │ │ ├── syspeek-0.svg │ │ ├── syspeek-10.svg │ │ ├── syspeek-100.svg │ │ ├── syspeek-20.svg │ │ ├── syspeek-30.svg │ │ ├── syspeek-40.svg │ │ ├── syspeek-50.svg │ │ ├── syspeek-60.svg │ │ ├── syspeek-70.svg │ │ ├── syspeek-80.svg │ │ ├── syspeek-90.svg │ │ ├── system-devices-information.svg │ │ ├── system-devices-panel-alert.svg │ │ ├── system-devices-panel-information.svg │ │ ├── system-devices-panel.svg │ │ ├── system-file-manager-panel.svg │ │ ├── system-restart-panel.svg │ │ ├── system-search-symbolic.svg │ │ ├── system-shutdown-panel-restart.svg │ │ ├── system-shutdown-panel.svg │ │ ├── system-shutdown-symbolic.svg │ │ ├── system-software-update-panel.svg │ │ ├── tablet-connected.svg │ │ ├── tablet-disconnected.svg │ │ ├── tablet-trusted.svg │ │ ├── tabletattention.svg │ │ ├── tabletconnected.svg │ │ ├── tabletdisconnected.svg │ │ ├── tablettrusted.svg │ │ ├── tartube-check-tray.svg │ │ ├── tartube-download-tray.svg │ │ ├── tartube-info-tray.svg │ │ ├── tartube-refresh-tray.svg │ │ ├── tartube-tidy-tray.svg │ │ ├── tartube-tray.svg │ │ ├── tartube-update-tray.svg │ │ ├── task-attempt.svg │ │ ├── task-attention.svg │ │ ├── tdenetworkmanager_disabled.svg │ │ ├── teams-for-linux-tray.svg │ │ ├── teams-tray-activity.svg │ │ ├── teams-tray-available.svg │ │ ├── teams-tray-away.svg │ │ ├── teams-tray-busy.svg │ │ ├── teams-tray-dnd.svg │ │ ├── teams-tray-error.svg │ │ ├── teams-tray-noactivity.svg │ │ ├── teams-tray-offline.svg │ │ ├── teams-tray-offshift.svg │ │ ├── teams-tray-onshift.svg │ │ ├── teamviewer-indicator-away.svg │ │ ├── teamviewer-indicator-busy.svg │ │ ├── teamviewer-indicator-connected.svg │ │ ├── teamviewer-indicator-error.svg │ │ ├── teamviewer-indicator-offline.svg │ │ ├── teamviewer-indicator.svg │ │ ├── telegram-attention-panel.svg │ │ ├── telegram-mute-panel.svg │ │ ├── telegram-panel.svg │ │ ├── thunderbird-attention-panel.svg │ │ ├── thunderbird-panel.svg │ │ ├── timekpr-panel.svg │ │ ├── todo-indicator.svg │ │ ├── todoist-tray.svg │ │ ├── tomahawk-indicator.svg │ │ ├── tomboy-panel.svg │ │ ├── touchpad-indicator-light-disabled.svg │ │ ├── touchpad-indicator-light-enabled.svg │ │ ├── touchpad-indicator-light.svg │ │ ├── transmission-panel.svg │ │ ├── transmission-tray-icon.svg │ │ ├── transmitting-bad-signal-lock.svg │ │ ├── transmitting-bad-signal.svg │ │ ├── transmitting-good-signal-lock.svg │ │ ├── transmitting-good-signal.svg │ │ ├── transmitting-high-signal-lock.svg │ │ ├── transmitting-high-signal.svg │ │ ├── transmitting-low-signal-lock.svg │ │ ├── transmitting-low-signal.svg │ │ ├── tray-message.svg │ │ ├── tray-new-im.svg │ │ ├── tray-offline.svg │ │ ├── tray-online.svg │ │ ├── trimage-indicator.svg │ │ ├── trophy-bronze.svg │ │ ├── trophy-gold.svg │ │ ├── trophy-silver.svg │ │ ├── tusk-indicator.svg │ │ ├── tutanota-desktop-tray.svg │ │ ├── tvconnected.svg │ │ ├── tvdisconnected.svg │ │ ├── tvtrusted.svg │ │ ├── tweet-tray-panel.svg │ │ ├── twitch-indicator.svg │ │ ├── ubuntuone-client-error.svg │ │ ├── ubuntuone-client-idle.svg │ │ ├── ubuntuone-client-offline.svg │ │ ├── ubuntuone-client-paused.svg │ │ ├── ubuntuone-client-updating.svg │ │ ├── uget-tray-default.svg │ │ ├── uget-tray-downloading.svg │ │ ├── uget-tray-error.svg │ │ ├── ulauncher-indicator.svg │ │ ├── update-high.svg │ │ ├── update-low.svg │ │ ├── update-medium.svg │ │ ├── update-none.svg │ │ ├── updates-notifier-inactive.svg │ │ ├── updates-notifier.svg │ │ ├── user-available-panel.svg │ │ ├── user-available.svg │ │ ├── user-away-panel.svg │ │ ├── user-away.svg │ │ ├── user-busy-panel.svg │ │ ├── user-busy.svg │ │ ├── user-idle-panel.svg │ │ ├── user-idle.svg │ │ ├── user-invisible-panel.svg │ │ ├── user-invisible.svg │ │ ├── user-offline-panel.svg │ │ ├── user-offline.svg │ │ ├── user-online.svg │ │ ├── user-status-new.svg │ │ ├── user-status-pending.svg │ │ ├── utools-tray.svg │ │ ├── variety-indicator.svg │ │ ├── veracrypt-panel.svg │ │ ├── very-high-temp-icon.svg │ │ ├── very-low-temp-icon.svg │ │ ├── viber-normal.svg │ │ ├── viber-notification.svg │ │ ├── virt-manager-panel.svg │ │ ├── vivaldi-tray.svg │ │ ├── vk-tray.svg │ │ ├── vlc-panel.svg │ │ ├── volume-level-high-panel.svg │ │ ├── volume-level-high.svg │ │ ├── volume-level-low-panel.svg │ │ ├── volume-level-low.svg │ │ ├── volume-level-medium-panel.svg │ │ ├── volume-level-medium.svg │ │ ├── volume-level-muted-panel.svg │ │ ├── volume-level-muted.svg │ │ ├── volume-level-none-panel.svg │ │ ├── volume-level-none.svg │ │ ├── vorta-tray-active.svg │ │ ├── vorta-tray.svg │ │ ├── weather-clear-night-000.svg │ │ ├── weather-clear-night-010.svg │ │ ├── weather-clear-night-020.svg │ │ ├── weather-clear-night-030.svg │ │ ├── weather-clear-night-040.svg │ │ ├── weather-clear-night-050.svg │ │ ├── weather-clear-night-060.svg │ │ ├── weather-clear-night-070.svg │ │ ├── weather-clear-night-080.svg │ │ ├── weather-clear-night-090.svg │ │ ├── weather-clear-night-100.svg │ │ ├── weather-clear-night-110.svg │ │ ├── weather-clear-night-120.svg │ │ ├── weather-clear-night-130.svg │ │ ├── weather-clear-night-140.svg │ │ ├── weather-clear-night-150.svg │ │ ├── weather-clear-night-160.svg │ │ ├── weather-clear-night-170.svg │ │ ├── weather-clear-night-180.svg │ │ ├── weather-clear-night-190.svg │ │ ├── weather-clear-night-200.svg │ │ ├── weather-clear-night-210.svg │ │ ├── weather-clear-night-220.svg │ │ ├── weather-clear-night-230.svg │ │ ├── weather-clear-night-240.svg │ │ ├── weather-clear-night-250.svg │ │ ├── weather-clear-night-260.svg │ │ ├── weather-clear-night-270.svg │ │ ├── weather-clear-night-280.svg │ │ ├── weather-clear-night-290.svg │ │ ├── weather-clear-night-300.svg │ │ ├── weather-clear-night-310.svg │ │ ├── weather-clear-night-320.svg │ │ ├── weather-clear-night-330.svg │ │ ├── weather-clear-night-340.svg │ │ ├── weather-clear-night-350.svg │ │ ├── weather-clear-night.svg │ │ ├── weather-clear.svg │ │ ├── weather-clouds-night.svg │ │ ├── weather-clouds.svg │ │ ├── weather-few-clouds-night-000.svg │ │ ├── weather-few-clouds-night-010.svg │ │ ├── weather-few-clouds-night-020.svg │ │ ├── weather-few-clouds-night-030.svg │ │ ├── weather-few-clouds-night-040.svg │ │ ├── weather-few-clouds-night-050.svg │ │ ├── weather-few-clouds-night-060.svg │ │ ├── weather-few-clouds-night-070.svg │ │ ├── weather-few-clouds-night-080.svg │ │ ├── weather-few-clouds-night-090.svg │ │ ├── weather-few-clouds-night-100.svg │ │ ├── weather-few-clouds-night-110.svg │ │ ├── weather-few-clouds-night-120.svg │ │ ├── weather-few-clouds-night-130.svg │ │ ├── weather-few-clouds-night-140.svg │ │ ├── weather-few-clouds-night-150.svg │ │ ├── weather-few-clouds-night-160.svg │ │ ├── weather-few-clouds-night-170.svg │ │ ├── weather-few-clouds-night-180.svg │ │ ├── weather-few-clouds-night-190.svg │ │ ├── weather-few-clouds-night-200.svg │ │ ├── weather-few-clouds-night-210.svg │ │ ├── weather-few-clouds-night-220.svg │ │ ├── weather-few-clouds-night-230.svg │ │ ├── weather-few-clouds-night-240.svg │ │ ├── weather-few-clouds-night-250.svg │ │ ├── weather-few-clouds-night-260.svg │ │ ├── weather-few-clouds-night-270.svg │ │ ├── weather-few-clouds-night-280.svg │ │ ├── weather-few-clouds-night-290.svg │ │ ├── weather-few-clouds-night-300.svg │ │ ├── weather-few-clouds-night-310.svg │ │ ├── weather-few-clouds-night-320.svg │ │ ├── weather-few-clouds-night-330.svg │ │ ├── weather-few-clouds-night-340.svg │ │ ├── weather-few-clouds-night-350.svg │ │ ├── weather-few-clouds-night.svg │ │ ├── weather-few-clouds.svg │ │ ├── weather-fog.svg │ │ ├── weather-freezing-rain.svg │ │ ├── weather-hail.svg │ │ ├── weather-many-clouds.svg │ │ ├── weather-mist.svg │ │ ├── weather-none-available.svg │ │ ├── weather-overcast.svg │ │ ├── weather-severe-alert.svg │ │ ├── weather-showers-day.svg │ │ ├── weather-showers-night.svg │ │ ├── weather-showers-scattered-day.svg │ │ ├── weather-showers-scattered-night.svg │ │ ├── weather-showers-scattered.svg │ │ ├── weather-showers.svg │ │ ├── weather-snow-day.svg │ │ ├── weather-snow-night.svg │ │ ├── weather-snow-rain.svg │ │ ├── weather-snow-scattered-day.svg │ │ ├── weather-snow-scattered-night.svg │ │ ├── weather-snow-scattered.svg │ │ ├── weather-snow.svg │ │ ├── weather-storm-day.svg │ │ ├── weather-storm-night.svg │ │ ├── weather-storm.svg │ │ ├── weather-windy.svg │ │ ├── webtorrent-desktop-panel.svg │ │ ├── wechat-tray-unread.svg │ │ ├── wechat-tray.svg │ │ ├── whatsapp-msg.svg │ │ ├── whatsapp-tray.svg │ │ ├── whatsapp-warning-msg.svg │ │ ├── whatsapp-warning.svg │ │ ├── whatsie-tray-attention.svg │ │ ├── whatsie-tray.svg │ │ ├── whiskermenu-manjaro.svg │ │ ├── wire-tray-attention.svg │ │ ├── wire-tray.svg │ │ ├── wired.svg │ │ ├── wireless.svg │ │ ├── wireless_off.svg │ │ ├── wiznote-indicator.svg │ │ ├── workrave-indicator-quiet.svg │ │ ├── workrave-indicator-suspended.svg │ │ ├── workrave-indicator.svg │ │ ├── x-tile-panel.svg │ │ ├── xchat-panel.svg │ │ ├── xfce-newmail.svg │ │ ├── xfce-nomail.svg │ │ ├── xfce4-battery-caution-charging.svg │ │ ├── xfce4-battery-caution.svg │ │ ├── xfce4-battery-critical-charging.svg │ │ ├── xfce4-battery-critical.svg │ │ ├── xfce4-battery-full-charging.svg │ │ ├── xfce4-battery-full.svg │ │ ├── xfce4-battery-good-charging.svg │ │ ├── xfce4-battery-good.svg │ │ ├── xfce4-battery-low-charging.svg │ │ ├── xfce4-battery-low.svg │ │ ├── xfce4-battery-missing.svg │ │ ├── xfce4-battery-ok-charging.svg │ │ ├── xfce4-battery-ok.svg │ │ ├── xfce4-battery-plugin.svg │ │ ├── xfce4-fsguard-plugin-urgent.svg │ │ ├── xfce4-fsguard-plugin-warning.svg │ │ ├── xfce4-fsguard-plugin.svg │ │ ├── xfce4-mixer-muted.svg │ │ ├── xfce4-mixer-no-muted.svg │ │ ├── xfce4-mixer-no-record.svg │ │ ├── xfce4-mixer-record.svg │ │ ├── xfce4-mixer-volume-high.svg │ │ ├── xfce4-mixer-volume-low-medium.svg │ │ ├── xfce4-mixer-volume-low.svg │ │ ├── xfce4-mixer-volume-medium.svg │ │ ├── xfce4-mixer-volume-muted.svg │ │ ├── xfce4-mixer-volume-ultra-low.svg │ │ ├── xfce4-mixer-volume-very-high.svg │ │ ├── xfce4-notes-plugin.svg │ │ ├── xfce4-whiskermenu.svg │ │ ├── xfpm-ac-adapter.svg │ │ ├── xfpm-battery-000-charging.svg │ │ ├── xfpm-battery-000.svg │ │ ├── xfpm-battery-020-charging.svg │ │ ├── xfpm-battery-020.svg │ │ ├── xfpm-battery-040-charging.svg │ │ ├── xfpm-battery-040.svg │ │ ├── xfpm-battery-060-charging.svg │ │ ├── xfpm-battery-060.svg │ │ ├── xfpm-battery-080-charging.svg │ │ ├── xfpm-battery-080.svg │ │ ├── xfpm-battery-100-charging.svg │ │ ├── xfpm-battery-100.svg │ │ ├── xfpm-battery-caution-charging.svg │ │ ├── xfpm-battery-caution.svg │ │ ├── xfpm-battery-critical-charging.svg │ │ ├── xfpm-battery-critical.svg │ │ ├── xfpm-battery-empty.svg │ │ ├── xfpm-battery-full-charging.svg │ │ ├── xfpm-battery-full.svg │ │ ├── xfpm-battery-good-charging.svg │ │ ├── xfpm-battery-good.svg │ │ ├── xfpm-battery-low-charging.svg │ │ ├── xfpm-battery-low.svg │ │ ├── xfpm-battery-missing.svg │ │ ├── xfpm-battery-ok-charging.svg │ │ ├── xfpm-battery-ok.svg │ │ ├── xfpm-brightness-lcd.svg │ │ ├── xfpm-keyboard-000.svg │ │ ├── xfpm-keyboard-020.svg │ │ ├── xfpm-keyboard-030.svg │ │ ├── xfpm-keyboard-040.svg │ │ ├── xfpm-keyboard-060.svg │ │ ├── xfpm-keyboard-080.svg │ │ ├── xfpm-keyboard-100.svg │ │ ├── xfpm-mouse-000.svg │ │ ├── xfpm-mouse-020.svg │ │ ├── xfpm-mouse-030.svg │ │ ├── xfpm-mouse-040.svg │ │ ├── xfpm-mouse-060.svg │ │ ├── xfpm-mouse-080.svg │ │ ├── xfpm-mouse-100.svg │ │ ├── xfpm-phone-000.svg │ │ ├── xfpm-phone-020.svg │ │ ├── xfpm-phone-030.svg │ │ ├── xfpm-phone-040.svg │ │ ├── xfpm-phone-060.svg │ │ ├── xfpm-phone-080.svg │ │ ├── xfpm-phone-100.svg │ │ ├── xfpm-primary-000-charging.svg │ │ ├── xfpm-primary-000.svg │ │ ├── xfpm-primary-020-charging.svg │ │ ├── xfpm-primary-020.svg │ │ ├── xfpm-primary-040-charging.svg │ │ ├── xfpm-primary-040.svg │ │ ├── xfpm-primary-060-charging.svg │ │ ├── xfpm-primary-060.svg │ │ ├── xfpm-primary-080-charging.svg │ │ ├── xfpm-primary-080.svg │ │ ├── xfpm-primary-100-charging.svg │ │ ├── xfpm-primary-100.svg │ │ ├── xfpm-primary-charged.svg │ │ ├── xfpm-primary-missing.svg │ │ ├── xfpm-ups-000-charging.svg │ │ ├── xfpm-ups-000.svg │ │ ├── xfpm-ups-020-charging.svg │ │ ├── xfpm-ups-020.svg │ │ ├── xfpm-ups-040-charging.svg │ │ ├── xfpm-ups-040.svg │ │ ├── xfpm-ups-060-charging.svg │ │ ├── xfpm-ups-060.svg │ │ ├── xfpm-ups-080-charging.svg │ │ ├── xfpm-ups-080.svg │ │ ├── xfpm-ups-100-charging.svg │ │ ├── xfpm-ups-100.svg │ │ ├── xfpm-ups-charged.svg │ │ ├── xfpm-ups-missing.svg │ │ ├── xkbmod-indicator.svg │ │ ├── y-ppa-indicator.svg │ │ ├── yakuake.svg │ │ ├── yate-tray-incomingcall.svg │ │ ├── yate-tray-incomingchat.svg │ │ ├── yate-tray-info.svg │ │ ├── yate-tray-notification.svg │ │ ├── yate-tray.svg │ │ ├── yd-busy1.svg │ │ ├── yd-busy2.svg │ │ ├── yd-busy3.svg │ │ ├── yd-busy4.svg │ │ ├── yd-busy5.svg │ │ ├── yd-ind-error.svg │ │ ├── yd-ind-idle.svg │ │ ├── yd-ind-pause.svg │ │ ├── youtube-indicator-downloading-light.svg │ │ ├── youtube-indicator-light-disabled.svg │ │ ├── youtube-indicator-light-sync0.svg │ │ ├── youtube-indicator-light-sync1.svg │ │ ├── youtube-indicator-light-sync2.svg │ │ ├── youtube-indicator-light-sync3.svg │ │ ├── youtube-indicator-light-sync4.svg │ │ ├── youtube-indicator-light-sync5.svg │ │ ├── youtube-indicator-light-sync6.svg │ │ ├── youtube-indicator-light-sync7.svg │ │ ├── youtube-indicator-light-sync8.svg │ │ ├── youtube-indicator-light-sync9.svg │ │ ├── youtube-indicator-light.svg │ │ ├── youtube-music-desktop-app-tray-pause.svg │ │ ├── youtube-music-desktop-app-tray-play.svg │ │ ├── youtube-music-desktop-app-tray.svg │ │ ├── youtube-music-tray.svg │ │ ├── yum-indicator-error.svg │ │ ├── yum-indicator-info.svg │ │ ├── yum-indicator-no-updates.svg │ │ ├── yum-indicator-updates.svg │ │ ├── yum-indicator-working.svg │ │ ├── zeal-panel.svg │ │ ├── zeal-tray.svg │ │ └── zim-panel.svg │ └── places │ │ ├── akonadi-phone-home.svg │ │ ├── application-x-gnome-saved-search.svg │ │ ├── bookmark-missing.svg │ │ ├── desktop.svg │ │ ├── document-open-recent.svg │ │ ├── edittrash.svg │ │ ├── emptytrash.svg │ │ ├── favorites.svg │ │ ├── folder-bookmark.svg │ │ ├── folder-bookmarks.svg │ │ ├── folder-camera.svg │ │ ├── folder-desktop.svg │ │ ├── folder-documents-open.svg │ │ ├── folder-documents.svg │ │ ├── folder-download-open.svg │ │ ├── folder-download.svg │ │ ├── folder-downloads.svg │ │ ├── folder-drag-accept.svg │ │ ├── folder-favorites.svg │ │ ├── folder-games.svg │ │ ├── folder-home.svg │ │ ├── folder-html.svg │ │ ├── folder-image.svg │ │ ├── folder-images.svg │ │ ├── folder-music-open.svg │ │ ├── folder-music.svg │ │ ├── folder-network.svg │ │ ├── folder-open-recent.svg │ │ ├── folder-open.svg │ │ ├── folder-photo.svg │ │ ├── folder-photos.svg │ │ ├── folder-picture.svg │ │ ├── folder-pictures-open.svg │ │ ├── folder-pictures.svg │ │ ├── folder-publicshare-open.svg │ │ ├── folder-publicshare.svg │ │ ├── folder-recent.svg │ │ ├── folder-remote-ftp.svg │ │ ├── folder-remote-nfs.svg │ │ ├── folder-remote-open.svg │ │ ├── folder-remote-smb.svg │ │ ├── folder-remote-ssh.svg │ │ ├── folder-root.svg │ │ ├── folder-saved-search-alt.svg │ │ ├── folder-saved-search.svg │ │ ├── folder-sound.svg │ │ ├── folder-temp.svg │ │ ├── folder-templates-open.svg │ │ ├── folder-templates.svg │ │ ├── folder-text.svg │ │ ├── folder-txt.svg │ │ ├── folder-video.svg │ │ ├── folder-videocamera.svg │ │ ├── folder-videos-open.svg │ │ ├── folder-videos.svg │ │ ├── folder-visiting.svg │ │ ├── folder.svg │ │ ├── folder_download.svg │ │ ├── folder_downloads.svg │ │ ├── folder_home.svg │ │ ├── folder_html.svg │ │ ├── folder_images.svg │ │ ├── folder_open.svg │ │ ├── folder_pictures.svg │ │ ├── folders-documents.svg │ │ ├── folders-downloads.svg │ │ ├── folders-music.svg │ │ ├── folders-publicshare.svg │ │ ├── folders-videos.svg │ │ ├── gnome-ccdesktop.svg │ │ ├── gnome-desktop-config.svg │ │ ├── gnome-dev-network.svg │ │ ├── gnome-dev-trash-empty.svg │ │ ├── gnome-dev-trash-full.svg │ │ ├── gnome-folder.svg │ │ ├── gnome-fs-blockdev.svg │ │ ├── gnome-fs-bookmark-missing.svg │ │ ├── gnome-fs-bookmark.svg │ │ ├── gnome-fs-dav.svg │ │ ├── gnome-fs-desktop.svg │ │ ├── gnome-fs-dev.svg │ │ ├── gnome-fs-directory-accept.svg │ │ ├── gnome-fs-directory-visiting.svg │ │ ├── gnome-fs-directory.svg │ │ ├── gnome-fs-ftp.svg │ │ ├── gnome-fs-home.svg │ │ ├── gnome-fs-network.svg │ │ ├── gnome-fs-nfs.svg │ │ ├── gnome-fs-server.svg │ │ ├── gnome-fs-share.svg │ │ ├── gnome-fs-smb.svg │ │ ├── gnome-fs-ssh.svg │ │ ├── gnome-fs-trash-empty-accept.svg │ │ ├── gnome-fs-trash-empty.svg │ │ ├── gnome-fs-trash-full.svg │ │ ├── gnome-fs-web.svg │ │ ├── gnome-home.svg │ │ ├── gnome-mime-x-directory-nfs-server.svg │ │ ├── gnome-mime-x-directory-smb-server.svg │ │ ├── gnome-mime-x-directory-smb-share.svg │ │ ├── gnome-mime-x-directory-smb-workgroup.svg │ │ ├── gnome-stock-trash-empty.svg │ │ ├── gnome-stock-trash-full.svg │ │ ├── gnome-stock-trash.svg │ │ ├── go-home-large.svg │ │ ├── go-home.svg │ │ ├── gohome.svg │ │ ├── gtg-home.svg │ │ ├── gtk-directory.svg │ │ ├── gtk-home.svg │ │ ├── gtk-network.svg │ │ ├── inode-directory.svg │ │ ├── kfm_home.svg │ │ ├── library-music.svg │ │ ├── mail-sent.svg │ │ ├── neat.svg │ │ ├── network-server.svg │ │ ├── network-workgroup.svg │ │ ├── network.svg │ │ ├── network_fs.svg │ │ ├── network_local.svg │ │ ├── nfs.svg │ │ ├── other-desktop.svg │ │ ├── redhat-home.svg │ │ ├── redhat-network-server.svg │ │ ├── redhat-system-group.svg │ │ ├── repository.svg │ │ ├── samba.svg │ │ ├── server.svg │ │ ├── stock_bookmark.svg │ │ ├── stock_delete-bookmark.svg │ │ ├── stock_folder.svg │ │ ├── stock_home.svg │ │ ├── stock_music-library.svg │ │ ├── stock_open.svg │ │ ├── stock_trash_empty.svg │ │ ├── stock_trash_full.svg │ │ ├── trash-empty.svg │ │ ├── trash-full.svg │ │ ├── trashcan_empty.svg │ │ ├── trashcan_full.svg │ │ ├── user-bookmarks.svg │ │ ├── user-desktop.svg │ │ ├── user-home-open.svg │ │ ├── user-home.svg │ │ ├── user-images.svg │ │ ├── user-pictures.svg │ │ ├── user-share.svg │ │ ├── user-trash-full.svg │ │ ├── user-trash.svg │ │ ├── xfce-trash_empty.svg │ │ └── xfce-trash_full.svg │ ├── 24 │ ├── actions │ │ ├── CVnamespace.svg │ │ ├── Finished.svg │ │ ├── Info-amarok.svg │ │ ├── PrePostCondition.svg │ │ ├── SuggestionTM.svg │ │ ├── accept_signal.svg │ │ ├── accept_time_event.svg │ │ ├── acrobat.svg │ │ ├── action-albumfolder-importdir2.svg │ │ ├── action-rss_tag.svg │ │ ├── activities.svg │ │ ├── activity-fork.svg │ │ ├── actor.svg │ │ ├── add-files-to-archive.svg │ │ ├── add-folder-to-archive.svg │ │ ├── add-placemark.svg │ │ ├── add.svg │ │ ├── address-book-new.svg │ │ ├── addressbook-details.svg │ │ ├── adjustcurves.svg │ │ ├── adjusthsl.svg │ │ ├── adjustlevels.svg │ │ ├── adjustrgb.svg │ │ ├── adress-book-new.svg │ │ ├── aggregation.svg │ │ ├── akonadi-phone-home.svg │ │ ├── akonadiconsole.svg │ │ ├── albumfolder-importdir.svg │ │ ├── albumfolder-importimages.svg │ │ ├── albumfolder-new.svg │ │ ├── albumfolder-properties.svg │ │ ├── albumfolder-user-trash.svg │ │ ├── align-horizontal-baseline.svg │ │ ├── align-horizontal-bottom-out.svg │ │ ├── align-horizontal-center.svg │ │ ├── align-horizontal-left-out.svg │ │ ├── align-horizontal-left-to-anchor.svg │ │ ├── align-horizontal-left.svg │ │ ├── align-horizontal-node.svg │ │ ├── align-horizontal-right-out.svg │ │ ├── align-horizontal-right-to-anchor.svg │ │ ├── align-horizontal-right.svg │ │ ├── align-horizontal-top-out.svg │ │ ├── align-vertical-baseline.svg │ │ ├── align-vertical-bottom-out.svg │ │ ├── align-vertical-bottom-to-anchor.svg │ │ ├── align-vertical-bottom.svg │ │ ├── align-vertical-center.svg │ │ ├── align-vertical-node.svg │ │ ├── align-vertical-top-out.svg │ │ ├── align-vertical-top-to-anchor.svg │ │ ├── align-vertical-top.svg │ │ ├── amarok_artist.svg │ │ ├── amarok_cart_add.svg │ │ ├── amarok_cart_remove.svg │ │ ├── amarok_cart_view.svg │ │ ├── amarok_change_language.svg │ │ ├── amarok_clock.svg │ │ ├── amarok_lyrics.svg │ │ ├── amarok_playcount.svg │ │ ├── amarok_playlist.svg │ │ ├── amarok_playlist_refresh.svg │ │ ├── amarok_scripts.svg │ │ ├── anchor.svg │ │ ├── animal.svg │ │ ├── animation-stage.svg │ │ ├── answer-correct.svg │ │ ├── answer.svg │ │ ├── antivignetting.svg │ │ ├── application-exit.svg │ │ ├── application-menu.svg │ │ ├── appointment-new.svg │ │ ├── appointment.svg │ │ ├── approved.svg │ │ ├── archive-extract.svg │ │ ├── archive-insert-directory.svg │ │ ├── archive-insert.svg │ │ ├── archive-remove.svg │ │ ├── arrow-down-double.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left-double.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right-double.svg │ │ ├── arrow-right.svg │ │ ├── arrow-up-double.svg │ │ ├── arrow-up.svg │ │ ├── arrow.svg │ │ ├── artifact.svg │ │ ├── artistictext-tool.svg │ │ ├── association.svg │ │ ├── atmosphere.svg │ │ ├── audio-volume-high.svg │ │ ├── audio-volume-low.svg │ │ ├── audio-volume-medium.svg │ │ ├── audio-volume-muted.svg │ │ ├── auto-scale-all.svg │ │ ├── auto-scale-x.svg │ │ ├── auto-scale-y.svg │ │ ├── auto-transition.svg │ │ ├── auto-type.svg │ │ ├── autocorrection.svg │ │ ├── back.svg │ │ ├── backgroundtool.svg │ │ ├── bboxnext.svg │ │ ├── bboxprev.svg │ │ ├── beamerblock.svg │ │ ├── beamerframe.svg │ │ ├── bibtex.svg │ │ ├── bigskip.svg │ │ ├── black_sum.svg │ │ ├── blueman-plugin.svg │ │ ├── blueman-send-file.svg │ │ ├── blueman-trust.svg │ │ ├── blueman-untrust.svg │ │ ├── blurfx.svg │ │ ├── blurimage.svg │ │ ├── bonobo-component-browser.svg │ │ ├── bookmark-add-folder.svg │ │ ├── bookmark-edit.svg │ │ ├── bookmark-new-list.svg │ │ ├── bookmark-new.svg │ │ ├── bookmark-remove.svg │ │ ├── bookmark-toolbar.svg │ │ ├── bookmark_add.svg │ │ ├── bookmarks-organize.svg │ │ ├── bookmarks.svg │ │ ├── bookmarks_list_add.svg │ │ ├── borderpainter.svg │ │ ├── bordertool.svg │ │ ├── bottom.svg │ │ ├── box.svg │ │ ├── bqm-add.svg │ │ ├── bqm-addqueue.svg │ │ ├── bqm-commit.svg │ │ ├── bqm-diff.svg │ │ ├── bqm-remove.svg │ │ ├── bqm-rmqueue.svg │ │ ├── bqm-update.svg │ │ ├── branch.svg │ │ ├── browser-download.svg │ │ ├── burst.svg │ │ ├── button_cancel.svg │ │ ├── bwtonal.svg │ │ ├── cab_extract.svg │ │ ├── call-start.svg │ │ ├── call-stop.svg │ │ ├── call-voicemail.svg │ │ ├── calligraphy.svg │ │ ├── callout-shape.svg │ │ ├── cancel.svg │ │ ├── cards-block.svg │ │ ├── category.svg │ │ ├── category2parent.svg │ │ ├── cell_edit.svg │ │ ├── cell_layout.svg │ │ ├── channelmixer.svg │ │ ├── character-set.svg │ │ ├── charcoaltool.svg │ │ ├── check-filled.svg │ │ ├── check_constraint.svg │ │ ├── checkbox.svg │ │ ├── checkmark.svg │ │ ├── child2category.svg │ │ ├── choice-rhomb.svg │ │ ├── choice-round.svg │ │ ├── chronometer-lap.svg │ │ ├── chronometer-pause.svg │ │ ├── chronometer-reset.svg │ │ ├── chronometer-start.svg │ │ ├── chronometer.svg │ │ ├── circular-arrow-shape.svg │ │ ├── class-or-package.svg │ │ ├── class.svg │ │ ├── clock-large.svg │ │ ├── clock.svg │ │ ├── cloud-download.svg │ │ ├── cloud-upload.svg │ │ ├── cm_columnsview.svg │ │ ├── cm_extractfiles.svg │ │ ├── cm_options.svg │ │ ├── cm_refresh.svg │ │ ├── cm_search.svg │ │ ├── cm_syncdirs.svg │ │ ├── cm_thumbnailsview.svg │ │ ├── cm_viewhistorynext.svg │ │ ├── code-block.svg │ │ ├── code-class.svg │ │ ├── code-context.svg │ │ ├── code-function.svg │ │ ├── code-typedef.svg │ │ ├── code-variable.svg │ │ ├── collapse-all.svg │ │ ├── collapse.svg │ │ ├── collection-rescan-amarok.svg │ │ ├── color-fill.svg │ │ ├── color-gradient.svg │ │ ├── color-management.svg │ │ ├── color-picker-black.svg │ │ ├── color-picker-grey.svg │ │ ├── color-picker-white.svg │ │ ├── color-picker.svg │ │ ├── colorfx.svg │ │ ├── colormanagement.svg │ │ ├── colorneg.svg │ │ ├── colors-chromablue.svg │ │ ├── colors-chromagreen.svg │ │ ├── colors-chromared.svg │ │ ├── colors-luma.svg │ │ ├── combined_fragment.svg │ │ ├── compass.svg │ │ ├── component.svg │ │ ├── composite-track-off.svg │ │ ├── composite-track-on.svg │ │ ├── composite-track-preview.svg │ │ ├── composition.svg │ │ ├── configuration.svg │ │ ├── configure-shortcuts.svg │ │ ├── configure-toolbars.svg │ │ ├── configure.svg │ │ ├── configure_kile.svg │ │ ├── configure_project.svg │ │ ├── contact-new.svg │ │ ├── containment.svg │ │ ├── contents.svg │ │ ├── contrast.svg │ │ ├── convert.svg │ │ ├── cookies.svg │ │ ├── coordinate.svg │ │ ├── copy-coordinates.svg │ │ ├── createpath.svg │ │ ├── cross-shape.svg │ │ ├── crosshairs.svg │ │ ├── currenttrack_pause.svg │ │ ├── currenttrack_play.svg │ │ ├── cursor-arrow.svg │ │ ├── curve-connector.svg │ │ ├── dashboard-show.svg │ │ ├── database-change-key.svg │ │ ├── database-index.svg │ │ ├── datatype.svg │ │ ├── dblatex.svg │ │ ├── debug-execute-from-cursor.svg │ │ ├── debug-execute-to-cursor.svg │ │ ├── debug-run-cursor.svg │ │ ├── debug-run.svg │ │ ├── debug-step-instruction.svg │ │ ├── debug-step-into-instruction.svg │ │ ├── debug-step-into.svg │ │ ├── debug-step-out.svg │ │ ├── debug-step-over.svg │ │ ├── deep-history.svg │ │ ├── delete-comment.svg │ │ ├── delete-table-row.svg │ │ ├── delete.svg │ │ ├── dependency.svg │ │ ├── depth16to8.svg │ │ ├── depth8to16.svg │ │ ├── description.svg │ │ ├── dfrac.svg │ │ ├── diag_activity.svg │ │ ├── diag_class.svg │ │ ├── diag_component.svg │ │ ├── dialog-align-and-distribute.svg │ │ ├── dialog-apply.svg │ │ ├── dialog-cancel.svg │ │ ├── dialog-close.svg │ │ ├── dialog-filters.svg │ │ ├── dialog-icon-preview.svg │ │ ├── dialog-input-devices.svg │ │ ├── dialog-memory.svg │ │ ├── dialog-messages.svg │ │ ├── dialog-no.svg │ │ ├── dialog-object-properties.svg │ │ ├── dialog-ok-apply.svg │ │ ├── dialog-ok.svg │ │ ├── dialog-scripts.svg │ │ ├── dialog-transform.svg │ │ ├── dialog-xml-editor.svg │ │ ├── dialog-yes.svg │ │ ├── dirsync.svg │ │ ├── discrete.svg │ │ ├── displaymathmode.svg │ │ ├── distortionfx.svg │ │ ├── distribute-graph-directed.svg │ │ ├── distribute-graph.svg │ │ ├── distribute-horizontal-baseline.svg │ │ ├── distribute-horizontal-center.svg │ │ ├── distribute-horizontal-equal.svg │ │ ├── distribute-horizontal-gaps.svg │ │ ├── distribute-horizontal-left.svg │ │ ├── distribute-horizontal-margin.svg │ │ ├── distribute-horizontal-node.svg │ │ ├── distribute-horizontal-page.svg │ │ ├── distribute-horizontal-right.svg │ │ ├── distribute-horizontal-x.svg │ │ ├── distribute-horizontal.svg │ │ ├── distribute-randomize.svg │ │ ├── distribute-remove-overlaps.svg │ │ ├── distribute-unclump.svg │ │ ├── distribute-vertical-baseline.svg │ │ ├── distribute-vertical-bottom.svg │ │ ├── distribute-vertical-center.svg │ │ ├── distribute-vertical-equal.svg │ │ ├── distribute-vertical-gaps.svg │ │ ├── distribute-vertical-margin.svg │ │ ├── distribute-vertical-node.svg │ │ ├── distribute-vertical-page.svg │ │ ├── distribute-vertical-top.svg │ │ ├── distribute-vertical-y.svg │ │ ├── distribute-vertical.svg │ │ ├── document-cleanup.svg │ │ ├── document-close.svg │ │ ├── document-decrypt.svg │ │ ├── document-edit-decrypt-verify.svg │ │ ├── document-edit-decrypt.svg │ │ ├── document-edit-encrypt.svg │ │ ├── document-edit-sign-encrypt.svg │ │ ├── document-edit-sign.svg │ │ ├── document-edit-verify.svg │ │ ├── document-edit.svg │ │ ├── document-encrypt.svg │ │ ├── document-encrypted.svg │ │ ├── document-export-ocal.svg │ │ ├── document-export-table.svg │ │ ├── document-export.svg │ │ ├── document-import-ocal.svg │ │ ├── document-import.svg │ │ ├── document-multiple.svg │ │ ├── document-new-from-template.svg │ │ ├── document-new.svg │ │ ├── document-open-data.svg │ │ ├── document-open-folder.svg │ │ ├── document-open-recent.svg │ │ ├── document-open-remote.svg │ │ ├── document-open.svg │ │ ├── document-preview-archive.svg │ │ ├── document-preview.svg │ │ ├── document-print-direct.svg │ │ ├── document-print-frame.svg │ │ ├── document-print-preview.svg │ │ ├── document-print.svg │ │ ├── document-properties.svg │ │ ├── document-replace.svg │ │ ├── document-revert.svg │ │ ├── document-save-all.svg │ │ ├── document-save-as-template.svg │ │ ├── document-save-as.svg │ │ ├── document-save.svg │ │ ├── document-send.svg │ │ ├── document-share.svg │ │ ├── document-sign.svg │ │ ├── document-swap.svg │ │ ├── documentation.svg │ │ ├── documentinfo.svg │ │ ├── dontknow.svg │ │ ├── down.svg │ │ ├── download-amarok.svg │ │ ├── download-later.svg │ │ ├── download.svg │ │ ├── drag-surface.svg │ │ ├── draw-arrow-back.svg │ │ ├── draw-arrow-down.svg │ │ ├── draw-arrow-forward.svg │ │ ├── draw-arrow-up.svg │ │ ├── draw-arrow.svg │ │ ├── draw-bezier-curves.svg │ │ ├── draw-brush.svg │ │ ├── draw-calligraphic.svg │ │ ├── draw-circle.svg │ │ ├── draw-connector.svg │ │ ├── draw-cross.svg │ │ ├── draw-cuboid.svg │ │ ├── draw-donut.svg │ │ ├── draw-ellipse.svg │ │ ├── draw-eraser.svg │ │ ├── draw-freehand.svg │ │ ├── draw-halfcircle1.svg │ │ ├── draw-halfcircle2.svg │ │ ├── draw-halfcircle3.svg │ │ ├── draw-halfcircle4.svg │ │ ├── draw-highlight.svg │ │ ├── draw-line.svg │ │ ├── draw-path.svg │ │ ├── draw-polygon-star.svg │ │ ├── draw-polygon.svg │ │ ├── draw-polyline.svg │ │ ├── draw-rectangle-rounded.svg │ │ ├── draw-rectangle.svg │ │ ├── draw-spiral.svg │ │ ├── draw-square-inverted-corners.svg │ │ ├── draw-star.svg │ │ ├── draw-text.svg │ │ ├── draw-triangle.svg │ │ ├── draw-triangle1.svg │ │ ├── draw-triangle2.svg │ │ ├── draw-triangle3.svg │ │ ├── draw-triangle4.svg │ │ ├── draw-watercolor.svg │ │ ├── dvipdf.svg │ │ ├── dvipng.svg │ │ ├── dvips.svg │ │ ├── dvisearch.svg │ │ ├── dynamic-amarok.svg │ │ ├── earthquake.svg │ │ ├── edit-add.svg │ │ ├── edit-bomb.svg │ │ ├── edit-clear-all.svg │ │ ├── edit-clear-history.svg │ │ ├── edit-clear-list.svg │ │ ├── edit-clear-locationbar-ltr.svg │ │ ├── edit-clear-locationbar-rtl.svg │ │ ├── edit-clear.svg │ │ ├── edit-clone-unlink.svg │ │ ├── edit-clone.svg │ │ ├── edit-comment.svg │ │ ├── edit-copy.svg │ │ ├── edit-cut.svg │ │ ├── edit-delete-remove.svg │ │ ├── edit-delete-shred.svg │ │ ├── edit-delete.svg │ │ ├── edit-download.svg │ │ ├── edit-entry.svg │ │ ├── edit-find-mail.svg │ │ ├── edit-find-project.svg │ │ ├── edit-find-replace.svg │ │ ├── edit-find-user.svg │ │ ├── edit-find.svg │ │ ├── edit-flag.svg │ │ ├── edit-group.svg │ │ ├── edit-guides.svg │ │ ├── edit-image-face-add.svg │ │ ├── edit-image-face-detect.svg │ │ ├── edit-image-face-recognize.svg │ │ ├── edit-image-face-show.svg │ │ ├── edit-line-width.svg │ │ ├── edit-link.svg │ │ ├── edit-map.svg │ │ ├── edit-mark.svg │ │ ├── edit-node.svg │ │ ├── edit-none.svg │ │ ├── edit-opacity.svg │ │ ├── edit-paste-in-place.svg │ │ ├── edit-paste.svg │ │ ├── edit-redo.svg │ │ ├── edit-rename.svg │ │ ├── edit-reset.svg │ │ ├── edit-select-all.svg │ │ ├── edit-select-invert.svg │ │ ├── edit-select-lasso.svg │ │ ├── edit-select-none.svg │ │ ├── edit-select-text.svg │ │ ├── edit-select.svg │ │ ├── edit-table-cell-merge.svg │ │ ├── edit-table-cell-split.svg │ │ ├── edit-table-delete-column.svg │ │ ├── edit-table-delete-row.svg │ │ ├── edit-table-insert-column-left.svg │ │ ├── edit-table-insert-column-right.svg │ │ ├── edit-table-insert-row-above.svg │ │ ├── edit-table-insert-row-below.svg │ │ ├── edit-table-insert-row-under.svg │ │ ├── edit-text-frame-update.svg │ │ ├── edit-undo-history.svg │ │ ├── edit-undo.svg │ │ ├── edit_animation.svg │ │ ├── editclear.svg │ │ ├── editcopy.svg │ │ ├── editcut.svg │ │ ├── editdelete.svg │ │ ├── editimage.svg │ │ ├── editor.svg │ │ ├── editpaste.svg │ │ ├── editpath.svg │ │ ├── edittext.svg │ │ ├── ellipse-shape.svg │ │ ├── embosstool.svg │ │ ├── emph.svg │ │ ├── end_of_life.svg │ │ ├── end_state.svg │ │ ├── enterprise.svg │ │ ├── entity.svg │ │ ├── entrance_animations.svg │ │ ├── entry-clone.svg │ │ ├── entry-delete.svg │ │ ├── entry-edit.svg │ │ ├── entry-new.svg │ │ ├── enum.svg │ │ ├── enumerate.svg │ │ ├── epiphany-download.svg │ │ ├── error.svg │ │ ├── errornext.svg │ │ ├── errorprev.svg │ │ ├── escape-direction-all.svg │ │ ├── escape-direction-down.svg │ │ ├── escape-direction-horizontal.svg │ │ ├── escape-direction-left.svg │ │ ├── escape-direction-right.svg │ │ ├── escape-direction-up.svg │ │ ├── escape-direction-vertical.svg │ │ ├── exception.svg │ │ ├── exchange-positions-clockwise.svg │ │ ├── exchange-positions-zorder.svg │ │ ├── exchange-positions.svg │ │ ├── exifinfo.svg │ │ ├── exit.svg │ │ ├── exit_animations.svg │ │ ├── expand-all.svg │ │ ├── expand.svg │ │ ├── extract-archive.svg │ │ ├── favorite-genres-amarok.svg │ │ ├── favorite.svg │ │ ├── feed-subscribe.svg │ │ ├── file-zoom-in.svg │ │ ├── file-zoom-out.svg │ │ ├── filefind.svg │ │ ├── filegrep.svg │ │ ├── filename-album-amarok.svg │ │ ├── filename-and-amarok.svg │ │ ├── filename-artist-amarok.svg │ │ ├── filename-bpm-amarok.svg │ │ ├── filename-comment-amarok.svg │ │ ├── filename-composer-amarok.svg │ │ ├── filename-dash-amarok.svg │ │ ├── filename-discnumber-amarok.svg │ │ ├── filename-divider.svg │ │ ├── filename-dot-amarok.svg │ │ ├── filename-filetype-amarok.svg │ │ ├── filename-genre-amarok.svg │ │ ├── filename-group-length.svg │ │ ├── filename-group-tracks.svg │ │ ├── filename-ignore-amarok.svg │ │ ├── filename-initial-amarok.svg │ │ ├── filename-last-played.svg │ │ ├── filename-moodbar.svg │ │ ├── filename-sample-rate.svg │ │ ├── filename-slash-amarok.svg │ │ ├── filename-space-amarok.svg │ │ ├── filename-title-amarok.svg │ │ ├── filename-track-amarok.svg │ │ ├── filename-underscore-amarok.svg │ │ ├── filename-year-amarok.svg │ │ ├── filenew.svg │ │ ├── fileopen.svg │ │ ├── fileprint.svg │ │ ├── filequickprint.svg │ │ ├── filesave.svg │ │ ├── fileview-preview.svg │ │ ├── fill-color.svg │ │ ├── filmgrain.svg │ │ ├── final_activity.svg │ │ ├── find-location.svg │ │ ├── find.svg │ │ ├── flag-black.svg │ │ ├── flag-blue.svg │ │ ├── flag-green.svg │ │ ├── flag-red.svg │ │ ├── flag-yellow.svg │ │ ├── flag.svg │ │ ├── flash.svg │ │ ├── flashlight-off.svg │ │ ├── flashlight-on.svg │ │ ├── flower-shape.svg │ │ ├── folder-new.svg │ │ ├── folder-open-recent.svg │ │ ├── folder-open.svg │ │ ├── folder-saved-search.svg │ │ ├── folder-stash.svg │ │ ├── folder-sync.svg │ │ ├── folder-tag.svg │ │ ├── folder_color_picker.svg │ │ ├── folder_new.svg │ │ ├── followmouse.svg │ │ ├── font-disable.svg │ │ ├── font-enable.svg │ │ ├── font.svg │ │ ├── food.svg │ │ ├── foreignkey_constraint.svg │ │ ├── fork.svg │ │ ├── format-add-node.svg │ │ ├── format-align-vertical-bottom.svg │ │ ├── format-align-vertical-center.svg │ │ ├── format-align-vertical-top.svg │ │ ├── format-border-set-all.svg │ │ ├── format-border-set-bottom.svg │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ ├── format-border-set-diagonal-tl-br.svg │ │ ├── format-border-set-external.svg │ │ ├── format-border-set-internal-horizontal.svg │ │ ├── format-border-set-internal-vertical.svg │ │ ├── format-border-set-internal.svg │ │ ├── format-border-set-left.svg │ │ ├── format-border-set-none.svg │ │ ├── format-border-set-right.svg │ │ ├── format-border-set-top.svg │ │ ├── format-border-style.svg │ │ ├── format-break-node.svg │ │ ├── format-connect-node.svg │ │ ├── format-convert-to-path.svg │ │ ├── format-currency.svg │ │ ├── format-disconnect-node.svg │ │ ├── format-fill-color.svg │ │ ├── format-font-size-less.svg │ │ ├── format-font-size-more.svg │ │ ├── format-indent-less.svg │ │ ├── format-indent-more.svg │ │ ├── format-insert-node.svg │ │ ├── format-join-node.svg │ │ ├── format-justify-center.svg │ │ ├── format-justify-fill.svg │ │ ├── format-justify-left.svg │ │ ├── format-justify-right.svg │ │ ├── format-line-spacing-double.svg │ │ ├── format-line-spacing-normal.svg │ │ ├── format-line-spacing-triple.svg │ │ ├── format-list-ordered.svg │ │ ├── format-list-unordered.svg │ │ ├── format-node-corner.svg │ │ ├── format-node-curve.svg │ │ ├── format-node-line.svg │ │ ├── format-node-smooth.svg │ │ ├── format-node-symmetric.svg │ │ ├── format-number-percent.svg │ │ ├── format-precision-less.svg │ │ ├── format-precision-more.svg │ │ ├── format-remove-node.svg │ │ ├── format-segment-curve.svg │ │ ├── format-segment-line.svg │ │ ├── format-stroke-color.svg │ │ ├── format-text-blockquote.svg │ │ ├── format-text-bold.svg │ │ ├── format-text-capitalize.svg │ │ ├── format-text-code.svg │ │ ├── format-text-color.svg │ │ ├── format-text-direction-horizontal.svg │ │ ├── format-text-direction-ltr.svg │ │ ├── format-text-direction-rtl.svg │ │ ├── format-text-direction-vertical.svg │ │ ├── format-text-italic.svg │ │ ├── format-text-lowercase.svg │ │ ├── format-text-strikethrough.svg │ │ ├── format-text-subscript.svg │ │ ├── format-text-superscript.svg │ │ ├── format-text-symbol.svg │ │ ├── format-text-underline-squiggle.svg │ │ ├── format-text-underline.svg │ │ ├── format-text-uppercase.svg │ │ ├── formula.svg │ │ ├── freerotation.svg │ │ ├── frmt-text-direction-horizontal.svg │ │ ├── frmt-text-direction-r2l.svg │ │ ├── frmt-text-direction-vertical-lr.svg │ │ ├── frmt-text-direction-vertical.svg │ │ ├── games-achievements.svg │ │ ├── games-config-background.svg │ │ ├── games-config-board.svg │ │ ├── games-config-custom.svg │ │ ├── games-config-options.svg │ │ ├── games-config-theme.svg │ │ ├── games-config-tiles.svg │ │ ├── games-difficult.svg │ │ ├── games-endturn.svg │ │ ├── games-highscores.svg │ │ ├── games-hint.svg │ │ ├── games-solve.svg │ │ ├── geany-build.svg │ │ ├── geany-close-all.svg │ │ ├── geany-save-all.svg │ │ ├── gearhead-shape.svg │ │ ├── generalisation.svg │ │ ├── generalise.svg │ │ ├── get-hot-new-stuff.svg │ │ ├── giggle-history-view.svg │ │ ├── giggle-tag.svg │ │ ├── globe.svg │ │ ├── gnome-app-install-star.svg │ │ ├── gnome-lockscreen.svg │ │ ├── gnome-searchtool.svg │ │ ├── gnome-stock-mail-fwd.svg │ │ ├── gnome-stock-mail-new.svg │ │ ├── gnome-stock-mail-rpl.svg │ │ ├── gnome-stock-mail-snd.svg │ │ ├── gnumeric-autofilter-delete.svg │ │ ├── gnumeric-autofilter.svg │ │ ├── gnumeric-autosum.svg │ │ ├── gnumeric-brush.svg │ │ ├── gnumeric-bucket.svg │ │ ├── gnumeric-cells-merge.svg │ │ ├── gnumeric-cells-split.svg │ │ ├── gnumeric-column-add.svg │ │ ├── gnumeric-column-delete.svg │ │ ├── gnumeric-column-hide.svg │ │ ├── gnumeric-column-size.svg │ │ ├── gnumeric-column-unhide.svg │ │ ├── gnumeric-comment-add.svg │ │ ├── gnumeric-comment-delete.svg │ │ ├── gnumeric-comment-edit.svg │ │ ├── gnumeric-component-insert-shaped.svg │ │ ├── gnumeric-data-slicer.svg │ │ ├── gnumeric-font.svg │ │ ├── gnumeric-format-accounting.svg │ │ ├── gnumeric-format-border-all.svg │ │ ├── gnumeric-format-border-bottom.svg │ │ ├── gnumeric-format-border-diag.svg │ │ ├── gnumeric-format-border-double-bottom.svg │ │ ├── gnumeric-format-border-inside-horiz.svg │ │ ├── gnumeric-format-border-left.svg │ │ ├── gnumeric-format-border-none.svg │ │ ├── gnumeric-format-border-outside.svg │ │ ├── gnumeric-format-border-rev-diag.svg │ │ ├── gnumeric-format-border-right.svg │ │ ├── gnumeric-format-border-thick-bottom.svg │ │ ├── gnumeric-format-border-thick-outside.svg │ │ ├── gnumeric-format-border-top-n-bottom.svg │ │ ├── gnumeric-format-border-top-n-double-bottom.svg │ │ ├── gnumeric-format-border-top-n-thick-bottom.svg │ │ ├── gnumeric-format-border-top.svg │ │ ├── gnumeric-format-percentage.svg │ │ ├── gnumeric-format-precision-decrease.svg │ │ ├── gnumeric-format-precision-increase.svg │ │ ├── gnumeric-format-thousand-separator.svg │ │ ├── gnumeric-formulaguru.svg │ │ ├── gnumeric-graphguru.svg │ │ ├── gnumeric-group.svg │ │ ├── gnumeric-link-add.svg │ │ ├── gnumeric-link-delete.svg │ │ ├── gnumeric-link-edit.svg │ │ ├── gnumeric-link-email.svg │ │ ├── gnumeric-link-external.svg │ │ ├── gnumeric-link-internal.svg │ │ ├── gnumeric-link-url.svg │ │ ├── gnumeric-object-arrow.svg │ │ ├── gnumeric-object-button.svg │ │ ├── gnumeric-object-checkbox.svg │ │ ├── gnumeric-object-combo.svg │ │ ├── gnumeric-object-ellipse.svg │ │ ├── gnumeric-object-label.svg │ │ ├── gnumeric-object-line.svg │ │ ├── gnumeric-object-list.svg │ │ ├── gnumeric-object-rectangle.svg │ │ ├── gnumeric-object-scrollbar.svg │ │ ├── gnumeric-object-spinbutton.svg │ │ ├── gnumeric-pagesetup-hf-cell.svg │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ ├── gnumeric-pagesetup-hf-time.svg │ │ ├── gnumeric-protection-no.svg │ │ ├── gnumeric-protection-yes.svg │ │ ├── gnumeric-row-add.svg │ │ ├── gnumeric-row-delete.svg │ │ ├── gnumeric-row-hide.svg │ │ ├── gnumeric-row-size.svg │ │ ├── gnumeric-row-unhide.svg │ │ ├── gnumeric-subscript.svg │ │ ├── gnumeric-superscript.svg │ │ ├── gnumeric-ungroup.svg │ │ ├── gnumeric-visible.svg │ │ ├── go-bottom.svg │ │ ├── go-down-search.svg │ │ ├── go-down-skip.svg │ │ ├── go-down-symbolic.svg │ │ ├── go-down.svg │ │ ├── go-first-view-page.svg │ │ ├── go-first-view.svg │ │ ├── go-first.svg │ │ ├── go-home-large.svg │ │ ├── go-home-symbolic.svg │ │ ├── go-home.svg │ │ ├── go-jump-declaration.svg │ │ ├── go-jump-definition.svg │ │ ├── go-jump-locationbar.svg │ │ ├── go-jump-today.svg │ │ ├── go-jump.svg │ │ ├── go-last-view-page.svg │ │ ├── go-last-view.svg │ │ ├── go-last.svg │ │ ├── go-left-symbolic.svg │ │ ├── go-left.svg │ │ ├── go-next-context.svg │ │ ├── go-next-skip.svg │ │ ├── go-next-symbolic.svg │ │ ├── go-next-use.svg │ │ ├── go-next-view-page.svg │ │ ├── go-next-view.svg │ │ ├── go-next.svg │ │ ├── go-parent-folder.svg │ │ ├── go-previous-context.svg │ │ ├── go-previous-skip.svg │ │ ├── go-previous-symbolic.svg │ │ ├── go-previous-use.svg │ │ ├── go-previous-view-page.svg │ │ ├── go-previous-view.svg │ │ ├── go-previous.svg │ │ ├── go-right-symbolic.svg │ │ ├── go-right.svg │ │ ├── go-top.svg │ │ ├── go-up-search.svg │ │ ├── go-up-skip.svg │ │ ├── go-up-symbolic.svg │ │ ├── go-up.svg │ │ ├── gohome.svg │ │ ├── gpg.svg │ │ ├── gpgsm.svg │ │ ├── gps.svg │ │ ├── gradient.svg │ │ ├── graphics.svg │ │ ├── grid-rectangular.svg │ │ ├── group-delete.svg │ │ ├── group-edit.svg │ │ ├── group-new.svg │ │ ├── group.svg │ │ ├── gtg-home.svg │ │ ├── gtg-plugin.svg │ │ ├── gtg-tag.svg │ │ ├── gtg-tags-none.svg │ │ ├── gtg-task-done.svg │ │ ├── gtg-task-new.svg │ │ ├── gtg-task-undismiss.svg │ │ ├── gtg-task-undone.svg │ │ ├── gtk-about.svg │ │ ├── gtk-add.svg │ │ ├── gtk-apply.svg │ │ ├── gtk-authentication.svg │ │ ├── gtk-bold.svg │ │ ├── gtk-cancel.svg │ │ ├── gtk-cdrom.svg │ │ ├── gtk-clear.svg │ │ ├── gtk-close.svg │ │ ├── gtk-color-picker.svg │ │ ├── gtk-connect.svg │ │ ├── gtk-convert.svg │ │ ├── gtk-copy.svg │ │ ├── gtk-cut.svg │ │ ├── gtk-delete.svg │ │ ├── gtk-directory.svg │ │ ├── gtk-disconnect.svg │ │ ├── gtk-dnd-multiple.svg │ │ ├── gtk-edit.svg │ │ ├── gtk-execute.svg │ │ ├── gtk-file.svg │ │ ├── gtk-find-and-replace.svg │ │ ├── gtk-find.svg │ │ ├── gtk-floppy.svg │ │ ├── gtk-fullscreen.svg │ │ ├── gtk-go-back-ltr.svg │ │ ├── gtk-go-back-rtl.svg │ │ ├── gtk-go-down.svg │ │ ├── gtk-go-forward-ltr.svg │ │ ├── gtk-go-forward-rtl.svg │ │ ├── gtk-go-up.svg │ │ ├── gtk-goto-bottom.svg │ │ ├── gtk-goto-first-ltr.svg │ │ ├── gtk-goto-first-rtl.svg │ │ ├── gtk-goto-last-ltr.svg │ │ ├── gtk-goto-last-rtl.svg │ │ ├── gtk-goto-top.svg │ │ ├── gtk-home.svg │ │ ├── gtk-indent-ltr.svg │ │ ├── gtk-indent-rtl.svg │ │ ├── gtk-index.svg │ │ ├── gtk-italic.svg │ │ ├── gtk-jump-to-ltr.svg │ │ ├── gtk-justify-center.svg │ │ ├── gtk-justify-fill.svg │ │ ├── gtk-justify-left.svg │ │ ├── gtk-justify-right.svg │ │ ├── gtk-leave-fullscreen.svg │ │ ├── gtk-media-forward-ltr.svg │ │ ├── gtk-media-forward-rtl.svg │ │ ├── gtk-media-next-ltr.svg │ │ ├── gtk-media-next-rtl.svg │ │ ├── gtk-media-pause.svg │ │ ├── gtk-media-play-ltr.svg │ │ ├── gtk-media-previous-ltr.svg │ │ ├── gtk-media-previous-rtl.svg │ │ ├── gtk-media-record.svg │ │ ├── gtk-media-rewind-ltr.svg │ │ ├── gtk-media-rewind-rtl.svg │ │ ├── gtk-media-stop.svg │ │ ├── gtk-network.svg │ │ ├── gtk-new.svg │ │ ├── gtk-no.svg │ │ ├── gtk-ok.svg │ │ ├── gtk-open.svg │ │ ├── gtk-paste.svg │ │ ├── gtk-preferences.svg │ │ ├── gtk-print-preview.svg │ │ ├── gtk-print.svg │ │ ├── gtk-properties.svg │ │ ├── gtk-quit.svg │ │ ├── gtk-refresh.svg │ │ ├── gtk-remove.svg │ │ ├── gtk-revert-to-saved-ltr.svg │ │ ├── gtk-revert-to-saved-rtl.svg │ │ ├── gtk-save-as.svg │ │ ├── gtk-save.svg │ │ ├── gtk-select-all.svg │ │ ├── gtk-select-color.svg │ │ ├── gtk-select-font.svg │ │ ├── gtk-spell-check.svg │ │ ├── gtk-stop.svg │ │ ├── gtk-tab-duplicate.svg │ │ ├── gtk-tab-new.svg │ │ ├── gtk-undelete-ltr.svg │ │ ├── gtk-undelete-rtl.svg │ │ ├── gtk-yes.svg │ │ ├── gtk-zoom-fit.svg │ │ ├── guides.svg │ │ ├── hand.svg │ │ ├── handle-left.svg │ │ ├── handle-move.svg │ │ ├── handle-right.svg │ │ ├── handle-sort.svg │ │ ├── hb-add-queue.svg │ │ ├── hb-complete.svg │ │ ├── hb-pause.svg │ │ ├── hb-presets.svg │ │ ├── hb-remove.svg │ │ ├── hb-showqueue.svg │ │ ├── hb-source.svg │ │ ├── hb-start.svg │ │ ├── hb-stop.svg │ │ ├── help-about.svg │ │ ├── help-contextual.svg │ │ ├── help-donate.svg │ │ ├── help-feedback.svg │ │ ├── help-hint.svg │ │ ├── help-latex.svg │ │ ├── help-whatsthis.svg │ │ ├── hexagon-shape.svg │ │ ├── hide_table_column.svg │ │ ├── hide_table_row.svg │ │ ├── hidemouse.svg │ │ ├── hint.svg │ │ ├── history.svg │ │ ├── history_entry.svg │ │ ├── hook-notifier.svg │ │ ├── hotpixels.svg │ │ ├── identity.svg │ │ ├── im-aim.svg │ │ ├── im-ban-kick-user.svg │ │ ├── im-ban-user.svg │ │ ├── im-facebook.svg │ │ ├── im-gadugadu.svg │ │ ├── im-google-talk.svg │ │ ├── im-google.svg │ │ ├── im-icq.svg │ │ ├── im-identi.ca.svg │ │ ├── im-invisible-user.svg │ │ ├── im-irc.svg │ │ ├── im-jabber.svg │ │ ├── im-kick-user.svg │ │ ├── im-local-xmpp.svg │ │ ├── im-message-new.svg │ │ ├── im-msn.svg │ │ ├── im-qq.svg │ │ ├── im-skype.svg │ │ ├── im-twitter.svg │ │ ├── im-user-away.svg │ │ ├── im-user-busy.svg │ │ ├── im-user-offline.svg │ │ ├── im-user-online.svg │ │ ├── im-user.svg │ │ ├── im-yahoo.svg │ │ ├── im-youtube.svg │ │ ├── image-auto-adjust.svg │ │ ├── imagecomment.svg │ │ ├── initial_state.svg │ │ ├── inpainting.svg │ │ ├── input-mouse-click-left.svg │ │ ├── input-mouse-click-middle.svg │ │ ├── input-mouse-click-right.svg │ │ ├── insert-button.svg │ │ ├── insert-endnote.svg │ │ ├── insert-footnote.svg │ │ ├── insert-horizontal-rule.svg │ │ ├── insert-image.svg │ │ ├── insert-link.svg │ │ ├── insert-math-expression.svg │ │ ├── insert-more-mark.svg │ │ ├── insert-page-break.svg │ │ ├── insert-table-of-contents.svg │ │ ├── insert-table-row.svg │ │ ├── insert-table.svg │ │ ├── insert-tableofcontents.svg │ │ ├── insert-text-frame.svg │ │ ├── insert-text.svg │ │ ├── insertcell.svg │ │ ├── interface.svg │ │ ├── internet-amarok.svg │ │ ├── internet-services.svg │ │ ├── invertimage.svg │ │ ├── irc-channel-active.svg │ │ ├── irc-channel-inactive.svg │ │ ├── irc-close-channel.svg │ │ ├── irc-join-channel.svg │ │ ├── irc-operator.svg │ │ ├── irc-remove-operator.svg │ │ ├── irc-unvoice.svg │ │ ├── irc-voice.svg │ │ ├── item.svg │ │ ├── itemize.svg │ │ ├── items-tags.svg │ │ ├── itmages-add.svg │ │ ├── itmages-cancel.svg │ │ ├── itmages-copy-link.svg │ │ ├── itmages-folder.svg │ │ ├── itmages-open-browser.svg │ │ ├── itmages-quit.svg │ │ ├── itmages-resize.svg │ │ ├── itmages-rotate.svg │ │ ├── itmages-select-all.svg │ │ ├── itmages-settings.svg │ │ ├── itmages-stop.svg │ │ ├── itmages-tools.svg │ │ ├── itmages-upload.svg │ │ ├── itmages-utils.svg │ │ ├── join.svg │ │ ├── journal-new.svg │ │ ├── junction.svg │ │ ├── kdenlive-add-clip.svg │ │ ├── kdenlive-add-color-clip.svg │ │ ├── kdenlive-add-slide-clip.svg │ │ ├── kdenlive-add-text-clip.svg │ │ ├── kdenlive-align-bottom.svg │ │ ├── kdenlive-align-hor.svg │ │ ├── kdenlive-align-left.svg │ │ ├── kdenlive-align-none.svg │ │ ├── kdenlive-align-right.svg │ │ ├── kdenlive-align-top.svg │ │ ├── kdenlive-align-vert.svg │ │ ├── kdenlive-composite.svg │ │ ├── kdenlive-custom-effect.svg │ │ ├── kdenlive-deleffect.svg │ │ ├── kdenlive-down.svg │ │ ├── kdenlive-hide-audio.svg │ │ ├── kdenlive-hide-video.svg │ │ ├── kdenlive-insert-edit.svg │ │ ├── kdenlive-insert-rect.svg │ │ ├── kdenlive-insert-unicode.svg │ │ ├── kdenlive-lock.svg │ │ ├── kdenlive-menu.svg │ │ ├── kdenlive-no-composite.svg │ │ ├── kdenlive-normal-edit.svg │ │ ├── kdenlive-object-height.svg │ │ ├── kdenlive-object-width.svg │ │ ├── kdenlive-overwrite-edit.svg │ │ ├── kdenlive-select-all.svg │ │ ├── kdenlive-select-images.svg │ │ ├── kdenlive-select-rects.svg │ │ ├── kdenlive-select-texts.svg │ │ ├── kdenlive-select-tool.svg │ │ ├── kdenlive-show-audio.svg │ │ ├── kdenlive-show-audiothumb.svg │ │ ├── kdenlive-show-markers.svg │ │ ├── kdenlive-show-video.svg │ │ ├── kdenlive-show-videothumb.svg │ │ ├── kdenlive-snap.svg │ │ ├── kdenlive-spacer-tool.svg │ │ ├── kdenlive-split-audio.svg │ │ ├── kdenlive-track_has_effect.svg │ │ ├── kdenlive-unlock.svg │ │ ├── kdenlive-unselect-all.svg │ │ ├── kdenlive-up.svg │ │ ├── kdenlive-zindex-bottom.svg │ │ ├── kdenlive-zindex-down.svg │ │ ├── kdenlive-zindex-top.svg │ │ ├── kdenlive-zindex-up.svg │ │ ├── kdenlive-zone-end.svg │ │ ├── kdenlive-zone-start.svg │ │ ├── kdenlive-zoom-large.svg │ │ ├── kdenlive-zoom-small.svg │ │ ├── kdocumentinfo.svg │ │ ├── key-enter.svg │ │ ├── kfm_home.svg │ │ ├── kmousetool_off.svg │ │ ├── kmousetool_on.svg │ │ ├── kmouth-phrase-new.svg │ │ ├── kmouth-phrase.svg │ │ ├── kmouth-phrasebook.svg │ │ ├── kmouth-phresebook-new.svg │ │ ├── knotes_alarm.svg │ │ ├── knotes_date.svg │ │ ├── knotes_delete.svg │ │ ├── know.svg │ │ ├── kontes_close.svg │ │ ├── kr_combine.svg │ │ ├── kr_comparedirs.svg │ │ ├── kr_diskusage.svg │ │ ├── kr_jumpback.svg │ │ ├── kr_mountman.svg │ │ ├── kr_setjumpback.svg │ │ ├── kr_syncbrowse_off.svg │ │ ├── kr_syncbrowse_on.svg │ │ ├── kr_unselect.svg │ │ ├── kstars_advanced.svg │ │ ├── kstars_catalog.svg │ │ ├── kstars_cbound.svg │ │ ├── kstars_clines.svg │ │ ├── kstars_cnames.svg │ │ ├── kstars_colors.svg │ │ ├── kstars_constellationart.svg │ │ ├── kstars_deepsky.svg │ │ ├── kstars_ekos.svg │ │ ├── kstars_fitsviewer.svg │ │ ├── kstars_flag.svg │ │ ├── kstars_grid.svg │ │ ├── kstars_guides.svg │ │ ├── kstars_hgrid.svg │ │ ├── kstars_horizon.svg │ │ ├── kstars_indi.svg │ │ ├── kstars_mw.svg │ │ ├── kstars_planets.svg │ │ ├── kstars_satellites.svg │ │ ├── kstars_solarsystem.svg │ │ ├── kstars_stars.svg │ │ ├── kstars_supernovae.svg │ │ ├── kstars_xplanet.svg │ │ ├── kt-add-feeds.svg │ │ ├── kt-add-filters.svg │ │ ├── kt-bandwidth-scheduler.svg │ │ ├── kt-change-tracker.svg │ │ ├── kt-check-data.svg │ │ ├── kt-chunks.svg │ │ ├── kt-encrypted.svg │ │ ├── kt-info-widget.svg │ │ ├── kt-magnet.svg │ │ ├── kt-pause.svg │ │ ├── kt-plugins.svg │ │ ├── kt-queue-manager.svg │ │ ├── kt-remove-feeds.svg │ │ ├── kt-remove-filters.svg │ │ ├── kt-remove.svg │ │ ├── kt-restore-defaults.svg │ │ ├── kt-set-max-download-speed.svg │ │ ├── kt-set-max-upload-speed.svg │ │ ├── kt-show-statusbar.svg │ │ ├── kt-speed-limits.svg │ │ ├── kt-start-all.svg │ │ ├── kt-start.svg │ │ ├── kt-stop-all.svg │ │ ├── kt-stop.svg │ │ ├── ktnef_extract_all_to.svg │ │ ├── ktnef_extract_to.svg │ │ ├── l2h.svg │ │ ├── label-amarok.svg │ │ ├── label.svg │ │ ├── labplot-1x-zoom.svg │ │ ├── labplot-2x-zoom.svg │ │ ├── labplot-3x-zoom.svg │ │ ├── labplot-4x-zoom.svg │ │ ├── labplot-5x-zoom.svg │ │ ├── labplot-TeX-logo.svg │ │ ├── labplot-auto-scale-all.svg │ │ ├── labplot-auto-scale-x.svg │ │ ├── labplot-auto-scale-y.svg │ │ ├── labplot-axis-horizontal.svg │ │ ├── labplot-axis-vertical.svg │ │ ├── labplot-cursor-arrow.svg │ │ ├── labplot-editbreaklayout.svg │ │ ├── labplot-editgrid.svg │ │ ├── labplot-edithlayout.svg │ │ ├── labplot-editvlayout.svg │ │ ├── labplot-format-text-symbol.svg │ │ ├── labplot-matrix-new.svg │ │ ├── labplot-matrix.svg │ │ ├── labplot-plot-axis-points.svg │ │ ├── labplot-shift-down-y.svg │ │ ├── labplot-shift-left-x.svg │ │ ├── labplot-shift-right-x.svg │ │ ├── labplot-shift-up-y.svg │ │ ├── labplot-spreadsheet-new.svg │ │ ├── labplot-spreadsheet.svg │ │ ├── labplot-transform-move.svg │ │ ├── labplot-workbook-new.svg │ │ ├── labplot-workbook.svg │ │ ├── labplot-worksheet-new.svg │ │ ├── labplot-worksheet.svg │ │ ├── labplot-xy-curve-points.svg │ │ ├── labplot-xy-curve-segments.svg │ │ ├── labplot-xy-curve.svg │ │ ├── labplot-xy-equation-curve.svg │ │ ├── labplot-xy-fit-curve.svg │ │ ├── labplot-xy-fourier-filter-curve.svg │ │ ├── labplot-xy-fourier-transform-curve.svg │ │ ├── labplot-xy-interpolation-curve.svg │ │ ├── labplot-xy-plot-four-axes.svg │ │ ├── labplot-xy-plot-two-axes-centered-origin.svg │ │ ├── labplot-xy-plot-two-axes-centered.svg │ │ ├── labplot-xy-plot-two-axes.svg │ │ ├── labplot-xy-smoothing-curve.svg │ │ ├── labplot-zoom-in-x.svg │ │ ├── labplot-zoom-in-y.svg │ │ ├── labplot-zoom-out-x.svg │ │ ├── labplot-zoom-out-y.svg │ │ ├── labplot-zoom-select-x.svg │ │ ├── labplot-zoom-select-y.svg │ │ ├── labplot-zoom-select.svg │ │ ├── languages.svg │ │ ├── latex-config.svg │ │ ├── latex.svg │ │ ├── layer-rename.svg │ │ ├── layer-visible-off.svg │ │ ├── layer-visible-on.svg │ │ ├── lens.svg │ │ ├── lensautofix.svg │ │ ├── lensdistortion.svg │ │ ├── libpeas-plugin.svg │ │ ├── license.svg │ │ ├── lighttable.svg │ │ ├── lighttableadd.svg │ │ ├── lilypond.svg │ │ ├── linear.svg │ │ ├── lines-connector.svg │ │ ├── link.svg │ │ ├── list-add-font.svg │ │ ├── list-add-user.svg │ │ ├── list-add.svg │ │ ├── list-remove-user.svg │ │ ├── list-remove.svg │ │ ├── list-resource-add.svg │ │ ├── lock.svg │ │ ├── love-amarok.svg │ │ ├── love.svg │ │ ├── lpi-bug.svg │ │ ├── lpi-translate.svg │ │ ├── mail-attachment.svg │ │ ├── mail-deleted.svg │ │ ├── mail-encrypted-full.svg │ │ ├── mail-encrypted-part.svg │ │ ├── mail-encrypted.svg │ │ ├── mail-flag.svg │ │ ├── mail-flagged.svg │ │ ├── mail-forward.svg │ │ ├── mail-forwarded-replied.svg │ │ ├── mail-forwarded.svg │ │ ├── mail-invitation.svg │ │ ├── mail-mark-important.svg │ │ ├── mail-mark-junk.svg │ │ ├── mail-mark-notjunk.svg │ │ ├── mail-mark-read.svg │ │ ├── mail-mark-task.svg │ │ ├── mail-mark-unread-new.svg │ │ ├── mail-mark-unread.svg │ │ ├── mail-meeting-request-reply.svg │ │ ├── mail-message-new-list.svg │ │ ├── mail-message-new.svg │ │ ├── mail-message.svg │ │ ├── mail-queue.svg │ │ ├── mail-queued.svg │ │ ├── mail-read.svg │ │ ├── mail-receive.svg │ │ ├── mail-replied.svg │ │ ├── mail-reply-all.svg │ │ ├── mail-reply-custom-all.svg │ │ ├── mail-reply-custom.svg │ │ ├── mail-reply-list.svg │ │ ├── mail-reply-sender.svg │ │ ├── mail-send.svg │ │ ├── mail-sent.svg │ │ ├── mail-signature-unknown.svg │ │ ├── mail-signed-full.svg │ │ ├── mail-signed-fully.svg │ │ ├── mail-signed-part.svg │ │ ├── mail-signed-verified.svg │ │ ├── mail-signed.svg │ │ ├── mail-tagged.svg │ │ ├── mail-task.svg │ │ ├── mail-thread-ignored.svg │ │ ├── mail-thread-watch.svg │ │ ├── mail-unread-new.svg │ │ ├── mail-unread.svg │ │ ├── mail_forward.svg │ │ ├── mail_new.svg │ │ ├── mail_reply.svg │ │ ├── mail_replyall.svg │ │ ├── makeidx.svg │ │ ├── map-flat.svg │ │ ├── map-globe.svg │ │ ├── map-gnomonic.svg │ │ ├── map-mercator.svg │ │ ├── markasblank.svg │ │ ├── math0.svg │ │ ├── mathmode.svg │ │ ├── measure.svg │ │ ├── media-album-cover │ │ ├── media-album-cover-manager-amarok.svg │ │ ├── media-album-cover.svg │ │ ├── media-album-repeat-amarok.svg │ │ ├── media-album-track.svg │ │ ├── media-eject.svg │ │ ├── media-import-audio-cd.svg │ │ ├── media-mount.svg │ │ ├── media-mout.svg │ │ ├── media-playback-pause.svg │ │ ├── media-playback-start.svg │ │ ├── media-playback-stop.svg │ │ ├── media-playlist-append.svg │ │ ├── media-playlist-normal.svg │ │ ├── media-playlist-play.svg │ │ ├── media-playlist-repeat-amarok.svg │ │ ├── media-playlist-repeat.svg │ │ ├── media-playlist-shuffle.svg │ │ ├── media-random-albums-amarok.svg │ │ ├── media-random-tracks-amarok.svg │ │ ├── media-record.svg │ │ ├── media-repeat-album-amarok.svg │ │ ├── media-repeat-all.svg │ │ ├── media-repeat-none.svg │ │ ├── media-repeat-playlist-amarok.svg │ │ ├── media-repeat-track-amarok.svg │ │ ├── media-seek-backward.svg │ │ ├── media-seek-forward.svg │ │ ├── media-show-active-track-amarok.svg │ │ ├── media-skip-backward.svg │ │ ├── media-skip-forward.svg │ │ ├── media-standard-track-progression-amarok.svg │ │ ├── media-track-add-amarok.svg │ │ ├── media-track-edit-amarok.svg │ │ ├── media-track-queue-amarok.svg │ │ ├── media-track-remove-amarok.svg │ │ ├── media-track-show-active.svg │ │ ├── medskip.svg │ │ ├── meeting-attending-tentative.svg │ │ ├── meeting-attending.svg │ │ ├── meeting-participant-no-response.svg │ │ ├── meeting-participant-request-response.svg │ │ ├── meld-version-control.svg │ │ ├── menu_new.svg │ │ ├── menu_new_sep.svg │ │ ├── merge.svg │ │ ├── mesh-gradient.svg │ │ ├── messagebox_warning.svg │ │ ├── milestone.svg │ │ ├── minuet-chords.svg │ │ ├── minuet-intervals.svg │ │ ├── minuet-rhythms.svg │ │ ├── minuet-scales.svg │ │ ├── mode1.svg │ │ ├── mode2.svg │ │ ├── mode3.svg │ │ ├── mode4.svg │ │ ├── mode5.svg │ │ ├── modified.svg │ │ ├── motion_path_animations.svg │ │ ├── mpost.svg │ │ ├── msgid2msgstr.svg │ │ ├── multimedia-volume-control.svg │ │ ├── multirow.svg │ │ ├── music-amarok.svg │ │ ├── music-note-16th.svg │ │ ├── nemo-eject.svg │ │ ├── network-connect.svg │ │ ├── network-disconnect.svg │ │ ├── new-audio-alarm.svg │ │ ├── newline.svg │ │ ├── news-subscribe.svg │ │ ├── news-unsubscribe.svg │ │ ├── next.svg │ │ ├── nextfuzzy.svg │ │ ├── nextfuzzyuntrans.svg │ │ ├── nextuntranslated.svg │ │ ├── nocover.svg │ │ ├── node-add.svg │ │ ├── node-break.svg │ │ ├── node-delete-segment.svg │ │ ├── node-delete.svg │ │ ├── node-join-segment.svg │ │ ├── node-join.svg │ │ ├── node-segment-curve.svg │ │ ├── node-segment-line.svg │ │ ├── node-transform.svg │ │ ├── node-type-auto-smooth.svg │ │ ├── node-type-cusp.svg │ │ ├── node-type-smooth.svg │ │ ├── node-type-symmetric.svg │ │ ├── node.svg │ │ ├── noisereduction.svg │ │ ├── note.svg │ │ ├── notifications-disabled.svg │ │ ├── notifications.svg │ │ ├── nroot.svg │ │ ├── object-align-horizontal-center-calligra.svg │ │ ├── object-align-horizontal-left-calligra.svg │ │ ├── object-align-horizontal-right-calligra.svg │ │ ├── object-align-vertical-bottom-calligra.svg │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ ├── object-align-vertical-center-calligra.svg │ │ ├── object-align-vertical-top-calligra.svg │ │ ├── object-columns.svg │ │ ├── object-crop.svg │ │ ├── object-flip-horizontal.svg │ │ ├── object-flip-vertical.svg │ │ ├── object-group-calligra.svg │ │ ├── object-group.svg │ │ ├── object-hidden.svg │ │ ├── object-inverse.svg │ │ ├── object-locked.svg │ │ ├── object-order-back-calligra.svg │ │ ├── object-order-back.svg │ │ ├── object-order-front-calligra.svg │ │ ├── object-order-front.svg │ │ ├── object-order-lower-calligra.svg │ │ ├── object-order-lower.svg │ │ ├── object-order-raise-calligra.svg │ │ ├── object-order-raise.svg │ │ ├── object-rotate-left.svg │ │ ├── object-rotate-right.svg │ │ ├── object-rows.svg │ │ ├── object-to-path.svg │ │ ├── object-ungroup-calligra.svg │ │ ├── object-ungroup.svg │ │ ├── object-unlocked.svg │ │ ├── object-visible.svg │ │ ├── object.svg │ │ ├── object_node.svg │ │ ├── office-chart-area-focus-peak-node.svg │ │ ├── office-chart-area-percentage.svg │ │ ├── office-chart-area-stacked.svg │ │ ├── office-chart-area.svg │ │ ├── office-chart-bar-percentage.svg │ │ ├── office-chart-bar-stacked.svg │ │ ├── office-chart-bar.svg │ │ ├── office-chart-line-percentage.svg │ │ ├── office-chart-line-stacked.svg │ │ ├── office-chart-line.svg │ │ ├── office-chart-pie.svg │ │ ├── office-chart-polar-stacked.svg │ │ ├── office-chart-polar.svg │ │ ├── office-chart-ring.svg │ │ ├── office-chart-scatter.svg │ │ ├── offline-settings.svg │ │ ├── offline.svg │ │ ├── oilpaint.svg │ │ ├── online.svg │ │ ├── open-for-editing.svg │ │ ├── open-menu.svg │ │ ├── output_win.svg │ │ ├── overexposure.svg │ │ ├── overflow-menu-left.svg │ │ ├── overflow-menu-right.svg │ │ ├── overflow-menu.svg │ │ ├── package.svg │ │ ├── package_settings.svg │ │ ├── page-2sides.svg │ │ ├── page-3sides.svg │ │ ├── page-4sides.svg │ │ ├── page-simple.svg │ │ ├── page-zoom.svg │ │ ├── paint-none.svg │ │ ├── paint-order-fms.svg │ │ ├── paint-order-fsm.svg │ │ ├── paint-order-mfs.svg │ │ ├── paint-order-msf.svg │ │ ├── paint-order-sfm.svg │ │ ├── paint-order-smf.svg │ │ ├── password-copy.svg │ │ ├── password-generate.svg │ │ ├── password-show-off.svg │ │ ├── password-show-on.svg │ │ ├── path-clip-edit.svg │ │ ├── path-effect-parameter-next.svg │ │ ├── path-mask-edit.svg │ │ ├── path-mode-bezier.svg │ │ ├── path-mode-polyline-paraxial.svg │ │ ├── path-mode-polyline.svg │ │ ├── path-mode-spiro.svg │ │ ├── path-reverse.svg │ │ ├── path-simplify.svg │ │ ├── pathshape.svg │ │ ├── pdf-annotations.svg │ │ ├── pdflatex.svg │ │ ├── pdftex.svg │ │ ├── pentagon-shape.svg │ │ ├── perspective.svg │ │ ├── photo.svg │ │ ├── photos-amarok.svg │ │ ├── pin.svg │ │ ├── player-eject.svg │ │ ├── player-time.svg │ │ ├── player-volume-muted.svg │ │ ├── player-volume.svg │ │ ├── player_eject.svg │ │ ├── player_end.svg │ │ ├── player_fwd.svg │ │ ├── player_pause.svg │ │ ├── player_play.svg │ │ ├── player_record.svg │ │ ├── player_rew.svg │ │ ├── player_start.svg │ │ ├── player_stop.svg │ │ ├── playlist-generator.svg │ │ ├── playlist-sort.svg │ │ ├── plugins.svg │ │ ├── podcast-amarok.svg │ │ ├── podcast-new.svg │ │ ├── poedit-fuzzy.svg │ │ ├── poedit-status-bookmark.svg │ │ ├── poedit-status-cat-mid.svg │ │ ├── poedit-status-cat-no.svg │ │ ├── poedit-status-cat-ok.svg │ │ ├── poedit-status-comment.svg │ │ ├── poedit-sync.svg │ │ ├── poedit-update.svg │ │ ├── poedit-validate.svg │ │ ├── pointer.svg │ │ ├── polygon-add-nodes.svg │ │ ├── polygon-merge-nodes.svg │ │ ├── port.svg │ │ ├── postalcode.svg │ │ ├── practice-setup.svg │ │ ├── practice-start.svg │ │ ├── practice-stop.svg │ │ ├── precondition.svg │ │ ├── preferences-activities.svg │ │ ├── preferences-desktop-user-password.svg │ │ ├── preferences-indicator-amarok.svg │ │ ├── preferences-media-playback-amarok.svg │ │ ├── preferences-other.svg │ │ ├── preferences-system-session-services.svg │ │ ├── preflight-verifier.svg │ │ ├── presence_away.svg │ │ ├── presence_offline.svg │ │ ├── presence_online.svg │ │ ├── presence_unknown.svg │ │ ├── prevfuzzy.svg │ │ ├── prevfuzzyuntrans.svg │ │ ├── preview-add-zone.svg │ │ ├── preview-remove-all.svg │ │ ├── preview-remove-zone.svg │ │ ├── preview-render-off.svg │ │ ├── preview-render-on.svg │ │ ├── preview.svg │ │ ├── preview_math.svg │ │ ├── preview_sel.svg │ │ ├── previous.svg │ │ ├── prevuntranslated.svg │ │ ├── primarykey_constraint.svg │ │ ├── privatebrowsing.svg │ │ ├── process-stop.svg │ │ ├── project-defaults.svg │ │ ├── project-development-close-all.svg │ │ ├── project-development-close.svg │ │ ├── project-development-new-template.svg │ │ ├── project-development.svg │ │ ├── project-open.svg │ │ ├── project_add.svg │ │ ├── project_archive.svg │ │ ├── project_rebuild.svg │ │ ├── project_remove.svg │ │ ├── project_show.svg │ │ ├── projectgrep.svg │ │ ├── ps2pdf.svg │ │ ├── qa.svg │ │ ├── question.svg │ │ ├── quick.svg │ │ ├── quickopen-class.svg │ │ ├── quickopen-file.svg │ │ ├── quickopen-function.svg │ │ ├── quickopen.svg │ │ ├── quickview.svg │ │ ├── quickwizard.svg │ │ ├── rabbitvcs-about.svg │ │ ├── rabbitvcs-add.svg │ │ ├── rabbitvcs-applypatch.svg │ │ ├── rabbitvcs-bug.svg │ │ ├── rabbitvcs-changes.svg │ │ ├── rabbitvcs-checkmods.svg │ │ ├── rabbitvcs-checkout.svg │ │ ├── rabbitvcs-commit.svg │ │ ├── rabbitvcs-dbus.svg │ │ ├── rabbitvcs-delete.svg │ │ ├── rabbitvcs-editconflicts.svg │ │ ├── rabbitvcs-emblems.svg │ │ ├── rabbitvcs-export.svg │ │ ├── rabbitvcs-import.svg │ │ ├── rabbitvcs-lock.svg │ │ ├── rabbitvcs-properties.svg │ │ ├── rabbitvcs-push.svg │ │ ├── rabbitvcs-refresh.svg │ │ ├── rabbitvcs-relocate.svg │ │ ├── rabbitvcs-reset.svg │ │ ├── rabbitvcs-run.svg │ │ ├── rabbitvcs-settings.svg │ │ ├── rabbitvcs-show_log.svg │ │ ├── rabbitvcs-stop.svg │ │ ├── rabbitvcs-switch.svg │ │ ├── rabbitvcs-unlock.svg │ │ ├── rabbitvcs-unstage.svg │ │ ├── rabbitvcs-update.svg │ │ ├── raindrop.svg │ │ ├── randomize.svg │ │ ├── ratiocrop.svg │ │ ├── realization.svg │ │ ├── rectangle-shape.svg │ │ ├── redeyes.svg │ │ ├── refactor.svg │ │ ├── refreshstructure.svg │ │ ├── region.svg │ │ ├── relation.svg │ │ ├── relationship.svg │ │ ├── reload.svg │ │ ├── reload3.svg │ │ ├── reload_all_tabs.svg │ │ ├── reload_page.svg │ │ ├── remove-amarok.svg │ │ ├── remove-link.svg │ │ ├── remove.svg │ │ ├── removecell.svg │ │ ├── repeat.svg │ │ ├── resource-calendar-child-insert.svg │ │ ├── resource-calendar-child.svg │ │ ├── resource-calendar-insert.svg │ │ ├── resource-group-new.svg │ │ ├── resource-group.svg │ │ ├── restoration.svg │ │ ├── reverse.svg │ │ ├── revert.svg │ │ ├── roll.svg │ │ ├── routeplanning.svg │ │ ├── rss.svg │ │ ├── run-build-clean.svg │ │ ├── run-build-configure.svg │ │ ├── run-build-file.svg │ │ ├── run-build-install-root.svg │ │ ├── run-build-install.svg │ │ ├── run-build-prune.svg │ │ ├── run-build.svg │ │ ├── run-clean.svg │ │ ├── run-install.svg │ │ ├── scriptnew.svg │ │ ├── scriptopen.svg │ │ ├── search-icon.svg │ │ ├── search.svg │ │ ├── select-rectangular.svg │ │ ├── select.svg │ │ ├── selection-bottom.svg │ │ ├── selection-lower.svg │ │ ├── selection-make-bitmap-copy.svg │ │ ├── selection-raise.svg │ │ ├── selection-top.svg │ │ ├── selection.svg │ │ ├── send_signal.svg │ │ ├── services.svg │ │ ├── set-language.svg │ │ ├── setroubleshoot_icon.svg │ │ ├── settings-configure.svg │ │ ├── settings.svg │ │ ├── shallow-history.svg │ │ ├── shape-choose.svg │ │ ├── shapes.svg │ │ ├── sharpenimage.svg │ │ ├── shear.svg │ │ ├── show-all-effects.svg │ │ ├── show-dialogs.svg │ │ ├── show-gpu-effects.svg │ │ ├── show-grid.svg │ │ ├── show-menu.svg │ │ ├── show-node-handles.svg │ │ ├── show-offline.svg │ │ ├── show-path-outline.svg │ │ ├── show_table_column.svg │ │ ├── show_table_row.svg │ │ ├── shuffle.svg │ │ ├── sidebar-places.svg │ │ ├── sidebar.svg │ │ ├── similarartists-amarok.svg │ │ ├── skg-chart-bubble.svg │ │ ├── skrooge_credit_card.svg │ │ ├── skrooge_less.svg │ │ ├── skrooge_more.svg │ │ ├── skrooge_much_less.svg │ │ ├── skrooge_much_more.svg │ │ ├── skrooge_type.svg │ │ ├── slanted.svg │ │ ├── slideshow-plugin.svg │ │ ├── smallclock.svg │ │ ├── smallfrac.svg │ │ ├── smallskip.svg │ │ ├── smartnewline.svg │ │ ├── smiley-add.svg │ │ ├── smiley-shape.svg │ │ ├── smiley.svg │ │ ├── smooth.svg │ │ ├── snap-angle.svg │ │ ├── snap-bounding-box-center.svg │ │ ├── snap-bounding-box-corners.svg │ │ ├── snap-bounding-box-edges.svg │ │ ├── snap-bounding-box-midpoints.svg │ │ ├── snap-bounding-box.svg │ │ ├── snap-extension.svg │ │ ├── snap-grid-guide-intersections.svg │ │ ├── snap-guideline.svg │ │ ├── snap-intersection.svg │ │ ├── snap-node.svg │ │ ├── snap-nodes-center.svg │ │ ├── snap-nodes-cusp.svg │ │ ├── snap-nodes-intersection.svg │ │ ├── snap-nodes-midpoint.svg │ │ ├── snap-nodes-path.svg │ │ ├── snap-nodes-rotation-center.svg │ │ ├── snap-nodes-smooth.svg │ │ ├── snap-orthogonal.svg │ │ ├── snap-page.svg │ │ ├── snap-text-baseline.svg │ │ ├── snap.svg │ │ ├── social.svg │ │ ├── sort-name.svg │ │ ├── sort-presence.svg │ │ ├── sort_incr.svg │ │ ├── soundkonverter-replaygain.svg │ │ ├── spacefm-find.svg │ │ ├── speaker.svg │ │ ├── special_paste.svg │ │ ├── specific-setup.svg │ │ ├── speedometer.svg │ │ ├── spiral-shape.svg │ │ ├── split.svg │ │ ├── spreadsheetshape.svg │ │ ├── sqrt.svg │ │ ├── standard-connector.svg │ │ ├── star-shape.svg │ │ ├── start-over.svg │ │ ├── start.svg │ │ ├── state-fork.svg │ │ ├── stateshape.svg │ │ ├── statetool.svg │ │ ├── step_object_Anchor.svg │ │ ├── step_object_Box.svg │ │ ├── step_object_ChargedParticle.svg │ │ ├── step_object_CircularMotor.svg │ │ ├── step_object_Controller.svg │ │ ├── step_object_CoulombForce.svg │ │ ├── step_object_Disk.svg │ │ ├── step_object_Gas.svg │ │ ├── step_object_GasParticle.svg │ │ ├── step_object_Graph.svg │ │ ├── step_object_GravitationForce.svg │ │ ├── step_object_LinearMotor.svg │ │ ├── step_object_Meter.svg │ │ ├── step_object_Note.svg │ │ ├── step_object_Particle.svg │ │ ├── step_object_Pin.svg │ │ ├── step_object_Polygon.svg │ │ ├── step_object_Rope.svg │ │ ├── step_object_SoftBody.svg │ │ ├── step_object_Spring.svg │ │ ├── step_object_Stick.svg │ │ ├── step_object_Tracer.svg │ │ ├── step_object_WeightForce.svg │ │ ├── sticky_zoom.svg │ │ ├── stock_about.svg │ │ ├── stock_add-bookmark.svg │ │ ├── stock_bottom.svg │ │ ├── stock_calc-accept.svg │ │ ├── stock_check-filled.svg │ │ ├── stock_close.svg │ │ ├── stock_contact-list.svg │ │ ├── stock_copy.svg │ │ ├── stock_cut.svg │ │ ├── stock_delete.svg │ │ ├── stock_down.svg │ │ ├── stock_exit.svg │ │ ├── stock_file-properites.svg │ │ ├── stock_file-properties.svg │ │ ├── stock_first.svg │ │ ├── stock_folder_properties.svg │ │ ├── stock_fullscreen.svg │ │ ├── stock_gtk-dnd-multiple.svg │ │ ├── stock_help-add-bookmark.svg │ │ ├── stock_insert-rule.svg │ │ ├── stock_insert-table.svg │ │ ├── stock_last.svg │ │ ├── stock_leave-fullscreen.svg │ │ ├── stock_left.svg │ │ ├── stock_mail-compose.svg │ │ ├── stock_mail-flag-for-followup-done.svg │ │ ├── stock_mail-flag-for-followup.svg │ │ ├── stock_mail-forward.svg │ │ ├── stock_mail-reply-to-all.svg │ │ ├── stock_mail-reply.svg │ │ ├── stock_mail-send.svg │ │ ├── stock_mark.svg │ │ ├── stock_media-fwd.svg │ │ ├── stock_media-next.svg │ │ ├── stock_media-pause.svg │ │ ├── stock_media-play.svg │ │ ├── stock_media-prev.svg │ │ ├── stock_media-rec.svg │ │ ├── stock_media-rew.svg │ │ ├── stock_media-stop.svg │ │ ├── stock_navigator.svg │ │ ├── stock_new-address-book.svg │ │ ├── stock_new-appointment.svg │ │ ├── stock_new-bcard.svg │ │ ├── stock_new-dir.svg │ │ ├── stock_new-tab.svg │ │ ├── stock_new-text.svg │ │ ├── stock_no.svg │ │ ├── stock_not.svg │ │ ├── stock_paste.svg │ │ ├── stock_print-preview.svg │ │ ├── stock_print.svg │ │ ├── stock_properties.svg │ │ ├── stock_redo.svg │ │ ├── stock_refresh.svg │ │ ├── stock_right.svg │ │ ├── stock_save-as.svg │ │ ├── stock_save.svg │ │ ├── stock_score-high.svg │ │ ├── stock_score-higher.svg │ │ ├── stock_score-highest.svg │ │ ├── stock_score-low.svg │ │ ├── stock_score-lower.svg │ │ ├── stock_score-lowest.svg │ │ ├── stock_score-normal.svg │ │ ├── stock_search.svg │ │ ├── stock_select-all.svg │ │ ├── stock_select-column.svg │ │ ├── stock_select-row.svg │ │ ├── stock_shared-by-me.svg │ │ ├── stock_shared-to-me.svg │ │ ├── stock_show-all.svg │ │ ├── stock_stop.svg │ │ ├── stock_task-assigned-to.svg │ │ ├── stock_task-assigned.svg │ │ ├── stock_task-recurring.svg │ │ ├── stock_task.svg │ │ ├── stock_thunar-shortcuts.svg │ │ ├── stock_timezone.svg │ │ ├── stock_todo.svg │ │ ├── stock_top.svg │ │ ├── stock_undo.svg │ │ ├── stock_up.svg │ │ ├── stock_view-details.svg │ │ ├── stock_volume.svg │ │ ├── stock_xfburn-data-copy.svg │ │ ├── stock_xfburn-format-dvdrw.svg │ │ ├── stock_yes.svg │ │ ├── stock_zoom-page.svg │ │ ├── stop.svg │ │ ├── story-editor.svg │ │ ├── straight-connector.svg │ │ ├── stroke-cap-bevel.svg │ │ ├── stroke-cap-butt.svg │ │ ├── stroke-cap-miter.svg │ │ ├── stroke-cap-round.svg │ │ ├── stroke-cap-square.svg │ │ ├── stroke-join-bevel.svg │ │ ├── stroke-join-miter.svg │ │ ├── stroke-join-round.svg │ │ ├── stroke-to-path.svg │ │ ├── strong.svg │ │ ├── structure.svg │ │ ├── subsystem.svg │ │ ├── svn-commit.svg │ │ ├── svn-update.svg │ │ ├── swap-panels.svg │ │ ├── system-lock-screen.svg │ │ ├── system-log-out.svg │ │ ├── system-reboot.svg │ │ ├── system-run.svg │ │ ├── system-save-session.svg │ │ ├── system-search.svg │ │ ├── system-shutdown.svg │ │ ├── system-suspend-hibernate.svg │ │ ├── system-suspend.svg │ │ ├── system-switch-user.svg │ │ ├── system-upgrade.svg │ │ ├── system-users.svg │ │ ├── tab-close-other.svg │ │ ├── tab-close.svg │ │ ├── tab-detach.svg │ │ ├── tab-duplicate.svg │ │ ├── tab-new-background.svg │ │ ├── tab-new.svg │ │ ├── tab.svg │ │ ├── tab_duplicate.svg │ │ ├── tab_new.svg │ │ ├── table.svg │ │ ├── tag-addressbook.svg │ │ ├── tag-assigned.svg │ │ ├── tag-delete.svg │ │ ├── tag-events.svg │ │ ├── tag-folder.svg │ │ ├── tag-new.svg │ │ ├── tag-people.svg │ │ ├── tag-places.svg │ │ ├── tag-properties.svg │ │ ├── tag-recents.svg │ │ ├── tag-reset.svg │ │ ├── tag.svg │ │ ├── tap-extract-to.svg │ │ ├── tap-extract.svg │ │ ├── task-new.svg │ │ ├── taxes-finances.svg │ │ ├── template.svg │ │ ├── texcompiler.svg │ │ ├── texlion.svg │ │ ├── text-field.svg │ │ ├── text-flow-into-frame.svg │ │ ├── text-frame-link.svg │ │ ├── text-frame-unlink.svg │ │ ├── text-orientation-auto.svg │ │ ├── text-orientation-sideways.svg │ │ ├── text-orientation-upright.svg │ │ ├── text-speak.svg │ │ ├── text-unflow.svg │ │ ├── text-wrap.svg │ │ ├── text_horz_kern.svg │ │ ├── text_letter_spacing.svg │ │ ├── text_line_spacing.svg │ │ ├── text_remove_kerns.svg │ │ ├── text_rotation.svg │ │ ├── text_subscript.svg │ │ ├── text_superscript.svg │ │ ├── text_vert_kern.svg │ │ ├── text_word_spacing.svg │ │ ├── texture.svg │ │ ├── timeline-extract.svg │ │ ├── timeline-insert.svg │ │ ├── timeline-lift.svg │ │ ├── timeline-overwrite.svg │ │ ├── timeline-use-zone-off.svg │ │ ├── timeline-use-zone-on.svg │ │ ├── tiny-pause.svg │ │ ├── tiny-start.svg │ │ ├── tool-animator.svg │ │ ├── tool-measure.svg │ │ ├── tool-node-editor.svg │ │ ├── tool-pointer.svg │ │ ├── tool-spray.svg │ │ ├── tool-text.svg │ │ ├── tool-tweak.svg │ │ ├── tool_brush.svg │ │ ├── tool_cellformatting.svg │ │ ├── tool_color_eraser.svg │ │ ├── tool_color_picker.svg │ │ ├── tool_curve.svg │ │ ├── tool_ellipse.svg │ │ ├── tool_elliptical_selection.svg │ │ ├── tool_eraser.svg │ │ ├── tool_flood_fill.svg │ │ ├── tool_free_form_selection.svg │ │ ├── tool_imageeffects.svg │ │ ├── tool_line.svg │ │ ├── tool_pagelayout.svg │ │ ├── tool_pen.svg │ │ ├── tool_polygon.svg │ │ ├── tool_polyline.svg │ │ ├── tool_rect_selection.svg │ │ ├── tool_rectangle.svg │ │ ├── tool_references.svg │ │ ├── tool_review.svg │ │ ├── tool_rounded_rectangle.svg │ │ ├── tool_spraycan.svg │ │ ├── tool_text.svg │ │ ├── tools-check-spelling.svg │ │ ├── tools-media-optical-burn-image.svg │ │ ├── tools-media-optical-burn.svg │ │ ├── tools-media-optical-copy.svg │ │ ├── tools-media-optical-erase.svg │ │ ├── tools-media-optical-format.svg │ │ ├── tools-report-bug.svg │ │ ├── tools-rip-audio-cd.svg │ │ ├── tools-rip-video-cd.svg │ │ ├── tools-rip-video-dvd.svg │ │ ├── tools-wizard.svg │ │ ├── tools.svg │ │ ├── top.svg │ │ ├── torrents.svg │ │ ├── transform-browse.svg │ │ ├── transform-crop-and-resize.svg │ │ ├── transform-crop.svg │ │ ├── transform-move-horizontal.svg │ │ ├── transform-move-vertical.svg │ │ ├── transform-move.svg │ │ ├── transform-rotate.svg │ │ ├── transform-scale-horizontal.svg │ │ ├── transform-scale-textbox-points.svg │ │ ├── transform-scale-vertical.svg │ │ ├── transform-scale.svg │ │ ├── transform-shear-down.svg │ │ ├── transform-shear-left.svg │ │ ├── transform-shear-right.svg │ │ ├── transform-shear-up.svg │ │ ├── transform-skew-horizontal.svg │ │ ├── transform-skew-vertical.svg │ │ ├── transsearch.svg │ │ ├── trash-empty.svg │ │ ├── trim-margins.svg │ │ ├── trim-to-selection.svg │ │ ├── typewriter.svg │ │ ├── umbr-coll-message-asynchronous.svg │ │ ├── umbr-coll-message-synchronous.svg │ │ ├── umbr-message-asynchronous.svg │ │ ├── umbr-message-found.svg │ │ ├── umbr-message-lost.svg │ │ ├── umbr-message-synchronous.svg │ │ ├── umbrello_diagram_activity.svg │ │ ├── umbrello_diagram_class.svg │ │ ├── umbrello_diagram_collaboration.svg │ │ ├── umbrello_diagram_component.svg │ │ ├── umbrello_diagram_deployment.svg │ │ ├── umbrello_diagram_entityrelationship.svg │ │ ├── umbrello_diagram_sequence.svg │ │ ├── umbrello_diagram_state.svg │ │ ├── umbrello_diagram_usecase.svg │ │ ├── underexposure.svg │ │ ├── undo.svg │ │ ├── uniassociation.svg │ │ ├── unique_constraint.svg │ │ ├── unlock.svg │ │ ├── unmarkasblank.svg │ │ ├── up.svg │ │ ├── upcomingevents-amarok.svg │ │ ├── upindicator.svg │ │ ├── upload-media.svg │ │ ├── usecase.svg │ │ ├── user-group-delete.svg │ │ ├── user-group-new.svg │ │ ├── user-group-properties.svg │ │ ├── user-identity.svg │ │ ├── user-others.svg │ │ ├── user-properties.svg │ │ ├── user.svg │ │ ├── username-copy.svg │ │ ├── vcs-commit-cvs-cervisia.svg │ │ ├── vcs-diff-cvs-cervisia.svg │ │ ├── vcs-remove-cvs-cervisia.svg │ │ ├── vcs-status-cvs-cervisia.svg │ │ ├── vcs-update-cvs-cervisia.svg │ │ ├── verb.svg │ │ ├── verbatim.svg │ │ ├── videoclip-amarok.svg │ │ ├── view-bank-account-checking.svg │ │ ├── view-bank-account-savings.svg │ │ ├── view-bank-account.svg │ │ ├── view-bank.svg │ │ ├── view-barcode-add.svg │ │ ├── view-barcode-qr.svg │ │ ├── view-barcode.svg │ │ ├── view-calendar-agenda.svg │ │ ├── view-calendar-birthday.svg │ │ ├── view-calendar-day.svg │ │ ├── view-calendar-holiday.svg │ │ ├── view-calendar-journal.svg │ │ ├── view-calendar-list.svg │ │ ├── view-calendar-month.svg │ │ ├── view-calendar-special-occasion.svg │ │ ├── view-calendar-tasks.svg │ │ ├── view-calendar-time-spent.svg │ │ ├── view-calendar-timeline.svg │ │ ├── view-calendar-upcoming-days.svg │ │ ├── view-calendar-upcoming-events.svg │ │ ├── view-calendar-wedding-anniversary.svg │ │ ├── view-calendar-week.svg │ │ ├── view-calendar-whatsnext.svg │ │ ├── view-calendar-workweek.svg │ │ ├── view-calendar.svg │ │ ├── view-catalog.svg │ │ ├── view-categories-expenditures.svg │ │ ├── view-categories-incomes.svg │ │ ├── view-categories.svg │ │ ├── view-certificate-add.svg │ │ ├── view-certificate-export-secret.svg │ │ ├── view-certificate-export-server.svg │ │ ├── view-certificate-export.svg │ │ ├── view-certificate-import.svg │ │ ├── view-certificate-server-configure.svg │ │ ├── view-certificate-sign.svg │ │ ├── view-certificate.svg │ │ ├── view-close.svg │ │ ├── view-conversation-balloon.svg │ │ ├── view-file-columns.svg │ │ ├── view-filter.svg │ │ ├── view-form-action.svg │ │ ├── view-form.svg │ │ ├── view-fullscreen.svg │ │ ├── view-grid.svg │ │ ├── view-group.svg │ │ ├── view-hidden.svg │ │ ├── view-history.svg │ │ ├── view-left-close.svg │ │ ├── view-list-details.svg │ │ ├── view-list-icons.svg │ │ ├── view-list-text.svg │ │ ├── view-list-tree.svg │ │ ├── view-media-album-cover.svg │ │ ├── view-media-artist.svg │ │ ├── view-media-chart.svg │ │ ├── view-media-config.svg │ │ ├── view-media-equalizer.svg │ │ ├── view-media-favorite.svg │ │ ├── view-media-genre.svg │ │ ├── view-media-lyrics.svg │ │ ├── view-media-playcount.svg │ │ ├── view-media-playlist.svg │ │ ├── view-media-publisher.svg │ │ ├── view-media-recent.svg │ │ ├── view-media-similarartists.svg │ │ ├── view-media-title.svg │ │ ├── view-media-track.svg │ │ ├── view-media-visualization.svg │ │ ├── view-multiple-objects.svg │ │ ├── view-object-histogram-linear.svg │ │ ├── view-object-histogram-logarithmic.svg │ │ ├── view-pages-continuous.svg │ │ ├── view-pages-facing-first-centered.svg │ │ ├── view-pages-facing.svg │ │ ├── view-pages-overview.svg │ │ ├── view-pages-single.svg │ │ ├── view-pim-calendar.svg │ │ ├── view-pim-contacts.svg │ │ ├── view-pim-journal.svg │ │ ├── view-pim-mail.svg │ │ ├── view-pim-news.svg │ │ ├── view-pim-notes.svg │ │ ├── view-pim-tasks-pending.svg │ │ ├── view-pim-tasks.svg │ │ ├── view-presentation.svg │ │ ├── view-preview.svg │ │ ├── view-process-all-tree.svg │ │ ├── view-process-all.svg │ │ ├── view-process-own.svg │ │ ├── view-process-system.svg │ │ ├── view-process-tree.svg │ │ ├── view-process-users.svg │ │ ├── view-refresh.svg │ │ ├── view-resource-calendar.svg │ │ ├── view-restore.svg │ │ ├── view-right-close.svg │ │ ├── view-right-new.svg │ │ ├── view-services-scripted-amarok.svg │ │ ├── view-sidetree.svg │ │ ├── view-sort-ascending-name.svg │ │ ├── view-sort-ascending.svg │ │ ├── view-sort-descending-name.svg │ │ ├── view-sort-descending.svg │ │ ├── view-sort.svg │ │ ├── view-split-effect.svg │ │ ├── view-split-left-right.svg │ │ ├── view-split-top-bottom.svg │ │ ├── view-statistics.svg │ │ ├── view-table-of-contents-ltr.svg │ │ ├── view-table-of-contents-rtl.svg │ │ ├── view-task-add.svg │ │ ├── view-task-child-add.svg │ │ ├── view-task-child.svg │ │ ├── view-task.svg │ │ ├── view-time-schedule-baselined-add.svg │ │ ├── view-time-schedule-baselined-remove.svg │ │ ├── view-time-schedule-baselined.svg │ │ ├── view-time-schedule-calculus.svg │ │ ├── view-time-schedule-child-insert.svg │ │ ├── view-time-schedule-edit.svg │ │ ├── view-time-schedule-insert.svg │ │ ├── view-time-schedule.svg │ │ ├── view-unsplit-effect.svg │ │ ├── view-visible.svg │ │ ├── view-web-browser-dom-tree.svg │ │ ├── view_fit_to_page.svg │ │ ├── viewbib.svg │ │ ├── viewdvi.svg │ │ ├── viewhtml.svg │ │ ├── viewimage.svg │ │ ├── viewlog.svg │ │ ├── viewmagfit.svg │ │ ├── viewpdf.svg │ │ ├── viewps.svg │ │ ├── virtual-desktops.svg │ │ ├── visibility.svg │ │ ├── wallet-closed.svg │ │ ├── wallet-open.svg │ │ ├── warnnext.svg │ │ ├── warnprev.svg │ │ ├── whitebalance.svg │ │ ├── widget-alternatives.svg │ │ ├── window-close.svg │ │ ├── window-duplicate.svg │ │ ├── window-keep-above.svg │ │ ├── window-keep-below.svg │ │ ├── window-maximize.svg │ │ ├── window-minimize.svg │ │ ├── window-new.svg │ │ ├── window-pin.svg │ │ ├── window-restore.svg │ │ ├── window-shade.svg │ │ ├── window-unpin.svg │ │ ├── window-unshade.svg │ │ ├── window.svg │ │ ├── window_fullscreen.svg │ │ ├── window_new.svg │ │ ├── window_nofullscreen.svg │ │ ├── wizard_math.svg │ │ ├── wizard_pdftools.svg │ │ ├── wizard_pstools.svg │ │ ├── wizard_tabular.svg │ │ ├── x-clementine-album.svg │ │ ├── x-clementine-albums.svg │ │ ├── x-clementine-artist.svg │ │ ├── x-clementine-shuffle.svg │ │ ├── x-shape-connection.svg │ │ ├── x-shape-formula.svg │ │ ├── x-shape-image.svg │ │ ├── x-shape-text.svg │ │ ├── x-zoom-in.svg │ │ ├── x-zoom-out.svg │ │ ├── xml-attribute-delete.svg │ │ ├── xml-element-new.svg │ │ ├── xml-node-delete.svg │ │ ├── xml-node-duplicate.svg │ │ ├── xml-text-new.svg │ │ ├── y-zoom-in.svg │ │ ├── y-zoom-out.svg │ │ ├── zone-in.svg │ │ ├── zone-out.svg │ │ ├── zoom-1-to-2.svg │ │ ├── zoom-2-to-1.svg │ │ ├── zoom-best-fit.svg │ │ ├── zoom-center-page.svg │ │ ├── zoom-double-size.svg │ │ ├── zoom-draw.svg │ │ ├── zoom-fit-best.svg │ │ ├── zoom-fit-height.svg │ │ ├── zoom-fit-selection.svg │ │ ├── zoom-fit-width.svg │ │ ├── zoom-half-size.svg │ │ ├── zoom-in-large.svg │ │ ├── zoom-in-x.svg │ │ ├── zoom-in-y.svg │ │ ├── zoom-in.svg │ │ ├── zoom-next.svg │ │ ├── zoom-original.svg │ │ ├── zoom-out-large.svg │ │ ├── zoom-out-x.svg │ │ ├── zoom-out-y.svg │ │ ├── zoom-out.svg │ │ ├── zoom-pixels.svg │ │ ├── zoom-previous.svg │ │ ├── zoom-select-fit.svg │ │ ├── zoom-select-x.svg │ │ ├── zoom-select-y.svg │ │ ├── zoom-select.svg │ │ └── zoom.svg │ ├── animations │ │ ├── nm-stage01-connecting01.svg │ │ ├── nm-stage01-connecting02.svg │ │ ├── nm-stage01-connecting03.svg │ │ ├── nm-stage01-connecting04.svg │ │ ├── nm-stage01-connecting05.svg │ │ ├── nm-stage01-connecting06.svg │ │ ├── nm-stage01-connecting07.svg │ │ ├── nm-stage01-connecting08.svg │ │ ├── nm-stage01-connecting09.svg │ │ ├── nm-stage01-connecting10.svg │ │ ├── nm-stage01-connecting11.svg │ │ ├── nm-stage01-connecting12.svg │ │ ├── nm-stage02-connecting01.svg │ │ ├── nm-stage02-connecting02.svg │ │ ├── nm-stage02-connecting03.svg │ │ ├── nm-stage02-connecting04.svg │ │ ├── nm-stage02-connecting05.svg │ │ ├── nm-stage02-connecting06.svg │ │ ├── nm-stage02-connecting07.svg │ │ ├── nm-stage02-connecting08.svg │ │ ├── nm-stage02-connecting09.svg │ │ ├── nm-stage02-connecting10.svg │ │ ├── nm-stage02-connecting11.svg │ │ ├── nm-stage02-connecting12.svg │ │ ├── nm-stage02-connecting13.svg │ │ ├── nm-stage02-connecting14.svg │ │ ├── nm-stage03-connecting01.svg │ │ ├── nm-stage03-connecting02.svg │ │ ├── nm-stage03-connecting03.svg │ │ ├── nm-stage03-connecting04.svg │ │ ├── nm-stage03-connecting05.svg │ │ ├── nm-stage03-connecting06.svg │ │ ├── nm-stage03-connecting07.svg │ │ ├── nm-stage03-connecting08.svg │ │ ├── nm-stage03-connecting09.svg │ │ ├── nm-stage03-connecting10.svg │ │ ├── nm-stage03-connecting11.svg │ │ ├── nm-stage03-connecting12.svg │ │ ├── nm-stage03-connecting13.svg │ │ ├── nm-stage03-connecting14.svg │ │ ├── nm-vpn-connecting01.svg │ │ ├── nm-vpn-connecting02.svg │ │ ├── nm-vpn-connecting03.svg │ │ ├── nm-vpn-connecting04.svg │ │ ├── nm-vpn-connecting05.svg │ │ ├── nm-vpn-connecting06.svg │ │ ├── nm-vpn-connecting07.svg │ │ ├── nm-vpn-connecting08.svg │ │ ├── nm-vpn-connecting09.svg │ │ ├── nm-vpn-connecting10.svg │ │ ├── nm-vpn-connecting11.svg │ │ ├── nm-vpn-connecting12.svg │ │ ├── nm-vpn-connecting13.svg │ │ └── nm-vpn-connecting14.svg │ ├── devices │ │ ├── blueman-desktop.svg │ │ ├── blueman-laptop.svg │ │ ├── computer-laptop.svg │ │ ├── computer.svg │ │ ├── device-notifier.svg │ │ ├── display.svg │ │ ├── drive-harddisk-USB.svg │ │ ├── drive-harddisk-encrypted.svg │ │ ├── drive-harddisk-ieee1394.svg │ │ ├── drive-harddisk-root.svg │ │ ├── drive-harddisk-solidstate.svg │ │ ├── drive-harddisk-system.svg │ │ ├── drive-harddisk.svg │ │ ├── drive-multidisk.svg │ │ ├── drive-multipartition.svg │ │ ├── drive-removable-media-usb-pendrive.svg │ │ ├── drive-removable-media-usb.svg │ │ ├── drive-removable-media.svg │ │ ├── gnome-dev-computer.svg │ │ ├── gnome-dev-harddisk-1394.svg │ │ ├── gnome-dev-harddisk-usb.svg │ │ ├── gnome-dev-harddisk.svg │ │ ├── gnome-dev-removable-1394.svg │ │ ├── gnome-dev-removable-usb.svg │ │ ├── gnome-dev-removable.svg │ │ ├── gnome-fs-blockdev.svg │ │ ├── laptop.svg │ │ ├── media-removable.svg │ │ ├── removable-media.svg │ │ ├── unity-fallback-mount-helper.svg │ │ └── video-display.svg │ ├── panel │ │ ├── 1password-panel-locked.svg │ │ ├── 1password-panel.svg │ │ ├── 5g.svg │ │ ├── QMPlay2-panel.svg │ │ ├── ac-adapter.svg │ │ ├── account-logged-in.svg │ │ ├── acestream-tray.svg │ │ ├── airplane-mode-symbolic.svg │ │ ├── airplane-mode.svg │ │ ├── akonaditray.svg │ │ ├── alarm-clock-panel.svg │ │ ├── alarm-clock-triggered.svg │ │ ├── albert-panel.svg │ │ ├── albert-tray.svg │ │ ├── amd-alto.svg │ │ ├── amd-bajo.svg │ │ ├── amd-medio.svg │ │ ├── anatine-indicator.svg │ │ ├── anatine-notification.svg │ │ ├── android-messages-desktop-tray-unread.svg │ │ ├── android-messages-desktop-tray.svg │ │ ├── antimicro-panel.svg │ │ ├── antimicrox_trayicon.svg │ │ ├── ao-app-tray.svg │ │ ├── application-running.svg │ │ ├── applications-chat-panel.svg │ │ ├── applications-email-panel.svg │ │ ├── appointment-symbolic.svg │ │ ├── audacious-panel.svg │ │ ├── audio-input-microphone-high-panel.svg │ │ ├── audio-input-microphone-high.svg │ │ ├── audio-input-microphone-low-zero-panel.svg │ │ ├── audio-input-microphone-low.svg │ │ ├── audio-input-microphone-medium.svg │ │ ├── audio-input-microphone-muted.svg │ │ ├── audio-input-microphone-none-panel.svg │ │ ├── audio-off.svg │ │ ├── audio-on.svg │ │ ├── audio-output-none-panel.svg │ │ ├── audio-output-none.svg │ │ ├── audio-ready.svg │ │ ├── audio-recorder-off.svg │ │ ├── audio-recorder-on.svg │ │ ├── audio-recorder-paused.svg │ │ ├── audio-volume-high-panel.svg │ │ ├── audio-volume-high-symbolic.svg │ │ ├── audio-volume-high.svg │ │ ├── audio-volume-low-panel.svg │ │ ├── audio-volume-low-symbolic.svg │ │ ├── audio-volume-low-zero-panel.svg │ │ ├── audio-volume-low.svg │ │ ├── audio-volume-medium-panel.svg │ │ ├── audio-volume-medium-symbolic.svg │ │ ├── audio-volume-medium.svg │ │ ├── audio-volume-muted-blocked-panel.svg │ │ ├── audio-volume-muted-blocking-panel.svg │ │ ├── audio-volume-muted-blocking-symbolic.svg │ │ ├── audio-volume-muted-blocking.svg │ │ ├── audio-volume-muted-panel.svg │ │ ├── audio-volume-muted-symbolic.svg │ │ ├── audio-volume-muted.svg │ │ ├── audio-volume-off.svg │ │ ├── autokey-status-error.svg │ │ ├── autokey-status.svg │ │ ├── avatar-default.svg │ │ ├── bad-signal-lock.svg │ │ ├── bad-signal.svg │ │ ├── banshee-panel.svg │ │ ├── barrier-connected.svg │ │ ├── barrier-disconnected.svg │ │ ├── barrier-transfering.svg │ │ ├── battery-000-charging.svg │ │ ├── battery-000.svg │ │ ├── battery-010-charging.svg │ │ ├── battery-010.svg │ │ ├── battery-020-charging.svg │ │ ├── battery-020.svg │ │ ├── battery-030-charging.svg │ │ ├── battery-030.svg │ │ ├── battery-040-charging.svg │ │ ├── battery-040.svg │ │ ├── battery-050-charging.svg │ │ ├── battery-050.svg │ │ ├── battery-060-charging.svg │ │ ├── battery-060.svg │ │ ├── battery-070-charging.svg │ │ ├── battery-070.svg │ │ ├── battery-080-charging.svg │ │ ├── battery-080.svg │ │ ├── battery-090-charging.svg │ │ ├── battery-090.svg │ │ ├── battery-100-charged.svg │ │ ├── battery-100-charging.svg │ │ ├── battery-100.svg │ │ ├── battery-ac-adapter-symbolic.svg │ │ ├── battery-caution-charging-symbolic.svg │ │ ├── battery-caution-charging.svg │ │ ├── battery-caution-symbolic.svg │ │ ├── battery-caution.svg │ │ ├── battery-charged.svg │ │ ├── battery-empty-charging-symbolic.svg │ │ ├── battery-empty-charging.svg │ │ ├── battery-empty-symbolic.svg │ │ ├── battery-empty.svg │ │ ├── battery-full-charged-symbolic.svg │ │ ├── battery-full-charged.svg │ │ ├── battery-full-charging-symbolic.svg │ │ ├── battery-full-charging.svg │ │ ├── battery-full-symbolic.svg │ │ ├── battery-full.svg │ │ ├── battery-good-charging-symbolic.svg │ │ ├── battery-good-charging.svg │ │ ├── battery-good-symbolic.svg │ │ ├── battery-good.svg │ │ ├── battery-low-charging-symbolic.svg │ │ ├── battery-low-charging.svg │ │ ├── battery-low-symbolic.svg │ │ ├── battery-low.svg │ │ ├── battery-medium-charging.svg │ │ ├── battery-medium.svg │ │ ├── battery-missing-symbolic.svg │ │ ├── battery-missing.svg │ │ ├── battery_charged.svg │ │ ├── battery_full.svg │ │ ├── battery_plugged.svg │ │ ├── bitcoin-indicator.svg │ │ ├── bitwarden-tray.svg │ │ ├── blueberry-tray-active.svg │ │ ├── blueberry-tray-disabled.svg │ │ ├── blueberry-tray.svg │ │ ├── blueman-active.svg │ │ ├── blueman-disabled.svg │ │ ├── blueman-tray-active.svg │ │ ├── blueman-tray-disabled.svg │ │ ├── blueman-tray.svg │ │ ├── blueman.svg │ │ ├── bluetooth-active-symbolic.svg │ │ ├── bluetooth-active.svg │ │ ├── bluetooth-disabled-10-symbolic.svg │ │ ├── bluetooth-disabled-20-symbolic.svg │ │ ├── bluetooth-disabled-30-symbolic.svg │ │ ├── bluetooth-disabled-40-symbolic.svg │ │ ├── bluetooth-disabled-50-symbolic.svg │ │ ├── bluetooth-disabled-60-symbolic.svg │ │ ├── bluetooth-disabled-70-symbolic.svg │ │ ├── bluetooth-disabled-80-symbolic.svg │ │ ├── bluetooth-disabled-90-symbolic.svg │ │ ├── bluetooth-disabled-symbolic.svg │ │ ├── bluetooth-disabled.svg │ │ ├── bluetooth-offline.svg │ │ ├── bluetooth-online.svg │ │ ├── bluetooth-paired-symbolic.svg │ │ ├── bluetooth-paired.svg │ │ ├── bomi-panel.svg │ │ ├── both-bad-signal-lock.svg │ │ ├── both-bad-signal.svg │ │ ├── both-good-signal-lock.svg │ │ ├── both-good-signal.svg │ │ ├── both-high-signal-lock.svg │ │ ├── both-high-signal.svg │ │ ├── both-low-signal-lock.svg │ │ ├── both-low-signal.svg │ │ ├── brave-tray.svg │ │ ├── btsync-gui-0.svg │ │ ├── btsync-gui-1.svg │ │ ├── btsync-gui-10.svg │ │ ├── btsync-gui-11.svg │ │ ├── btsync-gui-2.svg │ │ ├── btsync-gui-3.svg │ │ ├── btsync-gui-4.svg │ │ ├── btsync-gui-5.svg │ │ ├── btsync-gui-6.svg │ │ ├── btsync-gui-7.svg │ │ ├── btsync-gui-8.svg │ │ ├── btsync-gui-9.svg │ │ ├── btsync-gui-connecting.svg │ │ ├── btsync-gui-disconnected.svg │ │ ├── btsync-gui-paused.svg │ │ ├── bumblebee-indicator-active.svg │ │ ├── bumblebee-indicator.svg │ │ ├── cadence-panel.svg │ │ ├── caffeine-cup-empty.svg │ │ ├── caffeine-cup-full.svg │ │ ├── calibre-tray.svg │ │ ├── camera-off.svg │ │ ├── camera-on.svg │ │ ├── camera-ready.svg │ │ ├── cantata-panel.svg │ │ ├── caps-lock-off.svg │ │ ├── caps-lock-on.svg │ │ ├── capslock-off.svg │ │ ├── capslock-on.svg │ │ ├── changes-allow.svg │ │ ├── changes-prevent.svg │ │ ├── cisco-tray-connected.svg │ │ ├── cisco-tray-disconnecting.svg │ │ ├── cisco-tray-notconnected.svg │ │ ├── cisco-tray-quarantined.svg │ │ ├── cisco-tray-reconnecting.svg │ │ ├── classicmenu-indicator-dark.svg │ │ ├── classicmenu-indicator.svg │ │ ├── clementine-panel-grey.svg │ │ ├── clementine-panel.svg │ │ ├── clickup-desktop-tray.svg │ │ ├── clipboard.svg │ │ ├── clipit-trayicon-panel.svg │ │ ├── clipman.svg │ │ ├── cloudstatus.svg │ │ ├── com.github.bcedu.vgrive-panel.svg │ │ ├── computer-fail.svg │ │ ├── connect_creating.svg │ │ ├── connect_established.svg │ │ ├── connect_no.svg │ │ ├── copy-error.svg │ │ ├── copy-insync.svg │ │ ├── copy-paused.svg │ │ ├── copy-sync1.svg │ │ ├── copy-sync2.svg │ │ ├── copy-sync3.svg │ │ ├── copy-sync4.svg │ │ ├── copy-sync5.svg │ │ ├── copy-sync6.svg │ │ ├── copy-sync7.svg │ │ ├── copy-sync8.svg │ │ ├── copy-update.svg │ │ ├── copyq-busy.svg │ │ ├── copyq-normal.svg │ │ ├── corectrl-panel.svg │ │ ├── cpod-tray.svg │ │ ├── cpu-frequency-indicator.svg │ │ ├── cpufreq-icon.svg │ │ ├── crow-translate-tray.svg │ │ ├── cryptfolder-closed-light.svg │ │ ├── cryptfolder-indicator-light.svg │ │ ├── cryptfolder-open-light.svg │ │ ├── cryptkeeper.svg │ │ ├── de.haeckerfelix.gradio-symbolic.svg │ │ ├── deadbeef-panel.svg │ │ ├── deltachat-tray.svg │ │ ├── deluge-panel.svg │ │ ├── desktopconnected.svg │ │ ├── desktopdisconnected.svg │ │ ├── desktoptrusted.svg │ │ ├── dialog-error.svg │ │ ├── dialog-information-symbolic.svg │ │ ├── dialog-information.svg │ │ ├── dialog-password-panel.svg │ │ ├── dialog-question.svg │ │ ├── dialog-warning.svg │ │ ├── dino-status-away.svg │ │ ├── dino-status-chat.svg │ │ ├── dino-status-dnd.svg │ │ ├── dino-status-online.svg │ │ ├── diodon-panel.svg │ │ ├── discord-tray-connected.svg │ │ ├── discord-tray-deafened.svg │ │ ├── discord-tray-muted.svg │ │ ├── discord-tray-speaking.svg │ │ ├── discord-tray-unread.svg │ │ ├── discord-tray.svg │ │ ├── disper-panel.svg │ │ ├── display-brightness-symbolic.svg │ │ ├── dnfdragora.svg │ │ ├── drive-removable-media-usb-panel.svg │ │ ├── dropboxstatus-blank.svg │ │ ├── dropboxstatus-busy.svg │ │ ├── dropboxstatus-busy2.svg │ │ ├── dropboxstatus-idle.svg │ │ ├── dropboxstatus-logo.svg │ │ ├── dropboxstatus-x.svg │ │ ├── electron-mail-tray.svg │ │ ├── element-desktop-tray.svg │ │ ├── empathy-available.svg │ │ ├── empathy-away.svg │ │ ├── empathy-busy.svg │ │ ├── empathy-extended-away.svg │ │ ├── empathy-invisible.svg │ │ ├── empathy-offline.svg │ │ ├── encrypted.svg │ │ ├── enpass-status.svg │ │ ├── everpad-mono.svg │ │ ├── exaile-pause.svg │ │ ├── exaile-play.svg │ │ ├── face-smile-panel.svg │ │ ├── fcitx-anthy-panel.svg │ │ ├── fcitx-bopomofo-panel.svg │ │ ├── fcitx-cangjie-panel.svg │ │ ├── fcitx-chewing-panel.svg │ │ ├── fcitx-erbi-panel.svg │ │ ├── fcitx-googlepinyin-panel.svg │ │ ├── fcitx-hangul-panel.svg │ │ ├── fcitx-kbd-panel.svg │ │ ├── fcitx-kkc-panel.svg │ │ ├── fcitx-panel.svg │ │ ├── fcitx-pinyin-libpinyin-panel.svg │ │ ├── fcitx-pinyin-panel.svg │ │ ├── fcitx-rime-panel.svg │ │ ├── fcitx-sayura-panel.svg │ │ ├── fcitx-shuangpin-libpinyin-panel.svg │ │ ├── fcitx-shuangpin-panel.svg │ │ ├── fcitx-skk-panel.svg │ │ ├── fcitx-sunpinyin-panel.svg │ │ ├── fcitx-unikey-panel.svg │ │ ├── fcitx-wbpy.svg │ │ ├── fcitx-wubi-panel.svg │ │ ├── fcitx-zhuyin-panel.svg │ │ ├── fcitx-ziranma-panel.svg │ │ ├── feedindicator-active.svg │ │ ├── feedindicator-attention.svg │ │ ├── file-manager.svg │ │ ├── firewall-applet-error.svg │ │ ├── firewall-applet-panic.svg │ │ ├── firewall-applet.svg │ │ ├── flameshot-tray.svg │ │ ├── flameshot.svg │ │ ├── flareget-panel.svg │ │ ├── fluxgui-light.svg │ │ ├── fluxgui-panel.svg │ │ ├── franz-attention-panel.svg │ │ ├── franz-panel.svg │ │ ├── fusion-icon-panel.svg │ │ ├── gammastep-status-off.svg │ │ ├── gammastep-status-on.svg │ │ ├── gdlauncher-tray.svg │ │ ├── gitify-tray-active.svg │ │ ├── gitify-tray.svg │ │ ├── gitlab-tray.svg │ │ ├── gitter-indicator-disconnected.svg │ │ ├── gitter-indicator-notification.svg │ │ ├── gitter-indicator.svg │ │ ├── glipper.svg │ │ ├── gmail-tray-unread.svg │ │ ├── gmail-tray.svg │ │ ├── gnome-netstatus-disconn.svg │ │ ├── gnome-netstatus-error.svg │ │ ├── gnome-netstatus-idle.svg │ │ ├── gnome-netstatus-rx.svg │ │ ├── gnome-netstatus-tx.svg │ │ ├── gnome-netstatus-txrx.svg │ │ ├── gnome-pie-symbolic.svg │ │ ├── gnote-panel.svg │ │ ├── goldendict-scan-tray.svg │ │ ├── goldendict-tray.svg │ │ ├── good-signal-lock.svg │ │ ├── good-signal.svg │ │ ├── google-chrome-no-notification-disabled.svg │ │ ├── google-chrome-no-notification.svg │ │ ├── google-chrome-notification-disabled.svg │ │ ├── google-chrome-notification.svg │ │ ├── google-chrome-panel.svg │ │ ├── google-chrome-tray.svg │ │ ├── google-hangouts-panel.svg │ │ ├── google-music-manager-panel.svg │ │ ├── google-tasks-indicator-light-normal.svg │ │ ├── google-tasks-indicator-light-starred.svg │ │ ├── gpaste.svg │ │ ├── gpm-ac-adapter.svg │ │ ├── gpm-battery-000-charging.svg │ │ ├── gpm-battery-000.svg │ │ ├── gpm-battery-020-charging.svg │ │ ├── gpm-battery-020.svg │ │ ├── gpm-battery-040-charging.svg │ │ ├── gpm-battery-040.svg │ │ ├── gpm-battery-060-charging.svg │ │ ├── gpm-battery-060.svg │ │ ├── gpm-battery-080-charging.svg │ │ ├── gpm-battery-080.svg │ │ ├── gpm-battery-100-charging.svg │ │ ├── gpm-battery-100.svg │ │ ├── gpm-battery-charged.svg │ │ ├── gpm-battery-empty.svg │ │ ├── gpm-battery-missing.svg │ │ ├── gpm-brightness-kbd-disabled.svg │ │ ├── gpm-brightness-kbd-invalid.svg │ │ ├── gpm-brightness-kbd.svg │ │ ├── gpm-brightness-lcd-disabled.svg │ │ ├── gpm-brightness-lcd-invalid.svg │ │ ├── gpm-brightness-lcd.svg │ │ ├── gpm-hibernate.svg │ │ ├── gpm-inhibit-invalid.svg │ │ ├── gpm-inhibit.svg │ │ ├── gpm-keyboard-000.svg │ │ ├── gpm-keyboard-020.svg │ │ ├── gpm-keyboard-040.svg │ │ ├── gpm-keyboard-060.svg │ │ ├── gpm-keyboard-080.svg │ │ ├── gpm-keyboard-100.svg │ │ ├── gpm-monitor.svg │ │ ├── gpm-mouse-000.svg │ │ ├── gpm-mouse-020.svg │ │ ├── gpm-mouse-040.svg │ │ ├── gpm-mouse-060.svg │ │ ├── gpm-mouse-080.svg │ │ ├── gpm-mouse-100.svg │ │ ├── gpm-phone-000.svg │ │ ├── gpm-phone-020.svg │ │ ├── gpm-phone-040.svg │ │ ├── gpm-phone-060.svg │ │ ├── gpm-phone-080.svg │ │ ├── gpm-phone-100.svg │ │ ├── gpm-primary-000-charging.svg │ │ ├── gpm-primary-000.svg │ │ ├── gpm-primary-020-charging.svg │ │ ├── gpm-primary-020.svg │ │ ├── gpm-primary-040-charging.svg │ │ ├── gpm-primary-040.svg │ │ ├── gpm-primary-060-charging.svg │ │ ├── gpm-primary-060.svg │ │ ├── gpm-primary-080-charging.svg │ │ ├── gpm-primary-080.svg │ │ ├── gpm-primary-100-charging.svg │ │ ├── gpm-primary-100.svg │ │ ├── gpm-primary-charged.svg │ │ ├── gpm-primary-missing.svg │ │ ├── gpm-ups-000-charging.svg │ │ ├── gpm-ups-000.svg │ │ ├── gpm-ups-020-charging.svg │ │ ├── gpm-ups-020.svg │ │ ├── gpm-ups-040-charging.svg │ │ ├── gpm-ups-040.svg │ │ ├── gpm-ups-060-charging.svg │ │ ├── gpm-ups-060.svg │ │ ├── gpm-ups-080-charging.svg │ │ ├── gpm-ups-080.svg │ │ ├── gpm-ups-100-charging.svg │ │ ├── gpm-ups-100.svg │ │ ├── gpm-ups-charged.svg │ │ ├── gpm-ups-missing.svg │ │ ├── gpmdp-tray-pause.svg │ │ ├── gpmdp-tray-play.svg │ │ ├── gpmdp-tray.svg │ │ ├── grive-app-ind-con-1.svg │ │ ├── grive-app-ind-con-2.svg │ │ ├── grive-app-ind-con-3.svg │ │ ├── grive-app-ind-sleep.svg │ │ ├── grive-app-ind.svg │ │ ├── gsd-xrandr.svg │ │ ├── gsm-3g-full-secure.svg │ │ ├── gsm-3g-full.svg │ │ ├── gsm-3g-high-secure.svg │ │ ├── gsm-3g-high.svg │ │ ├── gsm-3g-low-secure.svg │ │ ├── gsm-3g-low.svg │ │ ├── gsm-3g-medium-secure.svg │ │ ├── gsm-3g-medium.svg │ │ ├── gsm-3g-none-secure.svg │ │ ├── gsm-3g-none.svg │ │ ├── gtg-panel.svg │ │ ├── gtk-dialog-authentication-panel.svg │ │ ├── gtk-dialog-authentication.svg │ │ ├── gtk-dialog-error.svg │ │ ├── gtk-dialog-info.svg │ │ ├── gtk-dialog-question.svg │ │ ├── gtk-dialog-warning.svg │ │ ├── gtk-missing-image.svg │ │ ├── guake-indicator.svg │ │ ├── guake-tray.svg │ │ ├── guitarix-tray.svg │ │ ├── haguichi-connected.svg │ │ ├── haguichi-connecting-1.svg │ │ ├── haguichi-connecting-2.svg │ │ ├── haguichi-connecting-3.svg │ │ ├── haguichi-disconnected.svg │ │ ├── hangouts-available.svg │ │ ├── hangouts-notification.svg │ │ ├── hangouts-offline.svg │ │ ├── hangouts-working.svg │ │ ├── harmony-tray.svg │ │ ├── hexchat-fileoffer.svg │ │ ├── hexchat-highlight.svg │ │ ├── hexchat-indicator.svg │ │ ├── hexchat-message.svg │ │ ├── high-signal-lock.svg │ │ ├── high-signal.svg │ │ ├── hipchat4-attention.svg │ │ ├── hipchat4.svg │ │ ├── hp-indicator.svg │ │ ├── idle-bad-signal-lock.svg │ │ ├── idle-bad-signal.svg │ │ ├── idle-good-signal-lock.svg │ │ ├── idle-good-signal.svg │ │ ├── idle-high-signal-lock.svg │ │ ├── idle-high-signal.svg │ │ ├── idle-low-signal-lock.svg │ │ ├── idle-low-signal.svg │ │ ├── image-missing.svg │ │ ├── indicator-cpufreq-100.svg │ │ ├── indicator-cpufreq-25.svg │ │ ├── indicator-cpufreq-50.svg │ │ ├── indicator-cpufreq-75.svg │ │ ├── indicator-cpufreq.svg │ │ ├── indicator-feedindicator-attention.svg │ │ ├── indicator-feedindicator.svg │ │ ├── indicator-fortune.svg │ │ ├── indicator-keyboard-Ak.svg │ │ ├── indicator-keyboard-Am.svg │ │ ├── indicator-keyboard-Ar-1.svg │ │ ├── indicator-keyboard-Ar-10.svg │ │ ├── indicator-keyboard-Ar-11.svg │ │ ├── indicator-keyboard-Ar-2.svg │ │ ├── indicator-keyboard-Ar-3.svg │ │ ├── indicator-keyboard-Ar-4.svg │ │ ├── indicator-keyboard-Ar-5.svg │ │ ├── indicator-keyboard-Ar-6.svg │ │ ├── indicator-keyboard-Ar-7.svg │ │ ├── indicator-keyboard-Ar-8.svg │ │ ├── indicator-keyboard-Ar-9.svg │ │ ├── indicator-keyboard-Ar.svg │ │ ├── indicator-keyboard-Av.svg │ │ ├── indicator-keyboard-Az-1.svg │ │ ├── indicator-keyboard-Az-2.svg │ │ ├── indicator-keyboard-Az.svg │ │ ├── indicator-keyboard-Be-1.svg │ │ ├── indicator-keyboard-Be-10.svg │ │ ├── indicator-keyboard-Be-11.svg │ │ ├── indicator-keyboard-Be-12.svg │ │ ├── indicator-keyboard-Be-13.svg │ │ ├── indicator-keyboard-Be-14.svg │ │ ├── indicator-keyboard-Be-2.svg │ │ ├── indicator-keyboard-Be-3.svg │ │ ├── indicator-keyboard-Be-4.svg │ │ ├── indicator-keyboard-Be-5.svg │ │ ├── indicator-keyboard-Be-6.svg │ │ ├── indicator-keyboard-Be-7.svg │ │ ├── indicator-keyboard-Be-8.svg │ │ ├── indicator-keyboard-Be-9.svg │ │ ├── indicator-keyboard-Be.svg │ │ ├── indicator-keyboard-Bg-1.svg │ │ ├── indicator-keyboard-Bg-2.svg │ │ ├── indicator-keyboard-Bg-3.svg │ │ ├── indicator-keyboard-Bg.svg │ │ ├── indicator-keyboard-Bm.svg │ │ ├── indicator-keyboard-Bn-1.svg │ │ ├── indicator-keyboard-Bn-2.svg │ │ ├── indicator-keyboard-Bn-3.svg │ │ ├── indicator-keyboard-Bn-4.svg │ │ ├── indicator-keyboard-Bn.svg │ │ ├── indicator-keyboard-Br-1.svg │ │ ├── indicator-keyboard-Br-2.svg │ │ ├── indicator-keyboard-Br-3.svg │ │ ├── indicator-keyboard-Br.svg │ │ ├── indicator-keyboard-Bs-1.svg │ │ ├── indicator-keyboard-Bs-2.svg │ │ ├── indicator-keyboard-Bs-3.svg │ │ ├── indicator-keyboard-Bs-4.svg │ │ ├── indicator-keyboard-Bs-5.svg │ │ ├── indicator-keyboard-Bs.svg │ │ ├── indicator-keyboard-By-1.svg │ │ ├── indicator-keyboard-By-2.svg │ │ ├── indicator-keyboard-By-3.svg │ │ ├── indicator-keyboard-By.svg │ │ ├── indicator-keyboard-Ch.svg │ │ ├── indicator-keyboard-Cm-1.svg │ │ ├── indicator-keyboard-Cm-2.svg │ │ ├── indicator-keyboard-Cm-3.svg │ │ ├── indicator-keyboard-Cm-4.svg │ │ ├── indicator-keyboard-Cm-5.svg │ │ ├── indicator-keyboard-Cm.svg │ │ ├── indicator-keyboard-Cr-1.svg │ │ ├── indicator-keyboard-Cr-2.svg │ │ ├── indicator-keyboard-Cr-3.svg │ │ ├── indicator-keyboard-Cr.svg │ │ ├── indicator-keyboard-Cs-1.svg │ │ ├── indicator-keyboard-Cs-2.svg │ │ ├── indicator-keyboard-Cs-3.svg │ │ ├── indicator-keyboard-Cs-4.svg │ │ ├── indicator-keyboard-Cs-5.svg │ │ ├── indicator-keyboard-Cs-6.svg │ │ ├── indicator-keyboard-Cs.svg │ │ ├── indicator-keyboard-Da-1.svg │ │ ├── indicator-keyboard-Da-2.svg │ │ ├── indicator-keyboard-Da-3.svg │ │ ├── indicator-keyboard-Da-4.svg │ │ ├── indicator-keyboard-Da-5.svg │ │ ├── indicator-keyboard-Da.svg │ │ ├── indicator-keyboard-De-1.svg │ │ ├── indicator-keyboard-De-10.svg │ │ ├── indicator-keyboard-De-11.svg │ │ ├── indicator-keyboard-De-12.svg │ │ ├── indicator-keyboard-De-13.svg │ │ ├── indicator-keyboard-De-14.svg │ │ ├── indicator-keyboard-De-15.svg │ │ ├── indicator-keyboard-De-16.svg │ │ ├── indicator-keyboard-De-17.svg │ │ ├── indicator-keyboard-De-18.svg │ │ ├── indicator-keyboard-De-19.svg │ │ ├── indicator-keyboard-De-2.svg │ │ ├── indicator-keyboard-De-20.svg │ │ ├── indicator-keyboard-De-21.svg │ │ ├── indicator-keyboard-De-22.svg │ │ ├── indicator-keyboard-De-23.svg │ │ ├── indicator-keyboard-De-24.svg │ │ ├── indicator-keyboard-De-25.svg │ │ ├── indicator-keyboard-De-3.svg │ │ ├── indicator-keyboard-De-4.svg │ │ ├── indicator-keyboard-De-5.svg │ │ ├── indicator-keyboard-De-6.svg │ │ ├── indicator-keyboard-De-7.svg │ │ ├── indicator-keyboard-De-8.svg │ │ ├── indicator-keyboard-De-9.svg │ │ ├── indicator-keyboard-De.svg │ │ ├── indicator-keyboard-Dv.svg │ │ ├── indicator-keyboard-Dz.svg │ │ ├── indicator-keyboard-Ee.svg │ │ ├── indicator-keyboard-En-1.svg │ │ ├── indicator-keyboard-En-10.svg │ │ ├── indicator-keyboard-En-11.svg │ │ ├── indicator-keyboard-En-12.svg │ │ ├── indicator-keyboard-En-13.svg │ │ ├── indicator-keyboard-En-14.svg │ │ ├── indicator-keyboard-En-15.svg │ │ ├── indicator-keyboard-En-16.svg │ │ ├── indicator-keyboard-En-17.svg │ │ ├── indicator-keyboard-En-18.svg │ │ ├── indicator-keyboard-En-19.svg │ │ ├── indicator-keyboard-En-2.svg │ │ ├── indicator-keyboard-En-20.svg │ │ ├── indicator-keyboard-En-21.svg │ │ ├── indicator-keyboard-En-22.svg │ │ ├── indicator-keyboard-En-23.svg │ │ ├── indicator-keyboard-En-24.svg │ │ ├── indicator-keyboard-En-25.svg │ │ ├── indicator-keyboard-En-26.svg │ │ ├── indicator-keyboard-En-27.svg │ │ ├── indicator-keyboard-En-28.svg │ │ ├── indicator-keyboard-En-29.svg │ │ ├── indicator-keyboard-En-3.svg │ │ ├── indicator-keyboard-En-30.svg │ │ ├── indicator-keyboard-En-31.svg │ │ ├── indicator-keyboard-En-32.svg │ │ ├── indicator-keyboard-En-33.svg │ │ ├── indicator-keyboard-En-34.svg │ │ ├── indicator-keyboard-En-35.svg │ │ ├── indicator-keyboard-En-4.svg │ │ ├── indicator-keyboard-En-5.svg │ │ ├── indicator-keyboard-En-6.svg │ │ ├── indicator-keyboard-En-7.svg │ │ ├── indicator-keyboard-En-8.svg │ │ ├── indicator-keyboard-En-9.svg │ │ ├── indicator-keyboard-En.svg │ │ ├── indicator-keyboard-Eo-1.svg │ │ ├── indicator-keyboard-Eo-2.svg │ │ ├── indicator-keyboard-Eo.svg │ │ ├── indicator-keyboard-Es-1.svg │ │ ├── indicator-keyboard-Es-10.svg │ │ ├── indicator-keyboard-Es-11.svg │ │ ├── indicator-keyboard-Es-12.svg │ │ ├── indicator-keyboard-Es-2.svg │ │ ├── indicator-keyboard-Es-3.svg │ │ ├── indicator-keyboard-Es-4.svg │ │ ├── indicator-keyboard-Es-5.svg │ │ ├── indicator-keyboard-Es-6.svg │ │ ├── indicator-keyboard-Es-7.svg │ │ ├── indicator-keyboard-Es-8.svg │ │ ├── indicator-keyboard-Es-9.svg │ │ ├── indicator-keyboard-Es.svg │ │ ├── indicator-keyboard-Et-1.svg │ │ ├── indicator-keyboard-Et-2.svg │ │ ├── indicator-keyboard-Et-3.svg │ │ ├── indicator-keyboard-Et-4.svg │ │ ├── indicator-keyboard-Et.svg │ │ ├── indicator-keyboard-Fa-1.svg │ │ ├── indicator-keyboard-Fa-2.svg │ │ ├── indicator-keyboard-Fa-3.svg │ │ ├── indicator-keyboard-Fa-4.svg │ │ ├── indicator-keyboard-Fa.svg │ │ ├── indicator-keyboard-Ff.svg │ │ ├── indicator-keyboard-Fi-1.svg │ │ ├── indicator-keyboard-Fi-2.svg │ │ ├── indicator-keyboard-Fi-3.svg │ │ ├── indicator-keyboard-Fi-4.svg │ │ ├── indicator-keyboard-Fi-5.svg │ │ ├── indicator-keyboard-Fi.svg │ │ ├── indicator-keyboard-Fo-1.svg │ │ ├── indicator-keyboard-Fo-2.svg │ │ ├── indicator-keyboard-Fo.svg │ │ ├── indicator-keyboard-Fr-1.svg │ │ ├── indicator-keyboard-Fr-10.svg │ │ ├── indicator-keyboard-Fr-11.svg │ │ ├── indicator-keyboard-Fr-12.svg │ │ ├── indicator-keyboard-Fr-13.svg │ │ ├── indicator-keyboard-Fr-14.svg │ │ ├── indicator-keyboard-Fr-15.svg │ │ ├── indicator-keyboard-Fr-16.svg │ │ ├── indicator-keyboard-Fr-17.svg │ │ ├── indicator-keyboard-Fr-18.svg │ │ ├── indicator-keyboard-Fr-19.svg │ │ ├── indicator-keyboard-Fr-2.svg │ │ ├── indicator-keyboard-Fr-20.svg │ │ ├── indicator-keyboard-Fr-21.svg │ │ ├── indicator-keyboard-Fr-22.svg │ │ ├── indicator-keyboard-Fr-23.svg │ │ ├── indicator-keyboard-Fr-24.svg │ │ ├── indicator-keyboard-Fr-25.svg │ │ ├── indicator-keyboard-Fr-26.svg │ │ ├── indicator-keyboard-Fr-27.svg │ │ ├── indicator-keyboard-Fr-28.svg │ │ ├── indicator-keyboard-Fr-29.svg │ │ ├── indicator-keyboard-Fr-3.svg │ │ ├── indicator-keyboard-Fr-30.svg │ │ ├── indicator-keyboard-Fr-31.svg │ │ ├── indicator-keyboard-Fr-4.svg │ │ ├── indicator-keyboard-Fr-5.svg │ │ ├── indicator-keyboard-Fr-6.svg │ │ ├── indicator-keyboard-Fr-7.svg │ │ ├── indicator-keyboard-Fr-8.svg │ │ ├── indicator-keyboard-Fr-9.svg │ │ ├── indicator-keyboard-Fr.svg │ │ ├── indicator-keyboard-Ga-1.svg │ │ ├── indicator-keyboard-Ga-2.svg │ │ ├── indicator-keyboard-Ga.svg │ │ ├── indicator-keyboard-Gr-1.svg │ │ ├── indicator-keyboard-Gr-2.svg │ │ ├── indicator-keyboard-Gr-3.svg │ │ ├── indicator-keyboard-Gr-4.svg │ │ ├── indicator-keyboard-Gr-5.svg │ │ ├── indicator-keyboard-Gr.svg │ │ ├── indicator-keyboard-Gu.svg │ │ ├── indicator-keyboard-Ha-1.svg │ │ ├── indicator-keyboard-Ha-2.svg │ │ ├── indicator-keyboard-Ha.svg │ │ ├── indicator-keyboard-He-1.svg │ │ ├── indicator-keyboard-He-2.svg │ │ ├── indicator-keyboard-He-3.svg │ │ ├── indicator-keyboard-He-4.svg │ │ ├── indicator-keyboard-He.svg │ │ ├── indicator-keyboard-Hi-1.svg │ │ ├── indicator-keyboard-Hi-2.svg │ │ ├── indicator-keyboard-Hi-3.svg │ │ ├── indicator-keyboard-Hi.svg │ │ ├── indicator-keyboard-Hr-1.svg │ │ ├── indicator-keyboard-Hr-2.svg │ │ ├── indicator-keyboard-Hr-3.svg │ │ ├── indicator-keyboard-Hr-4.svg │ │ ├── indicator-keyboard-Hr-5.svg │ │ ├── indicator-keyboard-Hr.svg │ │ ├── indicator-keyboard-Hu-1.svg │ │ ├── indicator-keyboard-Hu-10.svg │ │ ├── indicator-keyboard-Hu-11.svg │ │ ├── indicator-keyboard-Hu-12.svg │ │ ├── indicator-keyboard-Hu-13.svg │ │ ├── indicator-keyboard-Hu-14.svg │ │ ├── indicator-keyboard-Hu-15.svg │ │ ├── indicator-keyboard-Hu-16.svg │ │ ├── indicator-keyboard-Hu-17.svg │ │ ├── indicator-keyboard-Hu-18.svg │ │ ├── indicator-keyboard-Hu-19.svg │ │ ├── indicator-keyboard-Hu-2.svg │ │ ├── indicator-keyboard-Hu-20.svg │ │ ├── indicator-keyboard-Hu-3.svg │ │ ├── indicator-keyboard-Hu-4.svg │ │ ├── indicator-keyboard-Hu-5.svg │ │ ├── indicator-keyboard-Hu-6.svg │ │ ├── indicator-keyboard-Hu-7.svg │ │ ├── indicator-keyboard-Hu-8.svg │ │ ├── indicator-keyboard-Hu-9.svg │ │ ├── indicator-keyboard-Hu.svg │ │ ├── indicator-keyboard-Hy-1.svg │ │ ├── indicator-keyboard-Hy-2.svg │ │ ├── indicator-keyboard-Hy-3.svg │ │ ├── indicator-keyboard-Hy-4.svg │ │ ├── indicator-keyboard-Hy-5.svg │ │ ├── indicator-keyboard-Hy-6.svg │ │ ├── indicator-keyboard-Hy.svg │ │ ├── indicator-keyboard-Ie-1.svg │ │ ├── indicator-keyboard-Ie-2.svg │ │ ├── indicator-keyboard-Ie-3.svg │ │ ├── indicator-keyboard-Ie-4.svg │ │ ├── indicator-keyboard-Ie-5.svg │ │ ├── indicator-keyboard-Ie.svg │ │ ├── indicator-keyboard-Ig.svg │ │ ├── indicator-keyboard-Ik.svg │ │ ├── indicator-keyboard-In-1.svg │ │ ├── indicator-keyboard-In-2.svg │ │ ├── indicator-keyboard-In-3.svg │ │ ├── indicator-keyboard-In-4.svg │ │ ├── indicator-keyboard-In-5.svg │ │ ├── indicator-keyboard-In.svg │ │ ├── indicator-keyboard-Is-1.svg │ │ ├── indicator-keyboard-Is-2.svg │ │ ├── indicator-keyboard-Is-3.svg │ │ ├── indicator-keyboard-Is-4.svg │ │ ├── indicator-keyboard-Is-5.svg │ │ ├── indicator-keyboard-Is.svg │ │ ├── indicator-keyboard-It-1.svg │ │ ├── indicator-keyboard-It-2.svg │ │ ├── indicator-keyboard-It-3.svg │ │ ├── indicator-keyboard-It-4.svg │ │ ├── indicator-keyboard-It-5.svg │ │ ├── indicator-keyboard-It-6.svg │ │ ├── indicator-keyboard-It.svg │ │ ├── indicator-keyboard-Ja-1.svg │ │ ├── indicator-keyboard-Ja-2.svg │ │ ├── indicator-keyboard-Ja-3.svg │ │ ├── indicator-keyboard-Ja-4.svg │ │ ├── indicator-keyboard-Ja-5.svg │ │ ├── indicator-keyboard-Ja-6.svg │ │ ├── indicator-keyboard-Ja-7.svg │ │ ├── indicator-keyboard-Ja.svg │ │ ├── indicator-keyboard-Ka-1.svg │ │ ├── indicator-keyboard-Ka-2.svg │ │ ├── indicator-keyboard-Ka-3.svg │ │ ├── indicator-keyboard-Ka-4.svg │ │ ├── indicator-keyboard-Ka.svg │ │ ├── indicator-keyboard-Ki-1.svg │ │ ├── indicator-keyboard-Ki-2.svg │ │ ├── indicator-keyboard-Ki-3.svg │ │ ├── indicator-keyboard-Ki.svg │ │ ├── indicator-keyboard-Kk-1.svg │ │ ├── indicator-keyboard-Kk-2.svg │ │ ├── indicator-keyboard-Kk.svg │ │ ├── indicator-keyboard-Km.svg │ │ ├── indicator-keyboard-Kn-1.svg │ │ ├── indicator-keyboard-Kn-2.svg │ │ ├── indicator-keyboard-Kn.svg │ │ ├── indicator-keyboard-Ko-1.svg │ │ ├── indicator-keyboard-Ko-2.svg │ │ ├── indicator-keyboard-Ko.svg │ │ ├── indicator-keyboard-Ku-1.svg │ │ ├── indicator-keyboard-Ku-10.svg │ │ ├── indicator-keyboard-Ku-11.svg │ │ ├── indicator-keyboard-Ku-12.svg │ │ ├── indicator-keyboard-Ku-13.svg │ │ ├── indicator-keyboard-Ku-14.svg │ │ ├── indicator-keyboard-Ku-2.svg │ │ ├── indicator-keyboard-Ku-3.svg │ │ ├── indicator-keyboard-Ku-4.svg │ │ ├── indicator-keyboard-Ku-5.svg │ │ ├── indicator-keyboard-Ku-6.svg │ │ ├── indicator-keyboard-Ku-7.svg │ │ ├── indicator-keyboard-Ku-8.svg │ │ ├── indicator-keyboard-Ku-9.svg │ │ ├── indicator-keyboard-Ku.svg │ │ ├── indicator-keyboard-Lo-1.svg │ │ ├── indicator-keyboard-Lo-2.svg │ │ ├── indicator-keyboard-Lo.svg │ │ ├── indicator-keyboard-Lt-1.svg │ │ ├── indicator-keyboard-Lt-2.svg │ │ ├── indicator-keyboard-Lt-3.svg │ │ ├── indicator-keyboard-Lt-4.svg │ │ ├── indicator-keyboard-Lt-5.svg │ │ ├── indicator-keyboard-Lt-6.svg │ │ ├── indicator-keyboard-Lt.svg │ │ ├── indicator-keyboard-Lv-1.svg │ │ ├── indicator-keyboard-Lv-2.svg │ │ ├── indicator-keyboard-Lv-3.svg │ │ ├── indicator-keyboard-Lv-4.svg │ │ ├── indicator-keyboard-Lv-5.svg │ │ ├── indicator-keyboard-Lv-6.svg │ │ ├── indicator-keyboard-Lv-7.svg │ │ ├── indicator-keyboard-Lv.svg │ │ ├── indicator-keyboard-Md.svg │ │ ├── indicator-keyboard-Mi.svg │ │ ├── indicator-keyboard-Mk-1.svg │ │ ├── indicator-keyboard-Mk-2.svg │ │ ├── indicator-keyboard-Mk.svg │ │ ├── indicator-keyboard-Ml-1.svg │ │ ├── indicator-keyboard-Ml-2.svg │ │ ├── indicator-keyboard-Ml-3.svg │ │ ├── indicator-keyboard-Ml.svg │ │ ├── indicator-keyboard-Mn.svg │ │ ├── indicator-keyboard-Mr.svg │ │ ├── indicator-keyboard-Mt-1.svg │ │ ├── indicator-keyboard-Mt-2.svg │ │ ├── indicator-keyboard-Mt.svg │ │ ├── indicator-keyboard-My.svg │ │ ├── indicator-keyboard-Ne.svg │ │ ├── indicator-keyboard-Nl-1.svg │ │ ├── indicator-keyboard-Nl-2.svg │ │ ├── indicator-keyboard-Nl-3.svg │ │ ├── indicator-keyboard-Nl-4.svg │ │ ├── indicator-keyboard-Nl.svg │ │ ├── indicator-keyboard-No-1.svg │ │ ├── indicator-keyboard-No-2.svg │ │ ├── indicator-keyboard-No-3.svg │ │ ├── indicator-keyboard-No-4.svg │ │ ├── indicator-keyboard-No-5.svg │ │ ├── indicator-keyboard-No-6.svg │ │ ├── indicator-keyboard-No-7.svg │ │ ├── indicator-keyboard-No-8.svg │ │ ├── indicator-keyboard-No.svg │ │ ├── indicator-keyboard-Or.svg │ │ ├── indicator-keyboard-Pa-1.svg │ │ ├── indicator-keyboard-Pa-2.svg │ │ ├── indicator-keyboard-Pa.svg │ │ ├── indicator-keyboard-Ph-1.svg │ │ ├── indicator-keyboard-Ph-10.svg │ │ ├── indicator-keyboard-Ph-2.svg │ │ ├── indicator-keyboard-Ph-3.svg │ │ ├── indicator-keyboard-Ph-4.svg │ │ ├── indicator-keyboard-Ph-5.svg │ │ ├── indicator-keyboard-Ph-6.svg │ │ ├── indicator-keyboard-Ph-7.svg │ │ ├── indicator-keyboard-Ph-8.svg │ │ ├── indicator-keyboard-Ph-9.svg │ │ ├── indicator-keyboard-Ph.svg │ │ ├── indicator-keyboard-Pl-1.svg │ │ ├── indicator-keyboard-Pl-2.svg │ │ ├── indicator-keyboard-Pl-3.svg │ │ ├── indicator-keyboard-Pl-4.svg │ │ ├── indicator-keyboard-Pl-5.svg │ │ ├── indicator-keyboard-Pl-6.svg │ │ ├── indicator-keyboard-Pl-7.svg │ │ ├── indicator-keyboard-Pl-8.svg │ │ ├── indicator-keyboard-Pl-9.svg │ │ ├── indicator-keyboard-Pl.svg │ │ ├── indicator-keyboard-Ps-1.svg │ │ ├── indicator-keyboard-Ps-2.svg │ │ ├── indicator-keyboard-Ps.svg │ │ ├── indicator-keyboard-Pt-1.svg │ │ ├── indicator-keyboard-Pt-10.svg │ │ ├── indicator-keyboard-Pt-11.svg │ │ ├── indicator-keyboard-Pt-12.svg │ │ ├── indicator-keyboard-Pt-13.svg │ │ ├── indicator-keyboard-Pt-14.svg │ │ ├── indicator-keyboard-Pt-15.svg │ │ ├── indicator-keyboard-Pt-2.svg │ │ ├── indicator-keyboard-Pt-3.svg │ │ ├── indicator-keyboard-Pt-4.svg │ │ ├── indicator-keyboard-Pt-5.svg │ │ ├── indicator-keyboard-Pt-6.svg │ │ ├── indicator-keyboard-Pt-7.svg │ │ ├── indicator-keyboard-Pt-8.svg │ │ ├── indicator-keyboard-Pt-9.svg │ │ ├── indicator-keyboard-Pt.svg │ │ ├── indicator-keyboard-Ro-1.svg │ │ ├── indicator-keyboard-Ro-2.svg │ │ ├── indicator-keyboard-Ro-3.svg │ │ ├── indicator-keyboard-Ro-4.svg │ │ ├── indicator-keyboard-Ro-5.svg │ │ ├── indicator-keyboard-Ro.svg │ │ ├── indicator-keyboard-Ru-1.svg │ │ ├── indicator-keyboard-Ru-10.svg │ │ ├── indicator-keyboard-Ru-11.svg │ │ ├── indicator-keyboard-Ru-12.svg │ │ ├── indicator-keyboard-Ru-13.svg │ │ ├── indicator-keyboard-Ru-14.svg │ │ ├── indicator-keyboard-Ru-15.svg │ │ ├── indicator-keyboard-Ru-16.svg │ │ ├── indicator-keyboard-Ru-17.svg │ │ ├── indicator-keyboard-Ru-18.svg │ │ ├── indicator-keyboard-Ru-19.svg │ │ ├── indicator-keyboard-Ru-2.svg │ │ ├── indicator-keyboard-Ru-20.svg │ │ ├── indicator-keyboard-Ru-21.svg │ │ ├── indicator-keyboard-Ru-22.svg │ │ ├── indicator-keyboard-Ru-23.svg │ │ ├── indicator-keyboard-Ru-24.svg │ │ ├── indicator-keyboard-Ru-25.svg │ │ ├── indicator-keyboard-Ru-26.svg │ │ ├── indicator-keyboard-Ru-27.svg │ │ ├── indicator-keyboard-Ru-3.svg │ │ ├── indicator-keyboard-Ru-4.svg │ │ ├── indicator-keyboard-Ru-5.svg │ │ ├── indicator-keyboard-Ru-6.svg │ │ ├── indicator-keyboard-Ru-7.svg │ │ ├── indicator-keyboard-Ru-8.svg │ │ ├── indicator-keyboard-Ru-9.svg │ │ ├── indicator-keyboard-Ru.svg │ │ ├── indicator-keyboard-Sa.svg │ │ ├── indicator-keyboard-Sd.svg │ │ ├── indicator-keyboard-Si-1.svg │ │ ├── indicator-keyboard-Si-2.svg │ │ ├── indicator-keyboard-Si.svg │ │ ├── indicator-keyboard-Sk-1.svg │ │ ├── indicator-keyboard-Sk-2.svg │ │ ├── indicator-keyboard-Sk-3.svg │ │ ├── indicator-keyboard-Sk-4.svg │ │ ├── indicator-keyboard-Sk.svg │ │ ├── indicator-keyboard-Sl-1.svg │ │ ├── indicator-keyboard-Sl-2.svg │ │ ├── indicator-keyboard-Sl-3.svg │ │ ├── indicator-keyboard-Sl-4.svg │ │ ├── indicator-keyboard-Sl.svg │ │ ├── indicator-keyboard-Sq.svg │ │ ├── indicator-keyboard-Sr-1.svg │ │ ├── indicator-keyboard-Sr-10.svg │ │ ├── indicator-keyboard-Sr-11.svg │ │ ├── indicator-keyboard-Sr-12.svg │ │ ├── indicator-keyboard-Sr-13.svg │ │ ├── indicator-keyboard-Sr-14.svg │ │ ├── indicator-keyboard-Sr-15.svg │ │ ├── indicator-keyboard-Sr-16.svg │ │ ├── indicator-keyboard-Sr-17.svg │ │ ├── indicator-keyboard-Sr-2.svg │ │ ├── indicator-keyboard-Sr-3.svg │ │ ├── indicator-keyboard-Sr-4.svg │ │ ├── indicator-keyboard-Sr-5.svg │ │ ├── indicator-keyboard-Sr-6.svg │ │ ├── indicator-keyboard-Sr-7.svg │ │ ├── indicator-keyboard-Sr-8.svg │ │ ├── indicator-keyboard-Sr-9.svg │ │ ├── indicator-keyboard-Sr.svg │ │ ├── indicator-keyboard-Sv-1.svg │ │ ├── indicator-keyboard-Sv-2.svg │ │ ├── indicator-keyboard-Sv-3.svg │ │ ├── indicator-keyboard-Sv-4.svg │ │ ├── indicator-keyboard-Sv-5.svg │ │ ├── indicator-keyboard-Sv-6.svg │ │ ├── indicator-keyboard-Sv-7.svg │ │ ├── indicator-keyboard-Sv.svg │ │ ├── indicator-keyboard-Sw-1.svg │ │ ├── indicator-keyboard-Sw-2.svg │ │ ├── indicator-keyboard-Sw.svg │ │ ├── indicator-keyboard-Sy-1.svg │ │ ├── indicator-keyboard-Sy-2.svg │ │ ├── indicator-keyboard-Sy.svg │ │ ├── indicator-keyboard-Ta-1.svg │ │ ├── indicator-keyboard-Ta-2.svg │ │ ├── indicator-keyboard-Ta-3.svg │ │ ├── indicator-keyboard-Ta-4.svg │ │ ├── indicator-keyboard-Ta-5.svg │ │ ├── indicator-keyboard-Ta-6.svg │ │ ├── indicator-keyboard-Ta.svg │ │ ├── indicator-keyboard-Te-1.svg │ │ ├── indicator-keyboard-Te-2.svg │ │ ├── indicator-keyboard-Te-3.svg │ │ ├── indicator-keyboard-Te.svg │ │ ├── indicator-keyboard-Tg-1.svg │ │ ├── indicator-keyboard-Tg-2.svg │ │ ├── indicator-keyboard-Tg.svg │ │ ├── indicator-keyboard-Th-1.svg │ │ ├── indicator-keyboard-Th-2.svg │ │ ├── indicator-keyboard-Th-3.svg │ │ ├── indicator-keyboard-Th.svg │ │ ├── indicator-keyboard-Tk-1.svg │ │ ├── indicator-keyboard-Tk-2.svg │ │ ├── indicator-keyboard-Tk.svg │ │ ├── indicator-keyboard-Tn.svg │ │ ├── indicator-keyboard-Tr-1.svg │ │ ├── indicator-keyboard-Tr-2.svg │ │ ├── indicator-keyboard-Tr-3.svg │ │ ├── indicator-keyboard-Tr-4.svg │ │ ├── indicator-keyboard-Tr-5.svg │ │ ├── indicator-keyboard-Tr.svg │ │ ├── indicator-keyboard-Uk-1.svg │ │ ├── indicator-keyboard-Uk-2.svg │ │ ├── indicator-keyboard-Uk-3.svg │ │ ├── indicator-keyboard-Uk-4.svg │ │ ├── indicator-keyboard-Uk-5.svg │ │ ├── indicator-keyboard-Uk-6.svg │ │ ├── indicator-keyboard-Uk-7.svg │ │ ├── indicator-keyboard-Uk-8.svg │ │ ├── indicator-keyboard-Uk.svg │ │ ├── indicator-keyboard-Ur-1.svg │ │ ├── indicator-keyboard-Ur-2.svg │ │ ├── indicator-keyboard-Ur-3.svg │ │ ├── indicator-keyboard-Ur-4.svg │ │ ├── indicator-keyboard-Ur-5.svg │ │ ├── indicator-keyboard-Ur-6.svg │ │ ├── indicator-keyboard-Ur.svg │ │ ├── indicator-keyboard-Uz-1.svg │ │ ├── indicator-keyboard-Uz-2.svg │ │ ├── indicator-keyboard-Uz-3.svg │ │ ├── indicator-keyboard-Uz-4.svg │ │ ├── indicator-keyboard-Uz.svg │ │ ├── indicator-keyboard-Vi.svg │ │ ├── indicator-keyboard-Wo.svg │ │ ├── indicator-keyboard-Xs.svg │ │ ├── indicator-keyboard-Yo.svg │ │ ├── indicator-keyboard-Zh-1.svg │ │ ├── indicator-keyboard-Zh-2.svg │ │ ├── indicator-keyboard-Zh-3.svg │ │ ├── indicator-keyboard-Zh-4.svg │ │ ├── indicator-keyboard-Zh-5.svg │ │ ├── indicator-keyboard-Zh-6.svg │ │ ├── indicator-keyboard-Zh.svg │ │ ├── indicator-keyboard.svg │ │ ├── indicator-lunar-satelite.svg │ │ ├── indicator-lunar.svg │ │ ├── indicator-messages-new.svg │ │ ├── indicator-messages-red.svg │ │ ├── indicator-messages.svg │ │ ├── indicator-notification-read-dnd.svg │ │ ├── indicator-notification-read.svg │ │ ├── indicator-notification-unread-dnd.svg │ │ ├── indicator-notification-unread.svg │ │ ├── indicator-privacy-panel.svg │ │ ├── indicator-rss-aware-attention.svg │ │ ├── indicator-rss-aware.svg │ │ ├── indicator-sensors-battery.svg │ │ ├── indicator-sensors-case.svg │ │ ├── indicator-sensors-chip.svg │ │ ├── indicator-sensors-cpu.svg │ │ ├── indicator-sensors-disk.svg │ │ ├── indicator-sensors-fan.svg │ │ ├── indicator-sensors-gpu.svg │ │ ├── indicator-sensors-memory.svg │ │ ├── indicator-sound-switcher.svg │ │ ├── indicator-stardate.svg │ │ ├── indicator-stickynotes-mono.svg │ │ ├── indicator-trashindicator-attention.svg │ │ ├── indicator-trashindicator.svg │ │ ├── indicator-virtual-box.svg │ │ ├── indicator-workspaces-1.svg │ │ ├── indicator-workspaces-2.svg │ │ ├── indicator-workspaces-3.svg │ │ ├── indicator-workspaces-4.svg │ │ ├── indicator-workspaces-5.svg │ │ ├── indicator-workspaces-6.svg │ │ ├── indicator-workspaces-7.svg │ │ ├── indicator-workspaces-8.svg │ │ ├── input-caps-on.svg │ │ ├── input-keyboard-virtual-off.svg │ │ ├── input-keyboard-virtual-on.svg │ │ ├── input-keyboard.svg │ │ ├── input-touchpad-off.svg │ │ ├── input-touchpad-on.svg │ │ ├── insync-action.svg │ │ ├── insync-error.svg │ │ ├── insync-feed.svg │ │ ├── insync-normal.svg │ │ ├── insync-offline.svg │ │ ├── insync-paused.svg │ │ ├── insync-share.svg │ │ ├── insync-synced.svg │ │ ├── insync-syncing.svg │ │ ├── irc-channel-joined.svg │ │ ├── irc-channel-parted.svg │ │ ├── irccloud-desktop-tray.svg │ │ ├── jdownloader-indicator.svg │ │ ├── joplin-tray.svg │ │ ├── kaku-tray.svg │ │ ├── kazam-countdown.svg │ │ ├── kazam-paused.svg │ │ ├── kazam-recording.svg │ │ ├── kazam-stopped.svg │ │ ├── kdeconnectindicatordark.svg │ │ ├── keepassx-indicator.svg │ │ ├── keepassx-locked.svg │ │ ├── keepassxc-dark.svg │ │ ├── keepassxc-locked.svg │ │ ├── keepassxc-monochrome-dark-locked.svg │ │ ├── keepassxc-monochrome-dark.svg │ │ ├── keepassxc-monochrome-light-locked.svg │ │ ├── keepassxc-monochrome-light.svg │ │ ├── keepassxc-panel.svg │ │ ├── keepassxc-unlocked.svg │ │ ├── keybase-badged-error.svg │ │ ├── keybase-badged-uploading.svg │ │ ├── keybase-badged.svg │ │ ├── keybase-error.svg │ │ ├── keybase-tray.svg │ │ ├── keybase-update.svg │ │ ├── keybase-uploading.svg │ │ ├── keyboard-battery-caution.svg │ │ ├── keyboard-battery-empty.svg │ │ ├── keyboard-battery-full.svg │ │ ├── keyboard-battery-good.svg │ │ ├── keyboard-battery-low.svg │ │ ├── keyboard-battery-medium.svg │ │ ├── knemo-modem-error.svg │ │ ├── knemo-modem-idle.svg │ │ ├── knemo-modem-offline.svg │ │ ├── knemo-modem-receive.svg │ │ ├── knemo-modem-transmit-receive.svg │ │ ├── knemo-modem-transmit.svg │ │ ├── knemo-monitor-error.svg │ │ ├── knemo-monitor-idle.svg │ │ ├── knemo-monitor-offline.svg │ │ ├── knemo-monitor-receive.svg │ │ ├── knemo-monitor-transmit-receive.svg │ │ ├── knemo-monitor-transmit.svg │ │ ├── knemo-network-error.svg │ │ ├── knemo-network-idle.svg │ │ ├── knemo-network-offline.svg │ │ ├── knemo-network-receive.svg │ │ ├── knemo-network-transmit-receive.svg │ │ ├── knemo-network-transmit.svg │ │ ├── knemo-wireless-error.svg │ │ ├── knemo-wireless-idle.svg │ │ ├── knemo-wireless-offline.svg │ │ ├── knemo-wireless-receive.svg │ │ ├── knemo-wireless-transmit-receive.svg │ │ ├── knemo-wireless-transmit.svg │ │ ├── kotatogram-attention-panel.svg │ │ ├── kotatogram-mute-panel.svg │ │ ├── kotatogram-panel.svg │ │ ├── krb-expiring-ticket.svg │ │ ├── krb-no-valid-ticket.svg │ │ ├── krb-valid-ticket.svg │ │ ├── krudiotray-light-off24.svg │ │ ├── krudiotray-light-on24.svg │ │ ├── ladi-started.svg │ │ ├── ladi-starting.svg │ │ ├── ladi-stopped.svg │ │ ├── laptop-connected.svg │ │ ├── laptop-disconnected.svg │ │ ├── laptop-trusted.svg │ │ ├── laptopattention.svg │ │ ├── laptopconnected.svg │ │ ├── laptopdisconnected.svg │ │ ├── laptoptrusted.svg │ │ ├── liferea-available.svg │ │ ├── liferea-unread.svg │ │ ├── listen.moe-desktop-app-tray.svg │ │ ├── livewallpaper-indicator.svg │ │ ├── lookit-panel.svg │ │ ├── low-signal-lock.svg │ │ ├── low-signal.svg │ │ ├── lutris-panel.svg │ │ ├── lyricfier-tray.svg │ │ ├── mailspring-tray-empty.svg │ │ ├── mailspring-tray-full-newitems.svg │ │ ├── mailspring-tray-full.svg │ │ ├── manjaro-settings-manager-panel.svg │ │ ├── manjaro-settings-manager.svg │ │ ├── manjaro-welcome.svg │ │ ├── manjaro.svg │ │ ├── mate-sensors-applet-battery.svg │ │ ├── mate-sensors-applet-case.svg │ │ ├── mate-sensors-applet-chip.svg │ │ ├── mate-sensors-applet-cpu.svg │ │ ├── mate-sensors-applet-drive-harddisk.svg │ │ ├── mate-sensors-applet-fan.svg │ │ ├── mate-sensors-applet-gpu.svg │ │ ├── mate-sensors-applet-memory.svg │ │ ├── megalogging.svg │ │ ├── megapaused.svg │ │ ├── megasynching.svg │ │ ├── megauptodate.svg │ │ ├── megawarning.svg │ │ ├── mellowplayer-panel.svg │ │ ├── messagebox_critical.svg │ │ ├── messagebox_info.svg │ │ ├── messagebox_warning.svg │ │ ├── messenger-indicator.svg │ │ ├── messenger-notification.svg │ │ ├── mic-off.svg │ │ ├── mic-on.svg │ │ ├── mic-ready.svg │ │ ├── mic-volume-high.svg │ │ ├── mic-volume-low.svg │ │ ├── mic-volume-medium.svg │ │ ├── mic-volume-muted.svg │ │ ├── microphone-sensitivity-high.svg │ │ ├── microphone-sensitivity-low.svg │ │ ├── microphone-sensitivity-medium.svg │ │ ├── microphone-sensitivity-muted-10-symbolic.svg │ │ ├── microphone-sensitivity-muted-20-symbolic.svg │ │ ├── microphone-sensitivity-muted-30-symbolic.svg │ │ ├── microphone-sensitivity-muted-40-symbolic.svg │ │ ├── microphone-sensitivity-muted-50-symbolic.svg │ │ ├── microphone-sensitivity-muted-60-symbolic.svg │ │ ├── microphone-sensitivity-muted-70-symbolic.svg │ │ ├── microphone-sensitivity-muted-80-symbolic.svg │ │ ├── microphone-sensitivity-muted-90-symbolic.svg │ │ ├── microphone-sensitivity-muted-symbolic.svg │ │ ├── microphone-sensitivity-muted.svg │ │ ├── minetime-tray.svg │ │ ├── mini-calendar.svg │ │ ├── mintupdate-checking.svg │ │ ├── mintupdate-error.svg │ │ ├── mintupdate-installing.svg │ │ ├── mintupdate-up-to-date.svg │ │ ├── mintupdate-updates-available.svg │ │ ├── mnotify-none-wireframe.svg │ │ ├── mnotify-some-wireframe.svg │ │ ├── mntray-news.svg │ │ ├── mntray-regular.svg │ │ ├── motrix-tray-active.svg │ │ ├── motrix-tray.svg │ │ ├── mouse-battery-caution.svg │ │ ├── mouse-battery-empty.svg │ │ ├── mouse-battery-full.svg │ │ ├── mouse-battery-good.svg │ │ ├── mouse-battery-low.svg │ │ ├── mouse-battery-medium.svg │ │ ├── msd-xrandr.svg │ │ ├── mstdn-panel.svg │ │ ├── mullvad-tray-1.svg │ │ ├── mullvad-tray-10.svg │ │ ├── mullvad-tray-2.svg │ │ ├── mullvad-tray-3.svg │ │ ├── mullvad-tray-4.svg │ │ ├── mullvad-tray-5.svg │ │ ├── mullvad-tray-6.svg │ │ ├── mullvad-tray-7.svg │ │ ├── mullvad-tray-8.svg │ │ ├── mullvad-tray-9.svg │ │ ├── mumble-indicator.svg │ │ ├── museeks-tray.svg │ │ ├── museeq-offline.svg │ │ ├── museeq-panel.svg │ │ ├── mynotes-tray.svg │ │ ├── network-cellular-3g.svg │ │ ├── network-cellular-4g.svg │ │ ├── network-cellular-acquiring-symbolic.svg │ │ ├── network-cellular-acquiring.svg │ │ ├── network-cellular-cdma-1x.svg │ │ ├── network-cellular-connected-symbolic.svg │ │ ├── network-cellular-connected.svg │ │ ├── network-cellular-edge.svg │ │ ├── network-cellular-evdo.svg │ │ ├── network-cellular-gprs.svg │ │ ├── network-cellular-hspa.svg │ │ ├── network-cellular-no-route-symbolic.svg │ │ ├── network-cellular-no-route.svg │ │ ├── network-cellular-offline-symbolic.svg │ │ ├── network-cellular-offline.svg │ │ ├── network-cellular-secure-signal-excellent.svg │ │ ├── network-cellular-secure-signal-good.svg │ │ ├── network-cellular-secure-signal-low.svg │ │ ├── network-cellular-secure-signal-none.svg │ │ ├── network-cellular-secure-signal-ok.svg │ │ ├── network-cellular-secure-signal-weak.svg │ │ ├── network-cellular-signal-acquiring.svg │ │ ├── network-cellular-signal-excellent-secure-symbolic.svg │ │ ├── network-cellular-signal-excellent-symbolic.svg │ │ ├── network-cellular-signal-excellent.svg │ │ ├── network-cellular-signal-good-secure-symbolic.svg │ │ ├── network-cellular-signal-good-symbolic.svg │ │ ├── network-cellular-signal-good.svg │ │ ├── network-cellular-signal-low.svg │ │ ├── network-cellular-signal-none-secure-symbolic.svg │ │ ├── network-cellular-signal-none-symbolic.svg │ │ ├── network-cellular-signal-none.svg │ │ ├── network-cellular-signal-ok-secure-symbolic.svg │ │ ├── network-cellular-signal-ok-symbolic.svg │ │ ├── network-cellular-signal-ok.svg │ │ ├── network-cellular-signal-weak-secure-symbolic.svg │ │ ├── network-cellular-signal-weak-symbolic.svg │ │ ├── network-cellular-signal-weak.svg │ │ ├── network-cellular-umts.svg │ │ ├── network-disconnected.svg │ │ ├── network-error.svg │ │ ├── network-idle.svg │ │ ├── network-offline-symbolic.svg │ │ ├── network-offline.svg │ │ ├── network-receive.svg │ │ ├── network-transmit-receive.svg │ │ ├── network-transmit.svg │ │ ├── network-vpn-acquiring.svg │ │ ├── network-vpn-lock-symbolic.svg │ │ ├── network-vpn-symbolic.svg │ │ ├── network-vpn.svg │ │ ├── network-wired-acquiring-symbolic.svg │ │ ├── network-wired-acquiring.svg │ │ ├── network-wired-disconnected-symbolic.svg │ │ ├── network-wired-no-route.svg │ │ ├── network-wired-offline-symbolic.svg │ │ ├── network-wired-offline.svg │ │ ├── network-wired-secure-symbolic.svg │ │ ├── network-wired-secure.svg │ │ ├── network-wired-symbolic.svg │ │ ├── network-wired.svg │ │ ├── network-wireless-acquiring.svg │ │ ├── network-wireless-connected-00.svg │ │ ├── network-wireless-connected-100.svg │ │ ├── network-wireless-connected-25.svg │ │ ├── network-wireless-connected-50.svg │ │ ├── network-wireless-connected-75.svg │ │ ├── network-wireless-connected.svg │ │ ├── network-wireless-disconnected.svg │ │ ├── network-wireless-encrypted.svg │ │ ├── network-wireless-hotspot.svg │ │ ├── network-wireless-no-route-symbolic.svg │ │ ├── network-wireless-no-route.svg │ │ ├── network-wireless-offline-symbolic.svg │ │ ├── network-wireless-offline.svg │ │ ├── network-wireless-secure-signal-excellent.svg │ │ ├── network-wireless-secure-signal-good.svg │ │ ├── network-wireless-secure-signal-low.svg │ │ ├── network-wireless-secure-signal-none.svg │ │ ├── network-wireless-secure-signal-ok.svg │ │ ├── network-wireless-signal-excellent-secure-symbolic.svg │ │ ├── network-wireless-signal-excellent-symbolic.svg │ │ ├── network-wireless-signal-excellent.svg │ │ ├── network-wireless-signal-good-secure-symbolic.svg │ │ ├── network-wireless-signal-good-symbolic.svg │ │ ├── network-wireless-signal-good.svg │ │ ├── network-wireless-signal-low.svg │ │ ├── network-wireless-signal-none-symbolic.svg │ │ ├── network-wireless-signal-none.svg │ │ ├── network-wireless-signal-ok-secure-symbolic.svg │ │ ├── network-wireless-signal-ok-symbolic.svg │ │ ├── network-wireless-signal-ok.svg │ │ ├── network-wireless-signal-weak-secure-symbolic.svg │ │ ├── network-wireless-signal-weak-symbolic.svg │ │ ├── network-wireless-signal-weak.svg │ │ ├── new-messages-red.svg │ │ ├── night-light-disabled-10-symbolic.svg │ │ ├── night-light-disabled-20-symbolic.svg │ │ ├── night-light-disabled-30-symbolic.svg │ │ ├── night-light-disabled-40-symbolic.svg │ │ ├── night-light-disabled-50-symbolic.svg │ │ ├── night-light-disabled-60-symbolic.svg │ │ ├── night-light-disabled-70-symbolic.svg │ │ ├── night-light-disabled-80-symbolic.svg │ │ ├── night-light-disabled-90-symbolic.svg │ │ ├── night-light-disabled-symbolic.svg │ │ ├── night-light-symbolic.svg │ │ ├── nitroshare-indicator.svg │ │ ├── nixnote2-tray.svg │ │ ├── nm-adhoc.svg │ │ ├── nm-device-wired-autoip.svg │ │ ├── nm-device-wired-secure.svg │ │ ├── nm-device-wired-secureoffline.svg │ │ ├── nm-device-wired.svg │ │ ├── nm-device-wireless.svg │ │ ├── nm-device-wwan.svg │ │ ├── nm-mb-roam.svg │ │ ├── nm-no-connection.svg │ │ ├── nm-secure-lock.svg │ │ ├── nm-signal-0-secure.svg │ │ ├── nm-signal-0.svg │ │ ├── nm-signal-00-secure.svg │ │ ├── nm-signal-00.svg │ │ ├── nm-signal-100-secure.svg │ │ ├── nm-signal-100.svg │ │ ├── nm-signal-25-secure.svg │ │ ├── nm-signal-25.svg │ │ ├── nm-signal-50-secure.svg │ │ ├── nm-signal-50.svg │ │ ├── nm-signal-75-secure.svg │ │ ├── nm-signal-75.svg │ │ ├── nm-tech-3g.svg │ │ ├── nm-tech-4g.svg │ │ ├── nm-tech-cdma-1x.svg │ │ ├── nm-tech-edge.svg │ │ ├── nm-tech-evdo.svg │ │ ├── nm-tech-gprs.svg │ │ ├── nm-tech-hspa.svg │ │ ├── nm-tech-lte.svg │ │ ├── nm-tech-umts.svg │ │ ├── nm-vpn-active-lock.svg │ │ ├── nm-vpn-lock.svg │ │ ├── nm-vpn-standalone-lock.svg │ │ ├── nm-wwan-tower.svg │ │ ├── no-signal.svg │ │ ├── nomachine-disabled.svg │ │ ├── nomachine-indicator.svg │ │ ├── notes-panel.svg │ │ ├── notification-disabled-10-symbolic.svg │ │ ├── notification-disabled-20-symbolic.svg │ │ ├── notification-disabled-30-symbolic.svg │ │ ├── notification-disabled-40-symbolic.svg │ │ ├── notification-disabled-50-symbolic.svg │ │ ├── notification-disabled-60-symbolic.svg │ │ ├── notification-disabled-70-symbolic.svg │ │ ├── notification-disabled-80-symbolic.svg │ │ ├── notification-disabled-90-symbolic.svg │ │ ├── notification-disabled-symbolic.svg │ │ ├── notification-display-brightness.svg │ │ ├── notification-new-10-symbolic.svg │ │ ├── notification-new-20-symbolic.svg │ │ ├── notification-new-30-symbolic.svg │ │ ├── notification-new-40-symbolic.svg │ │ ├── notification-new-50-symbolic.svg │ │ ├── notification-new-60-symbolic.svg │ │ ├── notification-new-70-symbolic.svg │ │ ├── notification-new-80-symbolic.svg │ │ ├── notification-new-90-symbolic.svg │ │ ├── notification-new-symbolic.svg │ │ ├── notification-symbolic.svg │ │ ├── nozbe-tray.svg │ │ ├── num-lock-off.svg │ │ ├── num-lock-on.svg │ │ ├── numlock-off.svg │ │ ├── numlock-on.svg │ │ ├── nutstore-offline-panel.svg │ │ ├── nutstore-oops-panel.svg │ │ ├── nutstore-panel.svg │ │ ├── nutstore-paused-panel.svg │ │ ├── nutstore-synchronized-panel.svg │ │ ├── nutstore-synchronizing-panel.svg │ │ ├── nylas-tray-empty.svg │ │ ├── nylas-tray-full-newitems.svg │ │ ├── nylas-tray-full.svg │ │ ├── obs-tray-active.svg │ │ ├── obs-tray.svg │ │ ├── octopi-error.svg │ │ ├── octopi-indicator.svg │ │ ├── octopi-info.svg │ │ ├── octopi-ok.svg │ │ ├── odrive-tray-grey.svg │ │ ├── odrive-tray-sync.svg │ │ ├── odrive-tray.svg │ │ ├── onboard-mono.svg │ │ ├── onboard-panel.svg │ │ ├── openbazaar-system-tray.svg │ │ ├── opensnitch-tray-alert.svg │ │ ├── opensnitch-tray-off.svg │ │ ├── opensnitch-tray-pause.svg │ │ ├── opensnitch-tray-red.svg │ │ ├── opensnitch-tray.svg │ │ ├── optimus-indicator-intel.svg │ │ ├── optimus-indicator-nvidia.svg │ │ ├── optimus-tray-intel-symbolic.svg │ │ ├── optimus-tray-intel.svg │ │ ├── optimus-tray-nvidia-symbolic.svg │ │ ├── optimus-tray-nvidia.svg │ │ ├── org.nicotine_plus.Nicotine-away.svg │ │ ├── org.nicotine_plus.Nicotine-connect.svg │ │ ├── org.nicotine_plus.Nicotine-disconnect.svg │ │ ├── org.nicotine_plus.Nicotine-msg.svg │ │ ├── org.sparkleshare.SparkleShare-syncing-down.svg │ │ ├── org.sparkleshare.SparkleShare-syncing-error.svg │ │ ├── org.sparkleshare.SparkleShare-syncing-up.svg │ │ ├── org.sparkleshare.SparkleShare-syncing.svg │ │ ├── overgrive-app-ind-con-1.svg │ │ ├── overgrive-app-ind-con-2.svg │ │ ├── overgrive-app-ind-con-3.svg │ │ ├── overgrive-app-ind-sleep.svg │ │ ├── overgrive-app-ind.svg │ │ ├── pamac-tray-no-update.svg │ │ ├── pamac-tray-update.svg │ │ ├── pcloud-offline.svg │ │ ├── pcloud-ok.svg │ │ ├── pcloud-pause.svg │ │ ├── pcloud-sync.svg │ │ ├── pcloud-warning.svg │ │ ├── persepolis-tray.svg │ │ ├── phone-battery-caution.svg │ │ ├── phone-battery-empty.svg │ │ ├── phone-battery-full.svg │ │ ├── phone-battery-good.svg │ │ ├── phone-battery-low.svg │ │ ├── phone-battery-medium.svg │ │ ├── pia_tray_connected.svg │ │ ├── pia_tray_connecting.svg │ │ ├── pia_tray_disconnected.svg │ │ ├── pidgin-tray-available.svg │ │ ├── pidgin-tray-away.svg │ │ ├── pidgin-tray-busy.svg │ │ ├── pidgin-tray-connect.svg │ │ ├── pidgin-tray-invisible.svg │ │ ├── pidgin-tray-offline.svg │ │ ├── pidgin-tray-pending.svg │ │ ├── pidgin-tray-xa.svg │ │ ├── pithos-tray-icon.svg │ │ ├── pithos-tray-plugin.svg │ │ ├── pocket-casts-tray.svg │ │ ├── pomodoneapp-break.svg │ │ ├── pomodoneapp-indicator.svg │ │ ├── pomodoneapp-paused.svg │ │ ├── pomodoneapp-started.svg │ │ ├── pomodoro-indicator-light-00.svg │ │ ├── pomodoro-indicator-light-01.svg │ │ ├── pomodoro-indicator-light-02.svg │ │ ├── pomodoro-indicator-light-03.svg │ │ ├── pomodoro-indicator-light-04.svg │ │ ├── pomodoro-indicator-light-05.svg │ │ ├── pomodoro-indicator-light-06.svg │ │ ├── pomodoro-indicator-light-07.svg │ │ ├── pomodoro-indicator-light-08.svg │ │ ├── pomodoro-indicator-light-09.svg │ │ ├── pomodoro-indicator-light-10.svg │ │ ├── pomodoro-indicator-light-11.svg │ │ ├── pomodoro-indicator-light-12.svg │ │ ├── pomodoro-indicator-light-13.svg │ │ ├── pomodoro-indicator-light-14.svg │ │ ├── pomodoro-indicator-light-15.svg │ │ ├── pomodoro-indicator-light-16.svg │ │ ├── pomodoro-indicator-light-17.svg │ │ ├── pomodoro-indicator-light-18.svg │ │ ├── pomodoro-indicator-light-19.svg │ │ ├── pomodoro-indicator-light-20.svg │ │ ├── pomodoro-indicator-light-21.svg │ │ ├── pomodoro-indicator-light-22.svg │ │ ├── pomodoro-indicator-light-23.svg │ │ ├── pomodoro-indicator-light-24.svg │ │ ├── pomodoro-indicator-light-25.svg │ │ ├── pomodoro-indicator-light-26.svg │ │ ├── pomodoro-indicator-light-27.svg │ │ ├── pomodoro-indicator-light-28.svg │ │ ├── pomodoro-indicator-light-29.svg │ │ ├── pomodoro-indicator-light-30.svg │ │ ├── pomodoro-indicator-light-31.svg │ │ ├── pomodoro-indicator-light-32.svg │ │ ├── pomodoro-indicator-light-33.svg │ │ ├── pomodoro-indicator-light-34.svg │ │ ├── pomodoro-indicator-light-35.svg │ │ ├── pomodoro-indicator-light-36.svg │ │ ├── pomodoro-indicator-light-37.svg │ │ ├── pomodoro-indicator-light-38.svg │ │ ├── pomodoro-indicator-light-39.svg │ │ ├── pomodoro-indicator-light-40.svg │ │ ├── pomodoro-indicator-light-41.svg │ │ ├── pomodoro-indicator-light-42.svg │ │ ├── pomodoro-indicator-light-43.svg │ │ ├── pomodoro-indicator-light-44.svg │ │ ├── pomodoro-indicator-light-45.svg │ │ ├── pomodoro-indicator-light-46.svg │ │ ├── pomodoro-indicator-light-47.svg │ │ ├── pomodoro-indicator-light-48.svg │ │ ├── pomodoro-indicator-light-49.svg │ │ ├── pomodoro-indicator-light-50.svg │ │ ├── pomodoro-indicator-light-51.svg │ │ ├── pomodoro-indicator-light-52.svg │ │ ├── pomodoro-indicator-light-53.svg │ │ ├── pomodoro-indicator-light-54.svg │ │ ├── pomodoro-indicator-light-55.svg │ │ ├── pomodoro-indicator-light-56.svg │ │ ├── pomodoro-indicator-light-57.svg │ │ ├── pomodoro-indicator-light-58.svg │ │ ├── pomodoro-indicator-light-59.svg │ │ ├── pomodoro-indicator-light-60.svg │ │ ├── pomodoro-indicator-light-61.svg │ │ ├── pomodoro-start-light.svg │ │ ├── pomodoro-stop-light.svg │ │ ├── popcorntime-tray.svg │ │ ├── pragha-panel.svg │ │ ├── preferences-desktop-accessibility-panel.svg │ │ ├── preferences-system-bluetooth-active.svg │ │ ├── preferences-system-bluetooth-inactive.svg │ │ ├── premid-tray.svg │ │ ├── prime-hybrid.svg │ │ ├── prime-intel.svg │ │ ├── prime-nvidia.svg │ │ ├── printer-printing-symbolic.svg │ │ ├── process-syncing-down.svg │ │ ├── process-syncing-error.svg │ │ ├── process-syncing-idle.svg │ │ ├── process-syncing-up.svg │ │ ├── process-syncing.svg │ │ ├── process-working-symbolic.svg │ │ ├── protonmail-indicator.svg │ │ ├── protonmail-notification.svg │ │ ├── protonvpn-tray.svg │ │ ├── psensor_hot.svg │ │ ├── psensor_normal.svg │ │ ├── pushbullet-indicator-disabled.svg │ │ ├── pushbullet-indicator-light.svg │ │ ├── pushbullet-indicator-paused.svg │ │ ├── pushbullet-indicator-sync0-light.svg │ │ ├── pushbullet-indicator-sync1-light.svg │ │ ├── pushbullet-indicator-sync2-light.svg │ │ ├── pushbullet-indicator-sync3-light.svg │ │ ├── pushbullet-indicator-transparent.svg │ │ ├── pushbullet-indicator.svg │ │ ├── qalculate-tray.svg │ │ ├── qbittorrent-panel.svg │ │ ├── qbittorrent-tray-dark.svg │ │ ├── qbittorrent-tray-light.svg │ │ ├── qbittorrent-tray.svg │ │ ├── qelectrotech-indicator.svg │ │ ├── qjoypad-tray.svg │ │ ├── qnapi-panel.svg │ │ ├── qomp-pause-panel.svg │ │ ├── qomp-play-panel.svg │ │ ├── qomp-stop-panel.svg │ │ ├── qtox-away.svg │ │ ├── qtox-busy.svg │ │ ├── qtox-event.svg │ │ ├── qtox-invisible.svg │ │ ├── qtox-offline.svg │ │ ├── qtox-online.svg │ │ ├── qtpass-tray.svg │ │ ├── quota.svg │ │ ├── radiotray-ng-off.svg │ │ ├── radiotray-ng-on.svg │ │ ├── radiotray_connecting.svg │ │ ├── radiotray_off.svg │ │ ├── radiotray_on.svg │ │ ├── rambox-indicator.svg │ │ ├── rambox-notification.svg │ │ ├── rclonetray-connected-tray.svg │ │ ├── rclonetray-tray.svg │ │ ├── receiving-bad-signal-lock.svg │ │ ├── receiving-bad-signal.svg │ │ ├── receiving-good-signal-lock.svg │ │ ├── receiving-good-signal.svg │ │ ├── receiving-high-signal-lock.svg │ │ ├── receiving-high-signal.svg │ │ ├── receiving-low-signal-lock.svg │ │ ├── receiving-low-signal.svg │ │ ├── record-desktop-indicator-recording.svg │ │ ├── record-desktop-indicator.svg │ │ ├── redshift-status-off.svg │ │ ├── redshift-status-on.svg │ │ ├── remmina-panel.svg │ │ ├── remote-folder-sync-down.svg │ │ ├── remote-folder-sync-up.svg │ │ ├── remote-folder-sync.svg │ │ ├── rescuetime-indicator.svg │ │ ├── rescuetime-offline.svg │ │ ├── rhythmbox-indicator.svg │ │ ├── rhythmbox-notplaying.svg │ │ ├── rhythmbox-panel.svg │ │ ├── rhythmbox-playing.svg │ │ ├── riot-tray.svg │ │ ├── rocketchat-tray-1.svg │ │ ├── rocketchat-tray-2.svg │ │ ├── rocketchat-tray-3.svg │ │ ├── rocketchat-tray-4.svg │ │ ├── rocketchat-tray-5.svg │ │ ├── rocketchat-tray-6.svg │ │ ├── rocketchat-tray-7.svg │ │ ├── rocketchat-tray-8.svg │ │ ├── rocketchat-tray-9-plus.svg │ │ ├── rocketchat-tray-9.svg │ │ ├── rocketchat-tray-alert.svg │ │ ├── rocketchat-tray-dot.svg │ │ ├── rocketchat-tray.svg │ │ ├── rsibreak0.svg │ │ ├── rsibreak1.svg │ │ ├── rsibreak2.svg │ │ ├── rsibreak3.svg │ │ ├── rsibreak4.svg │ │ ├── rsibreakx.svg │ │ ├── rto-proxy-tray.svg │ │ ├── safeeyes_disabled.svg │ │ ├── safeeyes_enabled.svg │ │ ├── scc-alive.svg │ │ ├── scc-dead.svg │ │ ├── scc-error.svg │ │ ├── scc-unknown.svg │ │ ├── screencloud-idle.svg │ │ ├── screencloud-uploading.svg │ │ ├── scrllock-off.svg │ │ ├── scrllock-on.svg │ │ ├── scroll-lock-off.svg │ │ ├── scroll-lock-on.svg │ │ ├── scudcloud-attention-1.svg │ │ ├── scudcloud-attention-2.svg │ │ ├── scudcloud-attention-3.svg │ │ ├── scudcloud-attention-4.svg │ │ ├── scudcloud-attention-5.svg │ │ ├── scudcloud-attention-6.svg │ │ ├── scudcloud-attention-7.svg │ │ ├── scudcloud-attention-8.svg │ │ ├── scudcloud-attention-9.svg │ │ ├── scudcloud-attention.svg │ │ ├── scudcloud.svg │ │ ├── seafile-status-error.svg │ │ ├── seafile-status-notification.svg │ │ ├── seafile-status-offline.svg │ │ ├── seafile-status-ok.svg │ │ ├── seafile-status-paused.svg │ │ ├── seafile-status-syncing-1.svg │ │ ├── seafile-status-syncing-2.svg │ │ ├── security-high.svg │ │ ├── security-low.svg │ │ ├── security-medium.svg │ │ ├── sendanywhere-tray.svg │ │ ├── sflphone-indicator.svg │ │ ├── sflphone-notification.svg │ │ ├── sflphone-offline.svg │ │ ├── shutter-panel.svg │ │ ├── si-syncthing-0.svg │ │ ├── si-syncthing-1.svg │ │ ├── si-syncthing-10.svg │ │ ├── si-syncthing-11.svg │ │ ├── si-syncthing-2.svg │ │ ├── si-syncthing-3.svg │ │ ├── si-syncthing-4.svg │ │ ├── si-syncthing-5.svg │ │ ├── si-syncthing-6.svg │ │ ├── si-syncthing-7.svg │ │ ├── si-syncthing-8.svg │ │ ├── si-syncthing-9.svg │ │ ├── si-syncthing-idle.svg │ │ ├── si-syncthing-unknown.svg │ │ ├── signal-100.svg │ │ ├── signal-25.svg │ │ ├── signal-50.svg │ │ ├── signal-75.svg │ │ ├── signal-tray.svg │ │ ├── signal-unread-1.svg │ │ ├── signal-unread-10.svg │ │ ├── signal-unread-2.svg │ │ ├── signal-unread-3.svg │ │ ├── signal-unread-4.svg │ │ ├── signal-unread-5.svg │ │ ├── signal-unread-6.svg │ │ ├── signal-unread-7.svg │ │ ├── signal-unread-8.svg │ │ ├── signal-unread-9.svg │ │ ├── simplescreenrecorder-error.svg │ │ ├── simplescreenrecorder-idle.svg │ │ ├── simplescreenrecorder-panel.svg │ │ ├── simplescreenrecorder-paused.svg │ │ ├── simplescreenrecorder-recording.svg │ │ ├── sirikali-panel.svg │ │ ├── skype-indicator.svg │ │ ├── skype-status-away-notification.svg │ │ ├── skype-status-away.svg │ │ ├── skype-status-connected-notification.svg │ │ ├── skype-status-connected.svg │ │ ├── skype-status-connecting-0.svg │ │ ├── skype-status-connecting-1.svg │ │ ├── skype-status-connecting-2.svg │ │ ├── skype-status-connecting-3.svg │ │ ├── skype-status-disturb-notification.svg │ │ ├── skype-status-disturb.svg │ │ ├── skype-status-hidden-notification.svg │ │ ├── skype-status-hidden.svg │ │ ├── skype-status-invisible-notification.svg │ │ ├── skype-status-invisible.svg │ │ ├── skype-status-offline-notification.svg │ │ ├── skype-status-offline.svg │ │ ├── slack-indicator-highlight.svg │ │ ├── slack-indicator-unread.svg │ │ ├── slack-indicator.svg │ │ ├── smartcode-stremio-tray.svg │ │ ├── smartphone-connected.svg │ │ ├── smartphone-disconnected.svg │ │ ├── smartphone-trusted.svg │ │ ├── smartphoneattention.svg │ │ ├── smartphoneconnected.svg │ │ ├── smartphonedisconnected.svg │ │ ├── smartphonetrusted.svg │ │ ├── smplayer-panel.svg │ │ ├── software-update-available.svg │ │ ├── software-update-urgent.svg │ │ ├── solaar-attention.svg │ │ ├── solaar-indicator.svg │ │ ├── spotify-indicator.svg │ │ ├── start-here-lxqt.svg │ │ ├── start-here-manjaro.svg │ │ ├── start-here-symbolic.svg │ │ ├── start-here.svg │ │ ├── state-download.svg │ │ ├── state-error.svg │ │ ├── state-information.svg │ │ ├── state-offline.svg │ │ ├── state-ok.svg │ │ ├── state-pause.svg │ │ ├── state-sync.svg │ │ ├── state-warning.svg │ │ ├── state_paused.svg │ │ ├── state_running.svg │ │ ├── state_shutoff.svg │ │ ├── status_lock.svg │ │ ├── steadyflow-alert-panel.svg │ │ ├── steadyflow-panel.svg │ │ ├── steam_tray_mono.svg │ │ ├── stock_dialog-error.svg │ │ ├── stock_dialog-info.svg │ │ ├── stock_dialog-question.svg │ │ ├── stock_dialog-warning.svg │ │ ├── stock_lock.svg │ │ ├── stock_weather-cloudy.svg │ │ ├── stock_weather-few-clouds.svg │ │ ├── stock_weather-fog.svg │ │ ├── stock_weather-night-clear.svg │ │ ├── stock_weather-night-few-clouds.svg │ │ ├── stock_weather-showers.svg │ │ ├── stock_weather-snow.svg │ │ ├── stock_weather-storm.svg │ │ ├── strawberry-panel-grey.svg │ │ ├── strawberry-panel.svg │ │ ├── superproductivity-tray-0.svg │ │ ├── superproductivity-tray-1.svg │ │ ├── superproductivity-tray-10.svg │ │ ├── superproductivity-tray-11.svg │ │ ├── superproductivity-tray-12.svg │ │ ├── superproductivity-tray-13.svg │ │ ├── superproductivity-tray-14.svg │ │ ├── superproductivity-tray-15.svg │ │ ├── superproductivity-tray-2.svg │ │ ├── superproductivity-tray-3.svg │ │ ├── superproductivity-tray-4.svg │ │ ├── superproductivity-tray-5.svg │ │ ├── superproductivity-tray-6.svg │ │ ├── superproductivity-tray-7.svg │ │ ├── superproductivity-tray-8.svg │ │ ├── superproductivity-tray-9.svg │ │ ├── superproductivity-tray-run.svg │ │ ├── superproductivity-tray.svg │ │ ├── synapse-panel.svg │ │ ├── synergy-panel-ok.svg │ │ ├── synergy-panel.svg │ │ ├── syspeek-0.svg │ │ ├── syspeek-10.svg │ │ ├── syspeek-100.svg │ │ ├── syspeek-20.svg │ │ ├── syspeek-30.svg │ │ ├── syspeek-40.svg │ │ ├── syspeek-50.svg │ │ ├── syspeek-60.svg │ │ ├── syspeek-70.svg │ │ ├── syspeek-80.svg │ │ ├── syspeek-90.svg │ │ ├── system-devices-information.svg │ │ ├── system-devices-panel-alert.svg │ │ ├── system-devices-panel-information.svg │ │ ├── system-devices-panel.svg │ │ ├── system-file-manager-panel.svg │ │ ├── system-restart-panel.svg │ │ ├── system-search-symbolic.svg │ │ ├── system-shutdown-panel-restart.svg │ │ ├── system-shutdown-panel.svg │ │ ├── system-shutdown-symbolic.svg │ │ ├── system-software-update-panel.svg │ │ ├── tablet-connected.svg │ │ ├── tablet-disconnected.svg │ │ ├── tabletattention.svg │ │ ├── tabletconnected.svg │ │ ├── tabletdisconnected.svg │ │ ├── tablettrusted.svg │ │ ├── tartube-check-tray.svg │ │ ├── tartube-download-tray.svg │ │ ├── tartube-info-tray.svg │ │ ├── tartube-refresh-tray.svg │ │ ├── tartube-tidy-tray.svg │ │ ├── tartube-tray.svg │ │ ├── tartube-update-tray.svg │ │ ├── task-attempt.svg │ │ ├── task-attention.svg │ │ ├── teams-for-linux-tray.svg │ │ ├── teams-tray-activity.svg │ │ ├── teams-tray-available.svg │ │ ├── teams-tray-away.svg │ │ ├── teams-tray-busy.svg │ │ ├── teams-tray-dnd.svg │ │ ├── teams-tray-error.svg │ │ ├── teams-tray-noactivity.svg │ │ ├── teams-tray-offline.svg │ │ ├── teams-tray-offshift.svg │ │ ├── teams-tray-onshift.svg │ │ ├── teamviewer-indicator-away.svg │ │ ├── teamviewer-indicator-busy.svg │ │ ├── teamviewer-indicator-connected.svg │ │ ├── teamviewer-indicator-error.svg │ │ ├── teamviewer-indicator-offline.svg │ │ ├── teamviewer-indicator.svg │ │ ├── telegram-attention-panel.svg │ │ ├── telegram-mute-panel.svg │ │ ├── telegram-panel.svg │ │ ├── thunderbird-attention-panel.svg │ │ ├── thunderbird-panel.svg │ │ ├── timekpr-panel.svg │ │ ├── todo-indicator.svg │ │ ├── todoist-tray.svg │ │ ├── tomahawk-indicator.svg │ │ ├── tomboy-panel.svg │ │ ├── touchpad-indicator-light-disabled.svg │ │ ├── touchpad-indicator-light-enabled.svg │ │ ├── touchpad-indicator-light.svg │ │ ├── transmission-panel.svg │ │ ├── transmission-tray-icon.svg │ │ ├── transmitting-bad-signal-lock.svg │ │ ├── transmitting-bad-signal.svg │ │ ├── transmitting-good-signal-lock.svg │ │ ├── transmitting-good-signal.svg │ │ ├── transmitting-high-signal-lock.svg │ │ ├── transmitting-high-signal.svg │ │ ├── transmitting-low-signal-lock.svg │ │ ├── transmitting-low-signal.svg │ │ ├── tray-message.svg │ │ ├── tray-new-im.svg │ │ ├── tray-offline.svg │ │ ├── tray-online.svg │ │ ├── trimage-indicator.svg │ │ ├── trophy-bronze.svg │ │ ├── trophy-gold.svg │ │ ├── trophy-silver.svg │ │ ├── tusk-indicator.svg │ │ ├── tutanota-desktop-tray.svg │ │ ├── tvconnected.svg │ │ ├── tvdisconnected.svg │ │ ├── tvtrusted.svg │ │ ├── tweet-tray-panel.svg │ │ ├── twitch-indicator.svg │ │ ├── ubuntuone-client-error.svg │ │ ├── ubuntuone-client-idle.svg │ │ ├── ubuntuone-client-offline.svg │ │ ├── ubuntuone-client-paused.svg │ │ ├── ubuntuone-client-updating.svg │ │ ├── uget-tray-default.svg │ │ ├── uget-tray-downloading.svg │ │ ├── uget-tray-error.svg │ │ ├── ulauncher-indicator.svg │ │ ├── update-high.svg │ │ ├── update-low.svg │ │ ├── update-medium.svg │ │ ├── update-none.svg │ │ ├── updates-notifier-inactive.svg │ │ ├── updates-notifier.svg │ │ ├── user-available-panel.svg │ │ ├── user-available.svg │ │ ├── user-away-panel.svg │ │ ├── user-away.svg │ │ ├── user-busy-panel.svg │ │ ├── user-busy.svg │ │ ├── user-idle-panel.svg │ │ ├── user-idle.svg │ │ ├── user-invisible-panel.svg │ │ ├── user-invisible.svg │ │ ├── user-offline-panel.svg │ │ ├── user-offline.svg │ │ ├── user-online.svg │ │ ├── user-status-new.svg │ │ ├── user-status-pending.svg │ │ ├── utools-tray.svg │ │ ├── variety-indicator.svg │ │ ├── veracrypt-panel.svg │ │ ├── viber-normal.svg │ │ ├── viber-notification.svg │ │ ├── virt-manager-panel.svg │ │ ├── vivaldi-tray.svg │ │ ├── vk-tray.svg │ │ ├── vlc-panel.svg │ │ ├── volume-level-high-panel.svg │ │ ├── volume-level-high.svg │ │ ├── volume-level-low-panel.svg │ │ ├── volume-level-low.svg │ │ ├── volume-level-medium-panel.svg │ │ ├── volume-level-medium.svg │ │ ├── volume-level-muted-panel.svg │ │ ├── volume-level-muted.svg │ │ ├── volume-level-none-panel.svg │ │ ├── volume-level-none.svg │ │ ├── vorta-tray-active.svg │ │ ├── vorta-tray.svg │ │ ├── weather-clear-night-000.svg │ │ ├── weather-clear-night-010.svg │ │ ├── weather-clear-night-020.svg │ │ ├── weather-clear-night-030.svg │ │ ├── weather-clear-night-040.svg │ │ ├── weather-clear-night-050.svg │ │ ├── weather-clear-night-060.svg │ │ ├── weather-clear-night-070.svg │ │ ├── weather-clear-night-080.svg │ │ ├── weather-clear-night-090.svg │ │ ├── weather-clear-night-100.svg │ │ ├── weather-clear-night-110.svg │ │ ├── weather-clear-night-120.svg │ │ ├── weather-clear-night-130.svg │ │ ├── weather-clear-night-140.svg │ │ ├── weather-clear-night-150.svg │ │ ├── weather-clear-night-160.svg │ │ ├── weather-clear-night-170.svg │ │ ├── weather-clear-night-180.svg │ │ ├── weather-clear-night-190.svg │ │ ├── weather-clear-night-200.svg │ │ ├── weather-clear-night-210.svg │ │ ├── weather-clear-night-220.svg │ │ ├── weather-clear-night-230.svg │ │ ├── weather-clear-night-240.svg │ │ ├── weather-clear-night-250.svg │ │ ├── weather-clear-night-260.svg │ │ ├── weather-clear-night-270.svg │ │ ├── weather-clear-night-280.svg │ │ ├── weather-clear-night-290.svg │ │ ├── weather-clear-night-300.svg │ │ ├── weather-clear-night-310.svg │ │ ├── weather-clear-night-320.svg │ │ ├── weather-clear-night-330.svg │ │ ├── weather-clear-night-340.svg │ │ ├── weather-clear-night-350.svg │ │ ├── weather-clear-night.svg │ │ ├── weather-clear.svg │ │ ├── weather-clouds-night.svg │ │ ├── weather-clouds.svg │ │ ├── weather-few-clouds-night-000.svg │ │ ├── weather-few-clouds-night-010.svg │ │ ├── weather-few-clouds-night-020.svg │ │ ├── weather-few-clouds-night-030.svg │ │ ├── weather-few-clouds-night-040.svg │ │ ├── weather-few-clouds-night-050.svg │ │ ├── weather-few-clouds-night-060.svg │ │ ├── weather-few-clouds-night-070.svg │ │ ├── weather-few-clouds-night-080.svg │ │ ├── weather-few-clouds-night-090.svg │ │ ├── weather-few-clouds-night-100.svg │ │ ├── weather-few-clouds-night-110.svg │ │ ├── weather-few-clouds-night-120.svg │ │ ├── weather-few-clouds-night-130.svg │ │ ├── weather-few-clouds-night-140.svg │ │ ├── weather-few-clouds-night-150.svg │ │ ├── weather-few-clouds-night-160.svg │ │ ├── weather-few-clouds-night-170.svg │ │ ├── weather-few-clouds-night-180.svg │ │ ├── weather-few-clouds-night-190.svg │ │ ├── weather-few-clouds-night-200.svg │ │ ├── weather-few-clouds-night-210.svg │ │ ├── weather-few-clouds-night-220.svg │ │ ├── weather-few-clouds-night-230.svg │ │ ├── weather-few-clouds-night-240.svg │ │ ├── weather-few-clouds-night-250.svg │ │ ├── weather-few-clouds-night-260.svg │ │ ├── weather-few-clouds-night-270.svg │ │ ├── weather-few-clouds-night-280.svg │ │ ├── weather-few-clouds-night-290.svg │ │ ├── weather-few-clouds-night-300.svg │ │ ├── weather-few-clouds-night-310.svg │ │ ├── weather-few-clouds-night-320.svg │ │ ├── weather-few-clouds-night-330.svg │ │ ├── weather-few-clouds-night-340.svg │ │ ├── weather-few-clouds-night-350.svg │ │ ├── weather-few-clouds-night.svg │ │ ├── weather-few-clouds.svg │ │ ├── weather-fog.svg │ │ ├── weather-freezing-rain.svg │ │ ├── weather-hail.svg │ │ ├── weather-many-clouds.svg │ │ ├── weather-mist.svg │ │ ├── weather-none-available.svg │ │ ├── weather-overcast.svg │ │ ├── weather-severe-alert.svg │ │ ├── weather-showers-day.svg │ │ ├── weather-showers-night.svg │ │ ├── weather-showers-scattered-day.svg │ │ ├── weather-showers-scattered-night.svg │ │ ├── weather-showers-scattered.svg │ │ ├── weather-showers.svg │ │ ├── weather-snow-day.svg │ │ ├── weather-snow-night.svg │ │ ├── weather-snow-rain.svg │ │ ├── weather-snow-scattered-day.svg │ │ ├── weather-snow-scattered-night.svg │ │ ├── weather-snow-scattered.svg │ │ ├── weather-snow.svg │ │ ├── weather-storm-day.svg │ │ ├── weather-storm-night.svg │ │ ├── weather-storm.svg │ │ ├── weather-windy.svg │ │ ├── webtorrent-desktop-panel.svg │ │ ├── wechat-tray-unread.svg │ │ ├── wechat-tray.svg │ │ ├── whatsapp-msg.svg │ │ ├── whatsapp-tray.svg │ │ ├── whatsapp-warning-msg.svg │ │ ├── whatsapp-warning.svg │ │ ├── whatsie-tray-attention.svg │ │ ├── whatsie-tray.svg │ │ ├── whiskermenu-manjaro.svg │ │ ├── wire-tray-attention.svg │ │ ├── wire-tray.svg │ │ ├── wired.svg │ │ ├── wiznote-indicator.svg │ │ ├── workrave-indicator-quiet.svg │ │ ├── workrave-indicator-suspended.svg │ │ ├── workrave-indicator.svg │ │ ├── x-tile-panel.svg │ │ ├── xchat-panel.svg │ │ ├── xfce-newmail.svg │ │ ├── xfce-nomail.svg │ │ ├── xfce4-battery-caution-charging.svg │ │ ├── xfce4-battery-caution.svg │ │ ├── xfce4-battery-critical-charging.svg │ │ ├── xfce4-battery-critical.svg │ │ ├── xfce4-battery-full-charging.svg │ │ ├── xfce4-battery-full.svg │ │ ├── xfce4-battery-good-charging.svg │ │ ├── xfce4-battery-good.svg │ │ ├── xfce4-battery-low-charging.svg │ │ ├── xfce4-battery-low.svg │ │ ├── xfce4-battery-missing.svg │ │ ├── xfce4-battery-ok-charging.svg │ │ ├── xfce4-battery-ok.svg │ │ ├── xfce4-battery-plugin.svg │ │ ├── xfce4-fsguard-plugin-urgent.svg │ │ ├── xfce4-fsguard-plugin-warning.svg │ │ ├── xfce4-fsguard-plugin.svg │ │ ├── xfce4-mixer-muted.svg │ │ ├── xfce4-mixer-no-muted.svg │ │ ├── xfce4-mixer-no-record.svg │ │ ├── xfce4-mixer-record.svg │ │ ├── xfce4-mixer-volume-high.svg │ │ ├── xfce4-mixer-volume-low-medium.svg │ │ ├── xfce4-mixer-volume-low.svg │ │ ├── xfce4-mixer-volume-medium.svg │ │ ├── xfce4-mixer-volume-muted.svg │ │ ├── xfce4-mixer-volume-ultra-low.svg │ │ ├── xfce4-mixer-volume-very-high.svg │ │ ├── xfce4-notes-plugin.svg │ │ ├── xfce4-whiskermenu.svg │ │ ├── xfpm-ac-adapter.svg │ │ ├── xfpm-battery-000-charging.svg │ │ ├── xfpm-battery-000.svg │ │ ├── xfpm-battery-020-charging.svg │ │ ├── xfpm-battery-020.svg │ │ ├── xfpm-battery-040-charging.svg │ │ ├── xfpm-battery-040.svg │ │ ├── xfpm-battery-060-charging.svg │ │ ├── xfpm-battery-060.svg │ │ ├── xfpm-battery-080-charging.svg │ │ ├── xfpm-battery-080.svg │ │ ├── xfpm-battery-100-charging.svg │ │ ├── xfpm-battery-100.svg │ │ ├── xfpm-battery-caution-charging.svg │ │ ├── xfpm-battery-caution.svg │ │ ├── xfpm-battery-critical-charging.svg │ │ ├── xfpm-battery-critical.svg │ │ ├── xfpm-battery-empty.svg │ │ ├── xfpm-battery-full-charging.svg │ │ ├── xfpm-battery-full.svg │ │ ├── xfpm-battery-good-charging.svg │ │ ├── xfpm-battery-good.svg │ │ ├── xfpm-battery-low-charging.svg │ │ ├── xfpm-battery-low.svg │ │ ├── xfpm-battery-missing.svg │ │ ├── xfpm-battery-ok-charging.svg │ │ ├── xfpm-battery-ok.svg │ │ ├── xfpm-brightness-lcd.svg │ │ ├── xfpm-keyboard-000.svg │ │ ├── xfpm-keyboard-020.svg │ │ ├── xfpm-keyboard-030.svg │ │ ├── xfpm-keyboard-040.svg │ │ ├── xfpm-keyboard-060.svg │ │ ├── xfpm-keyboard-080.svg │ │ ├── xfpm-keyboard-100.svg │ │ ├── xfpm-mouse-000.svg │ │ ├── xfpm-mouse-020.svg │ │ ├── xfpm-mouse-030.svg │ │ ├── xfpm-mouse-040.svg │ │ ├── xfpm-mouse-060.svg │ │ ├── xfpm-mouse-080.svg │ │ ├── xfpm-mouse-100.svg │ │ ├── xfpm-phone-000.svg │ │ ├── xfpm-phone-020.svg │ │ ├── xfpm-phone-030.svg │ │ ├── xfpm-phone-040.svg │ │ ├── xfpm-phone-060.svg │ │ ├── xfpm-phone-080.svg │ │ ├── xfpm-phone-100.svg │ │ ├── xfpm-primary-000-charging.svg │ │ ├── xfpm-primary-000.svg │ │ ├── xfpm-primary-020-charging.svg │ │ ├── xfpm-primary-020.svg │ │ ├── xfpm-primary-040-charging.svg │ │ ├── xfpm-primary-040.svg │ │ ├── xfpm-primary-060-charging.svg │ │ ├── xfpm-primary-060.svg │ │ ├── xfpm-primary-080-charging.svg │ │ ├── xfpm-primary-080.svg │ │ ├── xfpm-primary-100-charging.svg │ │ ├── xfpm-primary-100.svg │ │ ├── xfpm-primary-charged.svg │ │ ├── xfpm-primary-missing.svg │ │ ├── xfpm-ups-000-charging.svg │ │ ├── xfpm-ups-000.svg │ │ ├── xfpm-ups-020-charging.svg │ │ ├── xfpm-ups-020.svg │ │ ├── xfpm-ups-040-charging.svg │ │ ├── xfpm-ups-040.svg │ │ ├── xfpm-ups-060-charging.svg │ │ ├── xfpm-ups-060.svg │ │ ├── xfpm-ups-080-charging.svg │ │ ├── xfpm-ups-080.svg │ │ ├── xfpm-ups-100-charging.svg │ │ ├── xfpm-ups-100.svg │ │ ├── xfpm-ups-charged.svg │ │ ├── xfpm-ups-missing.svg │ │ ├── xkbmod-indicator.svg │ │ ├── y-ppa-indicator.svg │ │ ├── yate-tray-incomingcall.svg │ │ ├── yate-tray-incomingchat.svg │ │ ├── yate-tray-info.svg │ │ ├── yate-tray-notification.svg │ │ ├── yate-tray.svg │ │ ├── yd-busy1.svg │ │ ├── yd-busy2.svg │ │ ├── yd-busy3.svg │ │ ├── yd-busy4.svg │ │ ├── yd-busy5.svg │ │ ├── yd-ind-error.svg │ │ ├── yd-ind-idle.svg │ │ ├── yd-ind-pause.svg │ │ ├── youtube-indicator-downloading-light.svg │ │ ├── youtube-indicator-light-disabled.svg │ │ ├── youtube-indicator-light-sync0.svg │ │ ├── youtube-indicator-light-sync1.svg │ │ ├── youtube-indicator-light-sync2.svg │ │ ├── youtube-indicator-light-sync3.svg │ │ ├── youtube-indicator-light-sync4.svg │ │ ├── youtube-indicator-light-sync5.svg │ │ ├── youtube-indicator-light-sync6.svg │ │ ├── youtube-indicator-light-sync7.svg │ │ ├── youtube-indicator-light-sync8.svg │ │ ├── youtube-indicator-light-sync9.svg │ │ ├── youtube-indicator-light.svg │ │ ├── youtube-music-desktop-app-tray-pause.svg │ │ ├── youtube-music-desktop-app-tray-play.svg │ │ ├── youtube-music-desktop-app-tray.svg │ │ ├── youtube-music-tray.svg │ │ ├── yum-indicator-error.svg │ │ ├── yum-indicator-info.svg │ │ ├── yum-indicator-no-updates.svg │ │ ├── yum-indicator-updates.svg │ │ ├── yum-indicator-working.svg │ │ ├── zeal-panel.svg │ │ ├── zeal-tray.svg │ │ └── zim-panel.svg │ └── places │ │ ├── akonadi-phone-home.svg │ │ ├── application-x-gnome-saved-search.svg │ │ ├── bookmark-missing.svg │ │ ├── desktop.svg │ │ ├── document-open-recent.svg │ │ ├── edittrash.svg │ │ ├── emptytrash.svg │ │ ├── favorites.svg │ │ ├── folder-bookmark.svg │ │ ├── folder-bookmarks.svg │ │ ├── folder-camera.svg │ │ ├── folder-desktop.svg │ │ ├── folder-documents-open.svg │ │ ├── folder-documents.svg │ │ ├── folder-download-open.svg │ │ ├── folder-download.svg │ │ ├── folder-downloads.svg │ │ ├── folder-drag-accept.svg │ │ ├── folder-favorites.svg │ │ ├── folder-games.svg │ │ ├── folder-home.svg │ │ ├── folder-html.svg │ │ ├── folder-image.svg │ │ ├── folder-images.svg │ │ ├── folder-music-open.svg │ │ ├── folder-music.svg │ │ ├── folder-network.svg │ │ ├── folder-open-recent.svg │ │ ├── folder-open.svg │ │ ├── folder-photo.svg │ │ ├── folder-photos.svg │ │ ├── folder-picture.svg │ │ ├── folder-pictures-open.svg │ │ ├── folder-pictures.svg │ │ ├── folder-publicshare-open.svg │ │ ├── folder-publicshare.svg │ │ ├── folder-recent.svg │ │ ├── folder-remote-ftp.svg │ │ ├── folder-remote-nfs.svg │ │ ├── folder-remote-open.svg │ │ ├── folder-remote-smb.svg │ │ ├── folder-remote-ssh.svg │ │ ├── folder-root.svg │ │ ├── folder-saved-search-alt.svg │ │ ├── folder-saved-search.svg │ │ ├── folder-sound.svg │ │ ├── folder-temp.svg │ │ ├── folder-templates-open.svg │ │ ├── folder-templates.svg │ │ ├── folder-text.svg │ │ ├── folder-txt.svg │ │ ├── folder-video.svg │ │ ├── folder-videocamera.svg │ │ ├── folder-videos-open.svg │ │ ├── folder-videos.svg │ │ ├── folder-visiting.svg │ │ ├── folder.svg │ │ ├── folder_download.svg │ │ ├── folder_downloads.svg │ │ ├── folder_home.svg │ │ ├── folder_html.svg │ │ ├── folder_images.svg │ │ ├── folder_open.svg │ │ ├── folder_pictures.svg │ │ ├── folders-documents.svg │ │ ├── folders-downloads.svg │ │ ├── folders-music.svg │ │ ├── folders-publicshare.svg │ │ ├── folders-videos.svg │ │ ├── gnome-ccdesktop.svg │ │ ├── gnome-desktop-config.svg │ │ ├── gnome-dev-network.svg │ │ ├── gnome-dev-trash-empty.svg │ │ ├── gnome-dev-trash-full.svg │ │ ├── gnome-folder.svg │ │ ├── gnome-fs-blockdev.svg │ │ ├── gnome-fs-bookmark-missing.svg │ │ ├── gnome-fs-bookmark.svg │ │ ├── gnome-fs-dav.svg │ │ ├── gnome-fs-desktop.svg │ │ ├── gnome-fs-dev.svg │ │ ├── gnome-fs-directory-accept.svg │ │ ├── gnome-fs-directory-visiting.svg │ │ ├── gnome-fs-directory.svg │ │ ├── gnome-fs-ftp.svg │ │ ├── gnome-fs-home.svg │ │ ├── gnome-fs-network.svg │ │ ├── gnome-fs-nfs.svg │ │ ├── gnome-fs-server.svg │ │ ├── gnome-fs-share.svg │ │ ├── gnome-fs-smb.svg │ │ ├── gnome-fs-ssh.svg │ │ ├── gnome-fs-trash-empty-accept.svg │ │ ├── gnome-fs-trash-empty.svg │ │ ├── gnome-fs-trash-full.svg │ │ ├── gnome-fs-web.svg │ │ ├── gnome-home.svg │ │ ├── gnome-mime-x-directory-nfs-server.svg │ │ ├── gnome-mime-x-directory-smb-server.svg │ │ ├── gnome-mime-x-directory-smb-share.svg │ │ ├── gnome-mime-x-directory-smb-workgroup.svg │ │ ├── gnome-stock-trash-empty.svg │ │ ├── gnome-stock-trash-full.svg │ │ ├── gnome-stock-trash.svg │ │ ├── go-home-large.svg │ │ ├── go-home.svg │ │ ├── gohome.svg │ │ ├── gtg-home.svg │ │ ├── gtk-directory.svg │ │ ├── gtk-home.svg │ │ ├── gtk-network.svg │ │ ├── inode-directory.svg │ │ ├── kfm_home.svg │ │ ├── library-music.svg │ │ ├── mail-sent.svg │ │ ├── neat.svg │ │ ├── network-server.svg │ │ ├── network-workgroup.svg │ │ ├── network.svg │ │ ├── network_fs.svg │ │ ├── network_local.svg │ │ ├── nfs.svg │ │ ├── other-desktop.svg │ │ ├── redhat-home.svg │ │ ├── redhat-network-server.svg │ │ ├── redhat-system-group.svg │ │ ├── repository.svg │ │ ├── samba.svg │ │ ├── server.svg │ │ ├── stock_bookmark.svg │ │ ├── stock_delete-bookmark.svg │ │ ├── stock_folder.svg │ │ ├── stock_home.svg │ │ ├── stock_music-library.svg │ │ ├── stock_open.svg │ │ ├── stock_trash_empty.svg │ │ ├── stock_trash_full.svg │ │ ├── trash-empty.svg │ │ ├── trash-full.svg │ │ ├── trashcan_empty.svg │ │ ├── trashcan_full.svg │ │ ├── user-bookmarks.svg │ │ ├── user-desktop.svg │ │ ├── user-home-open.svg │ │ ├── user-home.svg │ │ ├── user-images.svg │ │ ├── user-pictures.svg │ │ ├── user-share.svg │ │ ├── user-trash-full.svg │ │ ├── user-trash.svg │ │ ├── xfce-trash_empty.svg │ │ └── xfce-trash_full.svg │ ├── 32 │ ├── actions │ │ ├── acrobat.svg │ │ ├── address-book-new.svg │ │ ├── align-horizontal-bottom-out.svg │ │ ├── align-horizontal-center.svg │ │ ├── align-horizontal-left-out.svg │ │ ├── align-horizontal-left-to-anchor.svg │ │ ├── align-horizontal-left.svg │ │ ├── align-horizontal-right-out.svg │ │ ├── align-horizontal-right-to-anchor.svg │ │ ├── align-horizontal-right.svg │ │ ├── align-horizontal-top-out.svg │ │ ├── align-vertical-bottom-out.svg │ │ ├── align-vertical-bottom-to-anchor.svg │ │ ├── align-vertical-bottom.svg │ │ ├── align-vertical-center.svg │ │ ├── align-vertical-top-out.svg │ │ ├── align-vertical-top-to-anchor.svg │ │ ├── align-vertical-top.svg │ │ ├── application-exit.svg │ │ ├── application-menu.svg │ │ ├── appointment-new.svg │ │ ├── archive-extract.svg │ │ ├── archive-insert-directory.svg │ │ ├── archive-insert.svg │ │ ├── archive-remove.svg │ │ ├── arrow-down-double.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left-double.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right-double.svg │ │ ├── arrow-right.svg │ │ ├── arrow-up-double.svg │ │ ├── arrow-up.svg │ │ ├── arrow.svg │ │ ├── autocorrection.svg │ │ ├── blurimage.svg │ │ ├── bookmark-new.svg │ │ ├── bookmark-remove.svg │ │ ├── bookmarks.svg │ │ ├── bordertool.svg │ │ ├── call-start.svg │ │ ├── call-stop.svg │ │ ├── collapse-all.svg │ │ ├── collapse.svg │ │ ├── color-management.svg │ │ ├── color-picker-black.svg │ │ ├── color-picker-grey.svg │ │ ├── color-picker-white.svg │ │ ├── color-picker.svg │ │ ├── colormanagement.svg │ │ ├── colors-chromablue.svg │ │ ├── colors-chromagreen.svg │ │ ├── colors-chromared.svg │ │ ├── colors-luma.svg │ │ ├── compass.svg │ │ ├── configure-shortcuts.svg │ │ ├── configure.svg │ │ ├── cursor-arrow.svg │ │ ├── cursor-cross.svg │ │ ├── dialog-cancel.svg │ │ ├── dialog-messages.svg │ │ ├── dialog-ok-apply.svg │ │ ├── dialog-ok.svg │ │ ├── document-close.svg │ │ ├── document-decrypt.svg │ │ ├── document-edit-decrypt-verify.svg │ │ ├── document-edit-decrypt.svg │ │ ├── document-edit-encrypt.svg │ │ ├── document-edit-sign-encrypt.svg │ │ ├── document-edit-sign.svg │ │ ├── document-edit.svg │ │ ├── document-encrypted.svg │ │ ├── document-export.svg │ │ ├── document-import.svg │ │ ├── document-new-from-template.svg │ │ ├── document-new.svg │ │ ├── document-open-remote.svg │ │ ├── document-open.svg │ │ ├── document-preview-archive.svg │ │ ├── document-preview.svg │ │ ├── document-print-direct.svg │ │ ├── document-print.svg │ │ ├── document-properties.svg │ │ ├── document-replace.svg │ │ ├── document-revert.svg │ │ ├── document-save-all.svg │ │ ├── document-save-as.svg │ │ ├── document-save.svg │ │ ├── document-share.svg │ │ ├── draw-arrow-back.svg │ │ ├── draw-arrow-down.svg │ │ ├── draw-arrow-forward.svg │ │ ├── draw-arrow-up.svg │ │ ├── edit-delete-shred.svg │ │ ├── edit-delete.svg │ │ ├── edit-redo.svg │ │ ├── edit-reset.svg │ │ ├── edit-select.svg │ │ ├── edit-undo.svg │ │ ├── editor.svg │ │ ├── expand-all.svg │ │ ├── expand.svg │ │ ├── file-zoom-in.svg │ │ ├── file-zoom-out.svg │ │ ├── flash.svg │ │ ├── flashlight-off.svg │ │ ├── flashlight-on.svg │ │ ├── folder-new.svg │ │ ├── folder-sync.svg │ │ ├── format-stroke-color.svg │ │ ├── games-config-custom.svg │ │ ├── games-config-options.svg │ │ ├── gnumeric-format-halign-distributed.svg │ │ ├── gnumeric-format-valign-bottom.svg │ │ ├── gnumeric-format-valign-center.svg │ │ ├── gnumeric-format-valign-distributed.svg │ │ ├── gnumeric-format-valign-justify.svg │ │ ├── gnumeric-format-valign-top.svg │ │ ├── go-bottom.svg │ │ ├── go-down-skip.svg │ │ ├── go-down.svg │ │ ├── go-first.svg │ │ ├── go-home.svg │ │ ├── go-jump.svg │ │ ├── go-last.svg │ │ ├── go-next-skip.svg │ │ ├── go-next.svg │ │ ├── go-parent-folder.svg │ │ ├── go-previous-skip.svg │ │ ├── go-previous.svg │ │ ├── go-top.svg │ │ ├── go-up-skip.svg │ │ ├── go-up.svg │ │ ├── gtk-ok.svg │ │ ├── gtk-preferences.svg │ │ ├── help-about.svg │ │ ├── help-donate.svg │ │ ├── help-keybord-shortcuts.svg │ │ ├── help-whatsthis.svg │ │ ├── kdenlive-zoom-large.svg │ │ ├── kdenlive-zoom-small.svg │ │ ├── labplot-cursor-arrow.svg │ │ ├── labplot-zoom-in-x.svg │ │ ├── labplot-zoom-in-y.svg │ │ ├── labplot-zoom-out-x.svg │ │ ├── labplot-zoom-out-y.svg │ │ ├── labplot-zoom-select-x.svg │ │ ├── labplot-zoom-select-y.svg │ │ ├── labplot-zoom-select.svg │ │ ├── mail-attachment.svg │ │ ├── mail-deleted.svg │ │ ├── mail-encrypted-full.svg │ │ ├── mail-encrypted-part.svg │ │ ├── mail-encrypted.svg │ │ ├── mail-flag.svg │ │ ├── mail-forward.svg │ │ ├── mail-forwarded-replied.svg │ │ ├── mail-forwarded.svg │ │ ├── mail-invitation.svg │ │ ├── mail-mark-important.svg │ │ ├── mail-mark-junk.svg │ │ ├── mail-mark-notjunk.svg │ │ ├── mail-mark-read.svg │ │ ├── mail-mark-unread-new.svg │ │ ├── mail-mark-unread.svg │ │ ├── mail-meeting-request-reply.svg │ │ ├── mail-message-new-list.svg │ │ ├── mail-message-new.svg │ │ ├── mail-message.svg │ │ ├── mail-queue.svg │ │ ├── mail-queued.svg │ │ ├── mail-read.svg │ │ ├── mail-replied.svg │ │ ├── mail-reply-all.svg │ │ ├── mail-reply-custom-all.svg │ │ ├── mail-reply-custom.svg │ │ ├── mail-reply-list.svg │ │ ├── mail-reply-sender.svg │ │ ├── mail-send.svg │ │ ├── mail-sent.svg │ │ ├── mail-signature-unknown.svg │ │ ├── mail-signed-full.svg │ │ ├── mail-signed-fully.svg │ │ ├── mail-signed-part.svg │ │ ├── mail-signed-verified.svg │ │ ├── mail-signed.svg │ │ ├── mail-tagged.svg │ │ ├── mail-thread-watch.svg │ │ ├── mail-unread-new.svg │ │ ├── mail-unread.svg │ │ ├── media-eject.svg │ │ ├── media-playback-pause.svg │ │ ├── media-playback-start.svg │ │ ├── media-playback-stop.svg │ │ ├── media-playlist-normal.svg │ │ ├── media-playlist-repeat-song.svg │ │ ├── media-playlist-repeat.svg │ │ ├── media-playlist-shuffle.svg │ │ ├── media-record.svg │ │ ├── media-repeat-all.svg │ │ ├── media-repeat-none.svg │ │ ├── media-repeat-single.svg │ │ ├── media-seek-backward.svg │ │ ├── media-seek-forward.svg │ │ ├── media-skip-backward.svg │ │ ├── media-skip-forward.svg │ │ ├── multiple.svg │ │ ├── object-order-back.svg │ │ ├── object-order-front.svg │ │ ├── object-order-lower.svg │ │ ├── object-order-raise.svg │ │ ├── output_win.svg │ │ ├── overflow-menu.svg │ │ ├── page-zoom.svg │ │ ├── percent.svg │ │ ├── preview.svg │ │ ├── qa.svg │ │ ├── select.svg │ │ ├── settings-configure.svg │ │ ├── step_object_Controller.svg │ │ ├── system-lock-screen.svg │ │ ├── system-log-out.svg │ │ ├── system-reboot.svg │ │ ├── system-restart.svg │ │ ├── system-save-session.svg │ │ ├── system-shutdown.svg │ │ ├── system-suspend-hibernate.svg │ │ ├── system-suspend.svg │ │ ├── system-switch-user.svg │ │ ├── system-users.svg │ │ ├── tag.svg │ │ ├── taxes-finances.svg │ │ ├── tool-pointer.svg │ │ ├── tools.svg │ │ ├── trim-margins.svg │ │ ├── trim-to-selection.svg │ │ ├── view-barcode-qr.svg │ │ ├── view-calendar-holiday.svg │ │ ├── view-filter.svg │ │ ├── view-group.svg │ │ ├── view-institution.svg │ │ ├── view-left-close.svg │ │ ├── view-list-details.svg │ │ ├── view-list-icons.svg │ │ ├── view-list-text.svg │ │ ├── view-list-tree.svg │ │ ├── view-preview.svg │ │ ├── view-refresh.svg │ │ ├── view-right-close.svg │ │ ├── view-right-new.svg │ │ ├── view-sort-ascending-name.svg │ │ ├── view-sort-ascending.svg │ │ ├── view-sort-descending-name.svg │ │ ├── view-sort-descending.svg │ │ ├── view-sort.svg │ │ ├── window-close.svg │ │ ├── zoom-1-to-2.svg │ │ ├── zoom-2-to-1.svg │ │ ├── zoom-draw.svg │ │ ├── zoom-fit-best.svg │ │ ├── zoom-fit-height.svg │ │ ├── zoom-fit-selection.svg │ │ ├── zoom-fit-width.svg │ │ ├── zoom-in-large.svg │ │ ├── zoom-in.svg │ │ ├── zoom-next.svg │ │ ├── zoom-original.svg │ │ ├── zoom-out-large.svg │ │ ├── zoom-out.svg │ │ ├── zoom-previous.svg │ │ ├── zoom-select-fit.svg │ │ ├── zoom-select-x.svg │ │ ├── zoom-select-y.svg │ │ ├── zoom-select.svg │ │ └── zoom.svg │ └── devices │ │ ├── audio-card.svg │ │ ├── audio-headphones.svg │ │ ├── audio-headset.svg │ │ ├── audio-headsets.svg │ │ ├── audio-input-microphone.svg │ │ ├── audio-speakers.svg │ │ ├── battery.svg │ │ ├── blueman-camera.svg │ │ ├── blueman-cellular.svg │ │ ├── blueman-desktop.svg │ │ ├── blueman-device.svg │ │ ├── blueman-handheld.svg │ │ ├── blueman-handsfree.svg │ │ ├── blueman-headset.svg │ │ ├── blueman-keyboard.svg │ │ ├── blueman-laptop.svg │ │ ├── blueman-loudspeaker.svg │ │ ├── blueman-mouse.svg │ │ ├── blueman-pointing.svg │ │ ├── blueman-scanner.svg │ │ ├── blueman-server.svg │ │ ├── blueman-smart-phone.svg │ │ ├── blueman.svg │ │ ├── bluetooth.svg │ │ ├── camera-photo.svg │ │ ├── camera-video.svg │ │ ├── camera-web.svg │ │ ├── camera.svg │ │ ├── computer-laptop.svg │ │ ├── computer.svg │ │ ├── cpu.svg │ │ ├── display.svg │ │ ├── drive-cdrom.svg │ │ ├── drive-harddisk-ieee1394.svg │ │ ├── drive-harddisk-root.svg │ │ ├── drive-harddisk-solidstate.svg │ │ ├── drive-harddisk-system.svg │ │ ├── drive-harddisk-usb.svg │ │ ├── drive-harddisk.svg │ │ ├── drive-multidisk.svg │ │ ├── drive-optical.svg │ │ ├── drive-removable-media-usb-pendrive.svg │ │ ├── drive-removable-media-usb.svg │ │ ├── drive-removable-media.svg │ │ ├── drive-virtual.svg │ │ ├── gnome-dev-battery.svg │ │ ├── gnome-dev-cdrom-audio.svg │ │ ├── gnome-dev-cdrom.svg │ │ ├── gnome-dev-computer.svg │ │ ├── gnome-dev-disc-cdr.svg │ │ ├── gnome-dev-disc-cdrw.svg │ │ ├── gnome-dev-disc-dvdr-plus.svg │ │ ├── gnome-dev-disc-dvdr.svg │ │ ├── gnome-dev-disc-dvdram.svg │ │ ├── gnome-dev-disc-dvdrom.svg │ │ ├── gnome-dev-disc-dvdrw.svg │ │ ├── gnome-dev-dvd.svg │ │ ├── gnome-dev-ethernet.svg │ │ ├── gnome-dev-floppy.svg │ │ ├── gnome-dev-harddisk-1394.svg │ │ ├── gnome-dev-harddisk-usb.svg │ │ ├── gnome-dev-harddisk.svg │ │ ├── gnome-dev-ipod.svg │ │ ├── gnome-dev-keyboard.svg │ │ ├── gnome-dev-media-cf.svg │ │ ├── gnome-dev-media-ms.svg │ │ ├── gnome-dev-media-sdmmc.svg │ │ ├── gnome-dev-media-sm.svg │ │ ├── gnome-dev-mouse-ball.svg │ │ ├── gnome-dev-mouse-optical.svg │ │ ├── gnome-dev-printer-new.svg │ │ ├── gnome-dev-printer.svg │ │ ├── gnome-dev-removable-1394.svg │ │ ├── gnome-dev-removable-usb.svg │ │ ├── gnome-dev-removable.svg │ │ ├── gnome-dev-wavelan.svg │ │ ├── gnome-fs-blockdev.svg │ │ ├── gnome-phone-manager.svg │ │ ├── input-dialpad.svg │ │ ├── input-gaming.svg │ │ ├── input-keyboard.svg │ │ ├── input-mouse.svg │ │ ├── input-tablet.svg │ │ ├── input-touchpad.svg │ │ ├── joystick.svg │ │ ├── kdeconnect.svg │ │ ├── keyboard.svg │ │ ├── laptop.svg │ │ ├── media-cdr.svg │ │ ├── media-cdrom-audio.svg │ │ ├── media-cdrom.svg │ │ ├── media-cdrw.svg │ │ ├── media-dvd.svg │ │ ├── media-dvdrw.svg │ │ ├── media-flash-memory-stick.svg │ │ ├── media-flash-sd-mmc.svg │ │ ├── media-flash-smart-media.svg │ │ ├── media-flash.svg │ │ ├── media-floppy.svg │ │ ├── media-memory-sd.svg │ │ ├── media-memory.svg │ │ ├── media-optical-audio.svg │ │ ├── media-optical-blu-ray.svg │ │ ├── media-optical-cd-video.svg │ │ ├── media-optical-copy.svg │ │ ├── media-optical-data.svg │ │ ├── media-optical-dvd-video.svg │ │ ├── media-optical-dvd.svg │ │ ├── media-optical-mixed-cd.svg │ │ ├── media-optical-recordable.svg │ │ ├── media-optical-video.svg │ │ ├── media-optical.svg │ │ ├── media-removable.svg │ │ ├── media-tape.svg │ │ ├── modem.svg │ │ ├── multimedia-player.svg │ │ ├── network-bluetooth.svg │ │ ├── network-card.svg │ │ ├── network-firewall.svg │ │ ├── network-modem.svg │ │ ├── network-server-database.svg │ │ ├── network-server.svg │ │ ├── network-vpn.svg │ │ ├── network-wired.svg │ │ ├── network-wireless-hotspot.svg │ │ ├── network-wireless.svg │ │ ├── network-workgroup.svg │ │ ├── nm-device-wired.svg │ │ ├── nm-device-wireless.svg │ │ ├── pda.svg │ │ ├── phone.svg │ │ ├── printer-network.svg │ │ ├── printer-remote.svg │ │ ├── printer.svg │ │ ├── removable-media.svg │ │ ├── scanner.svg │ │ ├── server-database.svg │ │ ├── smartphone.svg │ │ ├── stock_cell-phone.svg │ │ ├── system.svg │ │ ├── tablet.svg │ │ ├── tool-pointer.svg │ │ ├── uninterruptible-power-supply.svg │ │ ├── unity-fallback-mount-helper.svg │ │ ├── video-display.svg │ │ ├── video-television.svg │ │ └── wiimotedev.svg │ ├── 16@2x │ ├── 22@2x │ ├── 24@2x │ ├── 32@2x │ ├── Preview.png │ ├── README.md │ ├── index.theme │ ├── scalable │ ├── apps │ │ ├── 10B4_steam.0.svg │ │ ├── 1CD8_rundll32.0.svg │ │ ├── 1E64_notepad.0.svg │ │ ├── 1password.svg │ │ ├── 2048-qt.svg │ │ ├── 2048.svg │ │ ├── 2402_msiexec.0.svg │ │ ├── 2EF4_wordpad.0.svg │ │ ├── 3dchess.svg │ │ ├── 4137_winhlp32.0.svg │ │ ├── 4kvideodownloader.svg │ │ ├── 5961_Defunct_x86.0.svg │ │ ├── 63EE_sublime_text.0.svg │ │ ├── 67EF_addoninstaller.0.svg │ │ ├── 7596_iexplore.0.svg │ │ ├── 7765_winebrowser.0.svg │ │ ├── 7z.svg │ │ ├── 7zip.svg │ │ ├── 97C1_wordpad.0.svg │ │ ├── A35F_hh.0.svg │ │ ├── AdobeFlash.svg │ │ ├── AdobeReader.svg │ │ ├── AdobeReader10.svg │ │ ├── AdobeReader11.svg │ │ ├── AdobeReader12.svg │ │ ├── AdobeReader8.svg │ │ ├── AdobeReader9.svg │ │ ├── AdvancedPhoto.svg │ │ ├── Alacritty.svg │ │ ├── Amazon-www.amazon.ca.svg │ │ ├── Amazon-www.amazon.cn.svg │ │ ├── Amazon-www.amazon.co.uk.svg │ │ ├── Amazon-www.amazon.com.svg │ │ ├── Amazon-www.amazon.de.svg │ │ ├── Amazon-www.amazon.es.svg │ │ ├── Amazon-www.amazon.fr.svg │ │ ├── Amazon-www.amazon.it.svg │ │ ├── AppImage.svg │ │ ├── AppImageLauncher.svg │ │ ├── Appstore.svg │ │ ├── Ardour-Ardour_4.0.0.svg │ │ ├── Ardour-Ardour_5.12.0.svg │ │ ├── Ardour-Ardour_6.0.0.svg │ │ ├── Ardour-icon_256px.svg │ │ ├── BTM.svg │ │ ├── Babe.svg │ │ ├── Basecamp.svg │ │ ├── Blender.svg │ │ ├── CMakeSetup.svg │ │ ├── CMakeSetup32.svg │ │ ├── CPU-X.svg │ │ ├── Caprine.svg │ │ ├── DBeaver.svg │ │ ├── Dictionary.app.svg │ │ ├── Dictionary.svg │ │ ├── DictionaryReader.svg │ │ ├── Dropbox.svg │ │ ├── EasyTAG_icon.svg │ │ ├── Etermutilities-terminal.svg │ │ ├── FB4C_iexplore.0.svg │ │ ├── FBReader.svg │ │ ├── FacebookMessenger-facebook.com.svg │ │ ├── FoxitReader.svg │ │ ├── FreeFileSync.svg │ │ ├── GDevelop.svg │ │ ├── GMail-mail.google.com.svg │ │ ├── GitKraken.svg │ │ ├── Gmail-mail.google.com.svg │ │ ├── Gnome-Camara.svg │ │ ├── Gnome-Notes.svg │ │ ├── Gnome-Photos.svg │ │ ├── Gnome-notes.svg │ │ ├── GnomeBaker.svg │ │ ├── Grsync.SVG │ │ ├── Grsync.svg │ │ ├── Insight-FileManager.svg │ │ ├── J7Z.svg │ │ ├── Jetbrains-goland.svg │ │ ├── JupyterConsole.svg │ │ ├── Last.fm-icon.svg │ │ ├── MultiBrowser.svg │ │ ├── Musescore.svg │ │ ├── MvGather.svg │ │ ├── Notion.svg │ │ ├── OpenTodoList.svg │ │ ├── Panini.svg │ │ ├── Pithos.svg │ │ ├── PlayOnLinux.svg │ │ ├── Pomodoro.svg │ │ ├── QMapShack.svg │ │ ├── QtAV.svg │ │ ├── QtIcon.svg │ │ ├── QtProject-assistant.svg │ │ ├── QtProject-designer.svg │ │ ├── QtProject-linguist.svg │ │ ├── QtProject-qdbusviewer.svg │ │ ├── QtProject-qtcreator-qt5.svg │ │ ├── QtProject-qtcreator.svg │ │ ├── RSS_feeds.svg │ │ ├── Ripcord_Icon.svg │ │ ├── SUSEgreeter.svg │ │ ├── Sci48M.svg │ │ ├── ScudCloud.svg │ │ ├── Spotify.svg │ │ ├── Stacer.svg │ │ ├── TeXworks.svg │ │ ├── TeamViewer.svg │ │ ├── Terminal-tango.svg │ │ ├── Terminal.svg │ │ ├── Thunar.svg │ │ ├── Twitter-twitter.com.svg │ │ ├── VBox.svg │ │ ├── Vbox.svg │ │ ├── WMail.svg │ │ ├── WorkerIcon48.svg │ │ ├── XMind.svg │ │ ├── XrendrMixer.svg │ │ ├── YouTube-youtube.com.svg │ │ ├── YouTubeDownloader.svg │ │ ├── Youtube-youtube.com.svg │ │ ├── Zoom.svg │ │ ├── aarddict.svg │ │ ├── abiword.svg │ │ ├── abiword_48.svg │ │ ├── about_kde.svg │ │ ├── abrt-gui.svg │ │ ├── abrt.svg │ │ ├── access.svg │ │ ├── accessibility-directory.svg │ │ ├── accessibility.svg │ │ ├── accessibility_section.svg │ │ ├── accessories-archiver.svg │ │ ├── accessories-calculator.svg │ │ ├── accessories-camera.svg │ │ ├── accessories-character-map.svg │ │ ├── accessories-clock.svg │ │ ├── accessories-dictionary.svg │ │ ├── accessories-document-viewer.svg │ │ ├── accessories-ebook-reader.svg │ │ ├── accessories-image-viewer.svg │ │ ├── accessories-media-converter.svg │ │ ├── accessories-notes.svg │ │ ├── accessories-painting.svg │ │ ├── accessories-podcast.svg │ │ ├── accessories-screenshot.svg │ │ ├── accessories-system-cleaner.svg │ │ ├── accessories-text-editor.svg │ │ ├── accessories-thesaurus.svg │ │ ├── accessories_text_editor.svg │ │ ├── ace.svg │ │ ├── acidrip.svg │ │ ├── acroread.svg │ │ ├── activity-log-manager.svg │ │ ├── addressbook.svg │ │ ├── adjust-colors.svg │ │ ├── administration.svg │ │ ├── adobe-flashplayer.svg │ │ ├── adobe-reader.svg │ │ ├── adobeflashplugin.svg │ │ ├── aegisub.svg │ │ ├── agenda.svg │ │ ├── aisleriot.svg │ │ ├── akonadi.svg │ │ ├── akonadiconsole.svg │ │ ├── akonaditray.svg │ │ ├── akregator.svg │ │ ├── alacarte.svg │ │ ├── alacritty.svg │ │ ├── alarm-clock.svg │ │ ├── albert.svg │ │ ├── alc.svg │ │ ├── alien-arena.svg │ │ ├── alienarena.svg │ │ ├── alleyoop.svg │ │ ├── almanah.svg │ │ ├── almond.svg │ │ ├── alsamixergui.svg │ │ ├── altyo.svg │ │ ├── amarok-icon.svg │ │ ├── amarok.svg │ │ ├── amarok2.svg │ │ ├── amarok_change_language.svg │ │ ├── amazon-mp3-store-source.svg │ │ ├── amazon-store.svg │ │ ├── amazon.svg │ │ ├── amazonclouddrive.svg │ │ ├── amazonmp3.svg │ │ ├── amor.svg │ │ ├── amule.svg │ │ ├── amulegui.svg │ │ ├── anaconda.svg │ │ ├── anbox.svg │ │ ├── android-file-transfer.svg │ │ ├── android-studio-beta.svg │ │ ├── android-studio.svg │ │ ├── androidstudio.svg │ │ ├── anjuta.svg │ │ ├── anjuta6.svg │ │ ├── anjuta_icon.svg │ │ ├── ankama-launcher.svg │ │ ├── anki.svg │ │ ├── antimicro.svg │ │ ├── anydesk.svg │ │ ├── app.svg │ │ ├── apparmor_view_profile.svg │ │ ├── apper.svg │ │ ├── appgrid.svg │ │ ├── appimagekit-1password.svg │ │ ├── appimagekit-AppImage.svg │ │ ├── appimagekit-azpainter.svg │ │ ├── appimagekit-balena-etcher-electron.svg │ │ ├── appimagekit-bitwarden.svg │ │ ├── appimagekit-brackets-electron.svg │ │ ├── appimagekit-caprine.svg │ │ ├── appimagekit-colorpicker.svg │ │ ├── appimagekit-emacs.svg │ │ ├── appimagekit-ferdi.svg │ │ ├── appimagekit-franz.svg │ │ ├── appimagekit-github-desktop.svg │ │ ├── appimagekit-gmail-desktop.svg │ │ ├── appimagekit-gravit-designer.svg │ │ ├── appimagekit-joplin.svg │ │ ├── appimagekit-kitty.svg │ │ ├── appimagekit-ksnip.svg │ │ ├── appimagekit-leocad.svg │ │ ├── appimagekit-mscore-portable.svg │ │ ├── appimagekit-org.keepassxc.KeePassXC.svg │ │ ├── appimagekit-org.olivevideoeditor.Olive.svg │ │ ├── appimagekit-rambox.svg │ │ ├── appimagekit-stacer.svg │ │ ├── appimagekit-supertux2.svg │ │ ├── appimagekit-synfigstudio.svg │ │ ├── appimagekit-teams-for-linux.svg │ │ ├── appimagekit-wewechat.svg │ │ ├── appimagekit_irix.svg │ │ ├── applet_lockkeys.svg │ │ ├── applets-screenshooter.svg │ │ ├── application-default-icon.svg │ │ ├── application-pdf.svg │ │ ├── application-vidiot.svg │ │ ├── application-vnd.iccprofile.svg │ │ ├── application-x-chemtool.svg │ │ ├── application-x-clementine.svg │ │ ├── application-x-pml18.svg │ │ ├── application-x-pml18free.svg │ │ ├── application-x-prl18.svg │ │ ├── application-x-prl18free.svg │ │ ├── application-x-tml18.svg │ │ ├── application-x-tml18free.svg │ │ ├── applications-accessories.svg │ │ ├── applications-all.svg │ │ ├── applications-development.svg │ │ ├── applications-education-language.svg │ │ ├── applications-education.svg │ │ ├── applications-featured.svg │ │ ├── applications-fonts.svg │ │ ├── applications-games.svg │ │ ├── applications-graphics.svg │ │ ├── applications-interfacedesign.svg │ │ ├── applications-internet.svg │ │ ├── applications-java.svg │ │ ├── applications-languages.svg │ │ ├── applications-multimedia.svg │ │ ├── applications-office.svg │ │ ├── applications-other.svg │ │ ├── applications-php.svg │ │ ├── applications-python.svg │ │ ├── applications-science.svg │ │ ├── applications-system-orange.svg │ │ ├── applications-system.svg │ │ ├── applications-utilities.svg │ │ ├── applications-webbrowsers.svg │ │ ├── appointment-soon.svg │ │ ├── appointment.svg │ │ ├── apport-gtk.svg │ │ ├── apport-gtk2.svg │ │ ├── apport.svg │ │ ├── appset.svg │ │ ├── aptana-studio.svg │ │ ├── aptana.svg │ │ ├── aptdaemon-download.svg │ │ ├── aptdaemon-update-cache.svg │ │ ├── aptdaemon-upgrade.svg │ │ ├── aptdaemon-working.svg │ │ ├── aptik-battery-monitor.svg │ │ ├── archive-manager.svg │ │ ├── archivemanager.svg │ │ ├── archlinux.svg │ │ ├── ardour.svg │ │ ├── ardour2.svg │ │ ├── ardour3.svg │ │ ├── ardour4.svg │ │ ├── ardour5.svg │ │ ├── ardour6.svg │ │ ├── arduino-arduinoide.svg │ │ ├── arduino-icon-small.svg │ │ ├── arduino-ide.svg │ │ ├── arduino.svg │ │ ├── ark.svg │ │ ├── arora.svg │ │ ├── artemanufrij.imageburner.svg │ │ ├── artemanufrij.playmymusic.svg │ │ ├── artha.svg │ │ ├── artikulate.svg │ │ ├── arts.svg │ │ ├── as-icon.svg │ │ ├── as-powered.svg │ │ ├── asc-de.svg │ │ ├── asounder.svg │ │ ├── assistant-qt4.svg │ │ ├── assistant-qt5.svg │ │ ├── assistant.svg │ │ ├── assistant5.svg │ │ ├── asunder.svg │ │ ├── aterm.svg │ │ ├── athena.svg │ │ ├── atlas.svg │ │ ├── atom-beta.svg │ │ ├── atom.svg │ │ ├── atomix-icon.svg │ │ ├── atomix.svg │ │ ├── atril.svg │ │ ├── audacious-16.svg │ │ ├── audacious-32.svg │ │ ├── audacious.svg │ │ ├── audacity.svg │ │ ├── audacity16.svg │ │ ├── audacity32.svg │ │ ├── audex.svg │ │ ├── audience.svg │ │ ├── audio-player.svg │ │ ├── audio-recorder.svg │ │ ├── audoban.applet.playbar.svg │ │ ├── auryo.svg │ │ ├── autokey.svg │ │ ├── autopackage-installer.svg │ │ ├── avidemux.svg │ │ ├── avidemux_icon.svg │ │ ├── awf.svg │ │ ├── awn-applet.svg │ │ ├── awn-manager.svg │ │ ├── awn-plugins.svg │ │ ├── awn-settings.svg │ │ ├── ax-applet.svg │ │ ├── azpainter.svg │ │ ├── babe.svg │ │ ├── background.svg │ │ ├── backlite.svg │ │ ├── badge-small.svg │ │ ├── baidunetdisk.svg │ │ ├── balena-etcher-electron.svg │ │ ├── baloo.svg │ │ ├── banji.svg │ │ ├── baobab.svg │ │ ├── barrier.svg │ │ ├── bash.svg │ │ ├── basket.svg │ │ ├── battery.svg │ │ ├── bauh.svg │ │ ├── bcloud.svg │ │ ├── bcompare.svg │ │ ├── beagled.svg │ │ ├── beatbox.svg │ │ ├── beekeeper-studio.svg │ │ ├── bell.svg │ │ ├── beryl-settings.svg │ │ ├── bijiben.svg │ │ ├── bitcoin128.svg │ │ ├── bittorrent-sync.svg │ │ ├── bitwarden.svg │ │ ├── bitwig-studio.svg │ │ ├── bleachbit.svg │ │ ├── blender.svg │ │ ├── bless.svg │ │ ├── blinken.svg │ │ ├── blivet-gui.svg │ │ ├── blocks.svg │ │ ├── blogilo.svg │ │ ├── blueclock.svg │ │ ├── blueclock32.svg │ │ ├── bluedun.svg │ │ ├── bluefish-icon.svg │ │ ├── bluefish.svg │ │ ├── bluegriffon.svg │ │ ├── blueman-active.svg │ │ ├── blueman-disabled.svg │ │ ├── blueman.svg │ │ ├── blueradio-48.svg │ │ ├── blueradio.svg │ │ ├── bluetooth-48.svg │ │ ├── bluetooth-active.svg │ │ ├── bluetooth-inactive.svg │ │ ├── bluetooth-radio.svg │ │ ├── bluetooth.svg │ │ ├── bluetoothradio.svg │ │ ├── bomber.svg │ │ ├── bombono-dvd.svg │ │ ├── bomi.svg │ │ ├── bookmarks-organize.svg │ │ ├── bookreader.svg │ │ ├── boomaga.svg │ │ ├── boot.svg │ │ ├── bottles_notepad.svg │ │ ├── bottles_wine-uninstaller.svg │ │ ├── bottles_wine-winecfg.svg │ │ ├── bottles_wine-winefile.svg │ │ ├── bottles_wine-winetricks.svg │ │ ├── bottles_wine.svg │ │ ├── bottles_winetricks.svg │ │ ├── boxes.svg │ │ ├── brackets-electron.svg │ │ ├── brackets.svg │ │ ├── brasero.svg │ │ ├── brave-beta.svg │ │ ├── brave-browser-beta.svg │ │ ├── brave-browser.svg │ │ ├── brave-dev.svg │ │ ├── brave-nightly.svg │ │ ├── brave.svg │ │ ├── breeze-settings.svg │ │ ├── brightside.svg │ │ ├── browser-help.svg │ │ ├── browser-tor.svg │ │ ├── browser.svg │ │ ├── bt-logo.svg │ │ ├── btsync-gui-gtk.svg │ │ ├── btsync-gui.svg │ │ ├── btsync-user.svg │ │ ├── budgiewprviews.svg │ │ ├── bug-buddy.svg │ │ ├── bug.svg │ │ ├── builder.svg │ │ ├── bum.svg │ │ ├── bumblebee.svg │ │ ├── burner.svg │ │ ├── burp.svg │ │ ├── byzanz.svg │ │ ├── ca.desrt.dconf-editor.svg │ │ ├── ca.littlesvr.asunder.svg │ │ ├── cacao-oj6.svg │ │ ├── cacao-oj7.svg │ │ ├── cacao-oj8.svg │ │ ├── cacao-oj9.svg │ │ ├── caffeine.svg │ │ ├── cairo-clock.svg │ │ ├── cairo-dock-c.svg │ │ ├── cairo-dock-o.svg │ │ ├── cairo-dock.svg │ │ ├── caja-actions.svg │ │ ├── caja-dropbox.svg │ │ ├── calamares.svg │ │ ├── calc.svg │ │ ├── calculator.svg │ │ ├── calendar-blue-31.svg │ │ ├── calendar-purple-31.svg │ │ ├── calendar-red-31.svg │ │ ├── calendar.svg │ │ ├── calibre-ebook-edit.svg │ │ ├── calibre-gui.svg │ │ ├── calibre-viewer.svg │ │ ├── calibre.svg │ │ ├── california.svg │ │ ├── calligraauthor.svg │ │ ├── calligradevtools.svg │ │ ├── calligragemini.svg │ │ ├── calligrakarbon.svg │ │ ├── calligrakrita.svg │ │ ├── calligrakrita2.svg │ │ ├── calligrakrita3.svg │ │ ├── calligraplan.svg │ │ ├── calligraplanner.svg │ │ ├── calligraplanwork.svg │ │ ├── calligrasheets.svg │ │ ├── calligrastage.svg │ │ ├── calligrawords.svg │ │ ├── camera-app.svg │ │ ├── camera-photo.svg │ │ ├── camera-web.svg │ │ ├── camera.svg │ │ ├── camorama.svg │ │ ├── cantata.svg │ │ ├── caprine.svg │ │ ├── carla-control.svg │ │ ├── carla.svg │ │ ├── catfish.svg │ │ ├── cawbird.svg │ │ ├── cc.arduino.arduinoide.svg │ │ ├── ccsm.svg │ │ ├── celluloid.svg │ │ ├── cellwriter.svg │ │ ├── cgoban.svg │ │ ├── cgoban_32x32.svg │ │ ├── chakra-backup.svg │ │ ├── checkers.svg │ │ ├── checkgmail.svg │ │ ├── cheese.svg │ │ ├── chemtool.svg │ │ ├── cherrytree.svg │ │ ├── chess.svg │ │ ├── chessx.svg │ │ ├── chinese.svg │ │ ├── chmsee-16x16.svg │ │ ├── chmsee-32x32.svg │ │ ├── chmsee-icon.svg │ │ ├── chrome-bgkodfmeijboinjdegggmkbkjfiagaan-Default.svg │ │ ├── chrome-bllmngcdibgbgjnginpehneeofhbmdjm-Default.svg │ │ ├── chrome-blpcfgokakmgnkcojhhkbfbldkacnbeo-Default.svg │ │ ├── chrome-bnbaboaihhkjoaolfnfoablhllahjnee-Default.svg │ │ ├── chrome-boeajhmfdjldchidhphikilcgdacljfm-Default.svg │ │ ├── chrome-bommmmpbplimfmebiadkflfgbgejahgm-Default.svg │ │ ├── chrome-calculator.svg │ │ ├── chrome-ciniambnphakdoflgeamacamhfllbkmo-Default.svg │ │ ├── chrome-clgddkicplcbgjfobecebadodeggpghp-Default.svg │ │ ├── chrome-clhhggbfdinjmjhajaheehoeibfljjno-Default.svg │ │ ├── chrome-cnkjkdjlofllcpbemipjbcpfnglbgieh-Default.svg │ │ ├── chrome-damddgdogmdhjjbgpfpgmkdgdgjhohef-Default.svg │ │ ├── chrome-defekohaofmambflfpfoojkmfdpcbgko-Default.svg │ │ ├── chrome-eifdbcbnlahelniokpkpdlhaocgjdcje-Default.svg │ │ ├── chrome-ejidjjhkpiempkbhmpbfngldlkglhimk-Default.svg │ │ ├── chrome-ejjicmeblgpmajnghnpcppodonldlgfn-Default.svg │ │ ├── chrome-fahmaaghhglfmonjliepjlchgpgfmobi-Default.svg │ │ ├── chrome-fdmmgilgnpjigdojojpjoooidkmcomcm-Default.svg │ │ ├── chrome-felcaaldnbdncclmgdcncolpebgiejap-Default.svg │ │ ├── chrome-fhbjgbiflinjbdggehcddcbncdddomop-Default.svg │ │ ├── chrome-gjmanaihpgjcijokbimnamcdndkffigp-Default.svg │ │ ├── chrome-hadgilakbfohcfcgfbioeeehgpkopaga-Default.svg │ │ ├── chrome-hdokiejnpimakedhajhdlcegeplioahd-Default.svg │ │ ├── chrome-hfhhnacclhffhdffklopdkcgdhifgngh-Default.svg │ │ ├── chrome-hnpfjngllnobngcgfapefoaidbinmjnm-Default.svg │ │ ├── chrome-https___telegram.org_.svg │ │ ├── chrome-iabmpiboiopbgfabjmgeedhcmjenhbla-Default.svg │ │ ├── chrome-icdipabjmbhpdkjaihfjoikhjjeneebd-Default.svg │ │ ├── chrome-icppfcnhkcmnfdhfhphakoifcfokfdhg-Default.svg │ │ ├── chrome-ighkikkfkalojiibipjigpccggljgdff-Default.svg │ │ ├── chrome-ioekoebejdcmnlefjiknokhhafglcjdl-Default.svg │ │ ├── chrome-jcjbnkncddbeomhaacaeokhfnefibpde-Default.svg │ │ ├── chrome-jeogkiiogjbmhklcnbgkdcjoioegiknm-Default.svg │ │ ├── chrome-jknmpnbgkaekopldbncmggaejjamkemn-Default.svg │ │ ├── chrome-joodangkbfjnajiiifokapkpmhfnpleo-Default.svg │ │ ├── chrome-joodangkbfjnajiiifokapkpmhfnpleo.svg │ │ ├── chrome-kogcfmeennoidocadkgjhnbancebmlbf-Default.svg │ │ ├── chrome-lainlkmlgipednloilifbppmhdocjbda-Default.svg │ │ ├── chrome-lneaknkopdijkpnocmklfnjbeapigfbh-Default.svg │ │ ├── chrome-mijlebbfndhelmdpmllgcfadlkankhok-Default.svg │ │ ├── chrome-mmfbcljfglbokpmkimbfghdkjmjhdgbg-Default.svg │ │ ├── chrome-ncliohomlfopnmlfkepkcbnhmeijkhhf-Default.svg │ │ ├── chrome-oooiobdokpcfdlahlmcddobejikcmkfo-Default.svg │ │ ├── chrome-pdagghjnpkeagmlbilmjmclfhjeaapaa-Default.svg │ │ ├── chrome-pfpeapihoiogbcmdmnibeplnikfnhoge-Default.svg │ │ ├── chrome-pghodfjepegmciihfhdipmimghiakcjf.svg │ │ ├── chrome-pjkljhegncpnkpknbcohdijeoejaedia-Default.svg │ │ ├── chrome.svg │ │ ├── chromium-browser-privacy.svg │ │ ├── chromium-browser.svg │ │ ├── chromium-browser2.svg │ │ ├── chromium-freeworld.svg │ │ ├── chromium.svg │ │ ├── cin-multimedia-volume-control.svg │ │ ├── cinnamon-panel-launcher.svg │ │ ├── cinnamon-power-manager.svg │ │ ├── cinnamon-preferences-color.svg │ │ ├── cinnamon-preferences-desktop-display.svg │ │ ├── cinnamon-preferences-system-time.svg │ │ ├── cinnamon-session-properties.svg │ │ ├── cinnamon-virtual-keyboard.svg │ │ ├── clamav-gui.svg │ │ ├── clamav.svg │ │ ├── clamtk.svg │ │ ├── classicmenu-indicator-light.svg │ │ ├── classicmenu-indicator.svg │ │ ├── claws-mail-128x128.svg │ │ ├── claws-mail-32x32.svg │ │ ├── claws-mail-64x64.svg │ │ ├── claws-mail.svg │ │ ├── clawsker.svg │ │ ├── clementine-player.svg │ │ ├── clementine.svg │ │ ├── clickup.svg │ │ ├── clion.svg │ │ ├── clipit-trayicon.svg │ │ ├── clock.svg │ │ ├── clocks.svg │ │ ├── cmake-gui.svg │ │ ├── cmake.svg │ │ ├── cockos-reaper.svg │ │ ├── code-insiders.svg │ │ ├── code-oss.svg │ │ ├── code.svg │ │ ├── codeblocks.svg │ │ ├── color-calibate.svg │ │ ├── color-management.svg │ │ ├── color-pick.svg │ │ ├── color.svg │ │ ├── colorgrab.svg │ │ ├── colorimeter-colorhug.svg │ │ ├── colorize.svg │ │ ├── colorman.svg │ │ ├── colorpicker.svg │ │ ├── colors.svg │ │ ├── colorset.svg │ │ ├── colour.svg │ │ ├── com.Adobe.Flash-Player-Projector.svg │ │ ├── com.Jetbrains.GoLand.svg │ │ ├── com.abisource.AbiWord.svg │ │ ├── com.adobe.Flash-Player-Projector.svg │ │ ├── com.adobe.Reader.svg │ │ ├── com.alacritty.Alacritty.svg │ │ ├── com.anydesk.Anydesk.svg │ │ ├── com.axosoft.GitKraken.svg │ │ ├── com.bitwarden.Bitwarden.svg │ │ ├── com.bitwarden.BitwardenDesktop.svg │ │ ├── com.bitwarden.desktop.svg │ │ ├── com.bxabi.bumblebee-indicator.svg │ │ ├── com.calibre_ebook.calibre.ebook_edit.svg │ │ ├── com.calibre_ebook.calibre.ebook_viewer.svg │ │ ├── com.calibre_ebook.calibre.lrfviewer.svg │ │ ├── com.calibre_ebook.calibre.svg │ │ ├── com.deepin.Calculator.svg │ │ ├── com.deepin.Calendar.svg │ │ ├── com.deepin.ImageViewer.svg │ │ ├── com.deepin.Movies.svg │ │ ├── com.deepin.Music.svg │ │ ├── com.deepin.Picker.svg │ │ ├── com.deepin.ScreenRecorder.svg │ │ ├── com.deepin.ScreenShot.svg │ │ ├── com.deepin.Screenshot.svg │ │ ├── com.deepin.VoiceRecorder.svg │ │ ├── com.dhsdevelopments.Climaxima.svg │ │ ├── com.discordapp.Discord.svg │ │ ├── com.dropbox.Client.svg │ │ ├── com.elsevier.MendeleyDesktop.svg │ │ ├── com.endlessnetwork.missilemath.svg │ │ ├── com.getferdi.Ferdi.svg │ │ ├── com.getmailspring.Mailspring.svg │ │ ├── com.getpostman.Postman.svg │ │ ├── com.gexperts.Terminix.svg │ │ ├── com.gexperts.Tilix.svg │ │ ├── com.gigitux.gtkwhats.svg │ │ ├── com.github.IsmaelMartinez.teams_for_linux.svg │ │ ├── com.github.JannikHv.Gydl.svg │ │ ├── com.github.PintaProject.Pinta.svg │ │ ├── com.github.aimproxy.dotfonts.svg │ │ ├── com.github.akiraux.akira.svg │ │ ├── com.github.alecaddd.sequeler.svg │ │ ├── com.github.arshubham.cipher.svg │ │ ├── com.github.artemanufrij.hashit.svg │ │ ├── com.github.artemanufrij.imageburner.svg │ │ ├── com.github.artemanufrij.playmymusic.svg │ │ ├── com.github.artemanufrij.playmyvideos.svg │ │ ├── com.github.artemanufrij.screencast.svg │ │ ├── com.github.artemanufrij.showmypictures.svg │ │ ├── com.github.bajoja.indicator-kdeconnect.svg │ │ ├── com.github.bartzaalberg.php-tester.svg │ │ ├── com.github.bitseater.weather.svg │ │ ├── com.github.calo001.fondo.svg │ │ ├── com.github.christophernugent.locksmith.svg │ │ ├── com.github.cryptowyrm.copypastegrab.svg │ │ ├── com.github.dahenson.agenda.svg │ │ ├── com.github.danrabbit.nimbus.svg │ │ ├── com.github.davidmhewitt.clipped.svg │ │ ├── com.github.djaler.formatter.svg │ │ ├── com.github.donadigo.appeditor.svg │ │ ├── com.github.donadigo.eddy.svg │ │ ├── com.github.fabiocolacio.marker.svg │ │ ├── com.github.georgekap1an.chores.svg │ │ ├── com.github.hannesschulze.optimizer.svg │ │ ├── com.github.jeromerobert.pdfarranger.svg │ │ ├── com.github.johnfactotum.Foliate.svg │ │ ├── com.github.juliagoda.antimicroX.svg │ │ ├── com.github.junrrein.PDFSlicer.svg │ │ ├── com.github.lainsce.notejot.svg │ │ ├── com.github.lainsce.palaura.svg │ │ ├── com.github.louis77.tuner.svg │ │ ├── com.github.lpereira.HardInfo.svg │ │ ├── com.github.lpereira.hardinfo.svg │ │ ├── com.github.maoschanz.DynamicWallpaperEditor.svg │ │ ├── com.github.maoschanz.drawing.svg │ │ ├── com.github.micahflee.torbrowser-launcher.svg │ │ ├── com.github.mohelm97.screenrecorder.svg │ │ ├── com.github.parnold-x.sudoku.svg │ │ ├── com.github.rapidfingers.translator.svg │ │ ├── com.github.ronnydo.colorpicker.svg │ │ ├── com.github.rssguard.svg │ │ ├── com.github.ryonakano.reco.svg │ │ ├── com.github.santileortiz.iconoscope.svg │ │ ├── com.github.stsdc.monitor.svg │ │ ├── com.github.thezbyg.Gpick.svg │ │ ├── com.github.thezbyg.gpick.svg │ │ ├── com.github.timecraft.js-test.svg │ │ ├── com.github.timecraft.notifier.svg │ │ ├── com.github.unrud.djpdf.svg │ │ ├── com.github.wjaguar.mtPaint.svg │ │ ├── com.github.wjaguar.mtpaint.svg │ │ ├── com.github.wwmm.pulseeffects.svg │ │ ├── com.github.xournalpp.xournalpp.svg │ │ ├── com.github.zren.tiledmenu.svg │ │ ├── com.github.zren.todolist.svg │ │ ├── com.gitlab.davem.ClamTk.svg │ │ ├── com.giuspen.cherrytree.svg │ │ ├── com.gnome.Software.svg │ │ ├── com.gnome.software.svg │ │ ├── com.google.AndroidStudio.svg │ │ ├── com.google.Chrome.svg │ │ ├── com.googleplaymusicdesktopplayer.GPMDP.svg │ │ ├── com.hamrick.VueScan.svg │ │ ├── com.jetbrains.CLion.svg │ │ ├── com.jetbrains.DataGrip.svg │ │ ├── com.jetbrains.IntelliJ-IDEA-Community.svg │ │ ├── com.jetbrains.IntelliJ-IDEA-Ultimate.svg │ │ ├── com.jetbrains.Intellij-Community.svg │ │ ├── com.jetbrains.PhpStorm.svg │ │ ├── com.jetbrains.PyCharm-Community.svg │ │ ├── com.jetbrains.PyCharm-Professional.svg │ │ ├── com.jetbrains.PyCharm.svg │ │ ├── com.jetbrains.Rider.svg │ │ ├── com.jetbrains.RubyMine.svg │ │ ├── com.jetbrains.WebStorm.svg │ │ ├── com.jgraph.drawio.desktop.svg │ │ ├── com.leinardi.gwe.svg │ │ ├── com.librehat.yahooweather.svg │ │ ├── com.meetfranz.Franz.svg │ │ ├── com.microsoft.Teams.svg │ │ ├── com.mojang.Minecraft.svg │ │ ├── com.netease.CloudMusic.svg │ │ ├── com.obsproject.Studio.svg │ │ ├── com.onlyoffice.DesktopEditors.svg │ │ ├── com.sigil_ebook.Sigil.svg │ │ ├── com.skype.Client.svg │ │ ├── com.slack.Slack.svg │ │ ├── com.spotify.Client.svg │ │ ├── com.sublimemerge.App.svg │ │ ├── com.sublimetext.SublimeText3.svg │ │ ├── com.sublimetext.three.svg │ │ ├── com.syntevo.SmartGit.svg │ │ ├── com.transmissionbt.Transmission.svg │ │ ├── com.ugetdm.uGet.svg │ │ ├── com.ulduzsoft.KchmViewer.svg │ │ ├── com.uploadedlobster.peek.svg │ │ ├── com.valvesoftware.Steam.svg │ │ ├── com.viber.Viber.svg │ │ ├── com.vinszent.GnomeTwitch.svg │ │ ├── com.visualstudio.code-oss.svg │ │ ├── com.visualstudio.code.insiders.svg │ │ ├── com.visualstudio.code.oss.svg │ │ ├── com.visualstudio.code.svg │ │ ├── com.vscodium.codium.svg │ │ ├── com.wps.Office.etmain.svg │ │ ├── com.wps.Office.wppmain.svg │ │ ├── com.wps.Office.wpsmain.svg │ │ ├── com.wps.Office2019.etmain.svg │ │ ├── com.wps.Office2019.wppmain.svg │ │ ├── com.wps.Office2019.wpsmain.svg │ │ ├── computer-log-out.svg │ │ ├── computerjanitor.svg │ │ ├── config-date.svg │ │ ├── config-language.svg │ │ ├── config-users.svg │ │ ├── configuration_section.svg │ │ ├── configurator.svg │ │ ├── configure-debian.svg │ │ ├── contact-editor.svg │ │ ├── contact.svg │ │ ├── contacts.svg │ │ ├── control-center2.svg │ │ ├── converseen.svg │ │ ├── cookie.svg │ │ ├── corebird.svg │ │ ├── cozy.svg │ │ ├── cpu-x.svg │ │ ├── cpuinfo.svg │ │ ├── cqcb.plasma.webslice.svg │ │ ├── credentials-preferences.svg │ │ ├── crossover.svg │ │ ├── crow-translate.svg │ │ ├── cryfs-gui.svg │ │ ├── cryptfolder-indicator.svg │ │ ├── cryptkeeper.svg │ │ ├── crystal-picnic.svg │ │ ├── crystal.svg │ │ ├── cs-applets.svg │ │ ├── cs-backgrounds.svg │ │ ├── cs-bluetooth.svg │ │ ├── cs-cat-admin.svg │ │ ├── cs-cat-appearance.svg │ │ ├── cs-cat-hardware.svg │ │ ├── cs-cat-prefs.svg │ │ ├── cs-cat-themes.svg │ │ ├── cs-color.svg │ │ ├── cs-date-time.svg │ │ ├── cs-default-applications.svg │ │ ├── cs-desklets.svg │ │ ├── cs-desktop-effects.svg │ │ ├── cs-desktop.svg │ │ ├── cs-details.svg │ │ ├── cs-display.svg │ │ ├── cs-drivers.svg │ │ ├── cs-extensions.svg │ │ ├── cs-firewall.svg │ │ ├── cs-fonts.svg │ │ ├── cs-general.svg │ │ ├── cs-input-method.svg │ │ ├── cs-keyboard.svg │ │ ├── cs-language.svg │ │ ├── cs-login.svg │ │ ├── cs-mouse.svg │ │ ├── cs-network.svg │ │ ├── cs-notifications.svg │ │ ├── cs-online-accounts.svg │ │ ├── cs-overview.svg │ │ ├── cs-panel.svg │ │ ├── cs-power.svg │ │ ├── cs-printer.svg │ │ ├── cs-privacy.svg │ │ ├── cs-region.svg │ │ ├── cs-screen.svg │ │ ├── cs-screensaver.svg │ │ ├── cs-session-properties.svg │ │ ├── cs-software-properties.svg │ │ ├── cs-sound.svg │ │ ├── cs-sources.svg │ │ ├── cs-startup-programs.svg │ │ ├── cs-tablet.svg │ │ ├── cs-themes.svg │ │ ├── cs-tiling.svg │ │ ├── cs-universal-access.svg │ │ ├── cs-user-accounts.svg │ │ ├── cs-user.svg │ │ ├── cs-windows.svg │ │ ├── cs-workspaces.svg │ │ ├── csd-a11y-keyboard.svg │ │ ├── csd-a11y-settings.svg │ │ ├── csd-automount.svg │ │ ├── csd-background.svg │ │ ├── csd-clipboard.svg │ │ ├── csd-color.svg │ │ ├── csd-cursor.svg │ │ ├── csd-datetime.svg │ │ ├── csd-housekeeping.svg │ │ ├── csd-keyboard.svg │ │ ├── csd-media-keys.svg │ │ ├── csd-mouse.svg │ │ ├── csd-orientation.svg │ │ ├── csd-power.svg │ │ ├── csd-print-notifications.svg │ │ ├── csd-printer.svg │ │ ├── csd-screensaver-proxy.svg │ │ ├── csd-sound.svg │ │ ├── csd-wacom.svg │ │ ├── csd-xrandr.svg │ │ ├── csd-xsettings.svg │ │ ├── cuckoo.svg │ │ ├── cumulus.svg │ │ ├── cups-launcher.svg │ │ ├── cups.svg │ │ ├── cupsprinter.svg │ │ ├── customdesktopmenu.svg │ │ ├── cutemarked.svg │ │ ├── cuttlefish.svg │ │ ├── cx.ring.Ring.svg │ │ ├── cx.ring.ring-kde.svg │ │ ├── d3lphin.svg │ │ ├── darktable.svg │ │ ├── datagrip.svg │ │ ├── date.svg │ │ ├── dates.svg │ │ ├── dayfolder.svg │ │ ├── dbeaver-ce.svg │ │ ├── dbeaver-ee.svg │ │ ├── dbeaver.svg │ │ ├── dconf-editor.svg │ │ ├── ddcopy.svg │ │ ├── dde-calendar.svg │ │ ├── dde-file-manager.svg │ │ ├── dde-introduction.svg │ │ ├── ddm.svg │ │ ├── ddrescue-gui.svg │ │ ├── de.haeckerfelix.Fragments.svg │ │ ├── de.openstreetmap.josm.svg │ │ ├── debian-installer-launcher.svg │ │ ├── debian-logo.svg │ │ ├── debian-plymouth-manager.svg │ │ ├── debian-reference.svg │ │ ├── debian-swirl.svg │ │ ├── debian.svg │ │ ├── deepin-appstore.svg │ │ ├── deepin-boot-maker.svg │ │ ├── deepin-calculator.svg │ │ ├── deepin-calendar.svg │ │ ├── deepin-clone.svg │ │ ├── deepin-cloud-configuration.svg │ │ ├── deepin-cloud-print-configurator.svg │ │ ├── deepin-cloud-scan-config-helper.svg │ │ ├── deepin-cloudprint-config-helper.svg │ │ ├── deepin-deb-installer.svg │ │ ├── deepin-draw.svg │ │ ├── deepin-editor.svg │ │ ├── deepin-emacs.svg │ │ ├── deepin-feedback.svg │ │ ├── deepin-font-installer.svg │ │ ├── deepin-game-center.svg │ │ ├── deepin-graphics-driver-manager.svg │ │ ├── deepin-image-viewer.svg │ │ ├── deepin-installer-oem.svg │ │ ├── deepin-installer.svg │ │ ├── deepin-manual.svg │ │ ├── deepin-media-player.svg │ │ ├── deepin-movie.svg │ │ ├── deepin-multitasking-view.svg │ │ ├── deepin-music-player.svg │ │ ├── deepin-music.svg │ │ ├── deepin-note.svg │ │ ├── deepin-picker.svg │ │ ├── deepin-remote-assistance.svg │ │ ├── deepin-repair-tools.svg │ │ ├── deepin-repair.svg │ │ ├── deepin-scanner.svg │ │ ├── deepin-screen-recorder.svg │ │ ├── deepin-screenrecorder.svg │ │ ├── deepin-screenshot.svg │ │ ├── deepin-show-desktop.svg │ │ ├── deepin-software-center.svg │ │ ├── deepin-system-monitor.svg │ │ ├── deepin-terminal.svg │ │ ├── deepin-toggle-desktop.svg │ │ ├── deepin-translator.svg │ │ ├── deepin-voice-recorder.svg │ │ ├── deepin.com.qq.im.svg │ │ ├── deepin.com.qq.office.svg │ │ ├── deepin.com.wechat.svg │ │ ├── deepinwine-qq.svg │ │ ├── deezer.svg │ │ ├── default-application.svg │ │ ├── deja-dup.svg │ │ ├── deluge-torrent.svg │ │ ├── deluge.svg │ │ ├── designer-qt4.svg │ │ ├── designer-qt5.svg │ │ ├── designer.svg │ │ ├── designer5.svg │ │ ├── deskbar-applet.svg │ │ ├── deskbar.svg │ │ ├── desktop-effect.svg │ │ ├── desktop-effects.svg │ │ ├── desktop-environment-gnome.svg │ │ ├── desktop-environment-kde.svg │ │ ├── desktop-environment-lxde.svg │ │ ├── desktop-environment-mate.svg │ │ ├── desktop-environment-xfce.svg │ │ ├── desktop-profiler.svg │ │ ├── desktop.svg │ │ ├── devede.svg │ │ ├── devedeng.svg │ │ ├── devhelp.svg │ │ ├── device-notifier.svg │ │ ├── dia.svg │ │ ├── dialog-info.svg │ │ ├── dialog-information.svg │ │ ├── dialog-password.svg │ │ ├── dict.svg │ │ ├── dictionary.svg │ │ ├── digikam.svg │ │ ├── dillo.svg │ │ ├── dingtalk.svg │ │ ├── diodon.svg │ │ ├── discord-ptb.svg │ │ ├── discord.svg │ │ ├── disk-burner.svg │ │ ├── disk-check.svg │ │ ├── disk-usage-analyzer.svg │ │ ├── diskmonitor.svg │ │ ├── disks.svg │ │ ├── disper.svg │ │ ├── display-capplet.svg │ │ ├── display-im6.Q16.svg │ │ ├── display-im6.q16.svg │ │ ├── display.im6.svg │ │ ├── display.svg │ │ ├── distributor-logo-antergos.svg │ │ ├── distributor-logo-archlinux.svg │ │ ├── distributor-logo-blackarch.svg │ │ ├── distributor-logo-budgie-remix.svg │ │ ├── distributor-logo-budgie.svg │ │ ├── distributor-logo-centos.svg │ │ ├── distributor-logo-chakra.svg │ │ ├── distributor-logo-debian.svg │ │ ├── distributor-logo-deepin.svg │ │ ├── distributor-logo-devuan.svg │ │ ├── distributor-logo-elementary.svg │ │ ├── distributor-logo-fedora.svg │ │ ├── distributor-logo-gentoo.svg │ │ ├── distributor-logo-kali.svg │ │ ├── distributor-logo-korora.svg │ │ ├── distributor-logo-kubuntu.svg │ │ ├── distributor-logo-lfs.svg │ │ ├── distributor-logo-linux-mint.svg │ │ ├── distributor-logo-lubuntu.svg │ │ ├── distributor-logo-mageia.svg │ │ ├── distributor-logo-manjaro.svg │ │ ├── distributor-logo-mint.svg │ │ ├── distributor-logo-mx.svg │ │ ├── distributor-logo-opensuse.svg │ │ ├── distributor-logo-parrot.svg │ │ ├── distributor-logo-pop-os.svg │ │ ├── distributor-logo-raspbian.svg │ │ ├── distributor-logo-rhel.svg │ │ ├── distributor-logo-siduction.svg │ │ ├── distributor-logo-slackware.svg │ │ ├── distributor-logo-solus.svg │ │ ├── distributor-logo-ubuntu-budgie.svg │ │ ├── distributor-logo-ubuntu-gnome.svg │ │ ├── distributor-logo-ubuntu-mate.svg │ │ ├── distributor-logo-ubuntu-studio.svg │ │ ├── distributor-logo-ubuntu.svg │ │ ├── distributor-logo-void.svg │ │ ├── distributor-logo-xubuntu.svg │ │ ├── distributor-logo-zorin.svg │ │ ├── distributor-logo.svg │ │ ├── dnfdragora.svg │ │ ├── docear.svg │ │ ├── dock.svg │ │ ├── dockbarx.svg │ │ ├── docky.svg │ │ ├── document-open-recent.svg │ │ ├── document-print-preview.svg │ │ ├── documentation.svg │ │ ├── dolphin-emu.svg │ │ ├── dont-starve-together.svg │ │ ├── dont-starve.svg │ │ ├── dosbox.svg │ │ ├── dragonplayer.svg │ │ ├── drakconf.svg │ │ ├── drakmenustyle.svg │ │ ├── draksec-mdk.svg │ │ ├── drakstats.svg │ │ ├── draw-io.svg │ │ ├── drawio.svg │ │ ├── dreamchess.svg │ │ ├── drive-removable-media.svg │ │ ├── driver-manager.svg │ │ ├── dropbox.svg │ │ ├── dvd95.svg │ │ ├── dvd9548.svg │ │ ├── dwww-gnome-touristinfo.svg │ │ ├── e-mail.svg │ │ ├── eTube.svg │ │ ├── easy-tag.svg │ │ ├── easystroke.svg │ │ ├── easytag.svg │ │ ├── easytags.svg │ │ ├── echomixer.svg │ │ ├── eclipse-cdt.svg │ │ ├── eclipse.svg │ │ ├── eddy.svg │ │ ├── edile.svg │ │ ├── edit-clear.svg │ │ ├── edit-find.svg │ │ ├── edit-paste.svg │ │ ├── edit-urpm-sources.svg │ │ ├── eekboard.svg │ │ ├── electron.svg │ │ ├── electron2.svg │ │ ├── electron3.svg │ │ ├── electron4.svg │ │ ├── electron5.svg │ │ ├── electron6.svg │ │ ├── electron9.svg │ │ ├── electronic-wechat.svg │ │ ├── element-desktop.svg │ │ ├── element-nightly.svg │ │ ├── element.svg │ │ ├── elementary-photo.svg │ │ ├── elisa.svg │ │ ├── emacs-24.svg │ │ ├── emacs-25.svg │ │ ├── emacs-nox.svg │ │ ├── emacs-snapshot.svg │ │ ├── emacs.svg │ │ ├── emacs22.svg │ │ ├── emacs23.svg │ │ ├── emacs24.svg │ │ ├── emacs25.svg │ │ ├── email-client.svg │ │ ├── email.svg │ │ ├── emblem-mail.svg │ │ ├── emblem-people.svg │ │ ├── emerillon.svg │ │ ├── empathy.svg │ │ ├── emule.svg │ │ ├── engrampa.svg │ │ ├── eog.svg │ │ ├── eom.svg │ │ ├── epdfview.svg │ │ ├── ephoto.svg │ │ ├── epiphany-bookmarks.svg │ │ ├── epiphany-browser.svg │ │ ├── epiphany-gecko.svg │ │ ├── epiphany-icon.svg │ │ ├── epiphany-webkit.svg │ │ ├── epiphany.svg │ │ ├── epulse.svg │ │ ├── equaliser.svg │ │ ├── esd.svg │ │ ├── etube.svg │ │ ├── eu.blumenstingl.martin.keystateplasmoid.svg │ │ ├── eu.tiliado.NuvolaAppAmazonCloudPlayer.svg │ │ ├── eu.tiliado.NuvolaAppDeezer.svg │ │ ├── eu.tiliado.NuvolaAppGooglePlayMusic.svg │ │ ├── eu.tiliado.NuvolaAppSpotify.svg │ │ ├── eu.tiliado.NuvolaAppYoutube.svg │ │ ├── eu.tiliado.NuvolaAppYoutubeMusic.svg │ │ ├── evince.svg │ │ ├── evolution-calendar.svg │ │ ├── evolution-mail.svg │ │ ├── evolution-memos.svg │ │ ├── evolution-tasks.svg │ │ ├── evolution.svg │ │ ├── exfalso.svg │ │ ├── exifcleaner.svg │ │ ├── exmplayer.svg │ │ ├── extensions.svg │ │ ├── ezame.svg │ │ ├── f-spot.svg │ │ ├── face-smile.svg │ │ ├── facebook-facebook.com.svg │ │ ├── facebookresource.svg │ │ ├── fastmail.svg │ │ ├── fbmessenger.svg │ │ ├── fcitx-sogoupinyin.svg │ │ ├── fcitx.svg │ │ ├── fcitx_ubuntukylin.svg │ │ ├── featherpad.svg │ │ ├── fedora-logo-icon.svg │ │ ├── fedora-release-notes.svg │ │ ├── fedorausb.svg │ │ ├── feedreader.svg │ │ ├── ferdi.svg │ │ ├── ffado.svg │ │ ├── fifteenpuzzle.svg │ │ ├── figma-linux.svg │ │ ├── figma.svg │ │ ├── file-manager.svg │ │ ├── file-roller.svg │ │ ├── file-system-manager.svg │ │ ├── filelight.svg │ │ ├── filemanager-actions.svg │ │ ├── filerunner.svg │ │ ├── filetypes.svg │ │ ├── filezilla.svg │ │ ├── filled-xterm_32x32.svg │ │ ├── filled-xterm_48x48.svg │ │ ├── find-location.svg │ │ ├── fingerprint-gui.svg │ │ ├── firefox-3.0.svg │ │ ├── firefox-3.5.svg │ │ ├── firefox-4.0.svg │ │ ├── firefox-aurora-icon.svg │ │ ├── firefox-aurora.svg │ │ ├── firefox-beta-bin.svg │ │ ├── firefox-beta.svg │ │ ├── firefox-bin.svg │ │ ├── firefox-default.svg │ │ ├── firefox-developer-edition.svg │ │ ├── firefox-developer-icon.svg │ │ ├── firefox-developer.svg │ │ ├── firefox-esr.svg │ │ ├── firefox-gtk3.svg │ │ ├── firefox-icon-unbranded.svg │ │ ├── firefox-icon.svg │ │ ├── firefox-mozilla-build.svg │ │ ├── firefox-nightly-icon.svg │ │ ├── firefox-nightly.svg │ │ ├── firefox-original.svg │ │ ├── firefox-trunk.svg │ │ ├── firefox.svg │ │ ├── firefox3.svg │ │ ├── firestarter.svg │ │ ├── firewall-applet.svg │ │ ├── firewall-config.svg │ │ ├── firewall.svg │ │ ├── firewalld.svg │ │ ├── five-or-more.svg │ │ ├── flameshot.svg │ │ ├── flash-player-properties.svg │ │ ├── flash.svg │ │ ├── flashplayer.svg │ │ ├── flashplayerproperties.svg │ │ ├── flatpak-software.svg │ │ ├── flatseal.svg │ │ ├── flegita.svg │ │ ├── flickr.svg │ │ ├── flock-browser.svg │ │ ├── fluid.svg │ │ ├── fma-config-tool.svg │ │ ├── folder-remote-properties.svg │ │ ├── folder-wine.svg │ │ ├── folder_doc_q4os_startmenu.svg │ │ ├── foliate.svg │ │ ├── fondo.svg │ │ ├── font-manager.svg │ │ ├── font-viewer.svg │ │ ├── fonts.svg │ │ ├── footnote.svg │ │ ├── four-in-a-row.svg │ │ ├── foursquare.svg │ │ ├── foxit-reader.svg │ │ ├── foxitpdf.svg │ │ ├── foxitreader.svg │ │ ├── fr.free.Homebank.svg │ │ ├── fractal.svg │ │ ├── fragments.svg │ │ ├── franz.svg │ │ ├── freecad-daily.svg │ │ ├── freecad.svg │ │ ├── freefilesync.svg │ │ ├── freemind.svg │ │ ├── freeminer.svg │ │ ├── freeoffice-planmaker.svg │ │ ├── freeoffice-presentations.svg │ │ ├── freeoffice-textmaker.svg │ │ ├── freetuxtv.svg │ │ ├── fritzing.svg │ │ ├── fritzing_icon.svg │ │ ├── frostwire.svg │ │ ├── fusion-icon.svg │ │ ├── fwbuilder.svg │ │ ├── gEcrit.svg │ │ ├── gaiksaurus.svg │ │ ├── gajim.svg │ │ ├── galculator.svg │ │ ├── galeon.svg │ │ ├── gallery-app.svg │ │ ├── gallery.svg │ │ ├── galternatives.svg │ │ ├── gambitchess.svg │ │ ├── gbrainy.svg │ │ ├── gcalculator.svg │ │ ├── gcbalculator.svg │ │ ├── gcleaner.svg │ │ ├── gcolor.svg │ │ ├── gcolor2.svg │ │ ├── gcolor3.svg │ │ ├── gcompris-edit.svg │ │ ├── gcompris-qt.svg │ │ ├── gcompris.svg │ │ ├── gconf-cleaner.svg │ │ ├── gconf-editor.svg │ │ ├── gconfeditor.svg │ │ ├── gcr-gnupg.svg │ │ ├── gcr-key-pair.svg │ │ ├── gcr-key.svg │ │ ├── gcr-password.svg │ │ ├── gcrystal.svg │ │ ├── gda-browser-5.0.svg │ │ ├── gda-control-center.svg │ │ ├── gddccontrol.svg │ │ ├── gdeb.svg │ │ ├── gdebi.svg │ │ ├── gdevilspie.svg │ │ ├── gdiskdump.svg │ │ ├── gdm-login-photo.svg │ │ ├── gdm-setup.svg │ │ ├── gdm-xnest.svg │ │ ├── gdm.svg │ │ ├── gdm2setup.svg │ │ ├── gdmap.svg │ │ ├── gdmap_icon.svg │ │ ├── gdmflexiserver.svg │ │ ├── gdmsetup.svg │ │ ├── gdu-check-disk.svg │ │ ├── gdu-encrypted-lock.svg │ │ ├── geany.svg │ │ ├── geary.svg │ │ ├── gecrit.svg │ │ ├── gedbi.svg │ │ ├── gedit-icon.svg │ │ ├── gedit-logo.svg │ │ ├── gedit.svg │ │ ├── gedit1.svg │ │ ├── gedit2.svg │ │ ├── geeqie.svg │ │ ├── gemini.svg │ │ ├── genymotion-player.svg │ │ ├── genymotion.svg │ │ ├── geogebra-classic.svg │ │ ├── geogebra.svg │ │ ├── gfeedline.svg │ │ ├── ghetto-skype.svg │ │ ├── gimp.svg │ │ ├── gis-weather.svg │ │ ├── git-cola.svg │ │ ├── git-dag.svg │ │ ├── git-gui.svg │ │ ├── git.svg │ │ ├── gitg.svg │ │ ├── github-desktop.svg │ │ ├── github.svg │ │ ├── gitk.svg │ │ ├── gitkraken.svg │ │ ├── gkdebconf-icon.svg │ │ ├── gkdebconf.svg │ │ ├── gkrellm.svg │ │ ├── gksu-debian.svg │ │ ├── gksu-root-terminal.svg │ │ ├── gksu.svg │ │ ├── glViewImage.svg │ │ ├── glade-3.svg │ │ ├── glade.svg │ │ ├── glchess.svg │ │ ├── glines.svg │ │ ├── glipper.svg │ │ ├── glippy.svg │ │ ├── glxinfo.svg │ │ ├── gmail-desktop.svg │ │ ├── gmail-notify-icon.svg │ │ ├── gmail-offline.svg │ │ ├── gmail-plasmoid.svg │ │ ├── gmail.svg │ │ ├── gmailwatcher.svg │ │ ├── gmusicbrowser.svg │ │ ├── gnect.svg │ │ ├── gnethogs.svg │ │ ├── gnibbles.svg │ │ ├── gnobots.svg │ │ ├── gnobots2.svg │ │ ├── gnochm.svg │ │ ├── gnoduino.svg │ │ ├── gnome-2048.svg │ │ ├── gnome-about-logo.svg │ │ ├── gnome-abrt.svg │ │ ├── gnome-activity-journal.svg │ │ ├── gnome-aisleriot.svg │ │ ├── gnome-alsamixer-icon.svg │ │ ├── gnome-alsamixer.svg │ │ ├── gnome-app-install.svg │ │ ├── gnome-apt.svg │ │ ├── gnome-audio.svg │ │ ├── gnome-baker.svg │ │ ├── gnome-balsa.svg │ │ ├── gnome-balsa2.svg │ │ ├── gnome-bluetooth.svg │ │ ├── gnome-books.svg │ │ ├── gnome-boxes.svg │ │ ├── gnome-builder.svg │ │ ├── gnome-calc.svg │ │ ├── gnome-calculator.svg │ │ ├── gnome-calendar.svg │ │ ├── gnome-character-map.svg │ │ ├── gnome-characters.svg │ │ ├── gnome-chess.svg │ │ ├── gnome-clocks.svg │ │ ├── gnome-color-chooser.svg │ │ ├── gnome-color-manager.svg │ │ ├── gnome-contacts.svg │ │ ├── gnome-control-center.svg │ │ ├── gnome-cups-manager.svg │ │ ├── gnome-debian.svg │ │ ├── gnome-desktop-config.svg │ │ ├── gnome-desktop-item-edit.svg │ │ ├── gnome-dev-printer.svg │ │ ├── gnome-devel.svg │ │ ├── gnome-device-manager.svg │ │ ├── gnome-dictionary.svg │ │ ├── gnome-disk-utility.svg │ │ ├── gnome-disks.svg │ │ ├── gnome-display-panel.svg │ │ ├── gnome-display-properties.svg │ │ ├── gnome-documents.svg │ │ ├── gnome-dsiplay-properties.svg │ │ ├── gnome-emacs.svg │ │ ├── gnome-encfs-manager.svg │ │ ├── gnome-eterm.svg │ │ ├── gnome-freecell.svg │ │ ├── gnome-games.svg │ │ ├── gnome-glchess.svg │ │ ├── gnome-glines.svg │ │ ├── gnome-gmail.svg │ │ ├── gnome-gmenu.svg │ │ ├── gnome-gnect.svg │ │ ├── gnome-gnibbles.svg │ │ ├── gnome-gnibbless.svg │ │ ├── gnome-hearts.svg │ │ ├── gnome-help.svg │ │ ├── gnome-hideseek.svg │ │ ├── gnome-iagno.svg │ │ ├── gnome-info.svg │ │ ├── gnome-internet.svg │ │ ├── gnome-klotski.svg │ │ ├── gnome-latex.svg │ │ ├── gnome-layout-switcher.svg │ │ ├── gnome-lightsoff.svg │ │ ├── gnome-lockscreen.svg │ │ ├── gnome-logo-icon-transparent.svg │ │ ├── gnome-logo-icon.svg │ │ ├── gnome-logout.svg │ │ ├── gnome-logs.svg │ │ ├── gnome-mahjongg.svg │ │ ├── gnome-maps.svg │ │ ├── gnome-menu.svg │ │ ├── gnome-mime-application-x-deb.svg │ │ ├── gnome-mime-text-x-vcalendar.svg │ │ ├── gnome-mines.svg │ │ ├── gnome-mixer.svg │ │ ├── gnome-monitor.svg │ │ ├── gnome-mouse-properties.svg │ │ ├── gnome-mouse.svg │ │ ├── gnome-mplayer-dbg.svg │ │ ├── gnome-mplayer.svg │ │ ├── gnome-mpv.svg │ │ ├── gnome-multi-writer.svg │ │ ├── gnome-music.svg │ │ ├── gnome-network-properties.svg │ │ ├── gnome-nibbles.svg │ │ ├── gnome-note.svg │ │ ├── gnome-package.svg │ │ ├── gnome-paint.svg │ │ ├── gnome-panel-clock.svg │ │ ├── gnome-panel-drawer.svg │ │ ├── gnome-panel-fish.svg │ │ ├── gnome-panel-force-quit.svg │ │ ├── gnome-panel-hibernate.svg │ │ ├── gnome-panel-launcher.svg │ │ ├── gnome-panel-notification-area.svg │ │ ├── gnome-panel-screenshoot.svg │ │ ├── gnome-panel-screenshot.svg │ │ ├── gnome-panel-separator.svg │ │ ├── gnome-panel-window-list.svg │ │ ├── gnome-panel-window-menu.svg │ │ ├── gnome-panel-workspace-switcher.svg │ │ ├── gnome-panel.svg │ │ ├── gnome-pdf.svg │ │ ├── gnome-photos.svg │ │ ├── gnome-planner.svg │ │ ├── gnome-player.svg │ │ ├── gnome-pomodoro.svg │ │ ├── gnome-power-manager.svg │ │ ├── gnome-power-statistics.svg │ │ ├── gnome-quadrapassel.svg │ │ ├── gnome-rdp.svg │ │ ├── gnome-remote-desktop.svg │ │ ├── gnome-robots.svg │ │ ├── gnome-run.svg │ │ ├── gnome-samegnome.svg │ │ ├── gnome-screenruler.svg │ │ ├── gnome-screenshot.svg │ │ ├── gnome-search-tool.svg │ │ ├── gnome-searchtool.svg │ │ ├── gnome-session-halt.svg │ │ ├── gnome-session-hebirnate.svg │ │ ├── gnome-session-hibernate.svg │ │ ├── gnome-session-properties.svg │ │ ├── gnome-session-suspend.svg │ │ ├── gnome-session.svg │ │ ├── gnome-set-time.svg │ │ ├── gnome-settings-accessibility-keyboard.svg │ │ ├── gnome-settings-accessibility-technologies.svg │ │ ├── gnome-settings-background.svg │ │ ├── gnome-settings-default-applications.svg │ │ ├── gnome-settings-font.svg │ │ ├── gnome-settings-keybinding.svg │ │ ├── gnome-settings-keybindings.svg │ │ ├── gnome-settings-mouse.svg │ │ ├── gnome-settings-sound.svg │ │ ├── gnome-settings-theme.svg │ │ ├── gnome-settings-ui-behavior.svg │ │ ├── gnome-settings.svg │ │ ├── gnome-shell-extension-prefs.svg │ │ ├── gnome-shutdown.svg │ │ ├── gnome-software.svg │ │ ├── gnome-sound-properties.svg │ │ ├── gnome-sound-recorder.svg │ │ ├── gnome-status.svg │ │ ├── gnome-sticky-notes-applet.svg │ │ ├── gnome-subtitles.svg │ │ ├── gnome-sudoku.svg │ │ ├── gnome-swell-foop.svg │ │ ├── gnome-system-config.svg │ │ ├── gnome-system-log.svg │ │ ├── gnome-system-monitor.svg │ │ ├── gnome-system.svg │ │ ├── gnome-tali.svg │ │ ├── gnome-taquin.svg │ │ ├── gnome-term.svg │ │ ├── gnome-terminal.svg │ │ ├── gnome-tetraves.svg │ │ ├── gnome-tetravex.svg │ │ ├── gnome-todo.svg │ │ ├── gnome-tracker.svg │ │ ├── gnome-translate.svg │ │ ├── gnome-tweak-tool.svg │ │ ├── gnome-tweaks.svg │ │ ├── gnome-twitch.svg │ │ ├── gnome-unknown.svg │ │ ├── gnome-usage.svg │ │ ├── gnome-user-share.svg │ │ ├── gnome-volume-control.svg │ │ ├── gnome-warning.svg │ │ ├── gnome-weather.svg │ │ ├── gnome-web-browser.svg │ │ ├── gnome-web.svg │ │ ├── gnome-window-manager.svg │ │ ├── gnome-windows.svg │ │ ├── gnome-wm.svg │ │ ├── gnome-word.svg │ │ ├── gnome-xterm.svg │ │ ├── gnome_apps.svg │ │ ├── gnomebaker.svg │ │ ├── gnomine.svg │ │ ├── gnote.svg │ │ ├── gnotes.svg │ │ ├── gnotravex.svg │ │ ├── gnucash-icon.svg │ │ ├── gnucash.svg │ │ ├── gnugo.svg │ │ ├── gnugo48.svg │ │ ├── gnupg.svg │ │ ├── goa-account-exchange.svg │ │ ├── goa-account-facebook.svg │ │ ├── goa-account-fedora.svg │ │ ├── goa-account-flickr.svg │ │ ├── goa-account-foursquare.svg │ │ ├── goa-account-google.svg │ │ ├── goa-account-lastfm.svg │ │ ├── goa-account-live.svg │ │ ├── goa-account-microsoft.svg │ │ ├── goa-account-msn.svg │ │ ├── goa-account-owncloud.svg │ │ ├── goa-account-pocket.svg │ │ ├── goa-account-telegram.svg │ │ ├── goa-account-todoist.svg │ │ ├── goa-account-twitter.svg │ │ ├── goa-account-ubuntusso.svg │ │ ├── goa-account-yahoo.svg │ │ ├── goa-account.svg │ │ ├── goa-panel.svg │ │ ├── godot.svg │ │ ├── goland.svg │ │ ├── golang.svg │ │ ├── goldendict.svg │ │ ├── google-calculator.svg │ │ ├── google-calendar.svg │ │ ├── google-chrome-beta.svg │ │ ├── google-chrome-dev.svg │ │ ├── google-chrome-developer-tool.svg │ │ ├── google-chrome-unstable.svg │ │ ├── google-chrome.svg │ │ ├── google-chrome2.svg │ │ ├── google-chromium.svg │ │ ├── google-drive.svg │ │ ├── google-earth-pro.svg │ │ ├── google-earth.svg │ │ ├── google-music.svg │ │ ├── google-play-music-desktop-player.svg │ │ ├── google-reader.svg │ │ ├── google.svg │ │ ├── googlechrome.svg │ │ ├── googlemusicframe.svg │ │ ├── gourmet.svg │ │ ├── gp.svg │ │ ├── gpa.svg │ │ ├── gpaint.svg │ │ ├── gparted.svg │ │ ├── gpaste.svg │ │ ├── gpick.svg │ │ ├── gpicview.svg │ │ ├── gpk-prefs.svg │ │ ├── gpk-repo.svg │ │ ├── gpk-service-pack.svg │ │ ├── gpmdp.svg │ │ ├── gprename.svg │ │ ├── gpxsee.svg │ │ ├── gradio.svg │ │ ├── grandr.svg │ │ ├── graphics-image-editor.svg │ │ ├── graphics-image-viewer.svg │ │ ├── graphics-viewer-document.svg │ │ ├── gravit-designer.svg │ │ ├── greader.svg │ │ ├── green-recorder.svg │ │ ├── grip.svg │ │ ├── grsync-restore.svg │ │ ├── grsync.svg │ │ ├── grub-customizer.svg │ │ ├── gscan2pdf.svg │ │ ├── gscreenshot.svg │ │ ├── gsd-xrandr.svg │ │ ├── gsearchtool.svg │ │ ├── gsmartcontrol.svg │ │ ├── gstreamer-properties.svg │ │ ├── gtali.svg │ │ ├── gtg.svg │ │ ├── gthumb.svg │ │ ├── gtick.svg │ │ ├── gtk-about.svg │ │ ├── gtk-dialog-info.svg │ │ ├── gtk-help.svg │ │ ├── gtk-info.svg │ │ ├── gtk-lshw.svg │ │ ├── gtk-missing-image.svg │ │ ├── gtk-preferences.svg │ │ ├── gtk-properties.svg │ │ ├── gtk-recordmydesktop.svg │ │ ├── gtk-redshift.svg │ │ ├── gtk-select-color.svg │ │ ├── gtk-theme-config.svg │ │ ├── gtk-youtube-viewer.svg │ │ ├── gtk3-demo.svg │ │ ├── gtk3-icon-browser.svg │ │ ├── gtk3-widget-factory.svg │ │ ├── gtk4-demo.svg │ │ ├── gtk4-widget-factory.svg │ │ ├── gtk_info.svg │ │ ├── gtkam-camera.svg │ │ ├── gtkam.svg │ │ ├── gtkconfig.svg │ │ ├── gtkhash.svg │ │ ├── gtklp.svg │ │ ├── gtklpq.svg │ │ ├── gtkterm.svg │ │ ├── gtkwave.svg │ │ ├── gtubeclock.svg │ │ ├── gtwitter.svg │ │ ├── guayadeque.svg │ │ ├── gufw.svg │ │ ├── gufw_menu.svg │ │ ├── guitar-pro.svg │ │ ├── guitarix.svg │ │ ├── guitarix2.svg │ │ ├── guvcview.svg │ │ ├── gvfsd-archive-file.svg │ │ ├── gvim.svg │ │ ├── gwenview.svg │ │ ├── gworldclock.svg │ │ ├── gx_head.svg │ │ ├── gxine.svg │ │ ├── gydl.svg │ │ ├── h2-icon.svg │ │ ├── haguichi.svg │ │ ├── hamsket.svg │ │ ├── harddrake.svg │ │ ├── harddrake2.svg │ │ ├── hardinfo.svg │ │ ├── hb-icon.svg │ │ ├── help-about.svg │ │ ├── help-browser.svg │ │ ├── help-contents.svg │ │ ├── help-faq.svg │ │ ├── help-info.svg │ │ ├── help.svg │ │ ├── help_index.svg │ │ ├── hexchat.svg │ │ ├── hi48-app-wireshark.svg │ │ ├── hi64-apps-ffado.svg │ │ ├── hitori.svg │ │ ├── homebank.svg │ │ ├── hotwire.svg │ │ ├── hourglass.svg │ │ ├── hp-toolbox.svg │ │ ├── hp_logo.svg │ │ ├── hplip.svg │ │ ├── htop.svg │ │ ├── hugin.svg │ │ ├── hwbrowser.svg │ │ ├── hwinfo.svg │ │ ├── hydrogen.svg │ │ ├── hyper.svg │ │ ├── i-network-printer.svg │ │ ├── iagno.svg │ │ ├── ibus-anthy.svg │ │ ├── ibus-bopomofo.svg │ │ ├── ibus-engine.svg │ │ ├── ibus-keyboard.svg │ │ ├── ibus-pinyin.svg │ │ ├── ibus-setup-chewing.svg │ │ ├── ibus-setup-hangul.svg │ │ ├── ibus-setup.svg │ │ ├── ibus-typing-booster.svg │ │ ├── ibus.svg │ │ ├── icaconfigmgr.svg │ │ ├── icaconncenter.svg │ │ ├── icamanager.svg │ │ ├── icaselfservice.svg │ │ ├── icon-preview-app.svg │ │ ├── icons.svg │ │ ├── iconthemes.svg │ │ ├── idea-ultimate.svg │ │ ├── idea.svg │ │ ├── idle.svg │ │ ├── idle3.svg │ │ ├── iease-music.svg │ │ ├── im-chooser.svg │ │ ├── im-msn.svg │ │ ├── im.pidgin.Pidgin.svg │ │ ├── im.riot.Riot.svg │ │ ├── im.vector.svg │ │ ├── image-missing.svg │ │ ├── image-viewer.svg │ │ ├── imageburner.svg │ │ ├── imagemagick.svg │ │ ├── imagewriter.svg │ │ ├── imagination.svg │ │ ├── imap.svg │ │ ├── indicator-applet.svg │ │ ├── indicator-keylock.svg │ │ ├── indicator-privacy.svg │ │ ├── indicator-sensors.svg │ │ ├── indicator-sound-switcher.svg │ │ ├── indicator-stickynotes.svg │ │ ├── indicator-virtual-box.svg │ │ ├── indicator-weather.svg │ │ ├── info.olasagasti.revelation.svg │ │ ├── info.svg │ │ ├── inkscape-logo.svg │ │ ├── inkscape.svg │ │ ├── inkscape.viewer.svg │ │ ├── input-joystick.svg │ │ ├── input-keyboard.svg │ │ ├── input-mouse.svg │ │ ├── input-tablet.svg │ │ ├── input_device_settings.svg │ │ ├── insomnia-designer.svg │ │ ├── insomnia.svg │ │ ├── instantbird.svg │ │ ├── insync.svg │ │ ├── intellij-idea-ce.svg │ │ ├── intellij-idea-community.svg │ │ ├── intellij-idea-ue-bundled-jre.svg │ │ ├── intellij-idea-ultimate-edition.svg │ │ ├── intellij-idea-ultimate.svg │ │ ├── intellij-idea.svg │ │ ├── intellij.svg │ │ ├── intellij_idea.svg │ │ ├── internet-chat.svg │ │ ├── internet-feed-reader.svg │ │ ├── internet-mail.svg │ │ ├── internet-news-reader.svg │ │ ├── internet-telephony.svg │ │ ├── internet-web-browser.svg │ │ ├── internet.svg │ │ ├── internet_mail.svg │ │ ├── io.atom.Atom.svg │ │ ├── io.atom.electron.BaseApp.svg │ │ ├── io.bit3.WhatsAppQT.svg │ │ ├── io.brackets.Brackets.svg │ │ ├── io.dbeaver.DBeaverCommunity.svg │ │ ├── io.designer.GravitDesigner.svg │ │ ├── io.element.Element.svg │ │ ├── io.elementary.appcenter.svg │ │ ├── io.elementary.calculator.svg │ │ ├── io.elementary.calendar.svg │ │ ├── io.elementary.camera.svg │ │ ├── io.elementary.code.svg │ │ ├── io.elementary.files.svg │ │ ├── io.elementary.mail.svg │ │ ├── io.elementary.music.svg │ │ ├── io.elementary.photos-viewer.svg │ │ ├── io.elementary.photos.svg │ │ ├── io.elementary.screenshot-tool.svg │ │ ├── io.elementary.switchboard.svg │ │ ├── io.elementary.tasks.svg │ │ ├── io.elementary.terminal.svg │ │ ├── io.elementary.videos.svg │ │ ├── io.elementary.wingpanel.svg │ │ ├── io.github.Celluloid.svg │ │ ├── io.github.GnomeMpv.svg │ │ ├── io.github.Hexchat.svg │ │ ├── io.github.Pithos.svg │ │ ├── io.github.Qalculate.svg │ │ ├── io.github.TransmissionRemoteGtk.svg │ │ ├── io.github.antimicrox.antimicrox.svg │ │ ├── io.github.celluloid-player.Celluloid.svg │ │ ├── io.github.celluloid_player.Celluloid.svg │ │ ├── io.github.cloose.CuteMarkEd.svg │ │ ├── io.github.jkozera.ZevDocs.svg │ │ ├── io.github.openWMail.openWMail.svg │ │ ├── io.github.qalculate.Qalculate.svg │ │ ├── io.github.quodlibet.ExFalso.svg │ │ ├── io.github.quodlibet.QuodLibet.svg │ │ ├── io.github.seadve.Kooha.svg │ │ ├── io.github.wxmaxima_developers.wxMaxima.svg │ │ ├── io.gitlab.jstest_gtk.jstest_gtk.svg │ │ ├── io.gitlab.o20.onenote.svg │ │ ├── io.gitlab.o20.word.svg │ │ ├── io.liri.Calculator.svg │ │ ├── io.liri.Text.svg │ │ ├── io.lmms.LMMS.svg │ │ ├── io.lmms.Lmms.svg │ │ ├── io.mpv.Mpv.svg │ │ ├── io.mrarm.mcpelauncher.svg │ │ ├── io.neovim.nvim.svg │ │ ├── io.photoflare.photoflare.svg │ │ ├── iok.svg │ │ ├── ipython-notebook.svg │ │ ├── ipython.svg │ │ ├── ipython3.svg │ │ ├── irix.svg │ │ ├── iso-image-burn.svg │ │ ├── isoimagewriter.svg │ │ ├── istanbul.svg │ │ ├── jack_mixer.svg │ │ ├── jami.svg │ │ ├── java-1.6.0.svg │ │ ├── java-1.7.0.svg │ │ ├── java-1.8.0-openjdk.svg │ │ ├── java-1.8.0.svg │ │ ├── java-1.9.0.svg │ │ ├── java-10-openjdk.svg │ │ ├── java-11-openjdk.svg │ │ ├── java-12-openjdk.svg │ │ ├── java-13-openjdk.svg │ │ ├── java-14-openjdk.svg │ │ ├── java.svg │ │ ├── java10-openjdk.svg │ │ ├── java11-openjdk.svg │ │ ├── java12-openjdk.svg │ │ ├── java13-openjdk.svg │ │ ├── java14-openjdk.svg │ │ ├── java8-openjdk.svg │ │ ├── java9-openjdk.svg │ │ ├── javaws.svg │ │ ├── jdownloader-beta.svg │ │ ├── jdownloader.svg │ │ ├── jeex.svg │ │ ├── jetbrains-clion.svg │ │ ├── jetbrains-datagrip.svg │ │ ├── jetbrains-intellij-idea.svg │ │ ├── jetbrains-intellij.svg │ │ ├── jetbrains-phpstorm.svg │ │ ├── jetbrains-pycharm-edu.svg │ │ ├── jetbrains-pycharm.svg │ │ ├── jetbrains-rider.svg │ │ ├── jetbrains-rubymine.svg │ │ ├── jetbrains-webstorm.svg │ │ ├── jockey-gtk.svg │ │ ├── jockey-kde.svg │ │ ├── jockey.svg │ │ ├── joplin-desktop.svg │ │ ├── joplin.svg │ │ ├── josm-latest.svg │ │ ├── josm.svg │ │ ├── jotasync.svg │ │ ├── journal.svg │ │ ├── jstest-gtk.svg │ │ ├── juffed.svg │ │ ├── juk.svg │ │ ├── julia.svg │ │ ├── jupyter-console.svg │ │ ├── jupyter-notebook.svg │ │ ├── jupyter.svg │ │ ├── k3b.svg │ │ ├── k9-copy.svg │ │ ├── k9copy.svg │ │ ├── kaccess.svg │ │ ├── kaddressbook.svg │ │ ├── kaffeine.svg │ │ ├── kalarm.svg │ │ ├── kalgebra.svg │ │ ├── kali-bugs.svg │ │ ├── kali-database-assessment-trans.svg │ │ ├── kali-docs.svg │ │ ├── kali-info-gathering-trans.svg │ │ ├── kali-macchanger.svg │ │ ├── kali-p0f.svg │ │ ├── kali-password-attacks-trans.svg │ │ ├── kali-recordmydesktop.svg │ │ ├── kali-reporting-tools-trans.svg │ │ ├── kali-reverse-engineering-trans.svg │ │ ├── kali-social-engineering-trans.svg │ │ ├── kali-system-services-trans.svg │ │ ├── kali-truecrypt.svg │ │ ├── kali-vuln-assessment-trans.svg │ │ ├── kali-wireless-attacks-trans.svg │ │ ├── kali-wireshark.svg │ │ ├── kalu.svg │ │ ├── kamerka.svg │ │ ├── kamoso.svg │ │ ├── kamule.svg │ │ ├── kanagram.svg │ │ ├── kappfinder.svg │ │ ├── karbon.svg │ │ ├── kate.svg │ │ ├── kate2.svg │ │ ├── katomic.svg │ │ ├── kazam.svg │ │ ├── kbabeldict.svg │ │ ├── kbackup.svg │ │ ├── kblocks.svg │ │ ├── kblogger.svg │ │ ├── kbugbuster.svg │ │ ├── kbugster.svg │ │ ├── kcalc.svg │ │ ├── kcharselect.svg │ │ ├── kchart.svg │ │ ├── kchmviewer.svg │ │ ├── kcmkicker.svg │ │ ├── kcmkwm.svg │ │ ├── kcmpci.svg │ │ ├── kcmprocessor.svg │ │ ├── kcmsound.svg │ │ ├── kcmx.svg │ │ ├── kcnmsound.svg │ │ ├── kcolorchooser.svg │ │ ├── kconsole.svg │ │ ├── kcontrol.svg │ │ ├── kde-frameworks.svg │ │ ├── kde-gtk-config.svg │ │ ├── kde-im-log-viewer.svg │ │ ├── kde-logo.svg │ │ ├── kde-telepathy.svg │ │ ├── kde-windows.svg │ │ ├── kde.svg │ │ ├── kdeapp.svg │ │ ├── kdeconnect.svg │ │ ├── kded5.svg │ │ ├── kdenlive.svg │ │ ├── kdepim-dropbox.svg │ │ ├── kdevelop.svg │ │ ├── kdf.svg │ │ ├── kdiskfree.svg │ │ ├── kdmconfig.svg │ │ ├── kedit-icon.svg │ │ ├── kedit.svg │ │ ├── keditbookmarks.svg │ │ ├── keepass.svg │ │ ├── keepass2.svg │ │ ├── keepassx.svg │ │ ├── keepassx2.svg │ │ ├── keepassxc.svg │ │ ├── kentoo.svg │ │ ├── key_bindings.svg │ │ ├── keyboard.svg │ │ ├── keyring-manager.svg │ │ ├── kfilebox.svg │ │ ├── kfind.svg │ │ ├── kflickr.svg │ │ ├── kfm.svg │ │ ├── kfontview.svg │ │ ├── kfourinline.svg │ │ ├── kget.svg │ │ ├── kgpg.svg │ │ ├── khelpcenter.svg │ │ ├── kid3-qt.svg │ │ ├── kid3.svg │ │ ├── kimtoy.svg │ │ ├── kindd.svg │ │ ├── kino.svg │ │ ├── kipi-dngconverter.svg │ │ ├── kipi-expoblending.svg │ │ ├── kipi-panorama.svg │ │ ├── kiriki.svg │ │ ├── kitty.svg │ │ ├── kjobviewer.svg │ │ ├── kjots.svg │ │ ├── kjournal.svg │ │ ├── kjumpingcube.svg │ │ ├── klavaro.svg │ │ ├── kleopatra.svg │ │ ├── klettres.svg │ │ ├── klipper.svg │ │ ├── kmag.svg │ │ ├── kmahjongg.svg │ │ ├── kmail.svg │ │ ├── kmail2.svg │ │ ├── kmailcvt.svg │ │ ├── kmenu.svg │ │ ├── kmenuedit.svg │ │ ├── kmines.svg │ │ ├── kmix.svg │ │ ├── kmousetool.svg │ │ ├── kmplayer.svg │ │ ├── kmymoney.svg │ │ ├── knemo.svg │ │ ├── knetattach.svg │ │ ├── knewsticker.svg │ │ ├── knights.svg │ │ ├── knotes.svg │ │ ├── knotify.svg │ │ ├── kodi.svg │ │ ├── kolourpaint.svg │ │ ├── kompare.svg │ │ ├── konqueror.svg │ │ ├── konsole-linux32.svg │ │ ├── konsole.svg │ │ ├── konsole_tux.svg │ │ ├── konsolekalendar.svg │ │ ├── kontact.svg │ │ ├── konversation.svg │ │ ├── kopete.svg │ │ ├── kopete2.svg │ │ ├── korg-journal.svg │ │ ├── korg-todo.svg │ │ ├── korgac.svg │ │ ├── korganizer.svg │ │ ├── korora-welcome.svg │ │ ├── kpackage.svg │ │ ├── kpackage48.svg │ │ ├── kpager.svg │ │ ├── kpat.svg │ │ ├── kpatience.svg │ │ ├── kpersonalizer.svg │ │ ├── kphoto.svg │ │ ├── kphotoalbum.svg │ │ ├── kpk-desktop-gnome.svg │ │ ├── kpk-desktop-xfce.svg │ │ ├── kplato.svg │ │ ├── kplayer.svg │ │ ├── kpresenter.svg │ │ ├── krdc.svg │ │ ├── krename.svg │ │ ├── krfb.svg │ │ ├── krita.svg │ │ ├── kritagemini.svg │ │ ├── kritasketch.svg │ │ ├── kronometer.svg │ │ ├── kruler.svg │ │ ├── krunner.svg │ │ ├── krusader.svg │ │ ├── krusader_blue.svg │ │ ├── krusader_red.svg │ │ ├── krusader_root.svg │ │ ├── krusader_user.svg │ │ ├── kscreengenie.svg │ │ ├── kscreensaver.svg │ │ ├── kscreenshot.svg │ │ ├── ksensors.svg │ │ ├── kshutdown.svg │ │ ├── ksmiletris.svg │ │ ├── ksmserver.svg │ │ ├── ksnapshot.svg │ │ ├── ksnip.svg │ │ ├── ksplash.svg │ │ ├── kspread.svg │ │ ├── kstars.svg │ │ ├── kstars_colors.svg │ │ ├── ksudoku.svg │ │ ├── ksysguard.svg │ │ ├── ksysguardd.svg │ │ ├── kterm.svg │ │ ├── ktexteditorautobrace.svg │ │ ├── kthesaurus.svg │ │ ├── ktimer.svg │ │ ├── ktip.svg │ │ ├── ktnef.svg │ │ ├── ktneft.svg │ │ ├── ktorrent.svg │ │ ├── ktouch.svg │ │ ├── ktp-contacts.svg │ │ ├── ktuberling.svg │ │ ├── kube-mail.svg │ │ ├── kubuntu.svg │ │ ├── kuickshow.svg │ │ ├── kuiviewer.svg │ │ ├── kuser.svg │ │ ├── kvantum.svg │ │ ├── kvirc.svg │ │ ├── kwalletmanager.svg │ │ ├── kwalletmanager2.svg │ │ ├── kwave.svg │ │ ├── kwikdisk.svg │ │ ├── kwin.svg │ │ ├── kword.svg │ │ ├── kwords.svg │ │ ├── kwrite.svg │ │ ├── kylin-video.svg │ │ ├── kynaptic.svg │ │ ├── kynpatic.svg │ │ ├── l3afpad.svg │ │ ├── labplot.svg │ │ ├── labplot2.svg │ │ ├── lash.svg │ │ ├── last-fm.svg │ │ ├── lastfm-audioscrobbler.svg │ │ ├── lastfm-valut.svg │ │ ├── lastfm-www.last.fm.svg │ │ ├── lastfm.svg │ │ ├── lastpass.svg │ │ ├── latexila.svg │ │ ├── latte-dock.svg │ │ ├── launch.svg │ │ ├── lazpaint.svg │ │ ├── lbry.svg │ │ ├── leafpad.svg │ │ ├── leftpad.svg │ │ ├── leocad.svg │ │ ├── libinput-gestures.svg │ │ ├── library-podcast.svg │ │ ├── libreoffice-base.svg │ │ ├── libreoffice-calc.svg │ │ ├── libreoffice-draw.svg │ │ ├── libreoffice-impress.svg │ │ ├── libreoffice-main.svg │ │ ├── libreoffice-math.svg │ │ ├── libreoffice-oasis-web.svg │ │ ├── libreoffice-printeradmin.svg │ │ ├── libreoffice-start-centre.svg │ │ ├── libreoffice-startcenter.svg │ │ ├── libreoffice-template.svg │ │ ├── libreoffice-writer.svg │ │ ├── libreoffice.svg │ │ ├── libreoffice3-base.svg │ │ ├── libreoffice3-calc.svg │ │ ├── libreoffice3-draw.svg │ │ ├── libreoffice3-impress.svg │ │ ├── libreoffice3-main.svg │ │ ├── libreoffice3-math.svg │ │ ├── libreoffice3-printeradmin.svg │ │ ├── libreoffice3-startcenter.svg │ │ ├── libreoffice3-template.svg │ │ ├── libreoffice3-writer.svg │ │ ├── libreoffice3.svg │ │ ├── libreoffice34-base.svg │ │ ├── libreoffice34-calc.svg │ │ ├── libreoffice34-draw.svg │ │ ├── libreoffice34-impress.svg │ │ ├── libreoffice34-main.svg │ │ ├── libreoffice34-math.svg │ │ ├── libreoffice34-printeradmin.svg │ │ ├── libreoffice34-startcenter.svg │ │ ├── libreoffice34-template.svg │ │ ├── libreoffice34-writer.svg │ │ ├── libreoffice34.svg │ │ ├── libreoffice4.2-base.svg │ │ ├── libreoffice4.2-calc.svg │ │ ├── libreoffice4.2-draw.svg │ │ ├── libreoffice4.2-impress.svg │ │ ├── libreoffice4.2-math.svg │ │ ├── libreoffice4.2-printeradmin.svg │ │ ├── libreoffice4.2-startcenter.svg │ │ ├── libreoffice4.2-template.svg │ │ ├── libreoffice4.2-writer.svg │ │ ├── libreoffice4.svg │ │ ├── libreoffice5.0-base.svg │ │ ├── libreoffice5.0-calc.svg │ │ ├── libreoffice5.0-draw.svg │ │ ├── libreoffice5.0-impress.svg │ │ ├── libreoffice5.0-main.svg │ │ ├── libreoffice5.0-math.svg │ │ ├── libreoffice5.0-startcenter.svg │ │ ├── libreoffice5.0-writer.svg │ │ ├── libreoffice5.0.svg │ │ ├── libreoffice5.1-base.svg │ │ ├── libreoffice5.1-calc.svg │ │ ├── libreoffice5.1-draw.svg │ │ ├── libreoffice5.1-impress.svg │ │ ├── libreoffice5.1-main.svg │ │ ├── libreoffice5.1-math.svg │ │ ├── libreoffice5.1-startcenter.svg │ │ ├── libreoffice5.1-writer.svg │ │ ├── libreoffice5.1.svg │ │ ├── libreoffice5.2-base.svg │ │ ├── libreoffice5.2-calc.svg │ │ ├── libreoffice5.2-draw.svg │ │ ├── libreoffice5.2-impress.svg │ │ ├── libreoffice5.2-main.svg │ │ ├── libreoffice5.2-math.svg │ │ ├── libreoffice5.2-startcenter.svg │ │ ├── libreoffice5.2-writer.svg │ │ ├── libreoffice5.2.svg │ │ ├── libreoffice5.3-base.svg │ │ ├── libreoffice5.3-calc.svg │ │ ├── libreoffice5.3-draw.svg │ │ ├── libreoffice5.3-impress.svg │ │ ├── libreoffice5.3-main.svg │ │ ├── libreoffice5.3-math.svg │ │ ├── libreoffice5.3-startcenter.svg │ │ ├── libreoffice5.3-writer.svg │ │ ├── libreoffice5.3.svg │ │ ├── libreoffice5.4-base.svg │ │ ├── libreoffice5.4-calc.svg │ │ ├── libreoffice5.4-draw.svg │ │ ├── libreoffice5.4-impress.svg │ │ ├── libreoffice5.4-main.svg │ │ ├── libreoffice5.4-math.svg │ │ ├── libreoffice5.4-startcenter.svg │ │ ├── libreoffice5.4-writer.svg │ │ ├── libreoffice5.4.svg │ │ ├── libreoffice6.0-base.svg │ │ ├── libreoffice6.0-calc.svg │ │ ├── libreoffice6.0-draw.svg │ │ ├── libreoffice6.0-impress.svg │ │ ├── libreoffice6.0-main.svg │ │ ├── libreoffice6.0-math.svg │ │ ├── libreoffice6.0-startcenter.svg │ │ ├── libreoffice6.0-writer.svg │ │ ├── libreoffice6.0.svg │ │ ├── libreoffice6.2-base.svg │ │ ├── libreoffice6.2-calc.svg │ │ ├── libreoffice6.2-draw.svg │ │ ├── libreoffice6.2-impress.svg │ │ ├── libreoffice6.2-main.svg │ │ ├── libreoffice6.2-math.svg │ │ ├── libreoffice6.2-startcenter.svg │ │ ├── libreoffice6.2-writer.svg │ │ ├── libreoffice6.3-base.svg │ │ ├── libreoffice6.3-calc.svg │ │ ├── libreoffice6.3-draw.svg │ │ ├── libreoffice6.3-impress.svg │ │ ├── libreoffice6.3-main.svg │ │ ├── libreoffice6.3-math.svg │ │ ├── libreoffice6.3-startcenter.svg │ │ ├── libreoffice6.3-writer.svg │ │ ├── libreoffice6.4-base.svg │ │ ├── libreoffice6.4-calc.svg │ │ ├── libreoffice6.4-draw.svg │ │ ├── libreoffice6.4-impress.svg │ │ ├── libreoffice6.4-math.svg │ │ ├── libreoffice6.4-startcenter.svg │ │ ├── libreoffice6.4-writer.svg │ │ ├── libreoffice7.0-base.svg │ │ ├── libreoffice7.0-calc.svg │ │ ├── libreoffice7.0-draw.svg │ │ ├── libreoffice7.0-impress.svg │ │ ├── libreoffice7.0-main.svg │ │ ├── libreoffice7.0-math.svg │ │ ├── libreoffice7.0-startcenter.svg │ │ ├── libreoffice7.0-writer.svg │ │ ├── libreofficedev6.0-base.svg │ │ ├── libreofficedev6.0-calc.svg │ │ ├── libreofficedev6.0-draw.svg │ │ ├── libreofficedev6.0-impress.svg │ │ ├── libreofficedev6.0-main.svg │ │ ├── libreofficedev6.0-math.svg │ │ ├── libreofficedev6.0-startcenter.svg │ │ ├── libreofficedev6.0-writer.svg │ │ ├── libreofficedev6.1-base.svg │ │ ├── libreofficedev6.1-calc.svg │ │ ├── libreofficedev6.1-draw.svg │ │ ├── libreofficedev6.1-impress.svg │ │ ├── libreofficedev6.1-main.svg │ │ ├── libreofficedev6.1-math.svg │ │ ├── libreofficedev6.1-startcenter.svg │ │ ├── libreofficedev6.1-writer.svg │ │ ├── liferea.svg │ │ ├── light-software-center.svg │ │ ├── light_neovim_gtk.svg │ │ ├── lightdm-gtk-greeter-settings.svg │ │ ├── lightdm-settings.svg │ │ ├── lightread.svg │ │ ├── lightsoff.svg │ │ ├── lingot-icon.svg │ │ ├── linguist-qt4.svg │ │ ├── linguist-qt5.svg │ │ ├── linguist.svg │ │ ├── linguist5.svg │ │ ├── linguistic.svg │ │ ├── linssid.svg │ │ ├── live-installer.svg │ │ ├── live.svg │ │ ├── livepatch.svg │ │ ├── liveusb-creator.svg │ │ ├── livewallpaper-config.svg │ │ ├── livewallpaper.svg │ │ ├── lmms.svg │ │ ├── locale.svg │ │ ├── location-services-active.svg │ │ ├── lock-ok.svg │ │ ├── lock-screen.svg │ │ ├── lock.svg │ │ ├── login-photo.svg │ │ ├── login.svg │ │ ├── logjam.svg │ │ ├── logview.svg │ │ ├── logviewer.svg │ │ ├── lokalize.svg │ │ ├── lollypop.svg │ │ ├── lookswitcher.svg │ │ ├── lpi-bug.svg │ │ ├── lrfviewer.svg │ │ ├── lshw.svg │ │ ├── lskat.svg │ │ ├── lubuntu-software-center.svg │ │ ├── luckyBackup.svg │ │ ├── luckybackup.svg │ │ ├── luminance-hdr.svg │ │ ├── lutris.svg │ │ ├── lutris_blender.svg │ │ ├── lutris_dont-starve-together.svg │ │ ├── lutris_dont-starve.svg │ │ ├── lutris_godot-engine.svg │ │ ├── lutris_kpatience.svg │ │ ├── lutris_krita-gemini.svg │ │ ├── lutris_minecraft.svg │ │ ├── lutris_minetest.svg │ │ ├── lutris_rimworld.svg │ │ ├── lutris_terraria.svg │ │ ├── lx-music-desktop.svg │ │ ├── lximage-qt.svg │ │ ├── lximage.svg │ │ ├── lxmusic.svg │ │ ├── lxtask.svg │ │ ├── lxterminal.svg │ │ ├── macchanger.svg │ │ ├── mahjongg.svg │ │ ├── mail-client.svg │ │ ├── mail-generic.svg │ │ ├── mail-notification.svg │ │ ├── mail_generic.svg │ │ ├── mailer.svg │ │ ├── mailnag.svg │ │ ├── mailspring.svg │ │ ├── mandrivaupdate.svg │ │ ├── manjaro-settings-manager.svg │ │ ├── manjaro-welcome.svg │ │ ├── manjaro.svg │ │ ├── maps.svg │ │ ├── marble.svg │ │ ├── marker.svg │ │ ├── marlin.svg │ │ ├── master-pdf-editor.svg │ │ ├── masterpdfeditor.svg │ │ ├── masterpdfeditor3.svg │ │ ├── masterpdfeditor4.svg │ │ ├── masterpdfeditor5.svg │ │ ├── mate-ax-applet.svg │ │ ├── mate-color-manager.svg │ │ ├── mate-desktop-item-edit.svg │ │ ├── mate-desktop.svg │ │ ├── mate-disk-usage-analyzer.svg │ │ ├── mate-eiciel.svg │ │ ├── mate-indicator-applet.svg │ │ ├── mate-logo.svg │ │ ├── mate-netspeed-applet.svg │ │ ├── mate-network-properties.svg │ │ ├── mate-notification-properties.svg │ │ ├── mate-panel-clock.svg │ │ ├── mate-panel-fish.svg │ │ ├── mate-panel-force-quit.svg │ │ ├── mate-panel-launcher.svg │ │ ├── mate-panel-notification-area.svg │ │ ├── mate-panel-separator.svg │ │ ├── mate-panel-window-list.svg │ │ ├── mate-panel-window-menu.svg │ │ ├── mate-panel-workspace-switcher.svg │ │ ├── mate-panel.svg │ │ ├── mate-power-manager.svg │ │ ├── mate-power-statistics.svg │ │ ├── mate-preferences-desktop-display.svg │ │ ├── mate-sensors-applet.svg │ │ ├── mate-session-properties.svg │ │ ├── mate-sticky-notes-applet.svg │ │ ├── mate-system-log.svg │ │ ├── mate.svg │ │ ├── mateconf-editor.svg │ │ ├── matepalimpsest.svg │ │ ├── matlab-desktop.svg │ │ ├── matlab.svg │ │ ├── maxima-icon.svg │ │ ├── maxima-new.svg │ │ ├── maxima.svg │ │ ├── mcpelauncher-ui-qt.svg │ │ ├── mdmflexiserver.svg │ │ ├── mdmsetup.svg │ │ ├── me-tv.svg │ │ ├── me.kozec.syncthingtk.svg │ │ ├── me.mitya57.ReText.svg │ │ ├── media-cdrom.svg │ │ ├── media-optical-copy.svg │ │ ├── media-player-48.svg │ │ ├── media-player-banshee.svg │ │ ├── media-removable.svg │ │ ├── mediacontrol.svg │ │ ├── mediawriter.svg │ │ ├── medit.svg │ │ ├── mega.svg │ │ ├── meld.svg │ │ ├── mendeley.svg │ │ ├── mendeleydesktop.svg │ │ ├── menu-editor.svg │ │ ├── menulibre.svg │ │ ├── messagebox_info.svg │ │ ├── messengerfordesktop.svg │ │ ├── metacity.svg │ │ ├── meteo-qt.svg │ │ ├── meterbridge.svg │ │ ├── meterbridge32x32.svg │ │ ├── microsoft-edge-beta.svg │ │ ├── microsoft-edge-dev.svg │ │ ├── microsoft-edge.svg │ │ ├── microsoft-office-online.svg │ │ ├── mindmaster.svg │ │ ├── minecraft-launcher.svg │ │ ├── minecraft-pi.svg │ │ ├── minecraft.svg │ │ ├── minetest-icon.svg │ │ ├── minetest.svg │ │ ├── mini.xterm.svg │ │ ├── mini.xterm_32x32.svg │ │ ├── mini.xterm_48x48.svg │ │ ├── minimizeall.svg │ │ ├── minitube-ubuntu.svg │ │ ├── minitube.svg │ │ ├── mintBackup.svg │ │ ├── mintNanny.svg │ │ ├── mintUpdate.svg │ │ ├── mintWelcome.svg │ │ ├── mintbackup-icon.svg │ │ ├── mintbackup.svg │ │ ├── mintdrivers.svg │ │ ├── mintinstall.svg │ │ ├── mintlocale-im.svg │ │ ├── mintnanny.svg │ │ ├── mintreport.svg │ │ ├── mintsources-keys.svg │ │ ├── mintsources-mint.svg │ │ ├── mintsources.svg │ │ ├── mintstick.svg │ │ ├── mintupdate-release-upgrade.svg │ │ ├── mintupdate.svg │ │ ├── mintwelcome.svg │ │ ├── mitter.svg │ │ ├── mixxx-icon.svg │ │ ├── mixxx.svg │ │ ├── mkv-gui.svg │ │ ├── mkvmerge.svg │ │ ├── mkvmergeGUI.svg │ │ ├── mkvtoolnix-gui.svg │ │ ├── mlcad.svg │ │ ├── modem-manager-gui.svg │ │ ├── mongodb-compass.svg │ │ ├── monitor.svg │ │ ├── motrix.svg │ │ ├── mouse.svg │ │ ├── mousepad.svg │ │ ├── mozilla-firefox.svg │ │ ├── mozilla-thunderbird.svg │ │ ├── mozo.svg │ │ ├── mpd.svg │ │ ├── mplayer.svg │ │ ├── mpv-icon-8bit-64x64.svg │ │ ├── mpv.svg │ │ ├── ms-calendar.svg │ │ ├── ms-excel.svg │ │ ├── ms-office.svg │ │ ├── ms-onenote.svg │ │ ├── ms-outlook.svg │ │ ├── ms-powerpoint.svg │ │ ├── ms-skype.svg │ │ ├── ms-word.svg │ │ ├── mscore-portable.svg │ │ ├── mscore.svg │ │ ├── mscore3.svg │ │ ├── msiexec.svg │ │ ├── mtpaint.svg │ │ ├── mudita24.svg │ │ ├── mugshot.svg │ │ ├── multibootusb.svg │ │ ├── multilingual-terminal.svg │ │ ├── multimc.svg │ │ ├── multimedia-audio-player.svg │ │ ├── multimedia-photo-manager.svg │ │ ├── multimedia-photo-viewer.svg │ │ ├── multimedia-video-player.svg │ │ ├── multimedia-volume-control.svg │ │ ├── multimedia.svg │ │ ├── multisystem-liveusb.svg │ │ ├── multisystem-test-iso.svg │ │ ├── multisystem-vbox.svg │ │ ├── multisystem.svg │ │ ├── multitasking-view.svg │ │ ├── muon-discover.svg │ │ ├── muon.svg │ │ ├── muondis-cover.svg │ │ ├── muondiscover.svg │ │ ├── mupdf.svg │ │ ├── musescore.svg │ │ ├── music_icon-24.svg │ │ ├── mx-clocky.svg │ │ ├── mx-findshares.svg │ │ ├── mx-menu-editor.svg │ │ ├── mx-system-sounds.svg │ │ ├── mx-timeset-gui-icon.svg │ │ ├── mx-update.svg │ │ ├── mx-usb-unmounter.svg │ │ ├── mypaint.svg │ │ ├── mysql-workbench.svg │ │ ├── nautilus-actions-config-tool.svg │ │ ├── nautilus-actions.svg │ │ ├── nautilus-cd-burner.svg │ │ ├── nautilus.svg │ │ ├── nemo.svg │ │ ├── neovim.svg │ │ ├── nepomuk.svg │ │ ├── net.ankiweb.Anki.svg │ │ ├── net.codeindustry.MasterPDFEditor.svg │ │ ├── net.jami.Jami.svg │ │ ├── net.lutris.Lutris.svg │ │ ├── net.minetest.Minetest.svg │ │ ├── net.rpdev.OpenTodoList.svg │ │ ├── net.scribus.Scribus.svg │ │ ├── net.sourceforge.Chessx.svg │ │ ├── net.sourceforge.Klavaro.svg │ │ ├── net.sourceforge.maxima.svg │ │ ├── net.sourceforge.qtpfsgui.LuminanceHDR.svg │ │ ├── net.sourceforge.xournal.svg │ │ ├── net.supertuxkart.SuperTuxKart.svg │ │ ├── net.xm1math.Texmaker.svg │ │ ├── net.xmind.XMind8.svg │ │ ├── net.xmind.ZEN.svg │ │ ├── netbeans-beta.svg │ │ ├── netbeans.svg │ │ ├── netease-cloud-music.svg │ │ ├── network-firewall.svg │ │ ├── network-manager.svg │ │ ├── network-wired.svg │ │ ├── network-workgroup.svg │ │ ├── networkmanager.svg │ │ ├── news-feed.svg │ │ ├── newsflash.svg │ │ ├── nimbus.svg │ │ ├── nl.hjdskes.Gcolor3.svg │ │ ├── nl.hjdskes.gcolor3.svg │ │ ├── nl.openoffice.bluefish.svg │ │ ├── nm-device-wireless.svg │ │ ├── nmm_qt_client.svg │ │ ├── noblenote.svg │ │ ├── nocover.svg │ │ ├── noise.svg │ │ ├── nomacs.svg │ │ ├── notable.svg │ │ ├── notecase.svg │ │ ├── notepad-48.svg │ │ ├── notepad.svg │ │ ├── notes.svg │ │ ├── notifyconf.svg │ │ ├── notion.svg │ │ ├── ntfs-config.svg │ │ ├── nutstore.svg │ │ ├── nuvolaplayer3_deezer.svg │ │ ├── nuvolaplayer3_google_play_music.svg │ │ ├── nuvolaplayer3_spotify.svg │ │ ├── nuvolaplayer3_youtube.svg │ │ ├── nvclock.svg │ │ ├── nvdock.svg │ │ ├── nvidia-310-settings.svg │ │ ├── nvidia-current-settings.svg │ │ ├── nvidia-current-updates-settings.svg │ │ ├── nvidia-ddm-mx.svg │ │ ├── nvidia-drivers-settings.svg │ │ ├── nvidia-settings.svg │ │ ├── nvidia-x-server-setting.svg │ │ ├── nvidia-x-server-settings.svg │ │ ├── nvidia.svg │ │ ├── nvim-gtk.svg │ │ ├── nvim-qt.svg │ │ ├── nvim.svg │ │ ├── nx-software-center.svg │ │ ├── nx-software-updater.svg │ │ ├── nxclient-wizard.svg │ │ ├── nxterm.svg │ │ ├── nylas-mail.svg │ │ ├── nylas.svg │ │ ├── obconf-qt.svg │ │ ├── obconf.svg │ │ ├── obs.svg │ │ ├── octave-icon.svg │ │ ├── octave-logo.svg │ │ ├── octave.svg │ │ ├── octavebackend.svg │ │ ├── octopi-repoeditor.svg │ │ ├── octopi.svg │ │ ├── office-address-book.svg │ │ ├── office-addressbook.svg │ │ ├── office-calendar.svg │ │ ├── office-date.svg │ │ ├── office-printer.svg │ │ ├── oggconvert.svg │ │ ├── ogmrip.svg │ │ ├── okteta.svg │ │ ├── okular.svg │ │ ├── onboard-mono.svg │ │ ├── onboard-settings.svg │ │ ├── onboard.svg │ │ ├── online-account-facebook.svg │ │ ├── online-account-fastmail.svg │ │ ├── online-account-google.svg │ │ ├── online-account-lastfm.svg │ │ ├── online-account-microsoft.svg │ │ ├── online-account.svg │ │ ├── online-accounts.svg │ │ ├── onlyoffice-desktopeditors.svg │ │ ├── onlyoffice.svg │ │ ├── ooo-printeradmin.svg │ │ ├── openbox.svg │ │ ├── openbravo-erp.svg │ │ ├── opencubicplayer.svg │ │ ├── openerp-client.svg │ │ ├── openjdk-10.svg │ │ ├── openjdk-11.svg │ │ ├── openjdk-6.svg │ │ ├── openjdk-7.svg │ │ ├── openjdk-8.svg │ │ ├── openjdk-9.svg │ │ ├── openoffice4-printeradmin.svg │ │ ├── openofficeorg-printeradmin.svg │ │ ├── openofficeorg3-printeradmin.svg │ │ ├── openofficeorg3.0-printeradmin.svg │ │ ├── openshot-qt.svg │ │ ├── openshot.svg │ │ ├── openterm.svg │ │ ├── opentodolist.svg │ │ ├── openwmail.svg │ │ ├── opera-beta.svg │ │ ├── opera-browser-icon.svg │ │ ├── opera-browser-icons.svg │ │ ├── opera-browser.svg │ │ ├── opera-icon.svg │ │ ├── opera.svg │ │ ├── oracle-javaws.svg │ │ ├── oracle_java6.svg │ │ ├── oracle_java7.svg │ │ ├── oracle_java8.svg │ │ ├── oracle_java9.svg │ │ ├── orage.svg │ │ ├── orage_globaltime.svg │ │ ├── orca.svg │ │ ├── org.20.notes.svg │ │ ├── org.aegisub.Aegisub.svg │ │ ├── org.apache.netbeans-beta.svg │ │ ├── org.apache.netbeans.svg │ │ ├── org.ardour.Ardour.svg │ │ ├── org.ardour.Ardour5.svg │ │ ├── org.atheme.audacious.svg │ │ ├── org.audacityteam.Audacity.svg │ │ ├── org.avidemux.Avidemux.svg │ │ ├── org.blender.Blender.svg │ │ ├── org.bunkus.mkvtoolnix-gui.svg │ │ ├── org.chromium.Chromium.svg │ │ ├── org.claws_mail.Claws-Mail.svg │ │ ├── org.clawsmail.Claws.svg │ │ ├── org.clementine_player.Clementine.svg │ │ ├── org.codeblocks.codeblocks.svg │ │ ├── org.cunidev.gestures.svg │ │ ├── org.daa.NeovimGtk.svg │ │ ├── org.darktable.Darktable.svg │ │ ├── org.deepin.flatdeb.deepin-calculator.svg │ │ ├── org.deepin.flatdeb.deepin-calendar.svg │ │ ├── org.deepin.flatdeb.deepin-image-viewer.svg │ │ ├── org.deepin.flatdeb.deepin-music.svg │ │ ├── org.deepin.flatdeb.deepin-screen-recorder.svg │ │ ├── org.deepin.flatdeb.deepin-screenshot.svg │ │ ├── org.deepin.flatdeb.deepin-voice-recorder.svg │ │ ├── org.delugetorrent.Deluge.svg │ │ ├── org.dharkael.Flameshot.svg │ │ ├── org.eclipse.Committers.svg │ │ ├── org.eclipse.Eclipse.svg │ │ ├── org.eclipse.Java.svg │ │ ├── org.eclipse.Javascript.svg │ │ ├── org.electronjs.Electron2.BaseApp.svg │ │ ├── org.electronjs.Electron3.BaseApp.svg │ │ ├── org.electronjs.Electron4.BaseApp.svg │ │ ├── org.electronjs.Electron5.BaseApp.svg │ │ ├── org.electronjs.Electron6.BaseApp.svg │ │ ├── org.equeim.Tremotesf.svg │ │ ├── org.fedoraproject.MediaWriter.svg │ │ ├── org.filezillaproject.Filezilla.svg │ │ ├── org.flameshot.Flameshot.svg │ │ ├── org.flatpak.qtdemo.svg │ │ ├── org.freecadweb.FreeCAD.svg │ │ ├── org.freedesktop.GlxInfo.svg │ │ ├── org.freedesktop.GnomeAbrt.svg │ │ ├── org.freedesktop.MalcontentControl.svg │ │ ├── org.freedesktop.Piper.svg │ │ ├── org.freedesktop.Sdk.Extension.openjdk.svg │ │ ├── org.freedesktop.Sdk.Extension.openjdk10.svg │ │ ├── org.freedesktop.Sdk.Extension.openjdk11.svg │ │ ├── org.freedesktop.Sdk.Extension.openjdk8.svg │ │ ├── org.freedesktop.Sdk.Extension.openjdk9.svg │ │ ├── org.freedesktop.problems.applet.svg │ │ ├── org.freefilesync.FreeFileSync.svg │ │ ├── org.fritzing.Fritzing.svg │ │ ├── org.gabmus.gfeeds.svg │ │ ├── org.gabmus.gnome-feeds.svg │ │ ├── org.gabmus.hydrapaper.svg │ │ ├── org.gajim.Gajim.svg │ │ ├── org.geany.Geany.svg │ │ ├── org.geogebra.GeoGebra.svg │ │ ├── org.gimp.GIMP.svg │ │ ├── org.glimpse_editor.Glimpse.svg │ │ ├── org.gmusicbrowser.gmusicbrowser.svg │ │ ├── org.gnome.2048.svg │ │ ├── org.gnome.Aisleriot.svg │ │ ├── org.gnome.ArchiveManager.svg │ │ ├── org.gnome.Atomix.svg │ │ ├── org.gnome.Baobab.svg │ │ ├── org.gnome.Bijiben.svg │ │ ├── org.gnome.Books.svg │ │ ├── org.gnome.Boxes.svg │ │ ├── org.gnome.Builder.svg │ │ ├── org.gnome.Calculator.svg │ │ ├── org.gnome.Calendar.svg │ │ ├── org.gnome.Camara.svg │ │ ├── org.gnome.CharacterMap.svg │ │ ├── org.gnome.Characters.svg │ │ ├── org.gnome.Cheese.svg │ │ ├── org.gnome.Chess.svg │ │ ├── org.gnome.ChromeGnomeShell.svg │ │ ├── org.gnome.Clocks.svg │ │ ├── org.gnome.ColorProfileViewer.svg │ │ ├── org.gnome.ColorViewer.svg │ │ ├── org.gnome.Connections.svg │ │ ├── org.gnome.Contacts.svg │ │ ├── org.gnome.DejaDup.svg │ │ ├── org.gnome.Devhelp.svg │ │ ├── org.gnome.Dictionary.svg │ │ ├── org.gnome.DiskUtility.svg │ │ ├── org.gnome.Documents.svg │ │ ├── org.gnome.EasyTAG.svg │ │ ├── org.gnome.Empathy.svg │ │ ├── org.gnome.Eolie.svg │ │ ├── org.gnome.Epiphany.Devel.svg │ │ ├── org.gnome.Epiphany.svg │ │ ├── org.gnome.Evince-previewer.svg │ │ ├── org.gnome.Evince.svg │ │ ├── org.gnome.Evolution.svg │ │ ├── org.gnome.Extensions.svg │ │ ├── org.gnome.FeedReader.svg │ │ ├── org.gnome.FileRoller.svg │ │ ├── org.gnome.Files.svg │ │ ├── org.gnome.Firmware.svg │ │ ├── org.gnome.Five-or-more.svg │ │ ├── org.gnome.FontViewer.svg │ │ ├── org.gnome.Fonts.svg │ │ ├── org.gnome.Four-in-a-row.svg │ │ ├── org.gnome.Fractal.svg │ │ ├── org.gnome.Fragments.svg │ │ ├── org.gnome.GSmartControl.svg │ │ ├── org.gnome.GTG.svg │ │ ├── org.gnome.Games.svg │ │ ├── org.gnome.Geany.svg │ │ ├── org.gnome.Geary.svg │ │ ├── org.gnome.Glade.svg │ │ ├── org.gnome.Gnote.svg │ │ ├── org.gnome.Gtranslator.svg │ │ ├── org.gnome.Hitori.svg │ │ ├── org.gnome.Iagno.svg │ │ ├── org.gnome.Klotski.svg │ │ ├── org.gnome.LightsOff.svg │ │ ├── org.gnome.Logs.svg │ │ ├── org.gnome.Lollypop.svg │ │ ├── org.gnome.Mahjongg.svg │ │ ├── org.gnome.Maps.svg │ │ ├── org.gnome.Mines.svg │ │ ├── org.gnome.Mpv.svg │ │ ├── org.gnome.MultiWriter.svg │ │ ├── org.gnome.Music.svg │ │ ├── org.gnome.Nautilus.svg │ │ ├── org.gnome.Nibbles.svg │ │ ├── org.gnome.Notes.svg │ │ ├── org.gnome.PasswordSafe.svg │ │ ├── org.gnome.Photos.svg │ │ ├── org.gnome.Pitivi.svg │ │ ├── org.gnome.Podcasts.svg │ │ ├── org.gnome.Polari.svg │ │ ├── org.gnome.PowerStats.svg │ │ ├── org.gnome.Quadrapassel.svg │ │ ├── org.gnome.Reversi.svg │ │ ├── org.gnome.Rhythmbox.svg │ │ ├── org.gnome.Rhythmbox3.svg │ │ ├── org.gnome.Robots.svg │ │ ├── org.gnome.Screenshot.svg │ │ ├── org.gnome.Seahorse.svg │ │ ├── org.gnome.Settings.svg │ │ ├── org.gnome.Shell.Extensions.GSConnect.svg │ │ ├── org.gnome.Shell.Extensions.svg │ │ ├── org.gnome.Shotwell.svg │ │ ├── org.gnome.SimpleScan.svg │ │ ├── org.gnome.Software.Editor.svg │ │ ├── org.gnome.Software.svg │ │ ├── org.gnome.SoundJuicer.svg │ │ ├── org.gnome.SoundRecorder.svg │ │ ├── org.gnome.Sudoku.svg │ │ ├── org.gnome.SwellFoop.svg │ │ ├── org.gnome.Sysprof.svg │ │ ├── org.gnome.Sysprof2.svg │ │ ├── org.gnome.Sysprof3.svg │ │ ├── org.gnome.SystemMonitor.svg │ │ ├── org.gnome.Tali.svg │ │ ├── org.gnome.Taquin.svg │ │ ├── org.gnome.Terminal.svg │ │ ├── org.gnome.Tetravex.svg │ │ ├── org.gnome.Todo.svg │ │ ├── org.gnome.Tomboy.svg │ │ ├── org.gnome.Totem.svg │ │ ├── org.gnome.Tweaks.svg │ │ ├── org.gnome.TwentyFortyEight.svg │ │ ├── org.gnome.Usage.svg │ │ ├── org.gnome.Weather.Application.svg │ │ ├── org.gnome.Weather.Application.svg} │ │ ├── org.gnome.Weather.svg │ │ ├── org.gnome.Yelp.svg │ │ ├── org.gnome.almanah.svg │ │ ├── org.gnome.baobab.svg │ │ ├── org.gnome.bijiben.svg │ │ ├── org.gnome.books.svg │ │ ├── org.gnome.builder.svg │ │ ├── org.gnome.calendar.svg │ │ ├── org.gnome.cheese.svg │ │ ├── org.gnome.chess.svg │ │ ├── org.gnome.clocks.svg │ │ ├── org.gnome.dconf-editor.svg │ │ ├── org.gnome.documents.svg │ │ ├── org.gnome.eog.svg │ │ ├── org.gnome.epiphany.svg │ │ ├── org.gnome.feedreader.svg │ │ ├── org.gnome.files.svg │ │ ├── org.gnome.five-or-more.svg │ │ ├── org.gnome.font-viewer.svg │ │ ├── org.gnome.four-in-a-row.svg │ │ ├── org.gnome.gThumb.svg │ │ ├── org.gnome.games.svg │ │ ├── org.gnome.gbrainy.svg │ │ ├── org.gnome.gedit.svg │ │ ├── org.gnome.gitg.svg │ │ ├── org.gnome.gnome-2048.svg │ │ ├── org.gnome.gnome-latex.svg │ │ ├── org.gnome.gnome-mahjongg.svg │ │ ├── org.gnome.hitori.svg │ │ ├── org.gnome.iagno.svg │ │ ├── org.gnome.lollypop.svg │ │ ├── org.gnome.mahjongg.svg │ │ ├── org.gnome.maps.svg │ │ ├── org.gnome.meld.svg │ │ ├── org.gnome.music.svg │ │ ├── org.gnome.nautilus.svg │ │ ├── org.gnome.photos.svg │ │ ├── org.gnome.powerstats.svg │ │ ├── org.gnome.quadrapassel.svg │ │ ├── org.gnome.seahorse.Application.svg │ │ ├── org.gnome.software.svg │ │ ├── org.gnome.taquin.svg │ │ ├── org.gnome.tetravex.svg │ │ ├── org.gnome.totem.svg │ │ ├── org.gnome.tweak.svg │ │ ├── org.gnome.tweaks.svg │ │ ├── org.gnome.weather.application.svg │ │ ├── org.gnome.weather.svg │ │ ├── org.gnome.web.svg │ │ ├── org.gnu.emacs.svg │ │ ├── org.gnucash.GnuCash.svg │ │ ├── org.godotengine.Godot.svg │ │ ├── org.gtk.Demo3.svg │ │ ├── org.gtk.Demo4.svg │ │ ├── org.gtk.PrintEditor4.svg │ │ ├── org.gtk.WidgetFactory3.svg │ │ ├── org.gtk.WidgetFactory4.svg │ │ ├── org.gtkhash.gtkhash.svg │ │ ├── org.hydrogenmusic.Hydrogen.svg │ │ ├── org.inkscape.Inkscape.svg │ │ ├── org.jdownloader.JDownloader.svg │ │ ├── org.joplinapp.joplin.svg │ │ ├── org.kde.Gwenview.svg │ │ ├── org.kde.akregator.svg │ │ ├── org.kde.amarok.svg │ │ ├── org.kde.ark.svg │ │ ├── org.kde.artikulate.svg │ │ ├── org.kde.babe.svg │ │ ├── org.kde.blinken.svg │ │ ├── org.kde.blogilo.svg │ │ ├── org.kde.bomber.svg │ │ ├── org.kde.calligragemini.svg │ │ ├── org.kde.calligraplan.svg │ │ ├── org.kde.calligrasheets.svg │ │ ├── org.kde.calligrastage.svg │ │ ├── org.kde.calligrawords.svg │ │ ├── org.kde.digikam.svg │ │ ├── org.kde.discover.svg │ │ ├── org.kde.dolphin.svg │ │ ├── org.kde.dragonplayer.svg │ │ ├── org.kde.filelight.svg │ │ ├── org.kde.gcompris.svg │ │ ├── org.kde.gwenview.svg │ │ ├── org.kde.juk.svg │ │ ├── org.kde.k3b.svg │ │ ├── org.kde.kaddressbook.svg │ │ ├── org.kde.kalarm.svg │ │ ├── org.kde.kanagram.svg │ │ ├── org.kde.karbon.svg │ │ ├── org.kde.kate.svg │ │ ├── org.kde.katomic.svg │ │ ├── org.kde.kblocks.svg │ │ ├── org.kde.kcalc.svg │ │ ├── org.kde.kdeconnect.kcm.svg │ │ ├── org.kde.kdeconnect.svg │ │ ├── org.kde.kdenlive.svg │ │ ├── org.kde.kdevelop.svg │ │ ├── org.kde.kget.svg │ │ ├── org.kde.kgpg.svg │ │ ├── org.kde.kid3.svg │ │ ├── org.kde.kiriki.svg │ │ ├── org.kde.kjots.svg │ │ ├── org.kde.kjumpingcube.svg │ │ ├── org.kde.kleopatra.svg │ │ ├── org.kde.klettres.svg │ │ ├── org.kde.kmahjongg.svg │ │ ├── org.kde.kmail.svg │ │ ├── org.kde.kmail2.svg │ │ ├── org.kde.kmines.svg │ │ ├── org.kde.kmix.svg │ │ ├── org.kde.kmymoney.svg │ │ ├── org.kde.knetattach.svg │ │ ├── org.kde.knotes.svg │ │ ├── org.kde.kolourpaint.svg │ │ ├── org.kde.kompare.svg │ │ ├── org.kde.konqueror.svg │ │ ├── org.kde.kontact.svg │ │ ├── org.kde.konversation.svg │ │ ├── org.kde.korganizer.svg │ │ ├── org.kde.kpat.svg │ │ ├── org.kde.krename.svg │ │ ├── org.kde.krfb.svg │ │ ├── org.kde.krita.svg │ │ ├── org.kde.kronometer.svg │ │ ├── org.kde.krusader.svg │ │ ├── org.kde.ksudoku.svg │ │ ├── org.kde.ktorrent.svg │ │ ├── org.kde.ktouch.svg │ │ ├── org.kde.ktuberling.svg │ │ ├── org.kde.kwrite.svg │ │ ├── org.kde.lokalize.svg │ │ ├── org.kde.lskat.svg │ │ ├── org.kde.marble.svg │ │ ├── org.kde.okular.svg │ │ ├── org.kde.partitionmanager.svg │ │ ├── org.kde.plasma.activitybar.svg │ │ ├── org.kde.plasma.activitypager.svg │ │ ├── org.kde.plasma.audiodeviceswitcher.svg │ │ ├── org.kde.plasma.bluetooth.svg │ │ ├── org.kde.plasma.calendar.svg │ │ ├── org.kde.plasma.clipboard.svg │ │ ├── org.kde.plasma.date.svg │ │ ├── org.kde.plasma.frame.svg │ │ ├── org.kde.plasma.icontasks.svg │ │ ├── org.kde.plasma.katesessions.svg │ │ ├── org.kde.plasma.kickerdash.svg │ │ ├── org.kde.plasma.konsoleprofiles.svg │ │ ├── org.kde.plasma.mediacontroller.svg │ │ ├── org.kde.plasma.mediacontrollercompact.svg │ │ ├── org.kde.plasma.mediaframe.svg │ │ ├── org.kde.plasma.multimediacontrols.svg │ │ ├── org.kde.plasma.notes.svg │ │ ├── org.kde.plasma.notifications.svg │ │ ├── org.kde.plasma.pager.svg │ │ ├── org.kde.plasma.printmanager.svg │ │ ├── org.kde.plasma.quicklaunch.svg │ │ ├── org.kde.plasma.showActivityManager.svg │ │ ├── org.kde.plasma.showactivitymanager.svg │ │ ├── org.kde.plasma.showdesktop.svg │ │ ├── org.kde.plasma.systemloadviewer.svg │ │ ├── org.kde.plasma.userswitch.svg │ │ ├── org.kde.plasma.userswitcher.svg │ │ ├── org.kde.plasma.uswitcher.svg │ │ ├── org.kde.plasma.weather.svg │ │ ├── org.kde.plasma.webbrowser.svg │ │ ├── org.kde.plasma.win7showdesktop.svg │ │ ├── org.kde.resourcesMonitor.svg │ │ ├── org.kde.ring-kde.svg │ │ ├── org.kde.showfoto.svg │ │ ├── org.kde.skrooge.svg │ │ ├── org.kde.thermalMonitor.svg │ │ ├── org.kde.vvave.svg │ │ ├── org.kde.weatherWidget.svg │ │ ├── org.kde.yakuake.svg │ │ ├── org.keepassxc.KeePassXC.svg │ │ ├── org.kitone.subtitleeditor.svg │ │ ├── org.krita.krita.svg │ │ ├── org.ksnip.ksnip.svg │ │ ├── org.leocad.LeoCAD.svg │ │ ├── org.libreoffice.LibreOffice-base.svg │ │ ├── org.libreoffice.LibreOffice-calc.svg │ │ ├── org.libreoffice.LibreOffice-draw.svg │ │ ├── org.libreoffice.LibreOffice-impress.svg │ │ ├── org.libreoffice.LibreOffice-math.svg │ │ ├── org.libreoffice.LibreOffice-startcenter.svg │ │ ├── org.libreoffice.LibreOffice-writer.svg │ │ ├── org.libreoffice.LibreOffice.base.svg │ │ ├── org.libreoffice.LibreOffice.calc.svg │ │ ├── org.libreoffice.LibreOffice.draw.svg │ │ ├── org.libreoffice.LibreOffice.impress.svg │ │ ├── org.libreoffice.LibreOffice.math.svg │ │ ├── org.libreoffice.LibreOffice.startcenter.svg │ │ ├── org.libreoffice.LibreOffice.writer.svg │ │ ├── org.midori_browser.Midori.svg │ │ ├── org.mixxx.Mixxx.svg │ │ ├── org.mozilla.Firefox.svg │ │ ├── org.mozilla.FirefoxDevEdition.svg │ │ ├── org.mozilla.FirefoxNightly.svg │ │ ├── org.mozilla.FirefoxNightlyWayland.svg │ │ ├── org.mozilla.Thunderbird.svg │ │ ├── org.mozilla.firefox.svg │ │ ├── org.musescore.MuseScore.svg │ │ ├── org.mypaint.MyPaint.svg │ │ ├── org.neovim.nvim.svg │ │ ├── org.nongnu.lingot.svg │ │ ├── org.nxos.softwarecenter.svg │ │ ├── org.o20.openpoint.svg │ │ ├── org.o20.svg │ │ ├── org.o20.word.svg │ │ ├── org.octave.Octave.svg │ │ ├── org.octave.Octave_64_64.svg │ │ ├── org.olivevideoeditor.Olive.svg │ │ ├── org.onlyoffice.desktopeditors.svg │ │ ├── org.openshot.OpenShot.svg │ │ ├── org.openstreetmap.josm.svg │ │ ├── org.pantheon.noise.svg │ │ ├── org.phoenicis.playonlinux.svg │ │ ├── org.photoqt.PhotoQt.svg │ │ ├── org.pitivi.Pitivi.svg │ │ ├── org.pulseaudio.pavucontrol.svg │ │ ├── org.pwmt.zathura.svg │ │ ├── org.qbittorrent.qBittorrent.svg │ │ ├── org.qt-project.qtcreator.svg │ │ ├── org.quassel_irc.QuasselClient.svg │ │ ├── org.qutebrowser.qutebrowser.svg │ │ ├── org.raspberrypi.rpi-imager.svg │ │ ├── org.remmina.Remmina.svg │ │ ├── org.speedcrunch.SpeedCrunch.svg │ │ ├── org.stellarium.Stellarium.svg │ │ ├── org.supertux.SuperTux-Milestone1.svg │ │ ├── org.supertux.SuperTux.svg │ │ ├── org.supertuxproject.SuperTux.svg │ │ ├── org.synfig.SynfigStudio.svg │ │ ├── org.telegram.desktop.svg │ │ ├── org.texstudio.TeXstudio.svg │ │ ├── org.tordini.flavio.Minitube.svg │ │ ├── org.torproject.torbrowser.svg │ │ ├── org.tug.texworks.svg │ │ ├── org.videolan.VLC.svg │ │ ├── org.vim.Vim.svg │ │ ├── org.virt_manager.virt-manager.svg │ │ ├── org.virt_manager.virt-viewer.svg │ │ ├── org.wireshark.Wireshark.svg │ │ ├── org.wireshark.gtk.svg │ │ ├── org.wireshark.qt.svg │ │ ├── org.wxhexeditor.wxHexEditor.svg │ │ ├── org.xfce.Dictionary.svg │ │ ├── org.xfce.Gigolo.svg │ │ ├── org.xfce.Parole.svg │ │ ├── org.xfce.ScreenSaver.svg │ │ ├── org.xfce.appfinder.svg │ │ ├── org.xfce.catfish.svg │ │ ├── org.xfce.mousepad.svg │ │ ├── org.xfce.notification.svg │ │ ├── org.xfce.panel.actions.svg │ │ ├── org.xfce.panel.applicationsmenu.svg │ │ ├── org.xfce.panel.clock.svg │ │ ├── org.xfce.panel.directorymenu.svg │ │ ├── org.xfce.panel.launcher.svg │ │ ├── org.xfce.panel.pager.svg │ │ ├── org.xfce.panel.separator.svg │ │ ├── org.xfce.panel.svg │ │ ├── org.xfce.panel.tasklist.svg │ │ ├── org.xfce.panel.windowmenu.svg │ │ ├── org.xfce.parole.svg │ │ ├── org.xfce.powermanager.svg │ │ ├── org.xfce.ristretto.svg │ │ ├── org.xfce.screenshooter.svg │ │ ├── org.xfce.session.svg │ │ ├── org.xfce.settings.accessibility.svg │ │ ├── org.xfce.settings.appearance.svg │ │ ├── org.xfce.settings.color.svg │ │ ├── org.xfce.settings.display.svg │ │ ├── org.xfce.settings.editor.svg │ │ ├── org.xfce.settings.keyboard.svg │ │ ├── org.xfce.settings.manager.svg │ │ ├── org.xfce.settings.mouse.svg │ │ ├── org.xfce.settings.preferred-applications.svg │ │ ├── org.xfce.taskmanager.svg │ │ ├── org.xfce.terminal-settings.svg │ │ ├── org.xfce.terminal.svg │ │ ├── org.xfce.thunar.svg │ │ ├── org.xfce.volman.svg │ │ ├── org.xfce.xfburn.svg │ │ ├── org.xfce.xfdashboard.svg │ │ ├── org.yorba.geary.svg │ │ ├── org.zealdocs.Zeal.svg │ │ ├── org.zim_wiki.Zim.svg │ │ ├── org.zimwiki.Zim.svg │ │ ├── org.zotero.Zotero.svg │ │ ├── osmo.svg │ │ ├── otd.svg │ │ ├── oxygen.svg │ │ ├── p7zip.svg │ │ ├── package-manager-icon.svg │ │ ├── package.svg │ │ ├── package_applications.svg │ │ ├── package_development.svg │ │ ├── package_development_debugger.svg │ │ ├── package_development_tools.svg │ │ ├── package_editors.svg │ │ ├── package_edutainment.svg │ │ ├── package_favorite.svg │ │ ├── package_favourite.svg │ │ ├── package_games.svg │ │ ├── package_games_board.svg │ │ ├── package_games_card.svg │ │ ├── package_graphics.svg │ │ ├── package_graphics_photography.svg │ │ ├── package_graphics_scanning.svg │ │ ├── package_internet_email.svg │ │ ├── package_internet_news-feed-reader.svg │ │ ├── package_internet_newsreader.svg │ │ ├── package_multimedia.svg │ │ ├── package_multimedia_audiomixer.svg │ │ ├── package_multimedia_audioplayer.svg │ │ ├── package_multimedia_jukebox.svg │ │ ├── package_office_addressbook.svg │ │ ├── package_toys.svg │ │ ├── package_utilities.svg │ │ ├── package_utilities_web.svg │ │ ├── package_wordprocessing.svg │ │ ├── palaura.svg │ │ ├── palimpsest.svg │ │ ├── pamac-manager.svg │ │ ├── pamac-updater.svg │ │ ├── pamac.svg │ │ ├── pan.svg │ │ ├── panel-applets.svg │ │ ├── panel-searchtool.svg │ │ ├── panel.svg │ │ ├── panini.svg │ │ ├── paprefs.svg │ │ ├── parcellite.svg │ │ ├── parole.svg │ │ ├── paromplayer.svg │ │ ├── partitionmanager.svg │ │ ├── partitions.svg │ │ ├── password-manager.svg │ │ ├── password.svg │ │ ├── passwords.svg │ │ ├── passwordsafe.svg │ │ ├── pattern-kde.svg │ │ ├── pattern-kde4.svg │ │ ├── pattern-x11.svg │ │ ├── pavucontrol.svg │ │ ├── pcb.svg │ │ ├── pcloud.svg │ │ ├── pcsx-icon.svg │ │ ├── pcsx2.svg │ │ ├── pdf-presenter-console.svg │ │ ├── pdfarranger.svg │ │ ├── pdfmod.svg │ │ ├── pdfshuffler.svg │ │ ├── pdfslicer.svg │ │ ├── peazip.svg │ │ ├── persepolis.svg │ │ ├── pgAdmin4.svg │ │ ├── pgadmin.svg │ │ ├── pgadmin3.svg │ │ ├── pgadmin4.svg │ │ ├── phoenicis.svg │ │ ├── phonon-gstreamer.svg │ │ ├── photo.svg │ │ ├── photoflare.svg │ │ ├── photolayoutseditor.svg │ │ ├── photoqt.svg │ │ ├── photos.svg │ │ ├── php.svg │ │ ├── phpmyadmin.svg │ │ ├── phpstorm.svg │ │ ├── pidgin-menu.svg │ │ ├── pidgin.svg │ │ ├── pinta.svg │ │ ├── pirut.svg │ │ ├── pithos.svg │ │ ├── pitivi.svg │ │ ├── pix.svg │ │ ├── pk-package-sources.svg │ │ ├── pkgbrowser.svg │ │ ├── plan.svg │ │ ├── planetkde.svg │ │ ├── plank.svg │ │ ├── planner.svg │ │ ├── planwork.svg │ │ ├── plasma-media-center.svg │ │ ├── plasma-mobile-phone.svg │ │ ├── plasma-search.svg │ │ ├── plasma.svg │ │ ├── plasmadiscover.svg │ │ ├── plasmagik.svg │ │ ├── plasmashell.svg │ │ ├── playmymusic.svg │ │ ├── playonlinux.svg │ │ ├── playonlinux32.svg │ │ ├── plugin-colorfilter.svg │ │ ├── plugin-notification.svg │ │ ├── plugin-wallpaper.svg │ │ ├── plugins-accessibility.svg │ │ ├── plv.svg │ │ ├── plymouth.svg │ │ ├── pnmixer.svg │ │ ├── podcast-amarok.svg │ │ ├── podcast.svg │ │ ├── polari.svg │ │ ├── pomidor.svg │ │ ├── pomotroid.svg │ │ ├── pop3.svg │ │ ├── popcorntime.svg │ │ ├── popsicle.svg │ │ ├── porthole.svg │ │ ├── postman.svg │ │ ├── postscript-viewer.svg │ │ ├── ppsspp.svg │ │ ├── preferences-bluetooth.svg │ │ ├── preferences-calendar-and-tasks.svg │ │ ├── preferences-certificates.svg │ │ ├── preferences-color.svg │ │ ├── preferences-composer.svg │ │ ├── preferences-contact-list.svg │ │ ├── preferences-desktop-accessibility.svg │ │ ├── preferences-desktop-activities.svg │ │ ├── preferences-desktop-applications.svg │ │ ├── preferences-desktop-apps.svg │ │ ├── preferences-desktop-assistive-technology.svg │ │ ├── preferences-desktop-baloo.svg │ │ ├── preferences-desktop-color.svg │ │ ├── preferences-desktop-cryptography.svg │ │ ├── preferences-desktop-cursors.svg │ │ ├── preferences-desktop-default-applications.svg │ │ ├── preferences-desktop-desktop-wallpaper.svg │ │ ├── preferences-desktop-display-color.svg │ │ ├── preferences-desktop-display.svg │ │ ├── preferences-desktop-effects.svg │ │ ├── preferences-desktop-emoticons.svg │ │ ├── preferences-desktop-filetype-association.svg │ │ ├── preferences-desktop-filter.svg │ │ ├── preferences-desktop-font-installer.svg │ │ ├── preferences-desktop-font.svg │ │ ├── preferences-desktop-gaming.svg │ │ ├── preferences-desktop-gestures-screenedges.svg │ │ ├── preferences-desktop-gestures-touch.svg │ │ ├── preferences-desktop-icons.svg │ │ ├── preferences-desktop-keyboard-shortcuts.svg │ │ ├── preferences-desktop-keyboard.svg │ │ ├── preferences-desktop-launch-feedback.svg │ │ ├── preferences-desktop-locale.svg │ │ ├── preferences-desktop-mouse.svg │ │ ├── preferences-desktop-multimedia.svg │ │ ├── preferences-desktop-navigation.svg │ │ ├── preferences-desktop-notification-bell.svg │ │ ├── preferences-desktop-notification.svg │ │ ├── preferences-desktop-notifications.svg │ │ ├── preferences-desktop-online-accounts.svg │ │ ├── preferences-desktop-peripherals.svg │ │ ├── preferences-desktop-plasma-theme.svg │ │ ├── preferences-desktop-plasma.svg │ │ ├── preferences-desktop-printer.svg │ │ ├── preferences-desktop-remote-desktop.svg │ │ ├── preferences-desktop-screensaver.svg │ │ ├── preferences-desktop-search.svg │ │ ├── preferences-desktop-sound.svg │ │ ├── preferences-desktop-tablet.svg │ │ ├── preferences-desktop-text-to-speech.svg │ │ ├── preferences-desktop-theme-applications.svg │ │ ├── preferences-desktop-theme-global.svg │ │ ├── preferences-desktop-theme-windowdecorations.svg │ │ ├── preferences-desktop-theme.svg │ │ ├── preferences-desktop-thunderbolt.svg │ │ ├── preferences-desktop-touchpad.svg │ │ ├── preferences-desktop-tweaks.svg │ │ ├── preferences-desktop-user-password.svg │ │ ├── preferences-desktop-user.svg │ │ ├── preferences-desktop-virtual.svg │ │ ├── preferences-desktop-wallpaper.svg │ │ ├── preferences-desktop-workspaces.svg │ │ ├── preferences-desktop.svg │ │ ├── preferences-devices-cpu.svg │ │ ├── preferences-devices-drive-optical-check.svg │ │ ├── preferences-devices-printer.svg │ │ ├── preferences-devices-scanner.svg │ │ ├── preferences-devices-tree.svg │ │ ├── preferences-gtk-config.svg │ │ ├── preferences-kde-connect.svg │ │ ├── preferences-log.svg │ │ ├── preferences-mail-accounts.svg │ │ ├── preferences-mail.svg │ │ ├── preferences-other.svg │ │ ├── preferences-plugin.svg │ │ ├── preferences-releasenotes.svg │ │ ├── preferences-remote-desktop.svg │ │ ├── preferences-security-apparmor.svg │ │ ├── preferences-security-firewall.svg │ │ ├── preferences-security-kerberos.svg │ │ ├── preferences-security.svg │ │ ├── preferences-sound.svg │ │ ├── preferences-system-backup.svg │ │ ├── preferences-system-bluetooth-inactive.svg │ │ ├── preferences-system-bluetooth.svg │ │ ├── preferences-system-directory.svg │ │ ├── preferences-system-firewall.svg │ │ ├── preferences-system-hotcorners.svg │ │ ├── preferences-system-linux.svg │ │ ├── preferences-system-login.svg │ │ ├── preferences-system-network-dsl.svg │ │ ├── preferences-system-network-ethernet.svg │ │ ├── preferences-system-network-iscsi.svg │ │ ├── preferences-system-network-ldap.svg │ │ ├── preferences-system-network-nis.svg │ │ ├── preferences-system-network-ntp.svg │ │ ├── preferences-system-network-proxy.svg │ │ ├── preferences-system-network-remote.svg │ │ ├── preferences-system-network-server-boot.svg │ │ ├── preferences-system-network-server-dhcp.svg │ │ ├── preferences-system-network-server-dns.svg │ │ ├── preferences-system-network-server-ftp.svg │ │ ├── preferences-system-network-server-installation.svg │ │ ├── preferences-system-network-server-iscsi.svg │ │ ├── preferences-system-network-server-kerberos.svg │ │ ├── preferences-system-network-server-ldap.svg │ │ ├── preferences-system-network-server-mail.svg │ │ ├── preferences-system-network-server-nis.svg │ │ ├── preferences-system-network-server-share-windows.svg │ │ ├── preferences-system-network-server-share.svg │ │ ├── preferences-system-network-server-slp.svg │ │ ├── preferences-system-network-server-web.svg │ │ ├── preferences-system-network-server.svg │ │ ├── preferences-system-network-share-windows.svg │ │ ├── preferences-system-network-share.svg │ │ ├── preferences-system-network-sharing.svg │ │ ├── preferences-system-network-vpn.svg │ │ ├── preferences-system-network-wakeonlan.svg │ │ ├── preferences-system-network.svg │ │ ├── preferences-system-notifications.svg │ │ ├── preferences-system-parental-controls.svg │ │ ├── preferences-system-performance.svg │ │ ├── preferences-system-power-management.svg │ │ ├── preferences-system-power.svg │ │ ├── preferences-system-privacy-housekeeping.svg │ │ ├── preferences-system-privacy.svg │ │ ├── preferences-system-search.svg │ │ ├── preferences-system-services.svg │ │ ├── preferences-system-session-services.svg │ │ ├── preferences-system-session.svg │ │ ├── preferences-system-sharing.svg │ │ ├── preferences-system-sound.svg │ │ ├── preferences-system-splash.svg │ │ ├── preferences-system-startup.svg │ │ ├── preferences-system-tabbox.svg │ │ ├── preferences-system-time.svg │ │ ├── preferences-system-user-sudo.svg │ │ ├── preferences-system-users.svg │ │ ├── preferences-system-windows-actions.svg │ │ ├── preferences-system-windows-effect-flipswitch.svg │ │ ├── preferences-system-windows-move.svg │ │ ├── preferences-system-windows.svg │ │ ├── preferences-system.svg │ │ ├── preferences-theme.svg │ │ ├── preferences-tweaks-anim.svg │ │ ├── preferences-tweaks-cerbere.svg │ │ ├── preferences-tweaks-shadows.svg │ │ ├── preferences-ubuntu-panel.svg │ │ ├── preferences-virtualization-container.svg │ │ ├── preferences-virtualization-vm-install.svg │ │ ├── preferences-virtualization-vm-migrate.svg │ │ ├── preferences-virtualization-vm-new.svg │ │ ├── preferences-virtualization-vm.svg │ │ ├── preferences-wallpaper.svg │ │ ├── preferences-web-browser-adblock.svg │ │ ├── preferences-web-browser-cache.svg │ │ ├── preferences-web-browser-cookies.svg │ │ ├── preferences-web-browser-identification.svg │ │ ├── preferences-web-browser-shortcuts.svg │ │ ├── preferences-web-browser-ssl.svg │ │ ├── preferences-web-browser-stylesheets.svg │ │ ├── preferences.svg │ │ ├── preferences_system.svg │ │ ├── printer-driver-deepin-cloud-print.svg │ │ ├── printer.svg │ │ ├── printer1.svg │ │ ├── printersandfax_q4os_startmenu.svg │ │ ├── printmgr.svg │ │ ├── proxy.svg │ │ ├── psensor.svg │ │ ├── ptask.svg │ │ ├── ptbatcher.svg │ │ ├── puddletag.svg │ │ ├── pulseeffects.svg │ │ ├── pup.svg │ │ ├── putty.svg │ │ ├── pycad.svg │ │ ├── pycharm-community.svg │ │ ├── pycharm-education.svg │ │ ├── pycharm-professional.svg │ │ ├── pycharm.svg │ │ ├── pychess.svg │ │ ├── pynvim.svg │ │ ├── python.svg │ │ ├── python2.6.svg │ │ ├── python2.7.svg │ │ ├── python3.0.svg │ │ ├── python3.1.svg │ │ ├── python3.2.svg │ │ ├── python3.3.svg │ │ ├── python3.4.svg │ │ ├── python3.5.svg │ │ ├── q4_findmenu.svg │ │ ├── q4_netcon.svg │ │ ├── q4os-updatemgr.svg │ │ ├── q4wine.svg │ │ ├── qalculate-applet.svg │ │ ├── qalculate-gtk.svg │ │ ├── qalculate-kde.svg │ │ ├── qalculate.svg │ │ ├── qalculator.svg │ │ ├── qbittorrent.svg │ │ ├── qdbusviewer-qt4.svg │ │ ├── qdbusviewer-qt5.svg │ │ ├── qdbusviewer.svg │ │ ├── qdbusviewer5.svg │ │ ├── qdirstat.svg │ │ ├── qemu-launcher.svg │ │ ├── qemu-system-aarch64.svg │ │ ├── qemu-system-arm.svg │ │ ├── qemu-system-i386.svg │ │ ├── qemu-system-x86_64-spice.svg │ │ ├── qemu-system-x86_64.svg │ │ ├── qemu.svg │ │ ├── qgit.svg │ │ ├── qgo.svg │ │ ├── qjackctl.svg │ │ ├── qjadeo.svg │ │ ├── qjoypad.svg │ │ ├── qlandkartegt.svg │ │ ├── qlipper.svg │ │ ├── qmapshack.svg │ │ ├── qmlscene.svg │ │ ├── qopenvpn.svg │ │ ├── qpdfview.svg │ │ ├── qps.svg │ │ ├── qq.svg │ │ ├── qqmusic.svg │ │ ├── qshutdown.svg │ │ ├── qt-creator.svg │ │ ├── qt-logo.svg │ │ ├── qt.svg │ │ ├── qt4-logo.svg │ │ ├── qt4logo.svg │ │ ├── qt5-logo.svg │ │ ├── qt5ct.svg │ │ ├── qtassistant.svg │ │ ├── qtconfig-qt4.svg │ │ ├── qtconfig-qt5.svg │ │ ├── qtconfig.svg │ │ ├── qtcreator.svg │ │ ├── qtcreator_logo_32.svg │ │ ├── qtcreatorubuntu.svg │ │ ├── qtdbusviewer.svg │ │ ├── qtdesigner.svg │ │ ├── qtemu.svg │ │ ├── qterminal.svg │ │ ├── qtlinguist.svg │ │ ├── qtlinguistic.svg │ │ ├── qtlogo.svg │ │ ├── qtoctave.svg │ │ ├── quadrapassel.svg │ │ ├── quassel.svg │ │ ├── quasselclient.svg │ │ ├── quickDocs.svg │ │ ├── quiterss.svg │ │ ├── quodlibet.svg │ │ ├── qupzilla.svg │ │ ├── qutebrowser.svg │ │ ├── qv4l2.svg │ │ ├── qvidcap.svg │ │ ├── r.svg │ │ ├── rambox-os.svg │ │ ├── rambox.svg │ │ ├── randr.svg │ │ ├── rbackend.svg │ │ ├── rclock.svg │ │ ├── realtimesync.svg │ │ ├── reco.svg │ │ ├── record-desktop.svg │ │ ├── recordmydesktop.svg │ │ ├── red_glasses.svg │ │ ├── redhat-email.svg │ │ ├── redhat-filemanager.svg │ │ ├── redhat-linux.svg │ │ ├── redhat-server_settings.svg │ │ ├── redhat-system_tools.svg │ │ ├── redhat-tools.svg │ │ ├── redhat-web-browser.svg │ │ ├── redhat.svg │ │ ├── redream.svg │ │ ├── redshift-gtk.svg │ │ ├── redshift-icon-256.svg │ │ ├── redshift.svg │ │ ├── redshiftgui.svg │ │ ├── regextester.svg │ │ ├── regexxer.svg │ │ ├── rekonq.svg │ │ ├── reload.svg │ │ ├── remmina.svg │ │ ├── remote-desktop.svg │ │ ├── resapplet.svg │ │ ├── resolve.svg │ │ ├── rest.getinsomnia.Designer.svg │ │ ├── rest.getinsomnia.Insomnia.svg │ │ ├── rest.insomnia.Designer.svg │ │ ├── retext.svg │ │ ├── revelation.svg │ │ ├── rhel.svg │ │ ├── rhythmbox.svg │ │ ├── rider.svg │ │ ├── rimworld.svg │ │ ├── ring-jami.svg │ │ ├── ring-kde.svg │ │ ├── ring.svg │ │ ├── riot-web.svg │ │ ├── rip.svg │ │ ├── ripperx.svg │ │ ├── ristretto.svg │ │ ├── rosa-imagewriter.svg │ │ ├── rosamp.svg │ │ ├── roxterm-gtk3.svg │ │ ├── roxterm.svg │ │ ├── rpi-imager.svg │ │ ├── rpi.svg │ │ ├── rpmdrake.svg │ │ ├── rss.svg │ │ ├── rssguard.svg │ │ ├── rssnow.svg │ │ ├── rssowl.svg │ │ ├── rstudio.svg │ │ ├── rubymine.svg │ │ ├── rubyripper.svg │ │ ├── rygel.svg │ │ ├── sabaki.svg │ │ ├── sage-notebook.svg │ │ ├── samba.svg │ │ ├── samsung-driver.svg │ │ ├── sc-controller.svg │ │ ├── scanner.svg │ │ ├── scans2pdf.svg │ │ ├── scid.svg │ │ ├── scratch-text-editor.svg │ │ ├── screen-recorder.svg │ │ ├── screengrab.svg │ │ ├── screenie-qt.svg │ │ ├── screenie.svg │ │ ├── screenrecorder.svg │ │ ├── screenruler-icon-32x32.svg │ │ ├── screenruler-icon.svg │ │ ├── screenruler.svg │ │ ├── screensaver.svg │ │ ├── scribus-ng.svg │ │ ├── scribus-trunk.svg │ │ ├── scribus.svg │ │ ├── script-error.svg │ │ ├── scudcloud.svg │ │ ├── seahorse-preferences.svg │ │ ├── seahorse.svg │ │ ├── search.svg │ │ ├── searchmonkey.svg │ │ ├── securecrt.svg │ │ ├── securefx.svg │ │ ├── security-medium.svg │ │ ├── selene.svg │ │ ├── semn.svg │ │ ├── sense_emu_gui.svg │ │ ├── sequeler.svg │ │ ├── session-properties.svg │ │ ├── setroubleshoot_red_icon.svg │ │ ├── sgt-mines.svg │ │ ├── share.svg │ │ ├── sheets.svg │ │ ├── shortcuts.svg │ │ ├── shotwell.svg │ │ ├── show-background.svg │ │ ├── show-desktop.svg │ │ ├── showdown.svg │ │ ├── showfoto.svg │ │ ├── showimage.svg │ │ ├── shuffler-control.svg │ │ ├── shutter.svg │ │ ├── sigil.svg │ │ ├── signal-desktop.svg │ │ ├── sigram.svg │ │ ├── silicon-128.svg │ │ ├── silicon-22.svg │ │ ├── silicon-32.svg │ │ ├── silicon-48.svg │ │ ├── silicon-64.svg │ │ ├── simple-ccsm.svg │ │ ├── simple-scan.svg │ │ ├── simplenote.svg │ │ ├── simplescreenrecorder.svg │ │ ├── skanlite.svg │ │ ├── skrooge-black.svg │ │ ├── skrooge-initial.svg │ │ ├── skrooge.svg │ │ ├── skype.svg │ │ ├── skype_protocol.svg │ │ ├── skypeforlinux.svg │ │ ├── slack.svg │ │ ├── sleep.svg │ │ ├── slidewall.svg │ │ ├── slimjet.svg │ │ ├── slingscold.svg │ │ ├── smartcode-stremio.svg │ │ ├── smartgit.svg │ │ ├── smartgithg.svg │ │ ├── smplayer.svg │ │ ├── smtube.svg │ │ ├── smuxi-frontend-gnome.svg │ │ ├── smuxi.svg │ │ ├── software-center.svg │ │ ├── software-manager.svg │ │ ├── software-properties-mint.svg │ │ ├── software-properties.svg │ │ ├── software-sources.svg │ │ ├── software-store.svg │ │ ├── software-update-available.svg │ │ ├── software-update-urgent.svg │ │ ├── software.svg │ │ ├── softwarecenter-debian.svg │ │ ├── softwarecenter-ubuntu.svg │ │ ├── softwarecenter.svg │ │ ├── sogou_notify.svg │ │ ├── sogoupinyin.svg │ │ ├── solaar.svg │ │ ├── sonata.svg │ │ ├── sound-juicer.svg │ │ ├── soundconverter.svg │ │ ├── soundkonverter.svg │ │ ├── spacefm.svg │ │ ├── spectacle.svg │ │ ├── speedcrunch.svg │ │ ├── spotify-client.svg │ │ ├── spotify-linux-48x48.svg │ │ ├── spotify-linux-512x512.svg │ │ ├── spotify-web-player.svg │ │ ├── spotify.svg │ │ ├── spotify_A.svg │ │ ├── spotifywebplayer.svg │ │ ├── sqlitebrowser.svg │ │ ├── sqliteman.svg │ │ ├── sqlitestudio.svg │ │ ├── ssh-askpass-gnome.svg │ │ ├── stacer.svg │ │ ├── stage.svg │ │ ├── starcal2.svg │ │ ├── stardict_16x16.svg │ │ ├── stardict_32x32.svg │ │ ├── starred.svg │ │ ├── start-here-archlinux.svg │ │ ├── start-here-debian.svg │ │ ├── start-here-fedora.svg │ │ ├── start-here-kde.svg │ │ ├── start-here-korora.svg │ │ ├── start-here-linux-mint.svg │ │ ├── start-here-lubuntu.svg │ │ ├── start-here-manjaro.svg │ │ ├── start-here-opensuse.svg │ │ ├── start-here-ubuntu.svg │ │ ├── start-here-xfce.svg │ │ ├── startupmanager.svg │ │ ├── staruml.svg │ │ ├── steam-icon.svg │ │ ├── steam-launcher.svg │ │ ├── steam.svg │ │ ├── steam_icon_105600.svg │ │ ├── steam_icon_219740.svg │ │ ├── steam_icon_280680.svg │ │ ├── steam_icon_286160.svg │ │ ├── steam_icon_294100.svg │ │ ├── steam_icon_322330.svg │ │ ├── steam_icon_365670.svg │ │ ├── steam_icon_404790.svg │ │ ├── steam_icon_415890.svg │ │ ├── steamos-logo-icon.svg │ │ ├── steampowered.svg │ │ ├── stellarium.svg │ │ ├── sticky-notes.svg │ │ ├── stock_about.svg │ │ ├── stock_addressbook.svg │ │ ├── stock_alarm.svg │ │ ├── stock_calendar.svg │ │ ├── stock_dialog-info.svg │ │ ├── stock_help-agent.svg │ │ ├── stock_help.svg │ │ ├── stock_insert_note.svg │ │ ├── stock_keyring.svg │ │ ├── stock_mail-compose.svg │ │ ├── stock_new-meeting.svg │ │ ├── stock_news.svg │ │ ├── stock_notes.svg │ │ ├── stock_task.svg │ │ ├── stock_tasks.svg │ │ ├── stock_view-details.svg │ │ ├── stock_xfburn.svg │ │ ├── stoken-gui.svg │ │ ├── strawberry.svg │ │ ├── streamlink-twitch-gui.svg │ │ ├── stremio.svg │ │ ├── strigi.svg │ │ ├── studio.svg │ │ ├── style.svg │ │ ├── stylesheet.svg │ │ ├── sublime-merge.svg │ │ ├── sublime-text-2.svg │ │ ├── sublime-text-3.svg │ │ ├── sublime-text.svg │ │ ├── sublime-text2.svg │ │ ├── sublime.svg │ │ ├── sublime3-text.svg │ │ ├── sublime_merge.svg │ │ ├── sublime_text.svg │ │ ├── sublimemerge.svg │ │ ├── sublimetext.svg │ │ ├── subtitlecomposer.svg │ │ ├── subtitleeditor.svg │ │ ├── sun-java-jdk10.svg │ │ ├── sun-java-jdk5.svg │ │ ├── sun-java-jdk6.svg │ │ ├── sun-java-jdk7.svg │ │ ├── sun-java-jdk8.svg │ │ ├── sun-java-jdk9.svg │ │ ├── sun-java-jre10.svg │ │ ├── sun-java-jre8.svg │ │ ├── sun-java.svg │ │ ├── sun-java32-jdk5.svg │ │ ├── sun-java32-jdk6.svg │ │ ├── sun-java32-jdk7.svg │ │ ├── sun-java32-jdk8.svg │ │ ├── sun-java6.svg │ │ ├── sun-java7.svg │ │ ├── sun-java8.svg │ │ ├── sun-javaws-jdk10.svg │ │ ├── sun-javaws-jdk6.svg │ │ ├── sun-javaws-jdk7.svg │ │ ├── sun-javaws-jdk8.svg │ │ ├── sun-javaws-jdk9.svg │ │ ├── sun-javaws-jre10.svg │ │ ├── sun-javaws-jre8.svg │ │ ├── sun-javaws.svg │ │ ├── sun-javaws32-jdk6.svg │ │ ├── sun-javaws32-jdk7.svg │ │ ├── sun-javaws32-jdk8.svg │ │ ├── sun-jcontrol-jdk10.svg │ │ ├── sun-jcontrol-jdk6.svg │ │ ├── sun-jcontrol-jdk7.svg │ │ ├── sun-jcontrol-jdk8.svg │ │ ├── sun-jcontrol-jdk9.svg │ │ ├── sun-jcontrol-jre10.svg │ │ ├── sun-jcontrol-jre8.svg │ │ ├── sun-jcontrol.svg │ │ ├── sun-jcontrol32-jdk6.svg │ │ ├── sun-jcontrol32-jdk7.svg │ │ ├── sun-jcontrol32-jdk8.svg │ │ ├── sun_java.svg │ │ ├── supertux.svg │ │ ├── supertux2.svg │ │ ├── supertuxkart.svg │ │ ├── supertuxkart_128.svg │ │ ├── susehelpcenter.svg │ │ ├── susers.svg │ │ ├── svgcleaner.svg │ │ ├── swcentre.svg │ │ ├── sweeper.svg │ │ ├── swell-foop.svg │ │ ├── switchuser.svg │ │ ├── sylpheed.svg │ │ ├── synaptic.svg │ │ ├── syncthing-gtk.svg │ │ ├── syncthing.svg │ │ ├── syncthingtray.svg │ │ ├── synfig_icon.svg │ │ ├── syntevo-smartgit.svg │ │ ├── sysprof-icon.svg │ │ ├── sysprof.svg │ │ ├── system-config-authentication.svg │ │ ├── system-config-boot.svg │ │ ├── system-config-date.svg │ │ ├── system-config-display.svg │ │ ├── system-config-displayca.svg │ │ ├── system-config-firewall.svg │ │ ├── system-config-keyboard.svg │ │ ├── system-config-printer.svg │ │ ├── system-config-services.svg │ │ ├── system-config-users.svg │ │ ├── system-error.svg │ │ ├── system-file-manager.svg │ │ ├── system-help.svg │ │ ├── system-hibernate.svg │ │ ├── system-installer.svg │ │ ├── system-lock-screen.svg │ │ ├── system-log-out.svg │ │ ├── system-monitor.svg │ │ ├── system-os-install.svg │ │ ├── system-os-installer.svg │ │ ├── system-reboot.svg │ │ ├── system-restart.svg │ │ ├── system-run.svg │ │ ├── system-save-session.svg │ │ ├── system-search.svg │ │ ├── system-shut-down.svg │ │ ├── system-shutdown.svg │ │ ├── system-software-install.svg │ │ ├── system-software-installer.svg │ │ ├── system-software-update.svg │ │ ├── system-suspend-hibernate.svg │ │ ├── system-suspend.svg │ │ ├── system-switch-java.svg │ │ ├── system-switch-user.svg │ │ ├── system-upgrade.svg │ │ ├── system-users.svg │ │ ├── system-utilities-logviewer.svg │ │ ├── system76-driver.svg │ │ ├── systemback.svg │ │ ├── systemsettings.svg │ │ ├── tagua.svg │ │ ├── tali.svg │ │ ├── tauonmb.svg │ │ ├── tdenetworkmanager.svg │ │ ├── tdescreensaver.svg │ │ ├── tdevelop.svg │ │ ├── tdmconfig.svg │ │ ├── teams-for-linux.svg │ │ ├── teams.svg │ │ ├── teamviewer.svg │ │ ├── telegram-desktop.svg │ │ ├── telegram.svg │ │ ├── telepathy-kde.svg │ │ ├── telepathy.svg │ │ ├── terasology.svg │ │ ├── terminal-tango.svg │ │ ├── terminal.svg │ │ ├── terminator-128.svg │ │ ├── terminator.svg │ │ ├── terminix.svg │ │ ├── terminology.svg │ │ ├── terra.svg │ │ ├── terraria.svg │ │ ├── texmaker.svg │ │ ├── texmaker128x128.svg │ │ ├── texstudio.svg │ │ ├── text-editor.svg │ │ ├── textadept.svg │ │ ├── theme-config.svg │ │ ├── thermal-monitor.svg │ │ ├── thunar-filemanager.svg │ │ ├── thunar.svg │ │ ├── thunderbird-3.0.svg │ │ ├── thunderbird-beta-bin.svg │ │ ├── thunderbird-beta.svg │ │ ├── thunderbird-branded.svg │ │ ├── thunderbird-early-bird.svg │ │ ├── thunderbird-icon.svg │ │ ├── thunderbird-mozilla-build.svg │ │ ├── thunderbird-trunk.svg │ │ ├── thunderbird.svg │ │ ├── thunderbolt.svg │ │ ├── tigervnc.svg │ │ ├── tild.svg │ │ ├── tilda.svg │ │ ├── tilix.svg │ │ ├── time-admin.svg │ │ ├── time.svg │ │ ├── timekpr.svg │ │ ├── timeset-gui-icon.svg │ │ ├── timeshift.svg │ │ ├── timevault.svg │ │ ├── tint2.svg │ │ ├── tint2conf.svg │ │ ├── tixati.svg │ │ ├── tkpacman-icon.svg │ │ ├── tkpacman.svg │ │ ├── todoist.svg │ │ ├── tomboy-16.svg │ │ ├── tomboy-32.svg │ │ ├── tomboy-note.svg │ │ ├── tomboy-panel.svg │ │ ├── tomboy.svg │ │ ├── tools-report-bug.svg │ │ ├── tools-wizard.svg │ │ ├── topmenu-applet.svg │ │ ├── tor-browser-en.svg │ │ ├── tor-browser.svg │ │ ├── torbrowser.svg │ │ ├── totem.svg │ │ ├── tracker.svg │ │ ├── transgui-2.svg │ │ ├── transgui.svg │ │ ├── translator.svg │ │ ├── transmission-gtk.svg │ │ ├── transmission-qt.svg │ │ ├── transmission-remote-gtk.svg │ │ ├── transmission-remote-qt.svg │ │ ├── transmission.svg │ │ ├── tremotesf.svg │ │ ├── trojita.svg │ │ ├── truecrypt.svg │ │ ├── tsclient.svg │ │ ├── tutanota-desktop.svg │ │ ├── tuxboot.svg │ │ ├── tuxpaint.svg │ │ ├── tv.kodi.Kodi.svg │ │ ├── tvmaxe.svg │ │ ├── tvtime.svg │ │ ├── twin.svg │ │ ├── twitux.svg │ │ ├── typhoon.svg │ │ ├── typora.svg │ │ ├── uberwriter.svg │ │ ├── ubiquity-kde.svg │ │ ├── ubiquity.svg │ │ ├── ubuntu-cleaner.svg │ │ ├── ubuntu-kylin-software-center.svg │ │ ├── ubuntu-logo-icon.svg │ │ ├── ubuntu-mate.svg │ │ ├── ubuntu-online-tour.svg │ │ ├── ubuntu-qtcreator.svg │ │ ├── ubuntu.svg │ │ ├── ubuntuone-client.svg │ │ ├── ubuntuone-installer.svg │ │ ├── ubuntuone.svg │ │ ├── ubuntuoneUP.svg │ │ ├── ubuntusoftware.svg │ │ ├── ufw-frontends.svg │ │ ├── uget-icon.svg │ │ ├── uget.svg │ │ ├── ulauncher.svg │ │ ├── un-reboot.svg │ │ ├── unetbootin.svg │ │ ├── unity-color-panel.svg │ │ ├── unity-control-center.svg │ │ ├── unity-datetime-panel.svg │ │ ├── unity-display-panel.svg │ │ ├── unity-editor-icon.svg │ │ ├── unity-lens-photos.svg │ │ ├── unity-mail.svg │ │ ├── unity-power-panel.svg │ │ ├── unity-sound-panel.svg │ │ ├── unity-tweak-tool.svg │ │ ├── unity-webapps-amazoncloudreader.svg │ │ ├── unity-webapps-facebook.svg │ │ ├── unity-webapps-gmail.svg │ │ ├── unity-webapps-google-calendar.svg │ │ ├── unity-webapps-hotmail.svg │ │ ├── unity-webapps-lastfm.svg │ │ ├── unity-webapps-outlook.svg │ │ ├── unity-webapps-telegram.svg │ │ ├── unity-webapps-twitter.svg │ │ ├── unity-webapps-yahoo-mail.svg │ │ ├── unity-webapps-yahoo-news.svg │ │ ├── unity-webapps-yahoonews.svg │ │ ├── unity-webapps-youtube.svg │ │ ├── unityhub.svg │ │ ├── update-manager.svg │ │ ├── update-notifier.svg │ │ ├── update.svg │ │ ├── urxvt.svg │ │ ├── urxvt_48x48.svg │ │ ├── us.zoom.Zoom.svg │ │ ├── usb-creator-gtk.svg │ │ ├── usb-creator-kde.svg │ │ ├── usb-creator.svg │ │ ├── user-admin.svg │ │ ├── user-file-manager.svg │ │ ├── user-info.svg │ │ ├── user_auth.svg │ │ ├── user_icon.svg │ │ ├── userdrake.svg │ │ ├── userinfo.svg │ │ ├── users-admin.svg │ │ ├── users.svg │ │ ├── utilities-dictionary.svg │ │ ├── utilities-energy-monitor.svg │ │ ├── utilities-file-archiver.svg │ │ ├── utilities-log-viewer.svg │ │ ├── utilities-notes.svg │ │ ├── utilities-root-terminal.svg │ │ ├── utilities-system-monitor.svg │ │ ├── utilities-terminal-root.svg │ │ ├── utilities-terminal.svg │ │ ├── utilities-terminal_su.svg │ │ ├── utilities-text-editor.svg │ │ ├── utilities-x-terminal.svg │ │ ├── utilities_terminal.svg │ │ ├── uxterm.svg │ │ ├── vala-panel.svg │ │ ├── vala-terminal.svg │ │ ├── variety-slideshow.svg │ │ ├── variety.svg │ │ ├── vbox.svg │ │ ├── vcalendar.svg │ │ ├── veracrypt.svg │ │ ├── veracrypt.xpm.svg │ │ ├── verbiste.svg │ │ ├── viber.svg │ │ ├── vidcutter.svg │ │ ├── video-display.svg │ │ ├── video-player.svg │ │ ├── vidiot.svg │ │ ├── viewnior.svg │ │ ├── vim-qt.svg │ │ ├── vim.svg │ │ ├── vimlogo.svg │ │ ├── vinagre.svg │ │ ├── virt-manager.svg │ │ ├── virt-viewer.svg │ │ ├── virtual-box.svg │ │ ├── virtualbox-bin.svg │ │ ├── virtualbox-ose.svg │ │ ├── virtualbox.svg │ │ ├── visual-studio-code-insiders.svg │ │ ├── visual-studio-code.svg │ │ ├── visualstudiocode.svg │ │ ├── vivaldi-beta.svg │ │ ├── vivaldi-snapshot.svg │ │ ├── vivaldi-stable.svg │ │ ├── vivaldi.svg │ │ ├── vlc.svg │ │ ├── vmplayer.svg │ │ ├── vmware-netcfg.svg │ │ ├── vmware-player.svg │ │ ├── vmware-workstation.svg │ │ ├── vmware.svg │ │ ├── vocal.svg │ │ ├── vokoscreen.svg │ │ ├── volume-knob.svg │ │ ├── vsc.svg │ │ ├── vscode.svg │ │ ├── vscodium.svg │ │ ├── vso.svg │ │ ├── vuescan.svg │ │ ├── vvave.svg │ │ ├── wallpaper.svg │ │ ├── wallstreet-control.svg │ │ ├── waterfox-classic.svg │ │ ├── waterfox-current.svg │ │ ├── waterfox-icon.svg │ │ ├── waterfox.svg │ │ ├── wayland.svg │ │ ├── weather-widget.svg │ │ ├── weather.svg │ │ ├── web-amazon.svg │ │ ├── web-browser-app.svg │ │ ├── web-browser.svg │ │ ├── web-discord.svg │ │ ├── web-facebook.svg │ │ ├── web-fastmail.svg │ │ ├── web-flickr.svg │ │ ├── web-google-calendar.svg │ │ ├── web-google-gmail-offline.svg │ │ ├── web-google-gmail.svg │ │ ├── web-google-maps.svg │ │ ├── web-google-play-music.svg │ │ ├── web-google-youtube.svg │ │ ├── web-hotmail.svg │ │ ├── web-lastfm.svg │ │ ├── web-lastpass.svg │ │ ├── web-onenote.svg │ │ ├── web-outlook.svg │ │ ├── web-spotify.svg │ │ ├── web-telegram.svg │ │ ├── web-twitter.svg │ │ ├── web-whatsapp.svg │ │ ├── web-yahoo.svg │ │ ├── webbrowser-app.svg │ │ ├── webide.svg │ │ ├── webstorm.svg │ │ ├── wechat.svg │ │ ├── wewechat.svg │ │ ├── whaawmp.svg │ │ ├── whatsapp-desktop.svg │ │ ├── whatsapp-for-linux.svg │ │ ├── whatsapp-nativefier.svg │ │ ├── whatsapp.svg │ │ ├── whatsappfordesktop.svg │ │ ├── whatsdesk.svg │ │ ├── wicd-gtk.svg │ │ ├── wicd.svg │ │ ├── wifi-radar.svg │ │ ├── window-duplicate.svg │ │ ├── window-manager.svg │ │ ├── window_list.svg │ │ ├── windows.svg │ │ ├── windowshuffler-symbolic.svg │ │ ├── wine-mlcad.svg │ │ ├── wine-notepad.svg │ │ ├── wine-uninstaller.svg │ │ ├── wine-winecfg.svg │ │ ├── wine-winefile.svg │ │ ├── wine-winetricks.svg │ │ ├── wine.svg │ │ ├── wine_notepad.svg │ │ ├── winecfg.svg │ │ ├── winefile.svg │ │ ├── winetricks.svg │ │ ├── wingpanel.svg │ │ ├── winusb.svg │ │ ├── winusbgui-icon.svg │ │ ├── winusbgui.svg │ │ ├── wireshark.svg │ │ ├── wiznote.svg │ │ ├── wmail.svg │ │ ├── wmtweaks.svg │ │ ├── woeusbgui-icon.svg │ │ ├── wokoscreen.svg │ │ ├── wordpad.svg │ │ ├── words.svg │ │ ├── workspace-overview.svg │ │ ├── workspace-switcher-left-bottom.svg │ │ ├── workspace-switcher-right-bottom.svg │ │ ├── workspace-switcher-right-top.svg │ │ ├── workspace-switcher-top-left.svg │ │ ├── workspace-switcher.svg │ │ ├── wp.svg │ │ ├── wpa_gui.svg │ │ ├── wps-calc.svg │ │ ├── wps-office-etmain.svg │ │ ├── wps-office-kingsoft.svg │ │ ├── wps-office-wppmain.svg │ │ ├── wps-office-wpsmain.svg │ │ ├── wps-office2019-etmain.svg │ │ ├── wps-office2019-kprometheus.svg │ │ ├── wps-office2019-pdfmain.svg │ │ ├── wps-office2019-wppmain.svg │ │ ├── wps-office2019-wpsmain.svg │ │ ├── wps-pres.svg │ │ ├── wps-word.svg │ │ ├── www-browser.svg │ │ ├── wxHexEditor.svg │ │ ├── wxcas.svg │ │ ├── wxmaxima.svg │ │ ├── x-office-address-book.svg │ │ ├── x-office-calendar.svg │ │ ├── x-office-mail.svg │ │ ├── x-office_mail.svg │ │ ├── x-pdf.svg │ │ ├── x-system-software-sources.svg │ │ ├── x-terminal-emulator.svg │ │ ├── x.svg │ │ ├── x11.svg │ │ ├── xame.svg │ │ ├── xapp.svg │ │ ├── xar.svg │ │ ├── xarchiver.svg │ │ ├── xboard.svg │ │ ├── xcalc.svg │ │ ├── xchat-gnome.svg │ │ ├── xchat-mini.svg │ │ ├── xchat.svg │ │ ├── xchess.svg │ │ ├── xchm-48.svg │ │ ├── xchm.svg │ │ ├── xclipboard.svg │ │ ├── xclock.svg │ │ ├── xconsole.svg │ │ ├── xdg-browser-launcher.svg │ │ ├── xdiagnose.svg │ │ ├── xdman.svg │ │ ├── xed.svg │ │ ├── xedit.svg │ │ ├── xemacs.svg │ │ ├── xfburn.svg │ │ ├── xfcalendar.svg │ │ ├── xfce-devel.svg │ │ ├── xfce-dict.svg │ │ ├── xfce-edit.svg │ │ ├── xfce-filemanager.svg │ │ ├── xfce-mail.svg │ │ ├── xfce-man.svg │ │ ├── xfce-mount.svg │ │ ├── xfce-mouse.svg │ │ ├── xfce-newmail.svg │ │ ├── xfce-printer.svg │ │ ├── xfce-schedule.svg │ │ ├── xfce-sensors.svg │ │ ├── xfce-sound.svg │ │ ├── xfce-system-info.svg │ │ ├── xfce-system-lock.svg │ │ ├── xfce-system-settings.svg │ │ ├── xfce-terminal.svg │ │ ├── xfce-theme-manager.svg │ │ ├── xfce-ui.svg │ │ ├── xfce-unknown.svg │ │ ├── xfce4-appfinder.svg │ │ ├── xfce4-backdrop.svg │ │ ├── xfce4-battery-plugin.svg │ │ ├── xfce4-clipman-plugin.svg │ │ ├── xfce4-clock.svg │ │ ├── xfce4-color-settings.svg │ │ ├── xfce4-cpugraph-plugin.svg │ │ ├── xfce4-dict.svg │ │ ├── xfce4-display.svg │ │ ├── xfce4-eyes.svg │ │ ├── xfce4-fsguard-plugin-warning.svg │ │ ├── xfce4-fsguard-plugin.svg │ │ ├── xfce4-indicator-plugin.svg │ │ ├── xfce4-logo.svg │ │ ├── xfce4-mcs-manager.svg │ │ ├── xfce4-menueditor.svg │ │ ├── xfce4-mixer.svg │ │ ├── xfce4-notes-plugin.svg │ │ ├── xfce4-notes.svg │ │ ├── xfce4-notifyd.svg │ │ ├── xfce4-panel-menu.svg │ │ ├── xfce4-panel.svg │ │ ├── xfce4-power-manager-settings.svg │ │ ├── xfce4-pulseaudio-plugin.svg │ │ ├── xfce4-session.svg │ │ ├── xfce4-settings.svg │ │ ├── xfce4-sound.svg │ │ ├── xfce4-splash.svg │ │ ├── xfce4-statusnotifier-plugin.svg │ │ ├── xfce4-system-lock.svg │ │ ├── xfce4-systray.svg │ │ ├── xfce4-taskbar.svg │ │ ├── xfce4-terminal.svg │ │ ├── xfce4-time-out-plugin.svg │ │ ├── xfce4-ui.svg │ │ ├── xfce4-weather.svg │ │ ├── xfce4-whiskermenu.svg │ │ ├── xfce4-workspaces.svg │ │ ├── xfce4_xicon.svg │ │ ├── xfce_unknown.svg │ │ ├── xfdashboard.svg │ │ ├── xfmail.svg │ │ ├── xfpm-ac-adapter.svg │ │ ├── xfpm-suspend.svg │ │ ├── xfsm-hibernate.svg │ │ ├── xfsm-logout.svg │ │ ├── xfsm-reboot.svg │ │ ├── xfsm-shutdown.svg │ │ ├── xfsm-suspend.svg │ │ ├── xfsm-switch-user.svg │ │ ├── xfsm-switch.svg │ │ ├── xfwm4.svg │ │ ├── ximian-evolution-calendar.svg │ │ ├── ximian-evolution-email.svg │ │ ├── xine.svg │ │ ├── xinput_calibrator.svg │ │ ├── xmag.svg │ │ ├── xmind.svg │ │ ├── xmms.svg │ │ ├── xorg.svg │ │ ├── xournal.svg │ │ ├── xournalpp.svg │ │ ├── xpad.svg │ │ ├── xpdf.svg │ │ ├── xpdf9.svg │ │ ├── xplayer.svg │ │ ├── xreader.svg │ │ ├── xsane.svg │ │ ├── xscreensaver.svg │ │ ├── xsensors.svg │ │ ├── xt7-player-mpv.svg │ │ ├── xterm-color.svg │ │ ├── xterm-color_32x32.svg │ │ ├── xterm-color_48x48.svg │ │ ├── xterm.svg │ │ ├── xterm_32x32.svg │ │ ├── xterm_48x48.svg │ │ ├── xterminator.svg │ │ ├── xvidcap.svg │ │ ├── xviewer.svg │ │ ├── yad.svg │ │ ├── yakuake.svg │ │ ├── yandex-browser.svg │ │ ├── yast-addon-extension.svg │ │ ├── yast-addon.svg │ │ ├── yast-alternatives.svg │ │ ├── yast-apparmor.svg │ │ ├── yast-auth-client.svg │ │ ├── yast-autoyast.svg │ │ ├── yast-bootloader.svg │ │ ├── yast-checkmedia.svg │ │ ├── yast-control-center.svg │ │ ├── yast-create-new-vm.svg │ │ ├── yast-device-tree.svg │ │ ├── yast-dhcp-server.svg │ │ ├── yast-disk.svg │ │ ├── yast-dns-server.svg │ │ ├── yast-docker.svg │ │ ├── yast-dsl.svg │ │ ├── yast-fcoe.svg │ │ ├── yast-firewall.svg │ │ ├── yast-fonts.svg │ │ ├── yast-ftp-server.svg │ │ ├── yast-hardware-group.svg │ │ ├── yast-hardware.svg │ │ ├── yast-high_availability.svg │ │ ├── yast-host.svg │ │ ├── yast-http-server.svg │ │ ├── yast-hwinfo.svg │ │ ├── yast-inetd.svg │ │ ├── yast-installation.svg │ │ ├── yast-instserver.svg │ │ ├── yast-iscsi-client.svg │ │ ├── yast-iscsi-server.svg │ │ ├── yast-journal.svg │ │ ├── yast-kerberos-server.svg │ │ ├── yast-kerberos.svg │ │ ├── yast-kernel.svg │ │ ├── yast-keyboard.svg │ │ ├── yast-lan.svg │ │ ├── yast-language.svg │ │ ├── yast-ldap-kerberos.svg │ │ ├── yast-ldap-server.svg │ │ ├── yast-live-install.svg │ │ ├── yast-mail.svg │ │ ├── yast-messages.svg │ │ ├── yast-misc-group.svg │ │ ├── yast-network-group.svg │ │ ├── yast-nfs-server.svg │ │ ├── yast-nfs.svg │ │ ├── yast-nis-server.svg │ │ ├── yast-nis.svg │ │ ├── yast-ntp-client.svg │ │ ├── yast-online_update.svg │ │ ├── yast-powertweak.svg │ │ ├── yast-printer.svg │ │ ├── yast-proxy.svg │ │ ├── yast-release-notes.svg │ │ ├── yast-remote.svg │ │ ├── yast-samba-client.svg │ │ ├── yast-samba-server.svg │ │ ├── yast-scanner.svg │ │ ├── yast-security-group.svg │ │ ├── yast-security.svg │ │ ├── yast-services-manager.svg │ │ ├── yast-slp-server.svg │ │ ├── yast-snapper.svg │ │ ├── yast-software-group.svg │ │ ├── yast-software.svg │ │ ├── yast-sound.svg │ │ ├── yast-sudo.svg │ │ ├── yast-support-group.svg │ │ ├── yast-support.svg │ │ ├── yast-sw_single.svg │ │ ├── yast-sw_source.svg │ │ ├── yast-sysconfig.svg │ │ ├── yast-system-group.svg │ │ ├── yast-system.svg │ │ ├── yast-tftp-server.svg │ │ ├── yast-timezone.svg │ │ ├── yast-update-online-configuration.svg │ │ ├── yast-update-online.svg │ │ ├── yast-update.svg │ │ ├── yast-upgrade.svg │ │ ├── yast-users.svg │ │ ├── yast-vendor.svg │ │ ├── yast-vm-group.svg │ │ ├── yast-vm-install.svg │ │ ├── yast-vm-migrate.svg │ │ ├── yast-vpn.svg │ │ ├── yast-wol.svg │ │ ├── yast-x11.svg │ │ ├── yast.svg │ │ ├── yast2.svg │ │ ├── youtube-dl-gui.svg │ │ ├── youtube-dl-gui_48x48.svg │ │ ├── youtube-dl-qt-icon.svg │ │ ├── youtube-dl.svg │ │ ├── youtube-dlg.svg │ │ ├── youtube-music-desktop-app.svg │ │ ├── youtube.svg │ │ ├── yumex-dnf.svg │ │ ├── yumex.svg │ │ ├── zathura.svg │ │ ├── zeal.svg │ │ ├── zeegaree-lite.svg │ │ ├── zeegaree.svg │ │ ├── zeitgeist.svg │ │ ├── zen-icon.svg │ │ ├── zenmap.svg │ │ ├── zeroinstall.svg │ │ ├── zim.svg │ │ ├── znotes.svg │ │ ├── zoom-best-fit.svg │ │ ├── zoom-desktop.svg │ │ ├── zoom-icon.svg │ │ └── zotero.svg │ ├── devices │ │ ├── audio-card.svg │ │ ├── audio-headphones.svg │ │ ├── audio-headset.svg │ │ ├── audio-headsets.svg │ │ ├── audio-input-microphone.svg │ │ ├── audio-speakers.svg │ │ ├── battery.svg │ │ ├── blueman-camera.svg │ │ ├── blueman-cellular.svg │ │ ├── blueman-desktop.svg │ │ ├── blueman-device.svg │ │ ├── blueman-handheld.svg │ │ ├── blueman-handsfree.svg │ │ ├── blueman-headset.svg │ │ ├── blueman-keyboard.svg │ │ ├── blueman-laptop.svg │ │ ├── blueman-loudspeaker.svg │ │ ├── blueman-mouse.svg │ │ ├── blueman-pointing.svg │ │ ├── blueman-scanner.svg │ │ ├── blueman-server.svg │ │ ├── blueman-smart-phone.svg │ │ ├── blueman.svg │ │ ├── bluetooth.svg │ │ ├── camera-photo.svg │ │ ├── camera-video.svg │ │ ├── camera-web.svg │ │ ├── camera.svg │ │ ├── computer-laptop.svg │ │ ├── computer.svg │ │ ├── cpu.svg │ │ ├── display.svg │ │ ├── drive-cdrom.svg │ │ ├── drive-harddisk-ieee1394.svg │ │ ├── drive-harddisk-solidstate.svg │ │ ├── drive-harddisk-system.svg │ │ ├── drive-harddisk-usb.svg │ │ ├── drive-harddisk.svg │ │ ├── drive-multidisk.svg │ │ ├── drive-optical.svg │ │ ├── drive-removable-media-usb-pendrive.svg │ │ ├── drive-removable-media-usb.svg │ │ ├── drive-removable-media.svg │ │ ├── drive-virtual.svg │ │ ├── gnome-dev-battery.svg │ │ ├── gnome-dev-cdrom-audio.svg │ │ ├── gnome-dev-cdrom.svg │ │ ├── gnome-dev-computer.svg │ │ ├── gnome-dev-disc-cdr.svg │ │ ├── gnome-dev-disc-cdrw.svg │ │ ├── gnome-dev-disc-dvdr-plus.svg │ │ ├── gnome-dev-disc-dvdr.svg │ │ ├── gnome-dev-disc-dvdram.svg │ │ ├── gnome-dev-disc-dvdrom.svg │ │ ├── gnome-dev-disc-dvdrw.svg │ │ ├── gnome-dev-dvd.svg │ │ ├── gnome-dev-ethernet.svg │ │ ├── gnome-dev-floppy.svg │ │ ├── gnome-dev-harddisk-1394.svg │ │ ├── gnome-dev-harddisk-usb.svg │ │ ├── gnome-dev-harddisk.svg │ │ ├── gnome-dev-ipod.svg │ │ ├── gnome-dev-keyboard.svg │ │ ├── gnome-dev-media-cf.svg │ │ ├── gnome-dev-media-ms.svg │ │ ├── gnome-dev-media-sdmmc.svg │ │ ├── gnome-dev-media-sm.svg │ │ ├── gnome-dev-mouse-ball.svg │ │ ├── gnome-dev-mouse-optical.svg │ │ ├── gnome-dev-printer-new.svg │ │ ├── gnome-dev-printer.svg │ │ ├── gnome-dev-removable-1394.svg │ │ ├── gnome-dev-removable-usb.svg │ │ ├── gnome-dev-removable.svg │ │ ├── gnome-dev-wavelan.svg │ │ ├── gnome-fs-blockdev.svg │ │ ├── gnome-phone-manager.svg │ │ ├── input-dialpad.svg │ │ ├── input-gaming.svg │ │ ├── input-keyboard.svg │ │ ├── input-mouse.svg │ │ ├── input-tablet.svg │ │ ├── input-touchpad.svg │ │ ├── joystick.svg │ │ ├── kdeconnect.svg │ │ ├── keyboard.svg │ │ ├── laptop.svg │ │ ├── media-cdr.svg │ │ ├── media-cdrom-audio.svg │ │ ├── media-cdrom.svg │ │ ├── media-cdrw.svg │ │ ├── media-dvd.svg │ │ ├── media-dvdrw.svg │ │ ├── media-flash-memory-stick.svg │ │ ├── media-flash-sd-mmc.svg │ │ ├── media-flash-smart-media.svg │ │ ├── media-flash.svg │ │ ├── media-floppy.svg │ │ ├── media-memory-sd.svg │ │ ├── media-memory.svg │ │ ├── media-optical-audio.svg │ │ ├── media-optical-blu-ray.svg │ │ ├── media-optical-cd-video.svg │ │ ├── media-optical-copy.svg │ │ ├── media-optical-data.svg │ │ ├── media-optical-dvd-video.svg │ │ ├── media-optical-dvd.svg │ │ ├── media-optical-mixed-cd.svg │ │ ├── media-optical-recordable.svg │ │ ├── media-optical-video.svg │ │ ├── media-optical.svg │ │ ├── media-removable.svg │ │ ├── media-tape.svg │ │ ├── modem.svg │ │ ├── multimedia-player.svg │ │ ├── network-bluetooth.svg │ │ ├── network-card.svg │ │ ├── network-firewall.svg │ │ ├── network-modem.svg │ │ ├── network-server-database.svg │ │ ├── network-server.svg │ │ ├── network-vpn.svg │ │ ├── network-wired.svg │ │ ├── network-wireless-hotspot.svg │ │ ├── network-wireless.svg │ │ ├── network-workgroup.svg │ │ ├── nm-device-wired.svg │ │ ├── nm-device-wireless.svg │ │ ├── pda.svg │ │ ├── phone.svg │ │ ├── printer-network.svg │ │ ├── printer-remote.svg │ │ ├── printer.svg │ │ ├── removable-media.svg │ │ ├── scanner.svg │ │ ├── server-database.svg │ │ ├── smartphone.svg │ │ ├── stock_cell-phone.svg │ │ ├── system.svg │ │ ├── tablet.svg │ │ ├── tool-pointer.svg │ │ ├── uninterruptible-power-supply.svg │ │ ├── unity-fallback-mount-helper.svg │ │ ├── video-display.svg │ │ ├── video-television.svg │ │ └── wiimotedev.svg │ ├── mimetypes │ │ ├── 7zip.svg │ │ ├── android-package-archive.svg │ │ ├── application-7zip.svg │ │ ├── application-acad.svg │ │ ├── application-apk.svg │ │ ├── application-archive-blank.svg │ │ ├── application-archive-zip.svg │ │ ├── application-archive.svg │ │ ├── application-atom+xml.svg │ │ ├── application-autocad_dwg.svg │ │ ├── application-certificate.svg │ │ ├── application-clariscad.svg │ │ ├── application-database.svg │ │ ├── application-dicom.svg │ │ ├── application-drawing.svg │ │ ├── application-dwg.svg │ │ ├── application-dxf.svg │ │ ├── application-epub+zip.svg │ │ ├── application-excel.svg │ │ ├── application-font-woff.svg │ │ ├── application-geo+json.svg │ │ ├── application-gml+xml.svg │ │ ├── application-gnunet-directory.svg │ │ ├── application-gpx+xml.svg │ │ ├── application-gpx.svg │ │ ├── application-gzip.svg │ │ ├── application-illustrator.svg │ │ ├── application-images.svg │ │ ├── application-install.svg │ │ ├── application-java.svg │ │ ├── application-javascript.svg │ │ ├── application-json.svg │ │ ├── application-loc+xml.svg │ │ ├── application-mac-binhex40.svg │ │ ├── application-mathml+xml.svg │ │ ├── application-metalink+xml.svg │ │ ├── application-metalink4+xml.svg │ │ ├── application-msexcel.svg │ │ ├── application-msonenote.svg │ │ ├── application-msoutlook.svg │ │ ├── application-mspowerpoint.svg │ │ ├── application-msword-template.svg │ │ ├── application-msword.svg │ │ ├── application-octet-stream.svg │ │ ├── application-ogg.svg │ │ ├── application-owl+xml.svg │ │ ├── application-pdf.svg │ │ ├── application-pgp-encrypted.svg │ │ ├── application-pgp-keys.svg │ │ ├── application-pgp-signature.svg │ │ ├── application-pgp.svg │ │ ├── application-photoshop.svg │ │ ├── application-pkcs10.svg │ │ ├── application-pkcs12.svg │ │ ├── application-pkcs7-mime.svg │ │ ├── application-pkcs7-signature.svg │ │ ├── application-pkcs8.svg │ │ ├── application-pkix-cerl.svg │ │ ├── application-pkix-cert.svg │ │ ├── application-pkix-crl.svg │ │ ├── application-pkix-pkipath.svg │ │ ├── application-postscript.svg │ │ ├── application-ram.svg │ │ ├── application-rdata.svg │ │ ├── application-rdf+xml.svg │ │ ├── application-relaxng.svg │ │ ├── application-rss+xml.svg │ │ ├── application-rss_xml.svg │ │ ├── application-rtf-rtl.svg │ │ ├── application-rtf.svg │ │ ├── application-shorten.svg │ │ ├── application-slf+xml.svg │ │ ├── application-sql.svg │ │ ├── application-sxw.svg │ │ ├── application-tcx+xml.svg │ │ ├── application-text.svg │ │ ├── application-vnd-google-earth-kml.svg │ │ ├── application-vnd.android.package-archive.svg │ │ ├── application-vnd.ant.fit.svg │ │ ├── application-vnd.appimage.svg │ │ ├── application-vnd.apple.mpegurl.svg │ │ ├── application-vnd.cups-pdf-banner.svg │ │ ├── application-vnd.debian.binary-package.svg │ │ ├── application-vnd.fai.igc.svg │ │ ├── application-vnd.flatpak.ref.svg │ │ ├── application-vnd.flatpak.repo.svg │ │ ├── application-vnd.flatpak.svg │ │ ├── application-vnd.geo+json.svg │ │ ├── application-vnd.google-apps.document.svg │ │ ├── application-vnd.google-apps.map.svg │ │ ├── application-vnd.google-apps.spreadsheet.svg │ │ ├── application-vnd.google-earth.kml+xml.svg │ │ ├── application-vnd.google-earth.kml.svg │ │ ├── application-vnd.google-earth.kmz.svg │ │ ├── application-vnd.iccprofile.svg │ │ ├── application-vnd.insync.link.drive.doc.svg │ │ ├── application-vnd.insync.link.drive.sheet.svg │ │ ├── application-vnd.insync.link.drive.slides.svg │ │ ├── application-vnd.kde.bluedevil-sendfile.svg │ │ ├── application-vnd.kde.fontspackage.svg │ │ ├── application-vnd.kde.kphotoalbum-import.svg │ │ ├── application-vnd.kde.kxmlguirc.svg │ │ ├── application-vnd.kde.okular-archive.svg │ │ ├── application-vnd.ms-access.svg │ │ ├── application-vnd.ms-asf.svg │ │ ├── application-vnd.ms-cab-compressed.svg │ │ ├── application-vnd.ms-database.svg │ │ ├── application-vnd.ms-excel.addin.macroenabled.12.svg │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12.svg │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12.svg │ │ ├── application-vnd.ms-excel.svg │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ ├── application-vnd.ms-htmlhelp.svg │ │ ├── application-vnd.ms-infopath.svg │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12.svg │ │ ├── application-vnd.ms-powerpoint.presentation.macroEnabled.12.svg │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12.svg │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12.svg │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg │ │ ├── application-vnd.ms-powerpoint.svg │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ ├── application-vnd.ms-project.svg │ │ ├── application-vnd.ms-publisher.svg │ │ ├── application-vnd.ms-tnef.svg │ │ ├── application-vnd.ms-word.document.macroenabled.12.svg │ │ ├── application-vnd.ms-word.svg │ │ ├── application-vnd.ms-word.template.macroenabled.12.svg │ │ ├── application-vnd.ms-wpl.svg │ │ ├── application-vnd.nintendo.snes.rom.svg │ │ ├── application-vnd.nmea.nmea.svg │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ ├── application-vnd.oasis.opendocument.database.svg │ │ ├── application-vnd.oasis.opendocument.draw.template.svg │ │ ├── application-vnd.oasis.opendocument.drawing-template.svg │ │ ├── application-vnd.oasis.opendocument.drawing.svg │ │ ├── application-vnd.oasis.opendocument.drawing.template.svg │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ ├── application-vnd.oasis.opendocument.graphics-template.svg │ │ ├── application-vnd.oasis.opendocument.graphics.svg │ │ ├── application-vnd.oasis.opendocument.image.svg │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ ├── application-vnd.oasis.opendocument.presentation.svg │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ ├── application-vnd.oasis.opendocument.spreadsheet.svg │ │ ├── application-vnd.oasis.opendocument.text-master.svg │ │ ├── application-vnd.oasis.opendocument.text-rtl.svg │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ ├── application-vnd.oasis.opendocument.text-web.svg │ │ ├── application-vnd.oasis.opendocument.text.svg │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ ├── application-vnd.openofficeorg.extension.svg │ │ ├── application-vnd.openxmlformats-officedocument.presentationml.presentation.svg │ │ ├── application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg │ │ ├── application-vnd.openxmlformats-officedocument.presentationml.template.svg │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ ├── application-vnd.oziexplorer.plt.svg │ │ ├── application-vnd.oziexplorer.rte.svg │ │ ├── application-vnd.oziexplorer.wpt.svg │ │ ├── application-vnd.palm.svg │ │ ├── application-vnd.rar.svg │ │ ├── application-vnd.recordare.musicxml+xml.svg │ │ ├── application-vnd.recordare.musicxml.svg │ │ ├── application-vnd.rn-realmedia.svg │ │ ├── application-vnd.scribus.svg │ │ ├── application-vnd.snap.svg │ │ ├── application-vnd.sqlite3.svg │ │ ├── application-vnd.squashfs.svg │ │ ├── application-vnd.stardivision.cal.svg │ │ ├── application-vnd.stardivision.calc.svg │ │ ├── application-vnd.stardivision.draw.svg │ │ ├── application-vnd.stardivision.mail.svg │ │ ├── application-vnd.stardivision.math.svg │ │ ├── application-vnd.sun.xml.base.svg │ │ ├── application-vnd.sun.xml.calc.svg │ │ ├── application-vnd.sun.xml.calc.template.svg │ │ ├── application-vnd.sun.xml.draw.svg │ │ ├── application-vnd.sun.xml.draw.template.svg │ │ ├── application-vnd.sun.xml.impress.png.svg │ │ ├── application-vnd.sun.xml.impress.svg │ │ ├── application-vnd.sun.xml.impress.template.svg │ │ ├── application-vnd.sun.xml.math.svg │ │ ├── application-vnd.sun.xml.wordperfect.svg │ │ ├── application-vnd.sun.xml.writer-global.svg │ │ ├── application-vnd.sun.xml.writer-rtl.svg │ │ ├── application-vnd.sun.xml.writer-template.svg │ │ ├── application-vnd.sun.xml.writer.global.svg │ │ ├── application-vnd.sun.xml.writer.png.svg │ │ ├── application-vnd.sun.xml.writer.svg │ │ ├── application-vnd.sun.xml.writer.template.svg │ │ ├── application-vnd.tcpdump.pcap.svg │ │ ├── application-vnd.visio.svg │ │ ├── application-vnd.wordperfect-rtl.svg │ │ ├── application-vnd.wordperfect.svg │ │ ├── application-vnd.xdgapp.svg │ │ ├── application-winhlp.svg │ │ ├── application-wps-office.doc.svg │ │ ├── application-wps-office.docx.svg │ │ ├── application-wps-office.dot.svg │ │ ├── application-wps-office.dotx.svg │ │ ├── application-wps-office.pot.svg │ │ ├── application-wps-office.potx.svg │ │ ├── application-wps-office.ppt.svg │ │ ├── application-wps-office.pptx.svg │ │ ├── application-wps-office.wps.svg │ │ ├── application-wps-office.wpt.svg │ │ ├── application-wps-office.xls.svg │ │ ├── application-wps-office.xlsx.svg │ │ ├── application-wps-office.xlt.svg │ │ ├── application-wps-office.xltx.svg │ │ ├── application-x-5view.svg │ │ ├── application-x-7z-ace.svg │ │ ├── application-x-7z-arj.svg │ │ ├── application-x-7z-compressed-tar.svg │ │ ├── application-x-7z-compressed.svg │ │ ├── application-x-7zip.svg │ │ ├── application-x-abiword.svg │ │ ├── application-x-acad.svg │ │ ├── application-x-accountwizard-package.svg │ │ ├── application-x-ace.svg │ │ ├── application-x-addon.svg │ │ ├── application-x-amiga-disk-format.svg │ │ ├── application-x-appimage.svg │ │ ├── application-x-apple-diskimage.svg │ │ ├── application-x-applix-spreadsheet.svg │ │ ├── application-x-applix-word.svg │ │ ├── application-x-ar.svg │ │ ├── application-x-arc.svg │ │ ├── application-x-archive.svg │ │ ├── application-x-ardour.svg │ │ ├── application-x-arj.svg │ │ ├── application-x-audacity-project.svg │ │ ├── application-x-autocad.svg │ │ ├── application-x-awk.svg │ │ ├── application-x-bin.svg │ │ ├── application-x-bittorrent.svg │ │ ├── application-x-blender.svg │ │ ├── application-x-brasero.svg │ │ ├── application-x-bzdvi.svg │ │ ├── application-x-bzip-compressed-tar.svg │ │ ├── application-x-bzip-compressed.svg │ │ ├── application-x-bzip.svg │ │ ├── application-x-bzpdf.svg │ │ ├── application-x-bzpostscript.svg │ │ ├── application-x-cabri.svg │ │ ├── application-x-ccf-container.svg │ │ ├── application-x-cd-image.svg │ │ ├── application-x-cda.svg │ │ ├── application-x-chm.svg │ │ ├── application-x-class-file.svg │ │ ├── application-x-clementine.svg │ │ ├── application-x-cmakecache.svg │ │ ├── application-x-compress-tar.svg │ │ ├── application-x-compress.svg │ │ ├── application-x-compressed-tar.svg │ │ ├── application-x-compressed.svg │ │ ├── application-x-core.svg │ │ ├── application-x-cpio.svg │ │ ├── application-x-cue.svg │ │ ├── application-x-deb.svg │ │ ├── application-x-designer.svg │ │ ├── application-x-desktop.svg │ │ ├── application-x-dgn.svg │ │ ├── application-x-dia-diagram.svg │ │ ├── application-x-dlc-container.svg │ │ ├── application-x-drgeo.svg │ │ ├── application-x-dwg.svg │ │ ├── application-x-e-theme.svg │ │ ├── application-x-egon.svg │ │ ├── application-x-etherpeek.svg │ │ ├── application-x-excel.svg │ │ ├── application-x-executable-script.svg │ │ ├── application-x-executable.svg │ │ ├── application-x-extension-eml.svg │ │ ├── application-x-extension-fcstd.svg │ │ ├── application-x-extension-html.svg │ │ ├── application-x-extension-rss.svg │ │ ├── application-x-fictionbook+xml.svg │ │ ├── application-x-firmware.svg │ │ ├── application-x-flash-video.svg │ │ ├── application-x-font-afm.svg │ │ ├── application-x-font-bdf.svg │ │ ├── application-x-font-dos.svg │ │ ├── application-x-font-framemaker.svg │ │ ├── application-x-font-libgrx.svg │ │ ├── application-x-font-linux-psf.svg │ │ ├── application-x-font-otf.svg │ │ ├── application-x-font-pcf.svg │ │ ├── application-x-font-snf.svg │ │ ├── application-x-font-speedo.svg │ │ ├── application-x-font-sunos-news.svg │ │ ├── application-x-font-tex-tfm.svg │ │ ├── application-x-font-tex.svg │ │ ├── application-x-font-ttf.svg │ │ ├── application-x-font-ttx.svg │ │ ├── application-x-font-type1.svg │ │ ├── application-x-font-vfont.svg │ │ ├── application-x-gambas3.svg │ │ ├── application-x-gambasscript.svg │ │ ├── application-x-gambasserverpage.svg │ │ ├── application-x-gameboy-rom.svg │ │ ├── application-x-gamecube-rom.svg │ │ ├── application-x-gba-rom.svg │ │ ├── application-x-gdbm.svg │ │ ├── application-x-generic.svg │ │ ├── application-x-genesis-rom.svg │ │ ├── application-x-gettext-translation.svg │ │ ├── application-x-glabels.svg │ │ ├── application-x-glade.svg │ │ ├── application-x-gnome-theme-package-rtl.svg │ │ ├── application-x-gnome-theme-package.svg │ │ ├── application-x-gnumeric.svg │ │ ├── application-x-gpx+xml.svg │ │ ├── application-x-gpx.svg │ │ ├── application-x-grsync-session.svg │ │ ├── application-x-gtk-builder.svg │ │ ├── application-x-gunmeric.svg │ │ ├── application-x-gz-font-linux-psf.svg │ │ ├── application-x-gzdvi.svg │ │ ├── application-x-gzip.svg │ │ ├── application-x-gzpdf.svg │ │ ├── application-x-gzpostscript.svg │ │ ├── application-x-icq.svg │ │ ├── application-x-iff.svg │ │ ├── application-x-img.svg │ │ ├── application-x-ipod-firmware.svg │ │ ├── application-x-iptrace.svg │ │ ├── application-x-iso.svg │ │ ├── application-x-iso9660-appimage.svg │ │ ├── application-x-it87.svg │ │ ├── application-x-jar.svg │ │ ├── application-x-java-applet.svg │ │ ├── application-x-java-archive.svg │ │ ├── application-x-java.svg │ │ ├── application-x-javascript.svg │ │ ├── application-x-jokosher.svg │ │ ├── application-x-k3b.svg │ │ ├── application-x-kcachegrind.svg │ │ ├── application-x-kcsrc.svg │ │ ├── application-x-kdenlive.svg │ │ ├── application-x-kdenlivetitle.svg │ │ ├── application-x-keepass.svg │ │ ├── application-x-keepass2.svg │ │ ├── application-x-keepassx.svg │ │ ├── application-x-keepassxc.svg │ │ ├── application-x-kexi-connectiondata.svg │ │ ├── application-x-kexiproject-shortcut.svg │ │ ├── application-x-kexiproject-sqlite.svg │ │ ├── application-x-kexiproject-sqlite2.svg │ │ ├── application-x-kexiproject-sqlite3.svg │ │ ├── application-x-kformula.svg │ │ ├── application-x-kgeo.svg │ │ ├── application-x-kgetlist.svg │ │ ├── application-x-khtml-adaptor.svg │ │ ├── application-x-kig.svg │ │ ├── application-x-kmplot.svg │ │ ├── application-x-kns.svg │ │ ├── application-x-kolf.svg │ │ ├── application-x-kommander.svg │ │ ├── application-x-kontour.svg │ │ ├── application-x-kontur.svg │ │ ├── application-x-kopete-emoticons.svg │ │ ├── application-x-kourse.svg │ │ ├── application-x-kover.svg │ │ ├── application-x-kplato.svg │ │ ├── application-x-kpresenter.svg │ │ ├── application-x-krita-assistant.svg │ │ ├── application-x-krita-paintoppresent.svg │ │ ├── application-x-krita.svg │ │ ├── application-x-kseg.svg │ │ ├── application-x-ksysguard.svg │ │ ├── application-x-ktheme.svg │ │ ├── application-x-kudesigner.svg │ │ ├── application-x-kva.svg │ │ ├── application-x-kvs.svg │ │ ├── application-x-kvtml.svg │ │ ├── application-x-kwallet.svg │ │ ├── application-x-kword.svg │ │ ├── application-x-kwordquiz.svg │ │ ├── application-x-labplot2.svg │ │ ├── application-x-lanalyzer.svg │ │ ├── application-x-lha.svg │ │ ├── application-x-lhz.svg │ │ ├── application-x-lmms-project.svg │ │ ├── application-x-lyx.svg │ │ ├── application-x-lz4-compressed-tar.svg │ │ ├── application-x-lzip-compressed-tar.svg │ │ ├── application-x-lzma-compressed-tar.svg │ │ ├── application-x-lzma.svg │ │ ├── application-x-lzop.svg │ │ ├── application-x-lzpdf.svg │ │ ├── application-x-m4.svg │ │ ├── application-x-macbinary.svg │ │ ├── application-x-maff.svg │ │ ├── application-x-marble.svg │ │ ├── application-x-matroska.svg │ │ ├── application-x-mif.svg │ │ ├── application-x-mimearchive.svg │ │ ├── application-x-mobipocket-ebook.svg │ │ ├── application-x-model.svg │ │ ├── application-x-mplayer2.svg │ │ ├── application-x-ms-dos-executable.svg │ │ ├── application-x-ms-shortcut.svg │ │ ├── application-x-ms-wim.svg │ │ ├── application-x-msdownload.svg │ │ ├── application-x-msexcel.svg │ │ ├── application-x-msi.svg │ │ ├── application-x-mswinurl.svg │ │ ├── application-x-mswrite.svg │ │ ├── application-x-musescore+xml.svg │ │ ├── application-x-musescore.svg │ │ ├── application-x-n64-rom.svg │ │ ├── application-x-navi-animation.svg │ │ ├── application-x-nes-rom.svg │ │ ├── application-x-netinstobserver.svg │ │ ├── application-x-nettl.svg │ │ ├── application-x-nintendo-ds-rom.svg │ │ ├── application-x-nzb.svg │ │ ├── application-x-object.svg │ │ ├── application-x-ole-storage.svg │ │ ├── application-x-osm+xml.svg │ │ ├── application-x-pak.svg │ │ ├── application-x-partial-download.svg │ │ ├── application-x-patch.svg │ │ ├── application-x-pcapng.svg │ │ ├── application-x-pem-file.svg │ │ ├── application-x-pem-key.svg │ │ ├── application-x-perl.svg │ │ ├── application-x-php.svg │ │ ├── application-x-pkcs12.svg │ │ ├── application-x-pkcs7-certificates.svg │ │ ├── application-x-planner.svg │ │ ├── application-x-plasma.svg │ │ ├── application-x-project.svg │ │ ├── application-x-ptoptimizer-script.svg │ │ ├── application-x-python-bytecode.svg │ │ ├── application-x-qet-element.svg │ │ ├── application-x-qet-project.svg │ │ ├── application-x-qtiplot.svg │ │ ├── application-x-quanta.svg │ │ ├── application-x-quattropro.svg │ │ ├── application-x-r-project.svg │ │ ├── application-x-radcom.svg │ │ ├── application-x-rar.svg │ │ ├── application-x-raw-disk-image-xz-compressed.svg │ │ ├── application-x-raw-disk-image.svg │ │ ├── application-x-rdata.svg │ │ ├── application-x-remote-connection.svg │ │ ├── application-x-riff.svg │ │ ├── application-x-root.svg │ │ ├── application-x-rosegarden-composition.svg │ │ ├── application-x-rpm.svg │ │ ├── application-x-rsdf-container.svg │ │ ├── application-x-ruby.svg │ │ ├── application-x-sami.svg │ │ ├── application-x-scel.svg │ │ ├── application-x-scribus.svg │ │ ├── application-x-shar.svg │ │ ├── application-x-shared-library-la.svg │ │ ├── application-x-sharedlib.svg │ │ ├── application-x-shellscript.svg │ │ ├── application-x-shockwave-flash.svg │ │ ├── application-x-siag.svg │ │ ├── application-x-sif.svg │ │ ├── application-x-skg.svg │ │ ├── application-x-skgc.svg │ │ ├── application-x-smb-server.svg │ │ ├── application-x-smb-workgroup.svg │ │ ├── application-x-snoop.svg │ │ ├── application-x-sogouskin.svg │ │ ├── application-x-source-rpm.svg │ │ ├── application-x-spkac+base64.svg │ │ ├── application-x-spkac.svg │ │ ├── application-x-spss-por.svg │ │ ├── application-x-spss-sav.svg │ │ ├── application-x-sqlite2.svg │ │ ├── application-x-sqlite3.svg │ │ ├── application-x-srt.svg │ │ ├── application-x-srtrip.svg │ │ ├── application-x-stuffit.svg │ │ ├── application-x-subrip.svg │ │ ├── application-x-superkaramba.svg │ │ ├── application-x-tar.svg │ │ ├── application-x-tarz.svg │ │ ├── application-x-tektronix-rf5.svg │ │ ├── application-x-tex-gf.svg │ │ ├── application-x-tex-pk.svg │ │ ├── application-x-texgzdvi.svg │ │ ├── application-x-tgif.svg │ │ ├── application-x-theme-rtl.svg │ │ ├── application-x-theme.svg │ │ ├── application-x-trash.svg │ │ ├── application-x-trig.svg │ │ ├── application-x-troff-man.svg │ │ ├── application-x-tuberling.svg │ │ ├── application-x-turtle.svg │ │ ├── application-x-tzo.svg │ │ ├── application-x-uml.svg │ │ ├── application-x-visualnetworks.svg │ │ ├── application-x-vnc.svg │ │ ├── application-x-vnd.akonadi.calendar.event.svg │ │ ├── application-x-vnd.akonadi.calendar.freebusy.svg │ │ ├── application-x-vnd.akonadi.calendar.journal.svg │ │ ├── application-x-vnd.akonadi.calendar.todo.svg │ │ ├── application-x-vnd.akonadi.collection.virtual.svg │ │ ├── application-x-vnd.akonadi.note.svg │ │ ├── application-x-vnd.kde.alarm.active.svg │ │ ├── application-x-vnd.kde.alarm.archived.svg │ │ ├── application-x-vnd.kde.alarm.svg │ │ ├── application-x-vnd.kde.alarm.template.svg │ │ ├── application-x-vnd.kde.contactgroup.svg │ │ ├── application-x-vnd.kde.kplato.svg │ │ ├── application-x-vnd.kde.kplato.work.svg │ │ ├── application-x-vnd.kde.kugar.mixed.svg │ │ ├── application-x-vnd.kde.notes.svg │ │ ├── application-x-vnd.kde.plan.svg │ │ ├── application-x-vnd.kde.plan.work.svg │ │ ├── application-x-webarchive.svg │ │ ├── application-x-wine-extension-cpl.svg │ │ ├── application-x-wine-extension-inf.svg │ │ ├── application-x-wine-extension-ini.svg │ │ ├── application-x-wine-extension-its.svg │ │ ├── application-x-wine-extension-skb.svg │ │ ├── application-x-wine-extension-skp.svg │ │ ├── application-x-wine-extension-vbs.svg │ │ ├── application-x-wmf.svg │ │ ├── application-x-x509-ca-cert.svg │ │ ├── application-x-x509-user-cert.svg │ │ ├── application-x-xbel.svg │ │ ├── application-x-xliff.svg │ │ ├── application-x-xpinstall.svg │ │ ├── application-x-xz-compressed-tar.svg │ │ ├── application-x-xz-pkg.svg │ │ ├── application-x-xz.svg │ │ ├── application-x-xzpdf.svg │ │ ├── application-x-yaml.svg │ │ ├── application-x-zerosize.svg │ │ ├── application-x-zip-compressed-fb2.svg │ │ ├── application-x-zip.svg │ │ ├── application-x-zoo.svg │ │ ├── application-x.object.svg │ │ ├── application-xhtml+xml.svg │ │ ├── application-xmind.svg │ │ ├── application-xml-dtd.svg │ │ ├── application-xml.svg │ │ ├── application-xsd.svg │ │ ├── application-xslt+xml.svg │ │ ├── application-xspf+xml.svg │ │ ├── application-zip.svg │ │ ├── archive.svg │ │ ├── ascii.svg │ │ ├── audio-aac.svg │ │ ├── audio-ac3.svg │ │ ├── audio-flac.svg │ │ ├── audio-m4a.svg │ │ ├── audio-midi.svg │ │ ├── audio-mp2.svg │ │ ├── audio-mp3.svg │ │ ├── audio-mp4.svg │ │ ├── audio-mpeg.svg │ │ ├── audio-prs.sid.svg │ │ ├── audio-shn.svg │ │ ├── audio-vn.rn-realmedia.svg │ │ ├── audio-vnd.rn-realvideo.svg │ │ ├── audio-vnd.wave.svg │ │ ├── audio-x-adpcm.svg │ │ ├── audio-x-aiff.svg │ │ ├── audio-x-caf.svg │ │ ├── audio-x-flac+ogg.svg │ │ ├── audio-x-flac.svg │ │ ├── audio-x-generic.svg │ │ ├── audio-x-it.svg │ │ ├── audio-x-m4a.svg │ │ ├── audio-x-midi.svg │ │ ├── audio-x-monkey.svg │ │ ├── audio-x-monkeys-audio.svg │ │ ├── audio-x-mp2.svg │ │ ├── audio-x-mp3-playlist.svg │ │ ├── audio-x-mpeg.svg │ │ ├── audio-x-mpegurl.svg │ │ ├── audio-x-ms-wax.svg │ │ ├── audio-x-ms-wma.svg │ │ ├── audio-x-ofr.svg │ │ ├── audio-x-playlist.svg │ │ ├── audio-x-pn-realaudio.svg │ │ ├── audio-x-scpls.svg │ │ ├── audio-x-speex+ogg.svg │ │ ├── audio-x-tta.svg │ │ ├── audio-x-vorbis+ogg.svg │ │ ├── audio-x-wav.svg │ │ ├── audio-x-xi.svg │ │ ├── audio-x-xm.svg │ │ ├── audiobook.svg │ │ ├── binary.svg │ │ ├── blank-cd.svg │ │ ├── contents2.svg │ │ ├── deb.svg │ │ ├── divx.svg │ │ ├── document-excel.svg │ │ ├── document-illustrator.svg │ │ ├── document-photoshop.svg │ │ ├── document-powerpoint.svg │ │ ├── document-rtl.svg │ │ ├── document-word.svg │ │ ├── document.svg │ │ ├── drawing-dwg.svg │ │ ├── emblem-package.svg │ │ ├── empty.svg │ │ ├── encrypted.svg │ │ ├── exec.svg │ │ ├── extension.svg │ │ ├── folder_tar.svg │ │ ├── font-collection.svg │ │ ├── font-otf.svg │ │ ├── font-ttf.svg │ │ ├── font-woff.svg │ │ ├── font-x-generic.svg │ │ ├── font.svg │ │ ├── font_bitmap.svg │ │ ├── font_truetype.svg │ │ ├── font_type1.svg │ │ ├── fonts-package.svg │ │ ├── gedit-plugin.svg │ │ ├── gif.svg │ │ ├── gnome-exe-thumbnailer-generic-x.svg │ │ ├── gnome-exe-thumbnailer-generic.svg │ │ ├── gnome-exe-thumbnailer-template.svg │ │ ├── gnome-fs-executable.svg │ │ ├── gnome-fs-regular.svg │ │ ├── gnome-mime-application-atom+xml.svg │ │ ├── gnome-mime-application-javascript.svg │ │ ├── gnome-mime-application-magicpoint.svg │ │ ├── gnome-mime-application-msword.svg │ │ ├── gnome-mime-application-pdf.svg │ │ ├── gnome-mime-application-postscript.svg │ │ ├── gnome-mime-application-rss+xml.svg │ │ ├── gnome-mime-application-rtf.svg │ │ ├── gnome-mime-application-vnd.lotus-1-2-3.svg │ │ ├── gnome-mime-application-vnd.ms-cab-compressed.svg │ │ ├── gnome-mime-application-vnd.ms-excel.svg │ │ ├── gnome-mime-application-vnd.ms-powerpoint.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.graphics.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.image.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.presentation-template.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.presentation.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.spreadsheet.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.text-template.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.text-web.svg │ │ ├── gnome-mime-application-vnd.oasis.opendocument.text.svg │ │ ├── gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.presentation.svg │ │ ├── gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg │ │ ├── gnome-mime-application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ ├── gnome-mime-application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ ├── gnome-mime-application-vnd.rn-realmedia-secure.svg │ │ ├── gnome-mime-application-vnd.rn-realmedia-vbr.svg │ │ ├── gnome-mime-application-vnd.rn-realmedia.svg │ │ ├── gnome-mime-application-vnd.scribus.svg │ │ ├── gnome-mime-application-vnd.stardivision.calc.svg │ │ ├── gnome-mime-application-vnd.stardivision.impress.svg │ │ ├── gnome-mime-application-vnd.stardivision.writer.svg │ │ ├── gnome-mime-application-vnd.sun.xml.calc.svg │ │ ├── gnome-mime-application-vnd.sun.xml.calc.template.svg │ │ ├── gnome-mime-application-vnd.sun.xml.draw.svg │ │ ├── gnome-mime-application-vnd.sun.xml.draw.template.svg │ │ ├── gnome-mime-application-vnd.sun.xml.impress.svg │ │ ├── gnome-mime-application-vnd.sun.xml.impress.template.svg │ │ ├── gnome-mime-application-vnd.sun.xml.writer.svg │ │ ├── gnome-mime-application-vnd.sun.xml.writer.template.svg │ │ ├── gnome-mime-application-wordperfect.svg │ │ ├── gnome-mime-application-x-7z-compressed.svg │ │ ├── gnome-mime-application-x-7zip.svg │ │ ├── gnome-mime-application-x-abiword.svg │ │ ├── gnome-mime-application-x-ace.svg │ │ ├── gnome-mime-application-x-applix-spreadsheet.svg │ │ ├── gnome-mime-application-x-applix-word.svg │ │ ├── gnome-mime-application-x-archive.svg │ │ ├── gnome-mime-application-x-arj.svg │ │ ├── gnome-mime-application-x-bittorrent.svg │ │ ├── gnome-mime-application-x-bzip-compressed-tar.svg │ │ ├── gnome-mime-application-x-bzip-compressed.svg │ │ ├── gnome-mime-application-x-bzip.svg │ │ ├── gnome-mime-application-x-class-file.svg │ │ ├── gnome-mime-application-x-compress.svg │ │ ├── gnome-mime-application-x-compressed-tar.svg │ │ ├── gnome-mime-application-x-cpio-compress.svg │ │ ├── gnome-mime-application-x-cpio-compressed.svg │ │ ├── gnome-mime-application-x-cpio.svg │ │ ├── gnome-mime-application-x-deb.svg │ │ ├── gnome-mime-application-x-designer.svg │ │ ├── gnome-mime-application-x-desktop.svg │ │ ├── gnome-mime-application-x-dvi.svg │ │ ├── gnome-mime-application-x-executable.svg │ │ ├── gnome-mime-application-x-font-afm.svg │ │ ├── gnome-mime-application-x-font-bdf.svg │ │ ├── gnome-mime-application-x-font-linux-psf.svg │ │ ├── gnome-mime-application-x-font-pcf.svg │ │ ├── gnome-mime-application-x-font-sunos-news.svg │ │ ├── gnome-mime-application-x-font-ttf.svg │ │ ├── gnome-mime-application-x-glade.svg │ │ ├── gnome-mime-application-x-gnome-app-info.svg │ │ ├── gnome-mime-application-x-gnome-theme-package.svg │ │ ├── gnome-mime-application-x-gnumeric.svg │ │ ├── gnome-mime-application-x-gzip.svg │ │ ├── gnome-mime-application-x-gzpostscript.svg │ │ ├── gnome-mime-application-x-jar.svg │ │ ├── gnome-mime-application-x-java-archive.svg │ │ ├── gnome-mime-application-x-java.svg │ │ ├── gnome-mime-application-x-javascript.svg │ │ ├── gnome-mime-application-x-killustrator.svg │ │ ├── gnome-mime-application-x-kpresenter.svg │ │ ├── gnome-mime-application-x-kspread.svg │ │ ├── gnome-mime-application-x-kword.svg │ │ ├── gnome-mime-application-x-lha.svg │ │ ├── gnome-mime-application-x-lhz.svg │ │ ├── gnome-mime-application-x-lzma-compressed-tar.svg │ │ ├── gnome-mime-application-x-lzop.svg │ │ ├── gnome-mime-application-x-ms-dos-executable.svg │ │ ├── gnome-mime-application-x-nero-disc-image.svg │ │ ├── gnome-mime-application-x-nero-linux-compilation.svg │ │ ├── gnome-mime-application-x-perl.svg │ │ ├── gnome-mime-application-x-php.svg │ │ ├── gnome-mime-application-x-python-bytecode.svg │ │ ├── gnome-mime-application-x-rar.svg │ │ ├── gnome-mime-application-x-remote-connection.svg │ │ ├── gnome-mime-application-x-rpm.svg │ │ ├── gnome-mime-application-x-ruby.svg │ │ ├── gnome-mime-application-x-scribus.svg │ │ ├── gnome-mime-application-x-shellscript.svg │ │ ├── gnome-mime-application-x-shockwave-flash.svg │ │ ├── gnome-mime-application-x-stuffit.svg │ │ ├── gnome-mime-application-x-tar.svg │ │ ├── gnome-mime-application-x-tarz.svg │ │ ├── gnome-mime-application-x-tex.svg │ │ ├── gnome-mime-application-x-theme.svg │ │ ├── gnome-mime-application-x-vnc.svg │ │ ├── gnome-mime-application-x-zip.svg │ │ ├── gnome-mime-application-x-zoo.svg │ │ ├── gnome-mime-application-xhtml+xml.svg │ │ ├── gnome-mime-application-xml.svg │ │ ├── gnome-mime-application-zip.svg │ │ ├── gnome-mime-audio.svg │ │ ├── gnome-mime-image-jpeg.svg │ │ ├── gnome-mime-image-x-cmu-raster.svg │ │ ├── gnome-mime-image-x-killustrator.svg │ │ ├── gnome-mime-image-x-xpixmap.svg │ │ ├── gnome-mime-image.svg │ │ ├── gnome-mime-text-css.svg │ │ ├── gnome-mime-text-html.svg │ │ ├── gnome-mime-text-javascript.svg │ │ ├── gnome-mime-text-plain.svg │ │ ├── gnome-mime-text-vnd.wap.wml.svg │ │ ├── gnome-mime-text-x-c++.svg │ │ ├── gnome-mime-text-x-c++src.svg │ │ ├── gnome-mime-text-x-c.svg │ │ ├── gnome-mime-text-x-changelog.svg │ │ ├── gnome-mime-text-x-chdr.svg │ │ ├── gnome-mime-text-x-copying.svg │ │ ├── gnome-mime-text-x-csh.svg │ │ ├── gnome-mime-text-x-csharp.svg │ │ ├── gnome-mime-text-x-csrc.svg │ │ ├── gnome-mime-text-x-gtkrc.svg │ │ ├── gnome-mime-text-x-install.svg │ │ ├── gnome-mime-text-x-java.svg │ │ ├── gnome-mime-text-x-javascript.svg │ │ ├── gnome-mime-text-x-makefile.svg │ │ ├── gnome-mime-text-x-python.svg │ │ ├── gnome-mime-text-x-readme.svg │ │ ├── gnome-mime-text-x-sh.svg │ │ ├── gnome-mime-text-x-source.svg │ │ ├── gnome-mime-text-x-vcalendar.svg │ │ ├── gnome-mime-text-x-vcard.svg │ │ ├── gnome-mime-text-x-zsh.svg │ │ ├── gnome-mime-text.svg │ │ ├── gnome-mime-video-x-ms-asf.svg │ │ ├── gnome-mime-video-x-ms-wmv.svg │ │ ├── gnome-mime-video.svg │ │ ├── gnome-mime-x-font-afm.svg │ │ ├── gnome-mime-x-install.svg │ │ ├── gnome-package.svg │ │ ├── gnome-unknown.svg │ │ ├── gtk-file.svg │ │ ├── html.svg │ │ ├── image-bmp.svg │ │ ├── image-generic.svg │ │ ├── image-gif.svg │ │ ├── image-ico.svg │ │ ├── image-jpeg.svg │ │ ├── image-jpeg2000.svg │ │ ├── image-png.svg │ │ ├── image-svg+xml-compressed.svg │ │ ├── image-svg+xml.svg │ │ ├── image-tiff.svg │ │ ├── image-vnd.adobe.photoshop.svg │ │ ├── image-vnd.dgn.svg │ │ ├── image-vnd.djvu.svg │ │ ├── image-vnd.dwg.svg │ │ ├── image-vnd.dxf.svg │ │ ├── image-vnd.microsoft.icon.svg │ │ ├── image-vnd.zbrush.pcx.svg │ │ ├── image-x-3ds.svg │ │ ├── image-x-adobe-dng.svg │ │ ├── image-x-compressed-xcf.svg │ │ ├── image-x-dwg.svg │ │ ├── image-x-emf.svg │ │ ├── image-x-eps.svg │ │ ├── image-x-generic.svg │ │ ├── image-x-ico.svg │ │ ├── image-x-icon.svg │ │ ├── image-x-krita.svg │ │ ├── image-x-pcx.svg │ │ ├── image-x-portable-bitmap.svg │ │ ├── image-x-portable.bitmap.svg │ │ ├── image-x-psd.svg │ │ ├── image-x-psdimage-x-psd.svg │ │ ├── image-x-svg+xml.svg │ │ ├── image-x-tga.svg │ │ ├── image-x-vnd.trolltech.qpicture.svg │ │ ├── image-x-win-bitmap.svg │ │ ├── image-x-win-bmp.svg │ │ ├── image-x-wmf.svg │ │ ├── image-x-xcf.svg │ │ ├── image-x-xfig.svg │ │ ├── image.svg │ │ ├── inode-symlink.svg │ │ ├── inode-vnd.kde.service.unknown.svg │ │ ├── inode-vnd.kde.service.upnp.Unknown.svg │ │ ├── internet-feed.svg │ │ ├── javascript.svg │ │ ├── jd-container.svg │ │ ├── jpeg.svg │ │ ├── jpg.svg │ │ ├── kpresenter_kpr.svg │ │ ├── libpeas-plugin.svg │ │ ├── libreoffice-database.svg │ │ ├── libreoffice-drawing-template.svg │ │ ├── libreoffice-drawing.svg │ │ ├── libreoffice-extension.svg │ │ ├── libreoffice-formula.svg │ │ ├── libreoffice-master-document.svg │ │ ├── libreoffice-oasis-database.svg │ │ ├── libreoffice-oasis-drawing-template.svg │ │ ├── libreoffice-oasis-drawing.svg │ │ ├── libreoffice-oasis-formula.svg │ │ ├── libreoffice-oasis-master-document.svg │ │ ├── libreoffice-oasis-presentation-template.svg │ │ ├── libreoffice-oasis-presentation.svg │ │ ├── libreoffice-oasis-spreadsheet-template.svg │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ ├── libreoffice-oasis-text-template.svg │ │ ├── libreoffice-oasis-text.svg │ │ ├── libreoffice-oasis-web-template.svg │ │ ├── libreoffice-oasis-web.svg │ │ ├── libreoffice-presentation-template.svg │ │ ├── libreoffice-presentation.svg │ │ ├── libreoffice-spreadsheet-template.svg │ │ ├── libreoffice-spreadsheet.svg │ │ ├── libreoffice-text-template.svg │ │ ├── libreoffice-text.svg │ │ ├── libreoffice-web.svg │ │ ├── media-audio.svg │ │ ├── media-image.svg │ │ ├── media-video.svg │ │ ├── message-news.svg │ │ ├── message-partial.svg │ │ ├── message-rfc822.svg │ │ ├── message-x-gnu-rmail.svg │ │ ├── message.svg │ │ ├── mime-ascii.svg │ │ ├── misc.svg │ │ ├── model-fcstd.svg │ │ ├── model-vnd.dwf.svg │ │ ├── model-vrml.svg │ │ ├── model-x.stl-binary.svg │ │ ├── model-x3d+binary.svg │ │ ├── model-x3d+vrml.svg │ │ ├── model-x3d+xml.svg │ │ ├── model-x3d.svg │ │ ├── model.svg │ │ ├── multipart-alternative.svg │ │ ├── multipart-appledouble.svg │ │ ├── multipart-digest.svg │ │ ├── multipart-encrypted.svg │ │ ├── multipart-mixed.svg │ │ ├── multipart-related.svg │ │ ├── multipart-report.svg │ │ ├── multipart-signed.svg │ │ ├── multipart-x-mixed-replace.svg │ │ ├── music.svg │ │ ├── nero-disc-image.svg │ │ ├── nero-linux-compilation.svg │ │ ├── none.svg │ │ ├── odf.svg │ │ ├── office-contact.svg │ │ ├── office-document-rtl.svg │ │ ├── office-document.svg │ │ ├── office-illustration.svg │ │ ├── office-spreadsheet.svg │ │ ├── openoffice3-drawing.svg │ │ ├── openoffice4-database.svg │ │ ├── openoffice4-drawing-template.svg │ │ ├── openoffice4-drawing.svg │ │ ├── openoffice4-extension.svg │ │ ├── openoffice4-formula.svg │ │ ├── openoffice4-master-document.svg │ │ ├── openoffice4-oasis-database.svg │ │ ├── openoffice4-oasis-drawing-template.svg │ │ ├── openoffice4-oasis-drawing.svg │ │ ├── openoffice4-oasis-formula.svg │ │ ├── openoffice4-oasis-master-document.svg │ │ ├── openoffice4-oasis-presentation-template.svg │ │ ├── openoffice4-oasis-presentation.svg │ │ ├── openoffice4-oasis-spreadsheet-template.svg │ │ ├── openoffice4-oasis-spreadsheet.svg │ │ ├── openoffice4-oasis-text-template.svg │ │ ├── openoffice4-oasis-text.svg │ │ ├── openoffice4-oasis-web-template.svg │ │ ├── openoffice4-presentation-template.svg │ │ ├── openoffice4-presentation.svg │ │ ├── openoffice4-spreadsheet-template.svg │ │ ├── openoffice4-spreadsheet.svg │ │ ├── openoffice4-text-template.svg │ │ ├── openoffice4-text.svg │ │ ├── openofficeorg3-database.svg │ │ ├── openofficeorg3-drawing.svg │ │ ├── openofficeorg3-extension.svg │ │ ├── openofficeorg3-oasis-database.svg │ │ ├── openofficeorg3-oasis-spreadsheet.svg │ │ ├── opera-extension.svg │ │ ├── opera-widget.svg │ │ ├── package-gdebi.svg │ │ ├── package-x-generic.svg │ │ ├── package.svg │ │ ├── package_editors.svg │ │ ├── package_wordprocessing.svg │ │ ├── pdf.svg │ │ ├── plan.svg │ │ ├── playlist-automatic.svg │ │ ├── playlist.svg │ │ ├── podcast.svg │ │ ├── pplication-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ ├── qgis-asc.svg │ │ ├── qgis-ddf.svg │ │ ├── qgis-dem.svg │ │ ├── qgis-dt0.svg │ │ ├── qgis-dxf.svg │ │ ├── qgis-gml.svg │ │ ├── qgis-img.svg │ │ ├── qgis-mldata.svg │ │ ├── qgis-qlr.svg │ │ ├── qgis-qml.svg │ │ ├── qgis-shp.svg │ │ ├── qgis-sqlite.svg │ │ ├── rar.svg │ │ ├── raw.svg │ │ ├── rpm.svg │ │ ├── shellscript.svg │ │ ├── sound.svg │ │ ├── source-php.svg │ │ ├── source-playlist.svg │ │ ├── source-smart-playlist.svg │ │ ├── spreadsheet.svg │ │ ├── stock_addressbook.svg │ │ ├── stock_calendar.svg │ │ ├── stock_certificate.svg │ │ ├── stock_new-drawing.svg │ │ ├── stock_new-html.svg │ │ ├── stock_new-master-document.svg │ │ ├── stock_new-presentation.svg │ │ ├── stock_new-spreadsheet.svg │ │ ├── stock_new-template.svg │ │ ├── stock_new-text.svg │ │ ├── stock_script.svg │ │ ├── stock_scripts.svg │ │ ├── stock_unknown.svg │ │ ├── svg.svg │ │ ├── tar.svg │ │ ├── text-c.svg │ │ ├── text-calendar.svg │ │ ├── text-csharp.svg │ │ ├── text-css.svg │ │ ├── text-csv.svg │ │ ├── text-directory.svg │ │ ├── text-dockerfile.svg │ │ ├── text-enriched-rtl.svg │ │ ├── text-enriched.svg │ │ ├── text-html.svg │ │ ├── text-html_alt.svg │ │ ├── text-htmlh.svg │ │ ├── text-javascript.svg │ │ ├── text-less.svg │ │ ├── text-markdown.svg │ │ ├── text-mathml.svg │ │ ├── text-mht.svg │ │ ├── text-plain.svg │ │ ├── text-r.svg │ │ ├── text-rdf+xml.svg │ │ ├── text-rdf.svg │ │ ├── text-richtext-rtl.svg │ │ ├── text-richtext.svg │ │ ├── text-rtf.svg │ │ ├── text-rtl.svg │ │ ├── text-rust.svg │ │ ├── text-sgml.svg │ │ ├── text-spreadsheet.svg │ │ ├── text-sqml.svg │ │ ├── text-troff.svg │ │ ├── text-vcalendar.svg │ │ ├── text-vnd-wap-wml.svg │ │ ├── text-vnd.abc.svg │ │ ├── text-vnd.kde.kcrash-report.svg │ │ ├── text-vnd.qt.linguist.svg │ │ ├── text-vnd.trolltech.linguist.svg │ │ ├── text-vnd.wap.wml.svg │ │ ├── text-wiki.svg │ │ ├── text-x-R.svg │ │ ├── text-x-adasrc.svg │ │ ├── text-x-apport.svg │ │ ├── text-x-asm.svg │ │ ├── text-x-authors.svg │ │ ├── text-x-bak.svg │ │ ├── text-x-bibtex.svg │ │ ├── text-x-c++.svg │ │ ├── text-x-c++hdr.svg │ │ ├── text-x-c++src.svg │ │ ├── text-x-c.svg │ │ ├── text-x-changelog.svg │ │ ├── text-x-chdr.svg │ │ ├── text-x-cmake.svg │ │ ├── text-x-cobol.svg │ │ ├── text-x-copying.svg │ │ ├── text-x-cpp.svg │ │ ├── text-x-credits.svg │ │ ├── text-x-csharp.svg │ │ ├── text-x-csrc.svg │ │ ├── text-x-css.svg │ │ ├── text-x-dtd.svg │ │ ├── text-x-fortran.svg │ │ ├── text-x-generic-rtl.svg │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ ├── text-x-generic.svg │ │ ├── text-x-gettext-translation.svg │ │ ├── text-x-go.svg │ │ ├── text-x-haskell.svg │ │ ├── text-x-hex.svg │ │ ├── text-x-install.svg │ │ ├── text-x-java-source.svg │ │ ├── text-x-java.svg │ │ ├── text-x-javascript.svg │ │ ├── text-x-katefilelist.svg │ │ ├── text-x-kotlin.svg │ │ ├── text-x-kvc.svg │ │ ├── text-x-kvt.svg │ │ ├── text-x-ldif.svg │ │ ├── text-x-lilypond.svg │ │ ├── text-x-log.svg │ │ ├── text-x-lua.svg │ │ ├── text-x-lyx.svg │ │ ├── text-x-makefile.svg │ │ ├── text-x-markdown.svg │ │ ├── text-x-meson.svg │ │ ├── text-x-microdvd.svg │ │ ├── text-x-nfo.svg │ │ ├── text-x-objchdr.svg │ │ ├── text-x-objcsrc.svg │ │ ├── text-x-opml+xml.svg │ │ ├── text-x-opml.svg │ │ ├── text-x-pascal.svg │ │ ├── text-x-patch.svg │ │ ├── text-x-perl.svg │ │ ├── text-x-php.svg │ │ ├── text-x-plain.svg │ │ ├── text-x-po.svg │ │ ├── text-x-preview.svg │ │ ├── text-x-python.svg │ │ ├── text-x-python3.svg │ │ ├── text-x-qml.svg │ │ ├── text-x-r-source.svg │ │ ├── text-x-r.svg │ │ ├── text-x-readme.svg │ │ ├── text-x-rpm-spec.svg │ │ ├── text-x-rsrc.svg │ │ ├── text-x-ruby.svg │ │ ├── text-x-rust.svg │ │ ├── text-x-sass.svg │ │ ├── text-x-scala.svg │ │ ├── text-x-scheme.svg │ │ ├── text-x-script.svg │ │ ├── text-x-scss.svg │ │ ├── text-x-source.svg │ │ ├── text-x-sql.svg │ │ ├── text-x-ssa.svg │ │ ├── text-x-tcl.svg │ │ ├── text-x-tex.svg │ │ ├── text-x-texinfo.svg │ │ ├── text-x-typescript.svg │ │ ├── text-x-vala.svg │ │ ├── text-x-vcard.svg │ │ ├── text-x-xslfo.svg │ │ ├── text-x.svg │ │ ├── text-xhtml+xml.svg │ │ ├── text-xmcd.svg │ │ ├── text-xml.svg │ │ ├── text.svg │ │ ├── text2.svg │ │ ├── tgz.svg │ │ ├── torrent.svg │ │ ├── txt.svg │ │ ├── txt2.svg │ │ ├── unknown.svg │ │ ├── uri-mms.svg │ │ ├── uri-mmst.svg │ │ ├── uri-mmsu.svg │ │ ├── uri-pnm.svg │ │ ├── uri-rtspt.svg │ │ ├── uri-rtspu.svg │ │ ├── vcalendar.svg │ │ ├── vcard.svg │ │ ├── video-mlt-playlist.svg │ │ ├── video-mp2t.svg │ │ ├── video-mp4.svg │ │ ├── video-quicktime.svg │ │ ├── video-vivo.svg │ │ ├── video-vnd.rn-realvideo.svg │ │ ├── video-wavelet.svg │ │ ├── video-webm.svg │ │ ├── video-x-anim.svg │ │ ├── video-x-flic.svg │ │ ├── video-x-flv.svg │ │ ├── video-x-generic.svg │ │ ├── video-x-google-vlc-plugin.svg │ │ ├── video-x-javafx.svg │ │ ├── video-x-matroska.svg │ │ ├── video-x-mng.svg │ │ ├── video-x-ms-asf-plugin.svg │ │ ├── video-x-ms-asf.svg │ │ ├── video-x-ms-wmp.svg │ │ ├── video-x-ms-wmv.svg │ │ ├── video-x-msvideo.svg │ │ ├── video-x-nsv.svg │ │ ├── video-x-ogm+ogg.svg │ │ ├── video-x-sgi-movie.svg │ │ ├── video-x-theora+ogg.svg │ │ ├── video-x-wmv.svg │ │ ├── video.svg │ │ ├── viewbib.svg │ │ ├── viewdvi.svg │ │ ├── viewhtml.svg │ │ ├── viewpdf.svg │ │ ├── viewps.svg │ │ ├── virtualbox-hdd.svg │ │ ├── virtualbox-ova.svg │ │ ├── virtualbox-ovf.svg │ │ ├── virtualbox-vbox-extpack.svg │ │ ├── virtualbox-vbox.svg │ │ ├── virtualbox-vdi.svg │ │ ├── virtualbox-vhd.svg │ │ ├── virtualbox-vmdk.svg │ │ ├── vnd.ms-publisher.svg │ │ ├── vnd.oasis.opendocument.drawing.svg │ │ ├── wordprocessing-rtl.svg │ │ ├── wordprocessing.svg │ │ ├── wps-office-doc.svg │ │ ├── wps-office-dot.svg │ │ ├── wps-office-dps.svg │ │ ├── wps-office-dpt.svg │ │ ├── wps-office-et.svg │ │ ├── wps-office-ett.svg │ │ ├── wps-office-pot.svg │ │ ├── wps-office-ppt.svg │ │ ├── wps-office-wps.svg │ │ ├── wps-office-wpt.svg │ │ ├── wps-office-xls.svg │ │ ├── wps-office-xlt.svg │ │ ├── www.svg │ │ ├── x-content-audio-cdda.svg │ │ ├── x-content-audio-dvd.svg │ │ ├── x-content-audio-player.svg │ │ ├── x-content-blank-bd.svg │ │ ├── x-content-blank-cd.svg │ │ ├── x-content-blank-dvd.svg │ │ ├── x-content-blank-hddvd.svg │ │ ├── x-content-image-dcf.svg │ │ ├── x-content-image-picturecd.svg │ │ ├── x-content-software.svg │ │ ├── x-content-unix-software.svg │ │ ├── x-content-video-bluray.svg │ │ ├── x-content-video-dvd.svg │ │ ├── x-content-video-hddvd.svg │ │ ├── x-content-video-svcd.svg │ │ ├── x-content-video-vcd.svg │ │ ├── x-content-win32-software.svg │ │ ├── x-gambasserverpage.svg │ │ ├── x-kde-nsplugin-generated.svg │ │ ├── x-mail-distribution-list.svg │ │ ├── x-media-podcast.svg │ │ ├── x-office-address-book.svg │ │ ├── x-office-address-book1.svg │ │ ├── x-office-calendar.svg │ │ ├── x-office-contact.svg │ │ ├── x-office-document-rtl.svg │ │ ├── x-office-document-template-rtl.svg │ │ ├── x-office-document-template.svg │ │ ├── x-office-document.svg │ │ ├── x-office-drawing.svg │ │ ├── x-office-presentation-rtl.svg │ │ ├── x-office-presentation-template-rtl.svg │ │ ├── x-office-presentation-template.svg │ │ ├── x-office-presentation.svg │ │ ├── x-office-spreadsheet-template.svg │ │ ├── x-office-spreadsheet.svg │ │ ├── x-world-x-3dmf.svg │ │ └── zip.svg │ └── places │ │ ├── cs-desktop.svg │ │ ├── folder-activities.svg │ │ ├── folder-apple.svg │ │ ├── folder-black-image-people.svg │ │ ├── folder-cd.svg │ │ ├── folder-code.svg │ │ ├── folder-copy-cloud.svg │ │ ├── folder-desktop.svg │ │ ├── folder-development.svg │ │ ├── folder-documents-open.svg │ │ ├── folder-documents-symbolic.svg │ │ ├── folder-documents.svg │ │ ├── folder-download-open.svg │ │ ├── folder-download-symbolic.svg │ │ ├── folder-download.svg │ │ ├── folder-downloads.svg │ │ ├── folder-drag-accept.svg │ │ ├── folder-dropbox.svg │ │ ├── folder-favorites.svg │ │ ├── folder-games.svg │ │ ├── folder-git.svg │ │ ├── folder-github.svg │ │ ├── folder-gitlab.svg │ │ ├── folder-gnome.svg │ │ ├── folder-google-drive.svg │ │ ├── folder-image-people.svg │ │ ├── folder-important.svg │ │ ├── folder-java.svg │ │ ├── folder-linux.svg │ │ ├── folder-locked.svg │ │ ├── folder-mail-cloud.svg │ │ ├── folder-mail.svg │ │ ├── folder-mega.svg │ │ ├── folder-meocloud.svg │ │ ├── folder-music-open.svg │ │ ├── folder-music-symbolic.svg │ │ ├── folder-music.svg │ │ ├── folder-network.svg │ │ ├── folder-open.svg │ │ ├── folder-owncloud.svg │ │ ├── folder-pcloud.svg │ │ ├── folder-photo.svg │ │ ├── folder-pictures-open.svg │ │ ├── folder-pictures-symbolic.svg │ │ ├── folder-pictures.svg │ │ ├── folder-print.svg │ │ ├── folder-private.svg │ │ ├── folder-public.svg │ │ ├── folder-publicshare-open.svg │ │ ├── folder-publicshare-symbolic.svg │ │ ├── folder-publicshare.svg │ │ ├── folder-recent.svg │ │ ├── folder-remote-open.svg │ │ ├── folder-remote-symbolic.svg │ │ ├── folder-remote.svg │ │ ├── folder-script.svg │ │ ├── folder-steam.svg │ │ ├── folder-symbolic.svg │ │ ├── folder-tar.svg │ │ ├── folder-templates-open.svg │ │ ├── folder-templates-symbolic.svg │ │ ├── folder-templates.svg │ │ ├── folder-torrent.svg │ │ ├── folder-unlocked.svg │ │ ├── folder-vbox.svg │ │ ├── folder-video.svg │ │ ├── folder-videos-open.svg │ │ ├── folder-videos-symbolic.svg │ │ ├── folder-videos.svg │ │ ├── folder-visiting.svg │ │ ├── folder-wifi.svg │ │ ├── folder-wine.svg │ │ ├── folder-yandex-disk.svg │ │ ├── folder.svg │ │ ├── gtk-directory.svg │ │ ├── inode-directory.svg │ │ ├── network-server-symbolic.svg │ │ ├── network-workgroup-symbolic.svg │ │ ├── user-black-desktop.svg │ │ ├── user-bluegrey-desktop.svg │ │ ├── user-bookmarks-symbolic.svg │ │ ├── user-desktop-symbolic.svg │ │ ├── user-desktop.svg │ │ ├── user-home-open.svg │ │ ├── user-home-symbolic.svg │ │ ├── user-home.svg │ │ ├── user-trash-full-symbolic.svg │ │ └── user-trash-symbolic.svg │ ├── scalable@2x │ └── symbolic │ ├── actions │ ├── action-unavailable-symbolic.svg │ ├── add-files-to-archive-symbolic.svg │ ├── address-book-new-symbolic.svg │ ├── align-horizontal-center-symbolic.svg │ ├── align-horizontal-left-symbolic.svg │ ├── align-horizontal-left-to-anchor-symbolic.svg │ ├── align-horizontal-right-symbolic.svg │ ├── align-horizontal-right-to-anchor-symbolic.svg │ ├── align-vertical-bottom-symbolic.svg │ ├── align-vertical-bottom-to-anchor-symbolic.svg │ ├── align-vertical-center-symbolic.svg │ ├── align-vertical-top-symbolic.svg │ ├── align-vertical-top-to-anchor-symbolic.svg │ ├── application-add-symbolic.svg │ ├── application-exit-symbolic.svg │ ├── application-menu-symbolic.svg │ ├── appointment-new-symbolic.svg │ ├── appointment-symbolic.svg │ ├── archive-symbolic.svg │ ├── bookmark-new-symbolic.svg │ ├── brisk_system-log-out-symbolic.svg │ ├── browser-download-symbolic.svg │ ├── ca.desrt.dconf-editor.big-rows-symbolic.svg │ ├── ca.desrt.dconf-editor.small-rows-symbolic.svg │ ├── calendar-go-today-symbolic.svg │ ├── call-start-symbolic.svg │ ├── call-stop-symbolic.svg │ ├── camera-switch-symbolic.svg │ ├── caps-lock-off-symbolic.svg │ ├── caps-lock-symbolic.svg │ ├── category-search-symbolic.svg │ ├── chat-message-new-symbolic.svg │ ├── close-symbolic.svg │ ├── color-select-symbolic.svg │ ├── contact-new-symbolic.svg │ ├── content-loading-symbolic.svg │ ├── detach-symbolic.svg │ ├── dino-double-tick-symbolic.svg │ ├── dino-tick-symbolic.svg │ ├── document-edit-symbolic.svg │ ├── document-export-symbolic-rtl.svg │ ├── document-export-symbolic.svg │ ├── document-import-symbolic-rtl.svg │ ├── document-import-symbolic.svg │ ├── document-new-symbolic.svg │ ├── document-open-recent-symbolic.svg │ ├── document-open-symbolic.svg │ ├── document-page-setup-symbolic.svg │ ├── document-print-preview-symbolic.svg │ ├── document-print-symbolic.svg │ ├── document-properties-symbolic.svg │ ├── document-revert-rtl-symbolic.svg │ ├── document-revert-symbolic-rtl.svg │ ├── document-revert-symbolic.svg │ ├── document-save-as-symbolic.svg │ ├── document-save-symbolic.svg │ ├── document-send-symbolic.svg │ ├── edit-clear-all-symbolic.svg │ ├── edit-clear-rtl-symbolic.svg │ ├── edit-clear-symbolic-rtl.svg │ ├── edit-clear-symbolic.svg │ ├── edit-copy-symbolic.svg │ ├── edit-cut-symbolic.svg │ ├── edit-delete-symbolic.svg │ ├── edit-find-replace-symbolic.svg │ ├── edit-find-symbolic.svg │ ├── edit-flag-symbolic.svg │ ├── edit-paste-symbolic.svg │ ├── edit-redo-rtl-symbolic.svg │ ├── edit-redo-symbolic-rtl.svg │ ├── edit-redo-symbolic.svg │ ├── edit-select-all-symbolic.svg │ ├── edit-select-symbolic.svg │ ├── edit-symbolic.svg │ ├── edit-tag-symbolic.svg │ ├── edit-undo-rtl-symbolic.svg │ ├── edit-undo-symbolic-rtl.svg │ ├── edit-undo-symbolic.svg │ ├── ephy-bookmark-tag-symbolic.svg │ ├── ephy-bookmarks-symbolic.svg │ ├── ephy-reader-mode-symbolic.svg │ ├── error-correct-symbolic.svg │ ├── extract-archive-symbolic.svg │ ├── eye-not-looking-symbolic.svg │ ├── eye-open-negative-filled-symbolic.svg │ ├── favorite-new-symbolic.svg │ ├── fcitx-fullwidth-active-symbolic.svg │ ├── fcitx-fullwidth-inactive-symbolic.svg │ ├── fcitx-kbd-symbolic.svg │ ├── fcitx-punc-active-symbolic.svg │ ├── fcitx-punc-inactive-symbolic.svg │ ├── fcitx-vk-active-symbolic.svg │ ├── fcitx-vk-inactive-symbolic.svg │ ├── find-location-symbolic.svg │ ├── flag-symbolic.svg │ ├── focus-legacy-systray-symbolic.svg │ ├── focus-top-bar-symbolic.svg │ ├── focus-windows-symbolic.svg │ ├── font-color-symbolic.svg │ ├── font-select-symbolic.svg │ ├── font-size-symbolic.svg │ ├── format-indent-less-rtl-symbolic.svg │ ├── format-indent-less-symbolic-rtl.svg │ ├── format-indent-less-symbolic.svg │ ├── format-indent-more-rtl-symbolic.svg │ ├── format-indent-more-symbolic-rtl.svg │ ├── format-indent-more-symbolic.svg │ ├── format-justify-center-symbolic.svg │ ├── format-justify-fill-symbolic.svg │ ├── format-justify-left-symbolic.svg │ ├── format-justify-right-symbolic.svg │ ├── format-ordered-list-symbolic-rtl.svg │ ├── format-ordered-list-symbolic.svg │ ├── format-text-bold-es-symbolic.svg │ ├── format-text-bold-fr-symbolic.svg │ ├── format-text-bold-symbolic.svg │ ├── format-text-clear-formatting-symbolic.svg │ ├── format-text-direction-ltr-symbolic.svg │ ├── format-text-direction-rtl-symbolic.svg │ ├── format-text-direction-symbolic-rtl.svg │ ├── format-text-direction-symbolic.svg │ ├── format-text-italic-es-symbolic.svg │ ├── format-text-italic-symbolic.svg │ ├── format-text-larger-symbolic.svg │ ├── format-text-remove-formatting-symbolic.svg │ ├── format-text-remove-symbolic.svg │ ├── format-text-smaller-symbolic.svg │ ├── format-text-strikethrough-fr-symbolic.svg │ ├── format-text-strikethrough-symbolic.svg │ ├── format-text-underline-fr-symbolic.svg │ ├── format-text-underline-symbolic.svg │ ├── format-toolbar-toggle-symbolic.svg │ ├── format-unordered-list-symbolic-rtl.svg │ ├── format-unordered-list-symbolic.svg │ ├── forward-rtl-symbolic.svg │ ├── forward-symbolic.svg │ ├── globe-symbolic.svg │ ├── go-bottom-symbolic.svg │ ├── go-down-symbolic.svg │ ├── go-first-rtl-symbolic.svg │ ├── go-first-symbolic-rtl.svg │ ├── go-first-symbolic.svg │ ├── go-home-symbolic.svg │ ├── go-jump-rtl-symbolic.svg │ ├── go-jump-symbolic-rtl.svg │ ├── go-jump-symbolic.svg │ ├── go-last-rtl-symbolic.svg │ ├── go-last-symbolic-rtl.svg │ ├── go-last-symbolic.svg │ ├── go-next-rtl-symbolic.svg │ ├── go-next-symbolic-rtl.svg │ ├── go-next-symbolic.svg │ ├── go-previous-context.svg │ ├── go-previous-rtl-symbolic.svg │ ├── go-previous-symbolic-rtl.svg │ ├── go-previous-symbolic.svg │ ├── go-top-symbolic.svg │ ├── go-up-symbolic.svg │ ├── gtk-about-symbolic.svg │ ├── help-about-symbolic.svg │ ├── help-contents-symbolic.svg │ ├── help-info-symbolic.svg │ ├── image-crop-symbolic.svg │ ├── image-denoise-symbolic.svg │ ├── image-filter-symbolic.svg │ ├── image-red-eye-symbolic.svg │ ├── image-sharpen-symbolic.svg │ ├── image-straighten-symbolic.svg │ ├── inbox-symbolic.svg │ ├── insert-emoticon-symbolic.svg │ ├── insert-image-symbolic.svg │ ├── insert-link-symbolic.svg │ ├── insert-object-symbolic.svg │ ├── insert-text-symbolic.svg │ ├── keyboard-caps-lock-filled-symbolic.svg │ ├── keyboard-enter-symbolic.svg │ ├── keyboard-layout-filled-symbolic.svg │ ├── keyboard-shift-filled-symbolic.svg │ ├── link-symbolic.svg │ ├── list-add-symbolic.svg │ ├── list-edit-symbolic.svg │ ├── list-remove-all-symbolic.svg │ ├── list-remove-symbolic.svg │ ├── location-symbolic.svg │ ├── mail-archive-symbolic.svg │ ├── mail-attachment-symbolic.svg │ ├── mail-drafts-symbolic-rtl.svg │ ├── mail-drafts-symbolic.svg │ ├── mail-flag-symbolic.svg │ ├── mail-forward-rtl-symbolic.svg │ ├── mail-forward-symbolic-rtl.svg │ ├── mail-forward-symbolic.svg │ ├── mail-inbox-symbolic.svg │ ├── mail-mark-important-symbolic.svg │ ├── mail-mark-junk-symbolic.svg │ ├── mail-mark-notjunk-symbolic.svg │ ├── mail-mark-read-symbolic.svg │ ├── mail-mark-unread-symbolic.svg │ ├── mail-message-new-symbolic.svg │ ├── mail-move-symbolic.svg │ ├── mail-outbox-symbolic.svg │ ├── mail-reply-all-symbolic-rtl.svg │ ├── mail-reply-all-symbolic.svg │ ├── mail-reply-rtl-symbolic.svg │ ├── mail-reply-sender-rtl-symbolic.svg │ ├── mail-reply-sender-symbolic-rtl.svg │ ├── mail-reply-sender-symbolic.svg │ ├── mail-reply-symbolic.svg │ ├── mail-send-receive-symbolic.svg │ ├── mail-send-symbolic-rtl.svg │ ├── mail-send-symbolic.svg │ ├── mail-sent-symbolic-rtl.svg │ ├── mail-sent-symbolic.svg │ ├── mail-spam-symbolic.svg │ ├── mark-location-symbolic.svg │ ├── marker-symbolic.svg │ ├── media-eject-symbolic.svg │ ├── media-eq-symbolic.svg │ ├── media-mount-symbolic.svg │ ├── media-playback-pause-symbolic.svg │ ├── media-playback-play-pause-symbolic.svg │ ├── media-playback-start-rtl-symbolic.svg │ ├── media-playback-start-symbolic-rtl.svg │ ├── media-playback-start-symbolic.svg │ ├── media-playback-stop-symbolic.svg │ ├── media-playlist-no-repeat-symbolic.svg │ ├── media-playlist-repeat-once-symbolic.svg │ ├── media-playlist-repeat-one-symbolic.svg │ ├── media-playlist-repeat-song-symbolic.svg │ ├── media-playlist-repeat-symbolic.svg │ ├── media-playlist-shuffle-symbolic.svg │ ├── media-record-symbolic.svg │ ├── media-seek-backward-rtl-symbolic.svg │ ├── media-seek-backward-symbolic-rtl.svg │ ├── media-seek-backward-symbolic.svg │ ├── media-seek-forward-rtl-symbolic.svg │ ├── media-seek-forward-symbolic-rtl.svg │ ├── media-seek-forward-symbolic.svg │ ├── media-skip-backward-rtl-symbolic.svg │ ├── media-skip-backward-symbolic-rtl.svg │ ├── media-skip-backward-symbolic.svg │ ├── media-skip-forward-rtl-symbolic.svg │ ├── media-skip-forward-symbolic-rtl.svg │ ├── media-skip-forward-symbolic.svg │ ├── media-view-subtitles-symbolic.svg │ ├── mount-archive-symbolic.svg │ ├── multimedia-equalizer-symbolic.svg │ ├── nemo-auto-arrange-symbolic.svg │ ├── nemo-desktop-scale-symbolic.svg │ ├── nemo-horizontal-layout-symbolic.svg │ ├── nemo-horizontal-layout-wide-symbolic.svg │ ├── nemo-vertical-layout-symbolic.svg │ ├── nemo-vertical-layout-wide-symbolic.svg │ ├── new-star-symbolic.svg │ ├── notification-alert-symbolic.svg │ ├── notification-disabled-symbolic.svg │ ├── num-lock-off-symbolic.svg │ ├── num-lock-symbolic.svg │ ├── object-flip-horizontal-symbolic.svg │ ├── object-flip-vertical-symbolic.svg │ ├── object-group-symbolic.svg │ ├── object-inverse-symbolic.svg │ ├── object-merge-symbolic.svg │ ├── object-move-symbolic.svg │ ├── object-rotate-left-symbolic.svg │ ├── object-rotate-right-symbolic.svg │ ├── object-select-symbolic.svg │ ├── object-straighten-symbolic.svg │ ├── object-ungroup-symbolic.svg │ ├── open-menu-symbolic.svg │ ├── outbox-symbolic.svg │ ├── pan-down-symbolic.svg │ ├── pan-end-symbolic-rtl.svg │ ├── pan-end-symbolic.svg │ ├── pan-start-symbolic-rtl.svg │ ├── pan-start-symbolic.svg │ ├── pan-up-symbolic.svg │ ├── pane-hide-symbolic-rtl.svg │ ├── pane-hide-symbolic.svg │ ├── pane-show-symbolic-rtl.svg │ ├── pane-show-symbolic.svg │ ├── path-break-apart-symbolic.svg │ ├── path-combine-symbolic.svg │ ├── path-difference-symbolic.svg │ ├── path-division-symbolic.svg │ ├── path-exclusion-symbolic.svg │ ├── path-intersection-symbolic.svg │ ├── path-union-symbolic.svg │ ├── process-stop-symbolic.svg │ ├── qrscanner-symbolic.svg │ ├── reply-all-rtl-symbolic.svg │ ├── reply-all-symbolic-rtl.svg │ ├── reply-all-symbolic.svg │ ├── reply-rtl-symbolic.svg │ ├── reply-symbolic.svg │ ├── scan-type-adf-symbolic.svg │ ├── scan-type-batch-symbolic.svg │ ├── screensaver-switch-users-symbolic.svg │ ├── screensaver-unlock-symbolic.svg │ ├── search-symbolic.svg │ ├── selection-bottom-symbolic.svg │ ├── selection-end-symbolic-rtl.svg │ ├── selection-end-symbolic.svg │ ├── selection-lower-symbolic.svg │ ├── selection-raise-symbolic.svg │ ├── selection-start-symbolic-rtl.svg │ ├── selection-start-symbolic.svg │ ├── selection-top-symbolic.svg │ ├── send-to-symbolic.svg │ ├── sidebar-hide-symbolic.svg │ ├── sidebar-places-symbolic.svg │ ├── sidebar-show-symbolic.svg │ ├── sidebar-tree-symbolic.svg │ ├── spam-symbolic.svg │ ├── star-new-symbolic.svg │ ├── starred-symbolic.svg │ ├── stopwatch-symbolic.svg │ ├── system-hibernate-symbolic.svg │ ├── system-lock-screen-symbolic.svg │ ├── system-log-out-symbolic.svg │ ├── system-reboot-symbolic.svg │ ├── system-restart-symbolic.svg │ ├── system-run-symbolic.svg │ ├── system-search-symbolic.svg │ ├── system-shutdown-symbolic.svg │ ├── system-suspend-symbolic.svg │ ├── system-switch-user-symbolic.svg │ ├── tab-new-symbolic.svg │ ├── tag-new-symbolic.svg │ ├── tag-symbolic-rtl.svg │ ├── tag-symbolic.svg │ ├── timer-symbolic.svg │ ├── tools-check-spelling-symbolic.svg │ ├── tools-timer-symbolic.svg │ ├── twitter-dm-symbolic.svg │ ├── twitter-home-symbolic.svg │ ├── twitter-mentions-symbolic.svg │ ├── twitter-profile-symbolic.svg │ ├── value-decrease-symbolic.svg │ ├── value-increase-symbolic.svg │ ├── view-app-grid-symbolic.svg │ ├── view-bottom-pane-symbolic.svg │ ├── view-column-symbolic.svg │ ├── view-compact-symbolic.svg │ ├── view-conceal-symbolic.svg │ ├── view-continuous-symbolic.svg │ ├── view-coverflow-symbolic.svg │ ├── view-dual-symbolic.svg │ ├── view-filter-rtl-symbolic.svg │ ├── view-filter-symbolic-rtl.svg │ ├── view-filter-symbolic.svg │ ├── view-fullscreen-symbolic.svg │ ├── view-grid-symbolic.svg │ ├── view-left-pane-symbolic-rtl.svg │ ├── view-left-pane-symbolic.svg │ ├── view-list-bullet-symbolic.svg │ ├── view-list-compact-symbolic.svg │ ├── view-list-images-symbolic.svg │ ├── view-list-ordered-symbolic.svg │ ├── view-list-symbolic.svg │ ├── view-list-video-symbolic.svg │ ├── view-mirror-symbolic.svg │ ├── view-more-horizontal-symbolic.svg │ ├── view-more-symbolic.svg │ ├── view-paged-symbolic.svg │ ├── view-pin-symbolic.svg │ ├── view-refresh-symbolic.svg │ ├── view-restore-symbolic.svg │ ├── view-reveal-symbolic.svg │ ├── view-right-pane-symbolic-rtl.svg │ ├── view-right-pane-symbolic.svg │ ├── view-sidebar-symbolic.svg │ ├── view-sort-ascending-symbolic.svg │ ├── view-sort-descending-symbolic.svg │ ├── view-top-pane-symbolic.svg │ ├── view-zoom-in-symbolic.svg │ ├── view-zoom-original-symbolic.svg │ ├── window-close-symbolic.svg │ ├── window-maximize-symbolic.svg │ ├── window-minimize-symbolic.svg │ ├── window-new-symbolic.svg │ ├── window-pop-out-symbolic.svg │ ├── window-restore-symbolic.svg │ ├── xapp-annotations-squiggly-symbolic.svg │ ├── xapp-annotations-text-symbolic.svg │ ├── xapp-diaporama-symbolic.svg │ ├── xapp-favorite-symbolic.svg │ ├── xapp-format-text-highlight-symbolic.svg │ ├── xapp-go-history-next-symbolic-rtl.svg │ ├── xapp-go-history-next-symbolic.svg │ ├── xapp-go-history-previous-symbolic-rtl.svg │ ├── xapp-go-history-previous-symbolic.svg │ ├── xapp-pin-symbolic.svg │ ├── xapp-search-entire-word-symbolic.svg │ ├── xapp-search-wrap-symbolic.svg │ ├── xapp-text-case-symbolic.svg │ ├── xapp-unfavorite-symbolic.svg │ ├── xapp-unpin-symbolic.svg │ ├── xapp-use-regex-symbolic.svg │ ├── zoom-fit-best-symbolic.svg │ ├── zoom-in-symbolic.svg │ ├── zoom-original-symbolic.svg │ └── zoom-out-symbolic.svg │ ├── apps │ ├── accessories-calculator-symbolic.svg │ ├── accessories-character-map-symbolic.svg │ ├── accessories-dictionary-symbolic.svg │ ├── accessories-screenshot-symbolic.svg │ ├── accessories-text-editor-symbolic.svg │ ├── applets-screenshooter-symbolic.svg │ ├── bluetooth-symbolic.svg │ ├── builder-symbolic.svg │ ├── cheese-symbolic.svg │ ├── chromium-browser-symbolic.svg │ ├── com.github.bilelmoussaoui.Authenticator-symbolic.svg │ ├── deja-dup-symbolic.svg │ ├── dino-symbolic.svg │ ├── dropbox-symbolic.svg │ ├── eog-symbolic.svg │ ├── evince-symbolic.svg │ ├── file-roller-symbolic.svg │ ├── firefox-symbolic.svg │ ├── fusion-icon-symbolic.svg │ ├── gedit-symbolic.svg │ ├── gnome-calculator-symbolic.svg │ ├── gnome-characters-symbolic.svg │ ├── gnome-contacts-symbolic.svg │ ├── gnome-control-center-symbolic.svg │ ├── gnome-disks-state-standby-symbolic.svg │ ├── gnome-power-manager-symbolic.svg │ ├── gnome-screenshot-symbolic.svg │ ├── gnome-software-symbolic.svg │ ├── gnome-tweak-tool-symbolic.svg │ ├── goa-panel-symbolic.svg │ ├── google-chrome-symbolic.svg │ ├── help-browser-symbolic.svg │ ├── help-contents-symbolic.svg │ ├── help-faq-symbolic.svg │ ├── inkscape-symbolic.svg │ ├── input-keyboard-symbolic.svg │ ├── internet-mail-symbolic.svg │ ├── libreoffice-base-symbolic.svg │ ├── libreoffice-calc-symbolic.svg │ ├── libreoffice-draw-symbolic.svg │ ├── libreoffice-impress-symbolic.svg │ ├── libreoffice-main-symbolic.svg │ ├── libreoffice-math-symbolic.svg │ ├── libreoffice-writer-symbolic.svg │ ├── mail-archive-symbolic.svg │ ├── media-eq-symbolic.svg │ ├── multimedia-audio-player-symbolic.svg │ ├── multimedia-equalizer-symbolic.svg │ ├── multimedia-photo-manager-symbolic.svg │ ├── multimedia-photo-viewer-symbolic.svg │ ├── multimedia-video-player-symbolic.svg │ ├── multimedia-volume-control-symbolic.svg │ ├── office-calendar-symbolic.svg │ ├── org.gnome.Calendar-symbolic.svg │ ├── org.gnome.Contacts-symbolic.svg │ ├── org.gnome.Fractal-symbolic.svg │ ├── org.gnome.Lollypop-symbolic.svg │ ├── org.gnome.Nautilus-symbolic.svg │ ├── org.gnome.PowerStats-symbolic.svg │ ├── org.gnome.Settings-symbolic.svg │ ├── org.gnome.tweaks-symbolic.svg │ ├── org.perezdecastro.Revolt-symbolic.svg │ ├── password-manager-symbolic.svg │ ├── preferences-color-symbolic.svg │ ├── preferences-desktop-accessibility-symbolic.svg │ ├── preferences-desktop-apps-symbolic.svg │ ├── preferences-desktop-default-applications-symbolic.svg │ ├── preferences-desktop-display-symbolic.svg │ ├── preferences-desktop-font-symbolic.svg │ ├── preferences-desktop-keyboard-shortcuts-symbolic.svg │ ├── preferences-desktop-keyboard-symbolic.svg │ ├── preferences-desktop-locale-symbolic.svg │ ├── preferences-desktop-remote-desktop-symbolic.svg │ ├── preferences-desktop-screensaver-symbolic.svg │ ├── preferences-desktop-sharing-symbolic.svg │ ├── preferences-desktop-wallpaper-symbolic.svg │ ├── preferences-system-network-proxy-symbolic.svg │ ├── preferences-system-network-symbolic.svg │ ├── preferences-system-notifications-symbolic.svg │ ├── preferences-system-privacy-symbolic.svg │ ├── preferences-system-search-symbolic.svg │ ├── preferences-system-time-symbolic.svg │ ├── preferences-ubuntu-panel-symbolic.svg │ ├── revolt-symbolic.svg │ ├── rhythmbox-symbolic.svg │ ├── seahorse-symbolic.svg │ ├── setroubleshoot_icon-symbolic.svg │ ├── shotwell-symbolic.svg │ ├── sparkleshare-symbolic.svg │ ├── system-file-manager-symbolic.svg │ ├── system-software-install-symbolic.svg │ ├── system-users-symbolic.svg │ ├── text-editor-symbolic.svg │ ├── transmission-symbolic.svg │ ├── unity-tweak-tool-symbolic.svg │ ├── user-info-symbolic.svg │ ├── utilities-system-monitor-symbolic.svg │ ├── utilities-terminal-symbolic.svg │ ├── utilities-tweak-tool-symbolic.svg │ └── web-browser-symbolic.svg │ ├── categories │ ├── applications-engineering-symbolic.svg │ ├── applications-games-symbolic.svg │ ├── applications-graphics-symbolic.svg │ ├── applications-multimedia-symbolic.svg │ ├── applications-science-symbolic.svg │ ├── applications-system-symbolic.svg │ ├── applications-utilities-symbolic.svg │ ├── credentials-preferences-symbolic.svg │ ├── cs-backgrounds-symbolic.svg │ ├── cs-desklets-symbolic.svg │ ├── goa-panel-symbolic.svg │ ├── preferences-desktop-online-accounts-symbolic.svg │ ├── preferences-other-symbolic.svg │ ├── preferences-system-symbolic.svg │ ├── slideshow-symbolic.svg │ └── system-help-symbolic.svg │ ├── devices │ ├── ac-adapter-symbolic.svg │ ├── audio-card-symbolic.svg │ ├── audio-headphones-symbolic.svg │ ├── audio-headset-symbolic.svg │ ├── audio-input-microphone-symbolic.svg │ ├── audio-speakers-symbolic.svg │ ├── auth-fingerprint-symbolic.svg │ ├── auth-sim-symbolic.svg │ ├── auth-smartcard-symbolic.svg │ ├── battery-symbolic.svg │ ├── bluetooth-symbolic.svg │ ├── camera-photo-symbolic.svg │ ├── camera-video-symbolic.svg │ ├── camera-web-symbolic.svg │ ├── colorimeter-colorhug-symbolic.svg │ ├── computer-apple-ipad-symbolic.svg │ ├── computer-laptop-symbolic.svg │ ├── computer-symbolic.svg │ ├── display-projector-symbolic.svg │ ├── drive-harddisk-ieee1394-symbolic.svg │ ├── drive-harddisk-solidstate-symbolic.svg │ ├── drive-harddisk-symbolic.svg │ ├── drive-harddisk-system-symbolic.svg │ ├── drive-harddisk-usb-symbolic.svg │ ├── drive-multidisk-symbolic.svg │ ├── drive-optical-symbolic.svg │ ├── drive-removable-media-symbolic.svg │ ├── drive-removable-media-usb-symbolic.svg │ ├── gnome-dev-media-sdmmc-symbolic.svg │ ├── headphones-symbolic.svg │ ├── input-dialpad-symbolic.svg │ ├── input-gaming-symbolic.svg │ ├── input-keyboard-symbolic.svg │ ├── input-mouse-symbolic.svg │ ├── input-tablet-symbolic.svg │ ├── input-touchpad-symbolic.svg │ ├── laptop-symbolic.svg │ ├── media-flash-symbolic.svg │ ├── media-floppy-symbolic.svg │ ├── media-memory-sd-symbolic.svg │ ├── media-optical-bd-symbolic.svg │ ├── media-optical-cd-audio-symbolic.svg │ ├── media-optical-dvd-symbolic.svg │ ├── media-optical-symbolic.svg │ ├── media-removable-symbolic.svg │ ├── media-sim-card-symbolic.svg │ ├── media-tape-symbolic.svg │ ├── media-zip-symbolic.svg │ ├── modem-symbolic.svg │ ├── multimedia-player-apple-ipod-touch-symbolic.svg │ ├── multimedia-player-symbolic.svg │ ├── network-cellular-symbolic.svg │ ├── network-server-symbolic.svg │ ├── network-wired-symbolic.svg │ ├── network-wireless-symbolic.svg │ ├── pda-symbolic.svg │ ├── phone-apple-iphone-symbolic.svg │ ├── phone-google-nexus-one-symbolic.svg │ ├── phone-htc-g1-white-symbolic.svg │ ├── phone-old-symbolic.svg │ ├── phone-palm-pre-symbolic.svg │ ├── phone-samsung-galaxy-s-symbolic.svg │ ├── phone-symbolic.svg │ ├── phonelink-delete-symbolic.svg │ ├── phonelink-lock-symbolic.svg │ ├── phonelink-symbolic.svg │ ├── printer-network-symbolic.svg │ ├── printer-symbolic.svg │ ├── scanner-symbolic.svg │ ├── sim-card-symbolic.svg │ ├── smartphone-symbolic.svg │ ├── tablet-symbolic.svg │ ├── thunderbolt-symbolic.svg │ ├── tv-symbolic.svg │ ├── uninterruptible-power-supply-symbolic.svg │ ├── video-display-symbolic.svg │ ├── video-joined-displays-symbolic.svg │ └── video-single-display-symbolic.svg │ ├── emblems │ ├── emblem-default-symbolic.svg │ ├── emblem-documents-symbolic.svg │ ├── emblem-favorite-symbolic.svg │ ├── emblem-important-symbolic.svg │ ├── emblem-music-symbolic.svg │ ├── emblem-ok-symbolic.svg │ ├── emblem-photos-symbolic.svg │ ├── emblem-shared-symbolic.svg │ ├── emblem-synchronizing-symbolic.svg │ ├── emblem-system-symbolic.svg │ └── emblem-videos-symbolic.svg │ ├── emotes │ ├── emote-love-symbolic.svg │ ├── face-angel-symbolic.svg │ ├── face-angry-symbolic.svg │ ├── face-confused-symbolic.svg │ ├── face-cool-symbolic.svg │ ├── face-crying-symbolic.svg │ ├── face-devilish-symbolic.svg │ ├── face-embarrassed-symbolic.svg │ ├── face-glasses-symbolic.svg │ ├── face-hat-symbolic.svg │ ├── face-kiss-symbolic.svg │ ├── face-laugh-symbolic.svg │ ├── face-monkey-symbolic.svg │ ├── face-plain-symbolic.svg │ ├── face-raspberry-symbolic.svg │ ├── face-sad-symbolic.svg │ ├── face-shutmouth-symbolic.svg │ ├── face-sick-symbolic.svg │ ├── face-smile-big-symbolic.svg │ ├── face-smile-symbolic.svg │ ├── face-smirk-symbolic.svg │ ├── face-surprise-symbolic.svg │ ├── face-tired-symbolic.svg │ ├── face-uncertain-symbolic.svg │ ├── face-wink-symbolic.svg │ ├── face-worried-symbolic.svg │ └── face-yawn-symbolic.svg │ ├── mimetypes │ ├── application-certificate-symbolic.svg │ ├── application-rss+xml-symbolic.svg │ ├── application-x-addon-symbolic.svg │ ├── application-x-executable-symbolic.svg │ ├── audio-x-generic-symbolic.svg │ ├── extension-symbolic.svg │ ├── font-x-generic-symbolic.svg │ ├── image-x-generic-symbolic.svg │ ├── inode-directory-symbolic.svg │ ├── media-optical-bd-symbolic.svg │ ├── media-optical-cd-audio-symbolic.svg │ ├── media-optical-dvd-symbolic.svg │ ├── media-optical-symbolic.svg │ ├── package-x-generic-symbolic.svg │ ├── playlist-symbolic.svg │ ├── text-html-symbolic.svg │ ├── text-x-generic-symbolic.svg │ ├── text-x-systemd-unit-symbolic.svg │ ├── video-x-generic-symbolic.svg │ ├── x-office-address-book-symbolic.svg │ ├── x-office-calendar-symbolic.svg │ ├── x-office-document-symbolic.svg │ ├── x-office-drawing-symbolic.svg │ ├── x-office-presentation-symbolic.svg │ └── x-office-spreadsheet-symbolic.svg │ ├── places │ ├── folder-documents-symbolic.svg │ ├── folder-download-symbolic.svg │ ├── folder-music-symbolic.svg │ ├── folder-pictures-symbolic.svg │ ├── folder-publicshare-symbolic.svg │ ├── folder-recent-symbolic.svg │ ├── folder-remote-symbolic.svg │ ├── folder-saved-search-symbolic.svg │ ├── folder-symbolic.svg │ ├── folder-templates-symbolic.svg │ ├── folder-videos-symbolic.svg │ ├── inbox-symbolic.svg │ ├── inode-directory-symbolic.svg │ ├── internet-radio-symbolic.svg │ ├── mail-archive-symbolic.svg │ ├── mail-folder-inbox-symbolic.svg │ ├── mail-folder-outbox-symbolic.svg │ ├── mail-inbox-symbolic.svg │ ├── mail-outbox-symbolic.svg │ ├── nemo-bookmark-not-found-symbolic.svg │ ├── network-server-symbolic.svg │ ├── network-workgroup-symbolic.svg │ ├── outbox-symbolic.svg │ ├── starred-symbolic.svg │ ├── start-here-symbolic.svg │ ├── user-bookmarks-symbolic.svg │ ├── user-desktop-symbolic.svg │ ├── user-home-symbolic.svg │ ├── user-trash-full-symbolic.svg │ └── user-trash-symbolic.svg │ └── status │ ├── account-logged-in-symbolic.svg │ ├── airplane-mode-disabled-symbolic.svg │ ├── airplane-mode-symbolic.svg │ ├── alarm-symbolic.svg │ ├── appointment-missed-symbolic.svg │ ├── appointment-soon-symbolic.svg │ ├── arch-error-symbolic.svg │ ├── arch-lit-symbolic.svg │ ├── arch-unknown-symbolic.svg │ ├── arch-updates-symbolic.svg │ ├── arch-uptodate-symbolic.svg │ ├── audio-input-microphone-high-symbolic.svg │ ├── audio-input-microphone-low-symbolic.svg │ ├── audio-input-microphone-medium-symbolic.svg │ ├── audio-input-microphone-muted-symbolic.svg │ ├── audio-volume-high-symbolic.svg │ ├── audio-volume-low-symbolic.svg │ ├── audio-volume-medium-symbolic.svg │ ├── audio-volume-muted-blocking-symbolic.svg │ ├── audio-volume-muted-symbolic.svg │ ├── audio-volume-overamplified-symbolic.svg │ ├── avatar-default-symbolic.svg │ ├── battery-caution-charging-symbolic.svg │ ├── battery-caution-symbolic.svg │ ├── battery-empty-charging-symbolic.svg │ ├── battery-empty-symbolic.svg │ ├── battery-full-charged-symbolic.svg │ ├── battery-full-charging-symbolic.svg │ ├── battery-full-symbolic.svg │ ├── battery-good-charging-symbolic.svg │ ├── battery-good-symbolic.svg │ ├── battery-level-0-charging-symbolic.svg │ ├── battery-level-0-symbolic.svg │ ├── battery-level-10-charging-symbolic.svg │ ├── battery-level-10-symbolic.svg │ ├── battery-level-100-charged-symbolic.svg │ ├── battery-level-100-symbolic.svg │ ├── battery-level-20-charging-symbolic.svg │ ├── battery-level-20-symbolic.svg │ ├── battery-level-30-charging-symbolic.svg │ ├── battery-level-30-symbolic.svg │ ├── battery-level-40-charging-symbolic.svg │ ├── battery-level-40-symbolic.svg │ ├── battery-level-50-charging-symbolic.svg │ ├── battery-level-50-symbolic.svg │ ├── battery-level-60-charging-symbolic.svg │ ├── battery-level-60-symbolic.svg │ ├── battery-level-70-charging-symbolic.svg │ ├── battery-level-70-symbolic.svg │ ├── battery-level-80-charging-symbolic.svg │ ├── battery-level-80-symbolic.svg │ ├── battery-level-90-charging-symbolic.svg │ ├── battery-level-90-symbolic.svg │ ├── battery-low-charging-symbolic.svg │ ├── battery-low-symbolic.svg │ ├── battery-medium-charging-symbolic.svg │ ├── battery-medium-symbolic.svg │ ├── battery-missing-symbolic.svg │ ├── blueberry-tray-active-symbolic.svg │ ├── blueberry-tray-disabled-symbolic.svg │ ├── blueberry-tray-symbolic.svg │ ├── bluetooth-active-symbolic.svg │ ├── bluetooth-disabled-symbolic.svg │ ├── bluetooth-paired-symbolic.svg │ ├── budgie-brightness-controller-1-symbolic.svg │ ├── budgie-caffeine-cup-empty.svg │ ├── budgie-caffeine-cup-full.svg │ ├── budgie-trash-empty-symbolic.svg │ ├── budgie-trash-full-symbolic.svg │ ├── budgie-trash-restore-symbolic.svg │ ├── bumblebee-active-symbolic.svg │ ├── bumblebee-inactive-symbolic.svg │ ├── caffeine-cup-empty-symbolic.svg │ ├── caffeine-cup-full-symbolic.svg │ ├── call-missed-symbolic.svg │ ├── caps-lock-symbolic.svg │ ├── capslock-disabled-symbolic.svg │ ├── capslock-enabled-symbolic.svg │ ├── changes-allow-symbolic.svg │ ├── changes-prevent-symbolic.svg │ ├── channel-insecure-symbolic.svg │ ├── channel-secure-symbolic.svg │ ├── checkbox-checked-symbolic.svg │ ├── checkbox-mixed-symbolic.svg │ ├── checkbox-symbolic.svg │ ├── computer-fail-symbolic.svg │ ├── content-loading-symbolic.svg │ ├── critical-notif-symbolic.svg │ ├── daytime-sunrise-symbolic.svg │ ├── daytime-sunset-symbolic.svg │ ├── dialog-error-symbolic.svg │ ├── dialog-information-symbolic.svg │ ├── dialog-password-symbolic.svg │ ├── dialog-question-symbolic.svg │ ├── dialog-warning-symbolic.svg │ ├── display-brightness-high-symbolic.svg │ ├── display-brightness-low-symbolic.svg │ ├── display-brightness-medium-symbolic.svg │ ├── display-brightness-off-symbolic.svg │ ├── display-brightness-symbolic.svg │ ├── folder-drag-accept-symbolic.svg │ ├── folder-open-symbolic.svg │ ├── folder-visiting-symbolic.svg │ ├── freon-fan-symbolic.svg │ ├── freon-gpu-temperature-symbolic.svg │ ├── freon-temperature-symbolic.svg │ ├── freon-voltage-symbolic.svg │ ├── globe-symbolic.svg │ ├── gnome-pie-symbolic.svg │ ├── gser-icon-playing-symbolic.svg │ ├── gser-icon-stopped-symbolic.svg │ ├── gtk-dialog-warning-symbolic.svg │ ├── image-loading-symbolic.svg │ ├── input-keyboard-capslock-symbolic.svg │ ├── input-keyboard-numlock-symbolic.svg │ ├── keyboard-brightness-symbolic.svg │ ├── location-active-symbolic.svg │ ├── location-disabled-symbolic.svg │ ├── location-inactive-symbolic.svg │ ├── low-notif-symbolic.svg │ ├── mail-attachment-symbolic.svg │ ├── mail-important-symbolic.svg │ ├── mail-read-symbolic.svg │ ├── mail-replied-symbolic.svg │ ├── mail-unread-symbolic.svg │ ├── media-playlist-consecutive-rtl-symbolic.svg │ ├── media-playlist-consecutive-symbolic-rtl.svg │ ├── media-playlist-consecutive-symbolic.svg │ ├── media-playlist-no-repeat-symbolic-rtl.svg │ ├── media-playlist-no-repeat-symbolic.svg │ ├── media-playlist-no-shuffle-rtl-symbolic.svg │ ├── media-playlist-no-shuffle-symbolic.svg │ ├── media-playlist-repeat-one-rtl-symbolic.svg │ ├── media-playlist-repeat-one-symbolic-rtl.svg │ ├── media-playlist-repeat-one-symbolic.svg │ ├── media-playlist-repeat-rtl-symbolic.svg │ ├── media-playlist-repeat-song-rtl-symbolic.svg │ ├── media-playlist-repeat-song-symbolic-rtl.svg │ ├── media-playlist-repeat-song-symbolic.svg │ ├── media-playlist-repeat-symbolic-rtl.svg │ ├── media-playlist-repeat-symbolic.svg │ ├── media-playlist-shuffle-rtl-symbolic.svg │ ├── media-playlist-shuffle-symbolic-rtl.svg │ ├── media-playlist-shuffle-symbolic.svg │ ├── message-indicator-symbolic.svg │ ├── microphone-sensitivity-high-symbolic.svg │ ├── microphone-sensitivity-low-symbolic.svg │ ├── microphone-sensitivity-medium-symbolic.svg │ ├── microphone-sensitivity-muted-symbolic.svg │ ├── microphone-sensitivity-none-symbolic.svg │ ├── mpi-symbolic.svg │ ├── my-caffeine-off-symbolic.svg │ ├── my-caffeine-on-symbolic.svg │ ├── mymail-symbolic.svg │ ├── network-acquiring-symbolic.svg │ ├── network-cellular-3g-symbolic.svg │ ├── network-cellular-4g-symbolic.svg │ ├── network-cellular-acquiring-symbolic.svg │ ├── network-cellular-cdma-1x-symbolic.svg │ ├── network-cellular-connected-symbolic.svg │ ├── network-cellular-disconnected-symbolic.svg │ ├── network-cellular-edge-symbolic.svg │ ├── network-cellular-error-symbolic.svg │ ├── network-cellular-gprs-symbolic.svg │ ├── network-cellular-hspa-symbolic.svg │ ├── network-cellular-no-route-symbolic.svg │ ├── network-cellular-offline-symbolic.svg │ ├── network-cellular-secure-signal-excellent-symbolic.svg │ ├── network-cellular-secure-signal-good-symbolic.svg │ ├── network-cellular-secure-signal-low-symbolic.svg │ ├── network-cellular-secure-signal-none-symbolic.svg │ ├── network-cellular-secure-signal-ok-symbolic.svg │ ├── network-cellular-signal-excellent-secure-symbolic.svg │ ├── network-cellular-signal-excellent-symbolic.svg │ ├── network-cellular-signal-good-secure-symbolic.svg │ ├── network-cellular-signal-good-symbolic.svg │ ├── network-cellular-signal-low-symbolic.svg │ ├── network-cellular-signal-none-secure-symbolic.svg │ ├── network-cellular-signal-none-symbolic.svg │ ├── network-cellular-signal-ok-secure-symbolic.svg │ ├── network-cellular-signal-ok-symbolic.svg │ ├── network-cellular-signal-weak-secure-symbolic.svg │ ├── network-cellular-signal-weak-symbolic.svg │ ├── network-cellular-umts-symbolic.svg │ ├── network-disconnected-symbolic.svg │ ├── network-error-symbolic.svg │ ├── network-idle-symbolic.svg │ ├── network-no-route-symbolic.svg │ ├── network-offline-symbolic.svg │ ├── network-receive-symbolic.svg │ ├── network-transmit-receive-symbolic.svg │ ├── network-transmit-symbolic.svg │ ├── network-vpn-acquiring-symbolic.svg │ ├── network-vpn-disconnected-symbolic.svg │ ├── network-vpn-error-symbolic.svg │ ├── network-vpn-no-route-symbolic.svg │ ├── network-vpn-offline-symbolic.svg │ ├── network-vpn-symbolic.svg │ ├── network-wired-acquiring-symbolic.svg │ ├── network-wired-disconnected-symbolic.svg │ ├── network-wired-error-symbolic.svg │ ├── network-wired-no-route-symbolic.svg │ ├── network-wired-offline-symbolic.svg │ ├── network-wired-secure-symbolic.svg │ ├── network-wired-symbolic.svg │ ├── network-wireless-acquiring-symbolic.svg │ ├── network-wireless-connected-symbolic.svg │ ├── network-wireless-disabled-symbolic.svg │ ├── network-wireless-disconnected-symbolic.svg │ ├── network-wireless-encrypted-symbolic.svg │ ├── network-wireless-error-symbolic.svg │ ├── network-wireless-hotspot-symbolic.svg │ ├── network-wireless-no-route-symbolic.svg │ ├── network-wireless-offline-symbolic.svg │ ├── network-wireless-signal-excellent-secure-symbolic.svg │ ├── network-wireless-signal-excellent-symbolic.svg │ ├── network-wireless-signal-good-secure-symbolic.svg │ ├── network-wireless-signal-good-symbolic.svg │ ├── network-wireless-signal-none-secure-symbolic.svg │ ├── network-wireless-signal-none-symbolic.svg │ ├── network-wireless-signal-ok-secure-symbolic.svg │ ├── network-wireless-signal-ok-symbolic.svg │ ├── network-wireless-signal-weak-secure-symbolic.svg │ ├── network-wireless-signal-weak-symbolic.svg │ ├── network-wireless-symbolic.svg │ ├── night-light-symbolic.svg │ ├── nm-device-wired-symbolic.svg │ ├── nm-signal-0-secure-symbolic.svg │ ├── nm-signal-0-symbolic.svg │ ├── nm-signal-100-secure-symbolic.svg │ ├── nm-signal-100-symbolic.svg │ ├── nm-signal-25-secure-symbolic.svg │ ├── nm-signal-25-symbolic.svg │ ├── nm-signal-50-secure-symbolic.svg │ ├── nm-signal-50-symbolic.svg │ ├── nm-signal-75-secure-symbolic.svg │ ├── nm-signal-75-symbolic.svg │ ├── non-starred-symbolic.svg │ ├── normal-notif-symbolic.svg │ ├── notification-disabled-new-symbolic.svg │ ├── notification-disabled-symbolic.svg │ ├── notification-new-symbolic.svg │ ├── notification-symbolic.svg │ ├── notifications-disabled-symbolic.svg │ ├── notifications-new-symbolic.svg │ ├── notifications-symbolic.svg │ ├── num-lock-symbolic.svg │ ├── numlock-disabled-symbolic.svg │ ├── numlock-enabled-symbolic.svg │ ├── nvidia-card-symbolic.svg │ ├── nvidia-ram-symbolic.svg │ ├── nvidia-temp-symbolic.svg │ ├── org.gnome.Shell.Extensions.GSConnect-symbolic.svg │ ├── org.perezdecastro.Revolt-status-blink-symbolic.svg │ ├── org.perezdecastro.Revolt-status-online-symbolic.svg │ ├── orientation-landscape-inverse-symbolic.svg │ ├── orientation-landscape-symbolic.svg │ ├── orientation-portrait-inverse-symbolic.svg │ ├── orientation-portrait-symbolic.svg │ ├── pager-checked-symbolic.svg │ ├── prime-indicator-hybrid-symbolic.svg │ ├── prime-indicator-intel-symbolic.svg │ ├── prime-indicator-nvidia-symbolic.svg │ ├── printer-error-symbolic.svg │ ├── printer-printing-symbolic.svg │ ├── printer-warning-symbolic.svg │ ├── process-completed-symbolic.svg │ ├── process-error-symbolic.svg │ ├── process-working-symbolic.svg │ ├── radio-checked-symbolic.svg │ ├── radio-mixed-symbolic.svg │ ├── radio-symbolic.svg │ ├── revolt-status-blink-symbolic.svg │ ├── revolt-status-online-symbolic.svg │ ├── rotation-allowed-symbolic.svg │ ├── rotation-locked-symbolic.svg │ ├── security-high-symbolic.svg │ ├── security-low-symbolic.svg │ ├── security-medium-symbolic.svg │ ├── semi-starred-symbolic-rtl.svg │ ├── semi-starred-symbolic.svg │ ├── sensors-fan-symbolic.svg │ ├── sensors-temperature-symbolic.svg │ ├── sensors-voltage-symbolic.svg │ ├── software-installed-symbolic.svg │ ├── software-update-available-symbolic.svg │ ├── software-update-urgent-symbolic.svg │ ├── starred-symbolic.svg │ ├── stopwatch-symbolic.svg │ ├── sync-synchronizing-symbolic.svg │ ├── system-shutdown-symbolic.svg │ ├── task-due-symbolic.svg │ ├── task-past-due-symbolic.svg │ ├── temp-symbolic.svg │ ├── thunderbolt-acquiring-symbolic.svg │ ├── timer-symbolic.svg │ ├── touchpad-disabled-symbolic.svg │ ├── touchpad-enabled-symbolic.svg │ ├── user-available-symbolic.svg │ ├── user-away-symbolic.svg │ ├── user-busy-symbolic.svg │ ├── user-idle-symbolic.svg │ ├── user-invisible-symbolic.svg │ ├── user-not-tracked-symbolic.svg │ ├── user-offline-symbolic.svg │ ├── user-status-pending-symbolic.svg │ ├── user-trash-full-symbolic.svg │ ├── view-private-symbolic.svg │ ├── view-wrapped-rtl-symbolic.svg │ ├── view-wrapped-symbolic-rtl.svg │ ├── view-wrapped-symbolic.svg │ ├── volume-warning-symbolic.svg │ ├── weather-clear-night-symbolic.svg │ ├── weather-clear-symbolic.svg │ ├── weather-clouds-night-symbolic.svg │ ├── weather-clouds-symbolic.svg │ ├── weather-cloudy-symbolic.svg │ ├── weather-few-clouds-night-symbolic.svg │ ├── weather-few-clouds-symbolic.svg │ ├── weather-fog-symbolic.svg │ ├── weather-freezing-rain-symbolic.svg │ ├── weather-none-available-symbolic.svg │ ├── weather-overcast-night-symbolic.svg │ ├── weather-overcast-symbolic.svg │ ├── weather-severe-alert-symbolic.svg │ ├── weather-showers-scattered-symbolic.svg │ ├── weather-showers-symbolic.svg │ ├── weather-snow-night-symbolic.svg │ ├── weather-snow-rain-symbolic.svg │ ├── weather-snow-symbolic.svg │ ├── weather-storm-symbolic.svg │ ├── weather-storm-tornado-symbolic.svg │ └── weather-windy-symbolic.svg ├── themes ├── Dracula-pink-accent │ ├── LICENSE │ ├── README.md │ ├── assets │ │ ├── checkbox-checked-active.png │ │ ├── checkbox-checked-active@2.png │ │ ├── checkbox-checked-backdrop.png │ │ ├── checkbox-checked-backdrop@2.png │ │ ├── checkbox-checked-hover.png │ │ ├── checkbox-checked-hover@2.png │ │ ├── checkbox-checked-insensitive-backdrop.png │ │ ├── checkbox-checked-insensitive-backdrop@2.png │ │ ├── checkbox-checked-insensitive.png │ │ ├── checkbox-checked-insensitive@2.png │ │ ├── checkbox-checked.png │ │ ├── checkbox-checked@2.png │ │ ├── checkbox-mixed-active.png │ │ ├── checkbox-mixed-active@2.png │ │ ├── checkbox-mixed-backdrop.png │ │ ├── checkbox-mixed-backdrop@2.png │ │ ├── checkbox-mixed-hover.png │ │ ├── checkbox-mixed-hover@2.png │ │ ├── checkbox-mixed-insensitive-backdrop.png │ │ ├── checkbox-mixed-insensitive-backdrop@2.png │ │ ├── checkbox-mixed-insensitive.png │ │ ├── checkbox-mixed-insensitive@2.png │ │ ├── checkbox-mixed.png │ │ ├── checkbox-mixed@2.png │ │ ├── checkbox-unchecked-active.png │ │ ├── checkbox-unchecked-active@2.png │ │ ├── checkbox-unchecked-backdrop.png │ │ ├── checkbox-unchecked-backdrop@2.png │ │ ├── checkbox-unchecked-hover.png │ │ ├── checkbox-unchecked-hover@2.png │ │ ├── checkbox-unchecked-insensitive-backdrop.png │ │ ├── checkbox-unchecked-insensitive-backdrop@2.png │ │ ├── checkbox-unchecked-insensitive.png │ │ ├── checkbox-unchecked-insensitive@2.png │ │ ├── checkbox-unchecked.png │ │ ├── checkbox-unchecked@2.png │ │ ├── close.png │ │ ├── close.svg │ │ ├── close@2.png │ │ ├── close_prelight.png │ │ ├── close_prelight.svg │ │ ├── close_prelight@2.png │ │ ├── close_pressed.svg │ │ ├── close_unfocused.png │ │ ├── close_unfocused.svg │ │ ├── close_unfocused@2.png │ │ ├── grid-selection-checked.png │ │ ├── grid-selection-checked@2.png │ │ ├── grid-selection-unchecked.png │ │ ├── grid-selection-unchecked@2.png │ │ ├── maximize.png │ │ ├── maximize.svg │ │ ├── maximize@2.png │ │ ├── maximize_prelight.png │ │ ├── maximize_prelight.svg │ │ ├── maximize_prelight@2.png │ │ ├── maximize_pressed.svg │ │ ├── maximize_unfocused.png │ │ ├── maximize_unfocused.svg │ │ ├── menuitem-checkbox-checked-hover.png │ │ ├── menuitem-checkbox-checked-hover@2.png │ │ ├── menuitem-checkbox-checked-insensitive.png │ │ ├── menuitem-checkbox-checked-insensitive@2.png │ │ ├── menuitem-checkbox-checked.png │ │ ├── menuitem-checkbox-checked@2.png │ │ ├── menuitem-checkbox-mixed-hover.png │ │ ├── menuitem-checkbox-mixed-hover@2.png │ │ ├── menuitem-checkbox-mixed-insensitive.png │ │ ├── menuitem-checkbox-mixed-insensitive@2.png │ │ ├── menuitem-checkbox-mixed-selected.png │ │ ├── menuitem-checkbox-mixed-selected@2.png │ │ ├── menuitem-checkbox-mixed.png │ │ ├── menuitem-checkbox-mixed@2.png │ │ ├── menuitem-checkbox-unchecked.png │ │ ├── menuitem-checkbox-unchecked@2.png │ │ ├── menuitem-radio-checked-hover.png │ │ ├── menuitem-radio-checked-hover@2.png │ │ ├── menuitem-radio-checked-insensitive.png │ │ ├── menuitem-radio-checked-insensitive@2.png │ │ ├── menuitem-radio-checked.png │ │ ├── menuitem-radio-checked@2.png │ │ ├── min.png │ │ ├── min.svg │ │ ├── min@2.png │ │ ├── min_prelight.png │ │ ├── min_prelight.svg │ │ ├── min_prelight@2.png │ │ ├── min_pressed.svg │ │ ├── min_unfocused.png │ │ ├── min_unfocused.svg │ │ ├── pane-handle-vertical.png │ │ ├── pane-handle-vertical@2.png │ │ ├── pane-handle.png │ │ ├── pane-handle@2.png │ │ ├── radio-checked-active.png │ │ ├── radio-checked-active@2.png │ │ ├── radio-checked-backdrop.png │ │ ├── radio-checked-backdrop@2.png │ │ ├── radio-checked-hover.png │ │ ├── radio-checked-hover@2.png │ │ ├── radio-checked-insensitive-backdrop.png │ │ ├── radio-checked-insensitive-backdrop@2.png │ │ ├── radio-checked-insensitive.png │ │ ├── radio-checked-insensitive@2.png │ │ ├── radio-checked.png │ │ ├── radio-checked@2.png │ │ ├── radio-mixed-active.png │ │ ├── radio-mixed-active@2.png │ │ ├── radio-mixed-backdrop.png │ │ ├── radio-mixed-backdrop@2.png │ │ ├── radio-mixed-hover.png │ │ ├── radio-mixed-hover@2.png │ │ ├── radio-mixed-insensitive-backdrop.png │ │ ├── radio-mixed-insensitive-backdrop@2.png │ │ ├── radio-mixed-insensitive.png │ │ ├── radio-mixed-insensitive@2.png │ │ ├── radio-mixed.png │ │ ├── radio-mixed@2.png │ │ ├── radio-selected-insensitive.png │ │ ├── radio-selected-insensitive@2.png │ │ ├── radio-selected@2.png │ │ ├── radio-unchecked-active.png │ │ ├── radio-unchecked-active@2.png │ │ ├── radio-unchecked-backdrop.png │ │ ├── radio-unchecked-backdrop@2.png │ │ ├── radio-unchecked-hover.png │ │ ├── radio-unchecked-hover@2.png │ │ ├── radio-unchecked-insensitive-backdrop.png │ │ ├── radio-unchecked-insensitive-backdrop@2.png │ │ ├── radio-unchecked-insensitive.png │ │ ├── radio-unchecked-insensitive@2.png │ │ ├── radio-unchecked.png │ │ ├── radio-unchecked@2.png │ │ ├── radio-unselected-hover@2.png │ │ ├── radio-unselected-insensitive.png │ │ ├── radio-unselected-insensitive@2.png │ │ ├── radio-unselected.svg │ │ ├── radio-unselected@2.png │ │ ├── scale-slider-hover.svg │ │ ├── scale-slider-hover@2.png │ │ ├── scale-slider-insensitive.png │ │ ├── scale-slider-insensitive@2.png │ │ ├── scale-slider.svg │ │ ├── scale-slider@2.png │ │ ├── selected-checkbox-checked.png │ │ ├── selected-checkbox-checked@2.png │ │ ├── selected-checkbox-mixed.png │ │ ├── selected-checkbox-mixed@2.png │ │ ├── selected-checkbox-unchecked.png │ │ ├── selected-checkbox-unchecked@2.png │ │ ├── selected-radio-checked.png │ │ ├── selected-radio-checked@2.png │ │ ├── selected-radio-mixed.png │ │ ├── selected-radio-mixed@2.png │ │ ├── selected-radio-unchecked.png │ │ ├── selected-radio-unchecked@2.png │ │ ├── switch-insensitive.svg │ │ ├── switch-insensitive@2.svg │ │ ├── switch-off.svg │ │ ├── switch-off@2.svg │ │ ├── switch-on.svg │ │ ├── switch-on@2.svg │ │ ├── switch-slider-insensitive.svg │ │ ├── switch-slider-insensitive@2.svg │ │ ├── switch-slider-off.svg │ │ ├── switch-slider-off@2.svg │ │ ├── switch-slider-on.svg │ │ └── switch-slider-on@2.svg │ ├── cinnamon │ │ ├── _colors.scss │ │ ├── _common.scss │ │ ├── _drawing.scss │ │ ├── cinnamon-dark.css │ │ ├── cinnamon-dark.css.map │ │ ├── cinnamon-dark.scss │ │ ├── cinnamon.css │ │ ├── cinnamon.css.map │ │ ├── cinnamon.scss │ │ ├── common-assets │ │ │ ├── menu │ │ │ │ ├── menu-hover.svg │ │ │ │ └── menu-separator.svg │ │ │ ├── misc │ │ │ │ ├── add-workspace-active.svg │ │ │ │ ├── add-workspace-hover.svg │ │ │ │ ├── add-workspace.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ │ ├── calendar-arrow-left.svg │ │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ │ ├── calendar-arrow-right.svg │ │ │ │ ├── close-active.svg │ │ │ │ ├── close-hover.svg │ │ │ │ ├── close.svg │ │ │ │ ├── corner-ripple.svg │ │ │ │ ├── desklet-header.svg │ │ │ │ ├── desklet.svg │ │ │ │ ├── osd.svg │ │ │ │ ├── overview-hover.png │ │ │ │ ├── overview.png │ │ │ │ └── trash-icon.svg │ │ │ ├── panel │ │ │ │ ├── activities-active.svg │ │ │ │ ├── activities.svg │ │ │ │ ├── panel-bottom.svg │ │ │ │ ├── panel-left.svg │ │ │ │ ├── panel-right.svg │ │ │ │ ├── panel-top.svg │ │ │ │ ├── window-list-active-bottom.svg │ │ │ │ ├── window-list-active-left.svg │ │ │ │ ├── window-list-active-right.svg │ │ │ │ └── window-list-active-top.svg │ │ │ └── switch │ │ │ │ ├── switch-off-selected.svg │ │ │ │ └── switch-on-selected.svg │ │ ├── dark-assets │ │ │ ├── checkbox │ │ │ │ ├── checkbox-checked-focused.svg │ │ │ │ ├── checkbox-checked.svg │ │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ │ └── checkbox-unchecked.svg │ │ │ ├── menu │ │ │ │ ├── menu.svg │ │ │ │ └── submenu.svg │ │ │ ├── misc │ │ │ │ ├── button-box.svg │ │ │ │ ├── message.svg │ │ │ │ └── modal.svg │ │ │ └── switch │ │ │ │ ├── switch-off.svg │ │ │ │ └── switch-on.svg │ │ └── thumbnail.png │ ├── gnome-shell │ │ ├── assets │ │ │ ├── calendar-arrow-left.svg │ │ │ ├── calendar-arrow-right.svg │ │ │ ├── calendar-today.svg │ │ │ ├── checkbox-focused.svg │ │ │ ├── checkbox-off-focused.svg │ │ │ ├── checkbox-off.svg │ │ │ ├── checkbox.svg │ │ │ ├── close-window.svg │ │ │ ├── corner-ripple-ltr.png │ │ │ ├── corner-ripple-rtl.png │ │ │ ├── dash-placeholder.svg │ │ │ ├── logged-in-indicator.svg │ │ │ ├── noise-texture.png │ │ │ ├── process-working.svg │ │ │ ├── running-indicator.svg │ │ │ ├── source-button-border.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── ws-switch-arrow-down.png │ │ │ └── ws-switch-arrow-up.png │ │ └── gnome-shell.css │ ├── gtk-2.0 │ │ ├── apps │ │ │ ├── chrome.rc │ │ │ ├── gimp.rc │ │ │ ├── libreoffice.rc │ │ │ ├── terminal.rc │ │ │ ├── thunar.rc │ │ │ └── xfce.rc │ │ ├── assets │ │ │ ├── border.png │ │ │ ├── button-active.png │ │ │ ├── button-hover.png │ │ │ ├── button-insensitive.png │ │ │ ├── button.png │ │ │ ├── checkbox-checked-active.png │ │ │ ├── checkbox-checked-hover.png │ │ │ ├── checkbox-checked-insensitive.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-mixed-active.png │ │ │ ├── checkbox-mixed-hover.png │ │ │ ├── checkbox-mixed-insensitive.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-unchecked-active.png │ │ │ ├── checkbox-unchecked-hover.png │ │ │ ├── checkbox-unchecked-insensitive.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── combo-entry-ltr-button-active.png │ │ │ ├── combo-entry-ltr-button-hover.png │ │ │ ├── combo-entry-ltr-button-insensitive.png │ │ │ ├── combo-entry-ltr-button.png │ │ │ ├── combo-entry-ltr-entry-active.png │ │ │ ├── combo-entry-ltr-entry-insensitive.png │ │ │ ├── combo-entry-ltr-entry.png │ │ │ ├── combo-entry-rtl-button-active.png │ │ │ ├── combo-entry-rtl-button-hover.png │ │ │ ├── combo-entry-rtl-button-insensitive.png │ │ │ ├── combo-entry-rtl-button.png │ │ │ ├── combo-entry-rtl-entry-active.png │ │ │ ├── combo-entry-rtl-entry-insensitive.png │ │ │ ├── combo-entry-rtl-entry.png │ │ │ ├── entry-active.png │ │ │ ├── entry-background-insensitive.png │ │ │ ├── entry-background.png │ │ │ ├── entry-insensitive.png │ │ │ ├── entry.png │ │ │ ├── focus.png │ │ │ ├── frame-inline.png │ │ │ ├── frame-notebook.png │ │ │ ├── frame.png │ │ │ ├── handle-horz.png │ │ │ ├── handle-vert.png │ │ │ ├── handle.png │ │ │ ├── line.png │ │ │ ├── menu-border.png │ │ │ ├── menu-checkbox-checked-hover.png │ │ │ ├── menu-checkbox-checked-insensitive.png │ │ │ ├── menu-checkbox-checked.png │ │ │ ├── menu-checkbox-hover.png │ │ │ ├── menu-checkbox-insensitive.png │ │ │ ├── menu-checkbox-mixed-hover.png │ │ │ ├── menu-checkbox-mixed-insensitive.png │ │ │ ├── menu-checkbox-mixed.png │ │ │ ├── menu-checkbox.png │ │ │ ├── menu-pan-down-insensitive.png │ │ │ ├── menu-pan-down.png │ │ │ ├── menu-pan-left-hover.png │ │ │ ├── menu-pan-left-insensitive.png │ │ │ ├── menu-pan-left.png │ │ │ ├── menu-pan-right-hover.png │ │ │ ├── menu-pan-right-insensitive.png │ │ │ ├── menu-pan-right.png │ │ │ ├── menu-pan-up-insensitive.png │ │ │ ├── menu-pan-up.png │ │ │ ├── menu-radio-checked-hover.png │ │ │ ├── menu-radio-checked-insensitive.png │ │ │ ├── menu-radio-checked.png │ │ │ ├── menu-radio-hover.png │ │ │ ├── menu-radio-insensitive.png │ │ │ ├── menu-radio-mixed-hover.png │ │ │ ├── menu-radio-mixed-insensitive.png │ │ │ ├── menu-radio-mixed.png │ │ │ ├── menu-radio.png │ │ │ ├── menubar-item-active.png │ │ │ ├── notebook-combo-entry-ltr-entry-active.png │ │ │ ├── notebook-combo-entry-ltr-entry-insensitive.png │ │ │ ├── notebook-combo-entry-ltr-entry.png │ │ │ ├── notebook-combo-entry-rtl-entry-active.png │ │ │ ├── notebook-combo-entry-rtl-entry-insensitive.png │ │ │ ├── notebook-combo-entry-rtl-entry.png │ │ │ ├── notebook-entry-active.png │ │ │ ├── notebook-entry-insensitive.png │ │ │ ├── notebook-entry.png │ │ │ ├── pan-down-insensitive.png │ │ │ ├── pan-down.png │ │ │ ├── pan-left-insensitive.png │ │ │ ├── pan-left-semi.png │ │ │ ├── pan-left.png │ │ │ ├── pan-right-insensitive.png │ │ │ ├── pan-right-semi.png │ │ │ ├── pan-right.png │ │ │ ├── pan-up-insensitive.png │ │ │ ├── pan-up.png │ │ │ ├── progressbar-horz-trough.png │ │ │ ├── progressbar-horz.png │ │ │ ├── progressbar-vert-trough.png │ │ │ ├── progressbar-vert.png │ │ │ ├── radio-checked-active.png │ │ │ ├── radio-checked-hover.png │ │ │ ├── radio-checked-insensitive.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-mixed-active.png │ │ │ ├── radio-mixed-hover.png │ │ │ ├── radio-mixed-insensitive.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-unchecked-active.png │ │ │ ├── radio-unchecked-hover.png │ │ │ ├── radio-unchecked-insensitive.png │ │ │ ├── radio-unchecked.png │ │ │ ├── scale-horz-focus.png │ │ │ ├── scale-horz-trough-active.png │ │ │ ├── scale-horz-trough.png │ │ │ ├── scale-slider-active.png │ │ │ ├── scale-slider-hover.png │ │ │ ├── scale-slider-insensitive.png │ │ │ ├── scale-slider.png │ │ │ ├── scale-vert-trough-active.png │ │ │ ├── scale-vert-trough.png │ │ │ ├── scrollbar-horz-slider-active.png │ │ │ ├── scrollbar-horz-slider-hover.png │ │ │ ├── scrollbar-horz-slider.png │ │ │ ├── scrollbar-horz-trough.png │ │ │ ├── scrollbar-vert-slider-active-rtl.png │ │ │ ├── scrollbar-vert-slider-active.png │ │ │ ├── scrollbar-vert-slider-hover-rtl.png │ │ │ ├── scrollbar-vert-slider-hover.png │ │ │ ├── scrollbar-vert-slider-rtl.png │ │ │ ├── scrollbar-vert-slider.png │ │ │ ├── scrollbar-vert-trough-rtl.png │ │ │ ├── scrollbar-vert-trough.png │ │ │ ├── spin-down-insensitive.png │ │ │ ├── spin-down.png │ │ │ ├── spin-ltr-down-active.png │ │ │ ├── spin-ltr-down-hover.png │ │ │ ├── spin-ltr-down-insensitive.png │ │ │ ├── spin-ltr-down.png │ │ │ ├── spin-ltr-up-active.png │ │ │ ├── spin-ltr-up-hover.png │ │ │ ├── spin-ltr-up-insensitive.png │ │ │ ├── spin-ltr-up.png │ │ │ ├── spin-rtl-down-active.png │ │ │ ├── spin-rtl-down-hover.png │ │ │ ├── spin-rtl-down-insensitive.png │ │ │ ├── spin-rtl-down.png │ │ │ ├── spin-rtl-up-active.png │ │ │ ├── spin-rtl-up-hover.png │ │ │ ├── spin-rtl-up-insensitive.png │ │ │ ├── spin-rtl-up.png │ │ │ ├── spin-up-insensitive.png │ │ │ ├── spin-up.png │ │ │ ├── tab-down-active.png │ │ │ ├── tab-down.png │ │ │ ├── tab-horz-gap.png │ │ │ ├── tab-left-active.png │ │ │ ├── tab-left.png │ │ │ ├── tab-right-active.png │ │ │ ├── tab-right.png │ │ │ ├── tab-up-active.png │ │ │ ├── tab-up.png │ │ │ ├── tab-vert-gap.png │ │ │ ├── toolbar-button-active.png │ │ │ ├── toolbar-button-hover.png │ │ │ ├── treeview-pan-down-active.png │ │ │ ├── treeview-pan-down-hover.png │ │ │ ├── treeview-pan-down.png │ │ │ ├── treeview-pan-up-active.png │ │ │ ├── treeview-pan-up-hover.png │ │ │ ├── treeview-pan-up.png │ │ │ ├── treeview-separator-ltr.png │ │ │ └── treeview-separator-rtl.png │ │ ├── gtkrc │ │ └── main.rc │ ├── gtk-3.0 │ │ ├── apps │ │ │ ├── budgie.css │ │ │ ├── corebird.css │ │ │ ├── gala.css │ │ │ ├── gnome-applications.css │ │ │ ├── mate-applications.css │ │ │ ├── solus-applications.css │ │ │ └── unity.css │ │ ├── gtk-widgets-assets.css │ │ ├── gtk-widgets.css │ │ ├── gtk.css │ │ ├── settings.ini │ │ ├── thumbnail.png │ │ └── widgets │ │ │ ├── app-notifications.css │ │ │ ├── assistant.css │ │ │ ├── button.css │ │ │ ├── calendar.css │ │ │ ├── cell-row.css │ │ │ ├── check-radio.css │ │ │ ├── color-chooser.css │ │ │ ├── column-header.css │ │ │ ├── combobox.css │ │ │ ├── content-view.css │ │ │ ├── csd.css │ │ │ ├── dialogs.css │ │ │ ├── entry.css │ │ │ ├── gnome-sofware.css │ │ │ ├── infobar.css │ │ │ ├── list-boxes.css │ │ │ ├── menu.css │ │ │ ├── notebook.css │ │ │ ├── osd.css │ │ │ ├── popover.css │ │ │ ├── progress-scale.css │ │ │ ├── scrollbar.css │ │ │ ├── search-bar.css │ │ │ ├── selection-mode.css │ │ │ ├── separator.css │ │ │ ├── sidebar.css │ │ │ ├── spinbutton.css │ │ │ ├── spinner.css │ │ │ ├── switch.css │ │ │ └── toolbar.css │ ├── gtk-3.20 │ │ ├── gtk-dark.css │ │ └── gtk.css │ ├── gtk-4.0 │ │ ├── gtk-dark.css │ │ └── gtk.css │ ├── index.theme │ ├── metacity-1 │ │ ├── close.png │ │ ├── close_focused.png │ │ ├── close_focused_normal.png │ │ ├── close_focused_prelight.png │ │ ├── close_focused_pressed.png │ │ ├── close_unfocused.png │ │ ├── close_unfocused_prelight.png │ │ ├── close_unfocused_pressed.png │ │ ├── maximize.png │ │ ├── maximize_focused.png │ │ ├── maximize_focused_normal.png │ │ ├── maximize_focused_prelight.png │ │ ├── maximize_focused_pressed.png │ │ ├── maximize_unfocused.png │ │ ├── maximize_unfocused_prelight.png │ │ ├── maximize_unfocused_pressed.png │ │ ├── menu.png │ │ ├── menu_focused.png │ │ ├── menu_focused_normal.png │ │ ├── menu_focused_prelight.png │ │ ├── menu_focused_pressed.png │ │ ├── menu_unfocused.png │ │ ├── menu_unfocused_prelight.png │ │ ├── menu_unfocused_pressed.png │ │ ├── metacity-theme-1.xml │ │ ├── metacity-theme-2.xml │ │ ├── metacity-theme-3.xml │ │ ├── metacity-theme.xml │ │ ├── minimize.png │ │ ├── minimize_focused.png │ │ ├── minimize_focused_normal.png │ │ ├── minimize_focused_prelight.png │ │ ├── minimize_focused_pressed.png │ │ ├── minimize_unfocused.png │ │ ├── minimize_unfocused_prelight.png │ │ ├── minimize_unfocused_pressed.png │ │ ├── shade.png │ │ ├── shade_focused.png │ │ ├── shade_focused_normal.png │ │ ├── shade_focused_prelight.png │ │ ├── shade_focused_pressed.png │ │ ├── shade_unfocused.png │ │ ├── shade_unfocused_prelight.png │ │ ├── shade_unfocused_pressed.png │ │ ├── unmaximize.png │ │ ├── unmaximize_focused.png │ │ ├── unmaximize_focused_normal.png │ │ ├── unmaximize_focused_prelight.png │ │ ├── unmaximize_focused_pressed.png │ │ ├── unmaximize_unfocused.png │ │ ├── unmaximize_unfocused_prelight.png │ │ ├── unmaximize_unfocused_pressed.png │ │ ├── unshade.png │ │ ├── unshade_focused.png │ │ ├── unshade_focused_normal.png │ │ ├── unshade_focused_prelight.png │ │ ├── unshade_focused_pressed.png │ │ ├── unshade_unfocused.png │ │ ├── unshade_unfocused_prelight.png │ │ └── unshade_unfocused_pressed.png │ ├── unity │ │ ├── close.png │ │ ├── close.svg │ │ ├── close_focused_normal.svg │ │ ├── close_focused_prelight.svg │ │ ├── close_focused_pressed.svg │ │ ├── close_unfocused.svg │ │ ├── close_unfocused_prelight.svg │ │ ├── close_unfocused_pressed.svg │ │ ├── maximize.svg │ │ ├── maximize_focused_normal.svg │ │ ├── maximize_focused_prelight.svg │ │ ├── maximize_focused_pressed.svg │ │ ├── maximize_unfocused.svg │ │ ├── maximize_unfocused_prelight.svg │ │ ├── maximize_unfocused_pressed.svg │ │ ├── minimize.svg │ │ ├── minimize_focused_normal.svg │ │ ├── minimize_focused_prelight.svg │ │ ├── minimize_focused_pressed.svg │ │ ├── minimize_unfocused.svg │ │ ├── minimize_unfocused_prelight.svg │ │ ├── minimize_unfocused_pressed.svg │ │ ├── unmaximize.svg │ │ ├── unmaximize_focused_normal.svg │ │ ├── unmaximize_focused_prelight.svg │ │ ├── unmaximize_focused_pressed.svg │ │ ├── unmaximize_unfocused.svg │ │ ├── unmaximize_unfocused_prelight.svg │ │ └── unmaximize_unfocused_pressed.svg │ └── xfwm4 │ │ ├── bottom-active.png │ │ ├── bottom-inactive.png │ │ ├── bottom-left-active.png │ │ ├── bottom-left-inactive.png │ │ ├── bottom-right-active.png │ │ ├── bottom-right-inactive.png │ │ ├── close-active.png │ │ ├── close-inactive.png │ │ ├── close-prelight.png │ │ ├── close-pressed.png │ │ ├── hide-active.png │ │ ├── hide-inactive.png │ │ ├── hide-prelight.png │ │ ├── hide-pressed.png │ │ ├── left-active.png │ │ ├── left-inactive.png │ │ ├── maximize-active.png │ │ ├── maximize-inactive.png │ │ ├── maximize-prelight.png │ │ ├── maximize-pressed.png │ │ ├── menu-active.png │ │ ├── menu-inactive.png │ │ ├── menu-prelight.png │ │ ├── menu-pressed.png │ │ ├── right-active.png │ │ ├── right-inactive.png │ │ ├── shade-active.png │ │ ├── shade-inactive.png │ │ ├── shade-prelight.png │ │ ├── shade-pressed.png │ │ ├── stick-active.png │ │ ├── stick-inactive.png │ │ ├── stick-prelight.png │ │ ├── stick-pressed.png │ │ ├── themerc │ │ ├── title-1-active-shaded.png │ │ ├── title-1-active.png │ │ ├── title-1-inactive.png │ │ ├── title-2-active.png │ │ ├── title-2-inactive.png │ │ ├── title-3-active.png │ │ ├── title-3-inactive.png │ │ ├── title-4-active.png │ │ ├── title-4-inactive.png │ │ ├── title-5-active.png │ │ ├── title-5-inactive.png │ │ ├── top-left-active-shaded.png │ │ ├── top-left-active.png │ │ ├── top-left-inactive.png │ │ ├── top-right-active-shaded.png │ │ ├── top-right-active.png │ │ └── top-right-inactive.png └── Dracula │ ├── LICENSE │ ├── README.md │ ├── assets │ ├── checkbox-checked-active.png │ ├── checkbox-checked-active@2.png │ ├── checkbox-checked-backdrop.png │ ├── checkbox-checked-backdrop@2.png │ ├── checkbox-checked-hover.png │ ├── checkbox-checked-hover@2.png │ ├── checkbox-checked-insensitive-backdrop.png │ ├── checkbox-checked-insensitive-backdrop@2.png │ ├── checkbox-checked-insensitive.png │ ├── checkbox-checked-insensitive@2.png │ ├── checkbox-checked.png │ ├── checkbox-checked@2.png │ ├── checkbox-mixed-active.png │ ├── checkbox-mixed-active@2.png │ ├── checkbox-mixed-backdrop.png │ ├── checkbox-mixed-backdrop@2.png │ ├── checkbox-mixed-hover.png │ ├── checkbox-mixed-hover@2.png │ ├── checkbox-mixed-insensitive-backdrop.png │ ├── checkbox-mixed-insensitive-backdrop@2.png │ ├── checkbox-mixed-insensitive.png │ ├── checkbox-mixed-insensitive@2.png │ ├── checkbox-mixed.png │ ├── checkbox-mixed@2.png │ ├── checkbox-unchecked-active.png │ ├── checkbox-unchecked-active@2.png │ ├── checkbox-unchecked-backdrop.png │ ├── checkbox-unchecked-backdrop@2.png │ ├── checkbox-unchecked-hover.png │ ├── checkbox-unchecked-hover@2.png │ ├── checkbox-unchecked-insensitive-backdrop.png │ ├── checkbox-unchecked-insensitive-backdrop@2.png │ ├── checkbox-unchecked-insensitive.png │ ├── checkbox-unchecked-insensitive@2.png │ ├── checkbox-unchecked.png │ ├── checkbox-unchecked@2.png │ ├── close.png │ ├── close.svg │ ├── close@2.png │ ├── close_prelight.png │ ├── close_prelight.svg │ ├── close_prelight@2.png │ ├── close_pressed.svg │ ├── close_unfocused.png │ ├── close_unfocused.svg │ ├── close_unfocused@2.png │ ├── grid-selection-checked.png │ ├── grid-selection-checked@2.png │ ├── grid-selection-unchecked.png │ ├── grid-selection-unchecked@2.png │ ├── maximize.png │ ├── maximize.svg │ ├── maximize@2.png │ ├── maximize_prelight.png │ ├── maximize_prelight.svg │ ├── maximize_prelight@2.png │ ├── maximize_pressed.svg │ ├── maximize_unfocused.png │ ├── maximize_unfocused.svg │ ├── menuitem-checkbox-checked-hover.png │ ├── menuitem-checkbox-checked-hover@2.png │ ├── menuitem-checkbox-checked-insensitive.png │ ├── menuitem-checkbox-checked-insensitive@2.png │ ├── menuitem-checkbox-checked.png │ ├── menuitem-checkbox-checked@2.png │ ├── menuitem-checkbox-mixed-hover.png │ ├── menuitem-checkbox-mixed-hover@2.png │ ├── menuitem-checkbox-mixed-insensitive.png │ ├── menuitem-checkbox-mixed-insensitive@2.png │ ├── menuitem-checkbox-mixed-selected.png │ ├── menuitem-checkbox-mixed-selected@2.png │ ├── menuitem-checkbox-mixed.png │ ├── menuitem-checkbox-mixed@2.png │ ├── menuitem-checkbox-unchecked.png │ ├── menuitem-checkbox-unchecked@2.png │ ├── menuitem-radio-checked-hover.png │ ├── menuitem-radio-checked-hover@2.png │ ├── menuitem-radio-checked-insensitive.png │ ├── menuitem-radio-checked-insensitive@2.png │ ├── menuitem-radio-checked.png │ ├── menuitem-radio-checked@2.png │ ├── min.png │ ├── min.svg │ ├── min@2.png │ ├── min_prelight.png │ ├── min_prelight.svg │ ├── min_prelight@2.png │ ├── min_pressed.svg │ ├── min_unfocused.png │ ├── min_unfocused.svg │ ├── pane-handle-vertical.png │ ├── pane-handle-vertical@2.png │ ├── pane-handle.png │ ├── pane-handle@2.png │ ├── radio-checked-active.png │ ├── radio-checked-active@2.png │ ├── radio-checked-backdrop.png │ ├── radio-checked-backdrop@2.png │ ├── radio-checked-hover.png │ ├── radio-checked-hover@2.png │ ├── radio-checked-insensitive-backdrop.png │ ├── radio-checked-insensitive-backdrop@2.png │ ├── radio-checked-insensitive.png │ ├── radio-checked-insensitive@2.png │ ├── radio-checked.png │ ├── radio-checked@2.png │ ├── radio-mixed-active.png │ ├── radio-mixed-active@2.png │ ├── radio-mixed-backdrop.png │ ├── radio-mixed-backdrop@2.png │ ├── radio-mixed-hover.png │ ├── radio-mixed-hover@2.png │ ├── radio-mixed-insensitive-backdrop.png │ ├── radio-mixed-insensitive-backdrop@2.png │ ├── radio-mixed-insensitive.png │ ├── radio-mixed-insensitive@2.png │ ├── radio-mixed.png │ ├── radio-mixed@2.png │ ├── radio-selected-insensitive.png │ ├── radio-selected-insensitive@2.png │ ├── radio-selected@2.png │ ├── radio-unchecked-active.png │ ├── radio-unchecked-active@2.png │ ├── radio-unchecked-backdrop.png │ ├── radio-unchecked-backdrop@2.png │ ├── radio-unchecked-hover.png │ ├── radio-unchecked-hover@2.png │ ├── radio-unchecked-insensitive-backdrop.png │ ├── radio-unchecked-insensitive-backdrop@2.png │ ├── radio-unchecked-insensitive.png │ ├── radio-unchecked-insensitive@2.png │ ├── radio-unchecked.png │ ├── radio-unchecked@2.png │ ├── radio-unselected-hover@2.png │ ├── radio-unselected-insensitive.png │ ├── radio-unselected-insensitive@2.png │ ├── radio-unselected.svg │ ├── radio-unselected@2.png │ ├── scale-slider-hover.svg │ ├── scale-slider-hover@2.png │ ├── scale-slider-insensitive.png │ ├── scale-slider-insensitive@2.png │ ├── scale-slider.svg │ ├── scale-slider@2.png │ ├── selected-checkbox-checked.png │ ├── selected-checkbox-checked@2.png │ ├── selected-checkbox-mixed.png │ ├── selected-checkbox-mixed@2.png │ ├── selected-checkbox-unchecked.png │ ├── selected-checkbox-unchecked@2.png │ ├── selected-radio-checked.png │ ├── selected-radio-checked@2.png │ ├── selected-radio-mixed.png │ ├── selected-radio-mixed@2.png │ ├── selected-radio-unchecked.png │ ├── selected-radio-unchecked@2.png │ ├── switch-insensitive.svg │ ├── switch-insensitive@2.svg │ ├── switch-off.svg │ ├── switch-off@2.svg │ ├── switch-on.svg │ ├── switch-on@2.svg │ ├── switch-slider-insensitive.svg │ ├── switch-slider-insensitive@2.svg │ ├── switch-slider-off.svg │ ├── switch-slider-off@2.svg │ ├── switch-slider-on.svg │ └── switch-slider-on@2.svg │ ├── cinnamon │ ├── _colors.scss │ ├── _common.scss │ ├── _drawing.scss │ ├── cinnamon-dark.css │ ├── cinnamon-dark.css.map │ ├── cinnamon-dark.scss │ ├── cinnamon.css │ ├── cinnamon.css.map │ ├── cinnamon.scss │ ├── common-assets │ │ ├── menu │ │ │ ├── menu-hover.svg │ │ │ └── menu-separator.svg │ │ ├── misc │ │ │ ├── add-workspace-active.svg │ │ │ ├── add-workspace-hover.svg │ │ │ ├── add-workspace.svg │ │ │ ├── bg.svg │ │ │ ├── calendar-arrow-left-hover.svg │ │ │ ├── calendar-arrow-left.svg │ │ │ ├── calendar-arrow-right-hover.svg │ │ │ ├── calendar-arrow-right.svg │ │ │ ├── close-active.svg │ │ │ ├── close-hover.svg │ │ │ ├── close.svg │ │ │ ├── corner-ripple.svg │ │ │ ├── desklet-header.svg │ │ │ ├── desklet.svg │ │ │ ├── osd.svg │ │ │ ├── overview-hover.png │ │ │ ├── overview.png │ │ │ └── trash-icon.svg │ │ ├── panel │ │ │ ├── activities-active.svg │ │ │ ├── activities.svg │ │ │ ├── panel-bottom.svg │ │ │ ├── panel-left.svg │ │ │ ├── panel-right.svg │ │ │ ├── panel-top.svg │ │ │ ├── window-list-active-bottom.svg │ │ │ ├── window-list-active-left.svg │ │ │ ├── window-list-active-right.svg │ │ │ └── window-list-active-top.svg │ │ └── switch │ │ │ ├── switch-off-selected.svg │ │ │ └── switch-on-selected.svg │ ├── dark-assets │ │ ├── checkbox │ │ │ ├── checkbox-checked-focused.svg │ │ │ ├── checkbox-checked.svg │ │ │ ├── checkbox-unchecked-focused.svg │ │ │ └── checkbox-unchecked.svg │ │ ├── menu │ │ │ ├── menu.svg │ │ │ └── submenu.svg │ │ ├── misc │ │ │ ├── button-box.svg │ │ │ ├── message.svg │ │ │ └── modal.svg │ │ └── switch │ │ │ ├── switch-off.svg │ │ │ └── switch-on.svg │ └── thumbnail.png │ ├── gnome-shell │ ├── assets │ │ ├── calendar-arrow-left.svg │ │ ├── calendar-arrow-right.svg │ │ ├── calendar-today.svg │ │ ├── checkbox-focused.svg │ │ ├── checkbox-off-focused.svg │ │ ├── checkbox-off.svg │ │ ├── checkbox.svg │ │ ├── close-window.svg │ │ ├── corner-ripple-ltr.png │ │ ├── corner-ripple-rtl.png │ │ ├── dash-placeholder.svg │ │ ├── logged-in-indicator.svg │ │ ├── noise-texture.png │ │ ├── process-working.svg │ │ ├── running-indicator.svg │ │ ├── source-button-border.svg │ │ ├── toggle-off.svg │ │ ├── toggle-on.svg │ │ ├── ws-switch-arrow-down.png │ │ └── ws-switch-arrow-up.png │ └── gnome-shell.css │ ├── gtk-2.0 │ ├── apps │ │ ├── chrome.rc │ │ ├── gimp.rc │ │ ├── libreoffice.rc │ │ ├── terminal.rc │ │ ├── thunar.rc │ │ └── xfce.rc │ ├── assets │ │ ├── border.png │ │ ├── button-active.png │ │ ├── button-hover.png │ │ ├── button-insensitive.png │ │ ├── button.png │ │ ├── checkbox-checked-active.png │ │ ├── checkbox-checked-hover.png │ │ ├── checkbox-checked-insensitive.png │ │ ├── checkbox-checked.png │ │ ├── checkbox-mixed-active.png │ │ ├── checkbox-mixed-hover.png │ │ ├── checkbox-mixed-insensitive.png │ │ ├── checkbox-mixed.png │ │ ├── checkbox-unchecked-active.png │ │ ├── checkbox-unchecked-hover.png │ │ ├── checkbox-unchecked-insensitive.png │ │ ├── checkbox-unchecked.png │ │ ├── combo-entry-ltr-button-active.png │ │ ├── combo-entry-ltr-button-hover.png │ │ ├── combo-entry-ltr-button-insensitive.png │ │ ├── combo-entry-ltr-button.png │ │ ├── combo-entry-ltr-entry-active.png │ │ ├── combo-entry-ltr-entry-insensitive.png │ │ ├── combo-entry-ltr-entry.png │ │ ├── combo-entry-rtl-button-active.png │ │ ├── combo-entry-rtl-button-hover.png │ │ ├── combo-entry-rtl-button-insensitive.png │ │ ├── combo-entry-rtl-button.png │ │ ├── combo-entry-rtl-entry-active.png │ │ ├── combo-entry-rtl-entry-insensitive.png │ │ ├── combo-entry-rtl-entry.png │ │ ├── entry-active.png │ │ ├── entry-background-insensitive.png │ │ ├── entry-background.png │ │ ├── entry-insensitive.png │ │ ├── entry.png │ │ ├── focus.png │ │ ├── frame-inline.png │ │ ├── frame-notebook.png │ │ ├── frame.png │ │ ├── handle-horz.png │ │ ├── handle-vert.png │ │ ├── handle.png │ │ ├── line.png │ │ ├── menu-border.png │ │ ├── menu-checkbox-checked-hover.png │ │ ├── menu-checkbox-checked-insensitive.png │ │ ├── menu-checkbox-checked.png │ │ ├── menu-checkbox-hover.png │ │ ├── menu-checkbox-insensitive.png │ │ ├── menu-checkbox-mixed-hover.png │ │ ├── menu-checkbox-mixed-insensitive.png │ │ ├── menu-checkbox-mixed.png │ │ ├── menu-checkbox.png │ │ ├── menu-pan-down-insensitive.png │ │ ├── menu-pan-down.png │ │ ├── menu-pan-left-hover.png │ │ ├── menu-pan-left-insensitive.png │ │ ├── menu-pan-left.png │ │ ├── menu-pan-right-hover.png │ │ ├── menu-pan-right-insensitive.png │ │ ├── menu-pan-right.png │ │ ├── menu-pan-up-insensitive.png │ │ ├── menu-pan-up.png │ │ ├── menu-radio-checked-hover.png │ │ ├── menu-radio-checked-insensitive.png │ │ ├── menu-radio-checked.png │ │ ├── menu-radio-hover.png │ │ ├── menu-radio-insensitive.png │ │ ├── menu-radio-mixed-hover.png │ │ ├── menu-radio-mixed-insensitive.png │ │ ├── menu-radio-mixed.png │ │ ├── menu-radio.png │ │ ├── menubar-item-active.png │ │ ├── notebook-combo-entry-ltr-entry-active.png │ │ ├── notebook-combo-entry-ltr-entry-insensitive.png │ │ ├── notebook-combo-entry-ltr-entry.png │ │ ├── notebook-combo-entry-rtl-entry-active.png │ │ ├── notebook-combo-entry-rtl-entry-insensitive.png │ │ ├── notebook-combo-entry-rtl-entry.png │ │ ├── notebook-entry-active.png │ │ ├── notebook-entry-insensitive.png │ │ ├── notebook-entry.png │ │ ├── pan-down-insensitive.png │ │ ├── pan-down.png │ │ ├── pan-left-insensitive.png │ │ ├── pan-left-semi.png │ │ ├── pan-left.png │ │ ├── pan-right-insensitive.png │ │ ├── pan-right-semi.png │ │ ├── pan-right.png │ │ ├── pan-up-insensitive.png │ │ ├── pan-up.png │ │ ├── progressbar-horz-trough.png │ │ ├── progressbar-horz.png │ │ ├── progressbar-vert-trough.png │ │ ├── progressbar-vert.png │ │ ├── radio-checked-active.png │ │ ├── radio-checked-hover.png │ │ ├── radio-checked-insensitive.png │ │ ├── radio-checked.png │ │ ├── radio-mixed-active.png │ │ ├── radio-mixed-hover.png │ │ ├── radio-mixed-insensitive.png │ │ ├── radio-mixed.png │ │ ├── radio-unchecked-active.png │ │ ├── radio-unchecked-hover.png │ │ ├── radio-unchecked-insensitive.png │ │ ├── radio-unchecked.png │ │ ├── scale-horz-focus.png │ │ ├── scale-horz-trough-active.png │ │ ├── scale-horz-trough.png │ │ ├── scale-slider-active.png │ │ ├── scale-slider-hover.png │ │ ├── scale-slider-insensitive.png │ │ ├── scale-slider.png │ │ ├── scale-vert-trough-active.png │ │ ├── scale-vert-trough.png │ │ ├── scrollbar-horz-slider-active.png │ │ ├── scrollbar-horz-slider-hover.png │ │ ├── scrollbar-horz-slider.png │ │ ├── scrollbar-horz-trough.png │ │ ├── scrollbar-vert-slider-active-rtl.png │ │ ├── scrollbar-vert-slider-active.png │ │ ├── scrollbar-vert-slider-hover-rtl.png │ │ ├── scrollbar-vert-slider-hover.png │ │ ├── scrollbar-vert-slider-rtl.png │ │ ├── scrollbar-vert-slider.png │ │ ├── scrollbar-vert-trough-rtl.png │ │ ├── scrollbar-vert-trough.png │ │ ├── spin-down-insensitive.png │ │ ├── spin-down.png │ │ ├── spin-ltr-down-active.png │ │ ├── spin-ltr-down-hover.png │ │ ├── spin-ltr-down-insensitive.png │ │ ├── spin-ltr-down.png │ │ ├── spin-ltr-up-active.png │ │ ├── spin-ltr-up-hover.png │ │ ├── spin-ltr-up-insensitive.png │ │ ├── spin-ltr-up.png │ │ ├── spin-rtl-down-active.png │ │ ├── spin-rtl-down-hover.png │ │ ├── spin-rtl-down-insensitive.png │ │ ├── spin-rtl-down.png │ │ ├── spin-rtl-up-active.png │ │ ├── spin-rtl-up-hover.png │ │ ├── spin-rtl-up-insensitive.png │ │ ├── spin-rtl-up.png │ │ ├── spin-up-insensitive.png │ │ ├── spin-up.png │ │ ├── tab-down-active.png │ │ ├── tab-down.png │ │ ├── tab-horz-gap.png │ │ ├── tab-left-active.png │ │ ├── tab-left.png │ │ ├── tab-right-active.png │ │ ├── tab-right.png │ │ ├── tab-up-active.png │ │ ├── tab-up.png │ │ ├── tab-vert-gap.png │ │ ├── toolbar-button-active.png │ │ ├── toolbar-button-hover.png │ │ ├── treeview-pan-down-active.png │ │ ├── treeview-pan-down-hover.png │ │ ├── treeview-pan-down.png │ │ ├── treeview-pan-up-active.png │ │ ├── treeview-pan-up-hover.png │ │ ├── treeview-pan-up.png │ │ ├── treeview-separator-ltr.png │ │ └── treeview-separator-rtl.png │ ├── gtkrc │ └── main.rc │ ├── gtk-3.0 │ ├── apps │ │ ├── budgie.css │ │ ├── corebird.css │ │ ├── gala.css │ │ ├── gnome-applications.css │ │ ├── mate-applications.css │ │ ├── solus-applications.css │ │ └── unity.css │ ├── gtk-widgets-assets.css │ ├── gtk-widgets.css │ ├── gtk.css │ ├── settings.ini │ ├── thumbnail.png │ └── widgets │ │ ├── app-notifications.css │ │ ├── assistant.css │ │ ├── button.css │ │ ├── calendar.css │ │ ├── cell-row.css │ │ ├── check-radio.css │ │ ├── color-chooser.css │ │ ├── column-header.css │ │ ├── combobox.css │ │ ├── content-view.css │ │ ├── csd.css │ │ ├── dialogs.css │ │ ├── entry.css │ │ ├── gnome-sofware.css │ │ ├── infobar.css │ │ ├── list-boxes.css │ │ ├── menu.css │ │ ├── notebook.css │ │ ├── osd.css │ │ ├── popover.css │ │ ├── progress-scale.css │ │ ├── scrollbar.css │ │ ├── search-bar.css │ │ ├── selection-mode.css │ │ ├── separator.css │ │ ├── sidebar.css │ │ ├── spinbutton.css │ │ ├── spinner.css │ │ ├── switch.css │ │ └── toolbar.css │ ├── gtk-3.20 │ ├── gtk-dark.css │ └── gtk.css │ ├── gtk-4.0 │ ├── gtk-dark.css │ └── gtk.css │ ├── index.theme │ ├── metacity-1 │ ├── close.png │ ├── close_focused.png │ ├── close_focused_normal.png │ ├── close_focused_prelight.png │ ├── close_focused_pressed.png │ ├── close_unfocused.png │ ├── close_unfocused_prelight.png │ ├── close_unfocused_pressed.png │ ├── maximize.png │ ├── maximize_focused.png │ ├── maximize_focused_normal.png │ ├── maximize_focused_prelight.png │ ├── maximize_focused_pressed.png │ ├── maximize_unfocused.png │ ├── maximize_unfocused_prelight.png │ ├── maximize_unfocused_pressed.png │ ├── menu.png │ ├── menu_focused.png │ ├── menu_focused_normal.png │ ├── menu_focused_prelight.png │ ├── menu_focused_pressed.png │ ├── menu_unfocused.png │ ├── menu_unfocused_prelight.png │ ├── menu_unfocused_pressed.png │ ├── metacity-theme-1.xml │ ├── metacity-theme-2.xml │ ├── metacity-theme-3.xml │ ├── metacity-theme.xml │ ├── minimize.png │ ├── minimize_focused.png │ ├── minimize_focused_normal.png │ ├── minimize_focused_prelight.png │ ├── minimize_focused_pressed.png │ ├── minimize_unfocused.png │ ├── minimize_unfocused_prelight.png │ ├── minimize_unfocused_pressed.png │ ├── shade.png │ ├── shade_focused.png │ ├── shade_focused_normal.png │ ├── shade_focused_prelight.png │ ├── shade_focused_pressed.png │ ├── shade_unfocused.png │ ├── shade_unfocused_prelight.png │ ├── shade_unfocused_pressed.png │ ├── unmaximize.png │ ├── unmaximize_focused.png │ ├── unmaximize_focused_normal.png │ ├── unmaximize_focused_prelight.png │ ├── unmaximize_focused_pressed.png │ ├── unmaximize_unfocused.png │ ├── unmaximize_unfocused_prelight.png │ ├── unmaximize_unfocused_pressed.png │ ├── unshade.png │ ├── unshade_focused.png │ ├── unshade_focused_normal.png │ ├── unshade_focused_prelight.png │ ├── unshade_focused_pressed.png │ ├── unshade_unfocused.png │ ├── unshade_unfocused_prelight.png │ └── unshade_unfocused_pressed.png │ ├── unity │ ├── close.png │ ├── close.svg │ ├── close_focused_normal.svg │ ├── close_focused_prelight.svg │ ├── close_focused_pressed.svg │ ├── close_unfocused.svg │ ├── close_unfocused_prelight.svg │ ├── close_unfocused_pressed.svg │ ├── maximize.svg │ ├── maximize_focused_normal.svg │ ├── maximize_focused_prelight.svg │ ├── maximize_focused_pressed.svg │ ├── maximize_unfocused.svg │ ├── maximize_unfocused_prelight.svg │ ├── maximize_unfocused_pressed.svg │ ├── minimize.svg │ ├── minimize_focused_normal.svg │ ├── minimize_focused_prelight.svg │ ├── minimize_focused_pressed.svg │ ├── minimize_unfocused.svg │ ├── minimize_unfocused_prelight.svg │ ├── minimize_unfocused_pressed.svg │ ├── unmaximize.svg │ ├── unmaximize_focused_normal.svg │ ├── unmaximize_focused_prelight.svg │ ├── unmaximize_focused_pressed.svg │ ├── unmaximize_unfocused.svg │ ├── unmaximize_unfocused_prelight.svg │ └── unmaximize_unfocused_pressed.svg │ └── xfwm4 │ ├── bottom-active.png │ ├── bottom-inactive.png │ ├── bottom-left-active.png │ ├── bottom-left-inactive.png │ ├── bottom-right-active.png │ ├── bottom-right-inactive.png │ ├── close-active.png │ ├── close-inactive.png │ ├── close-prelight.png │ ├── close-pressed.png │ ├── hide-active.png │ ├── hide-inactive.png │ ├── hide-prelight.png │ ├── hide-pressed.png │ ├── left-active.png │ ├── left-inactive.png │ ├── maximize-active.png │ ├── maximize-inactive.png │ ├── maximize-prelight.png │ ├── maximize-pressed.png │ ├── menu-active.png │ ├── menu-inactive.png │ ├── menu-prelight.png │ ├── menu-pressed.png │ ├── right-active.png │ ├── right-inactive.png │ ├── shade-active.png │ ├── shade-inactive.png │ ├── shade-prelight.png │ ├── shade-pressed.png │ ├── stick-active.png │ ├── stick-inactive.png │ ├── stick-prelight.png │ ├── stick-pressed.png │ ├── themerc │ ├── title-1-active-shaded.png │ ├── title-1-active.png │ ├── title-1-inactive.png │ ├── title-2-active.png │ ├── title-2-inactive.png │ ├── title-3-active.png │ ├── title-3-inactive.png │ ├── title-4-active.png │ ├── title-4-inactive.png │ ├── title-5-active.png │ ├── title-5-inactive.png │ ├── top-left-active-shaded.png │ ├── top-left-active.png │ ├── top-left-inactive.png │ ├── top-right-active-shaded.png │ ├── top-right-active.png │ └── top-right-inactive.png └── xinitrc /Builder/creators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zproger/bspwm-dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zproger/bspwm-dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zproger/bspwm-dotfiles/HEAD/Xresources -------------------------------------------------------------------------------- /bin/bible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zproger/bspwm-dotfiles/HEAD/bin/bible -------------------------------------------------------------------------------- /bin/timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zproger/bspwm-dotfiles/HEAD/bin/timer -------------------------------------------------------------------------------- /bin/volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zproger/bspwm-dotfiles/HEAD/bin/volume -------------------------------------------------------------------------------- /bin/weather2: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl "https://wttr.in/Berlin" 4 | -------------------------------------------------------------------------------- /config/nvim/lua/plugins/colorizer.lua: -------------------------------------------------------------------------------- 1 | 2 | require'colorizer'.setup() 3 | -------------------------------------------------------------------------------- /config/nvim/lua/plugins/nvim-tree.lua: -------------------------------------------------------------------------------- 1 | 2 | require("nvim-tree").setup() 3 | -------------------------------------------------------------------------------- /config/ranger/colorschemes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zproger/bspwm-dotfiles/HEAD/gtkrc-2.0 -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/circle: -------------------------------------------------------------------------------- 1 | not-allowed -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/closedhand: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/cross: -------------------------------------------------------------------------------- 1 | crosshair -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/crossed_circle: -------------------------------------------------------------------------------- 1 | not-allowed -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/dnd-copy: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/dnd-none: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/ew-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/forbidden: -------------------------------------------------------------------------------- 1 | no-drop -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/grab: -------------------------------------------------------------------------------- 1 | openhand -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/grabbing: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/half-busy: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/hand1: -------------------------------------------------------------------------------- 1 | pointer -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/hand2: -------------------------------------------------------------------------------- 1 | pointer -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/ibeam: -------------------------------------------------------------------------------- 1 | text -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/left_ptr: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/left_ptr_help: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/left_ptr_watch: -------------------------------------------------------------------------------- 1 | progress -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/link: -------------------------------------------------------------------------------- 1 | alias -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/move: -------------------------------------------------------------------------------- 1 | dnd-move -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/ne-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/nesw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/ns-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/nw-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/nwse-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/plus: -------------------------------------------------------------------------------- 1 | cell -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/pointing_hand: -------------------------------------------------------------------------------- 1 | pointer -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/se-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/size-bdiag: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/size-fdiag: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/size-hor: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/size-ver: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/split_h: -------------------------------------------------------------------------------- 1 | col-resize -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/split_v: -------------------------------------------------------------------------------- 1 | row-resize -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/sw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/top_left_arrow: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /local/share/icons/Dracula-cursors/cursors/xterm: -------------------------------------------------------------------------------- 1 | text -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/apps/starred.svg: -------------------------------------------------------------------------------- 1 | applications-other.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/blueman-cellular.svg: -------------------------------------------------------------------------------- 1 | phone.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/blueman-scanner.svg: -------------------------------------------------------------------------------- 1 | scanner.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/blueman.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/camera.svg: -------------------------------------------------------------------------------- 1 | camera-photo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/display.svg: -------------------------------------------------------------------------------- 1 | computer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/joystick.svg: -------------------------------------------------------------------------------- 1 | input-gaming.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/kdeconnect.svg: -------------------------------------------------------------------------------- 1 | smartphone.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/keyboard.svg: -------------------------------------------------------------------------------- 1 | input-keyboard.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/laptop.svg: -------------------------------------------------------------------------------- 1 | computer-laptop.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/media-cdr.svg: -------------------------------------------------------------------------------- 1 | media-optical.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/media-dvd.svg: -------------------------------------------------------------------------------- 1 | media-optical.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/modem.svg: -------------------------------------------------------------------------------- 1 | network-modem.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/smartphone.svg: -------------------------------------------------------------------------------- 1 | phone.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/stock_cell-phone.svg: -------------------------------------------------------------------------------- 1 | phone.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/system.svg: -------------------------------------------------------------------------------- 1 | computer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/devices/video-display.svg: -------------------------------------------------------------------------------- 1 | computer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/7zip.svg: -------------------------------------------------------------------------------- 1 | application-7zip.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/application-dwg.svg: -------------------------------------------------------------------------------- 1 | model.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/application-dxf.svg: -------------------------------------------------------------------------------- 1 | model.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/ascii.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/cad.svg: -------------------------------------------------------------------------------- 1 | ./vector.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/divx.svg: -------------------------------------------------------------------------------- 1 | video-x-generic.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/drawing-dwg.svg: -------------------------------------------------------------------------------- 1 | model.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/font-x-generic.svg: -------------------------------------------------------------------------------- 1 | font.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/font_bitmap.svg: -------------------------------------------------------------------------------- 1 | font.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/font_truetype.svg: -------------------------------------------------------------------------------- 1 | font.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/font_type1.svg: -------------------------------------------------------------------------------- 1 | font.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/gif.svg: -------------------------------------------------------------------------------- 1 | image-gif.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/gtk-file.svg: -------------------------------------------------------------------------------- 1 | empty.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/image-ico.svg: -------------------------------------------------------------------------------- 1 | image-x-ico.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/image-x-dwg.svg: -------------------------------------------------------------------------------- 1 | model.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/jpeg.svg: -------------------------------------------------------------------------------- 1 | image-jpeg.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/jpg.svg: -------------------------------------------------------------------------------- 1 | image-jpeg.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/misc.svg: -------------------------------------------------------------------------------- 1 | application-text.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/model-fcstd.svg: -------------------------------------------------------------------------------- 1 | model.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/model-vnd.dwf.svg: -------------------------------------------------------------------------------- 1 | model.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/model-vrml.svg: -------------------------------------------------------------------------------- 1 | model.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/model-x3d+vrml.svg: -------------------------------------------------------------------------------- 1 | model.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/model-x3d+xml.svg: -------------------------------------------------------------------------------- 1 | model.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/model-x3d.svg: -------------------------------------------------------------------------------- 1 | model.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/music.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/odf.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/rar.svg: -------------------------------------------------------------------------------- 1 | application-x-rar.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/raw.svg: -------------------------------------------------------------------------------- 1 | image-x-generic.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/rpm.svg: -------------------------------------------------------------------------------- 1 | application-x-rpm.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/sound.svg: -------------------------------------------------------------------------------- 1 | application-ogg.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/tar.svg: -------------------------------------------------------------------------------- 1 | application-x-arc.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-c.svg: -------------------------------------------------------------------------------- 1 | text-x-c.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-htmlh.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-mathml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-mht.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-rdf+xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-rdf.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-sgml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-sqml.svg: -------------------------------------------------------------------------------- 1 | text-plain.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-vnd.abc.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-x-c++.svg: -------------------------------------------------------------------------------- 1 | text-x-cpp.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-x-c.svg: -------------------------------------------------------------------------------- 1 | text-x-csrc.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-x-css.svg: -------------------------------------------------------------------------------- 1 | text-css.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-x-preview.svg: -------------------------------------------------------------------------------- 1 | empty.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-x-rust.svg: -------------------------------------------------------------------------------- 1 | text-rust.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text-x-xslfo.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/text2.svg: -------------------------------------------------------------------------------- 1 | text-x-generic.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/tgz.svg: -------------------------------------------------------------------------------- 1 | package-x-generic.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/txt.svg: -------------------------------------------------------------------------------- 1 | application-rtf.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/txt2.svg: -------------------------------------------------------------------------------- 1 | application-rtf.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/uri-mmsu.svg: -------------------------------------------------------------------------------- 1 | ./video.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/vcard.svg: -------------------------------------------------------------------------------- 1 | text-x-vcard.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/video-quicktime.svg: -------------------------------------------------------------------------------- 1 | video.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/video-x-mng.svg: -------------------------------------------------------------------------------- 1 | image-png.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/viewbib.svg: -------------------------------------------------------------------------------- 1 | text-x-tex.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/viewhtml.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/www.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/mimetypes/x-world-x-3dmf.svg: -------------------------------------------------------------------------------- 1 | model.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/albert-panel.svg: -------------------------------------------------------------------------------- 1 | albert-tray.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/battery-full.svg: -------------------------------------------------------------------------------- 1 | battery-100.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/battery-good.svg: -------------------------------------------------------------------------------- 1 | battery-080.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/battery-low.svg: -------------------------------------------------------------------------------- 1 | battery-020.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/battery_full.svg: -------------------------------------------------------------------------------- 1 | battery-100.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/blueman.svg: -------------------------------------------------------------------------------- 1 | bluetooth-active.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/capslock-on.svg: -------------------------------------------------------------------------------- 1 | caps-lock-on.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/clipman.svg: -------------------------------------------------------------------------------- 1 | diodon-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/diodon-panel.svg: -------------------------------------------------------------------------------- 1 | clipboard.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/empathy-away.svg: -------------------------------------------------------------------------------- 1 | user-away.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/empathy-busy.svg: -------------------------------------------------------------------------------- 1 | user-busy.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/glipper.svg: -------------------------------------------------------------------------------- 1 | clipboard.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/gnote-panel.svg: -------------------------------------------------------------------------------- 1 | notes-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/gpaste.svg: -------------------------------------------------------------------------------- 1 | clipboard.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/gpm-ups-000.svg: -------------------------------------------------------------------------------- 1 | battery-empty.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/gpm-ups-040.svg: -------------------------------------------------------------------------------- 1 | battery-low.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/gpm-ups-080.svg: -------------------------------------------------------------------------------- 1 | battery-good.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/gpm-ups-100.svg: -------------------------------------------------------------------------------- 1 | battery-full.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/gsd-xrandr.svg: -------------------------------------------------------------------------------- 1 | disper-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/insync-share.svg: -------------------------------------------------------------------------------- 1 | insync-feed.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/mic-off.svg: -------------------------------------------------------------------------------- 1 | mic-volume-muted.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/msd-xrandr.svg: -------------------------------------------------------------------------------- 1 | disper-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/nm-tech-lte.svg: -------------------------------------------------------------------------------- 1 | nm-tech-4g.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/numlock-off.svg: -------------------------------------------------------------------------------- 1 | num-lock-off.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/numlock-on.svg: -------------------------------------------------------------------------------- 1 | num-lock-on.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/odrive-tray.svg: -------------------------------------------------------------------------------- 1 | grive-app-ind.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/scc-alive.svg: -------------------------------------------------------------------------------- 1 | qjoypad-tray.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/todo-indicator.svg: -------------------------------------------------------------------------------- 1 | gtg-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/tomboy-panel.svg: -------------------------------------------------------------------------------- 1 | notes-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/tray-offline.svg: -------------------------------------------------------------------------------- 1 | user-offline.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/user-away-panel.svg: -------------------------------------------------------------------------------- 1 | user-away.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/user-busy-panel.svg: -------------------------------------------------------------------------------- 1 | user-busy.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/user-idle-panel.svg: -------------------------------------------------------------------------------- 1 | user-idle.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/weather-mist.svg: -------------------------------------------------------------------------------- 1 | weather-fog.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/wired.svg: -------------------------------------------------------------------------------- 1 | network-wired.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/xfpm-ups-040.svg: -------------------------------------------------------------------------------- 1 | battery-low.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/xfpm-ups-080.svg: -------------------------------------------------------------------------------- 1 | battery-good.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/xfpm-ups-100.svg: -------------------------------------------------------------------------------- 1 | battery-full.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/yd-busy2.svg: -------------------------------------------------------------------------------- 1 | yd-ind-idle.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/yd-busy3.svg: -------------------------------------------------------------------------------- 1 | yd-busy1.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/yd-busy4.svg: -------------------------------------------------------------------------------- 1 | yd-ind-idle.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/yd-busy5.svg: -------------------------------------------------------------------------------- 1 | yd-busy1.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/panel/zeal-panel.svg: -------------------------------------------------------------------------------- 1 | zeal-tray.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16/places/folder-symbolic.svg: -------------------------------------------------------------------------------- 1 | folder.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/16@2x: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/devices/display.svg: -------------------------------------------------------------------------------- 1 | computer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/devices/laptop.svg: -------------------------------------------------------------------------------- 1 | computer-laptop.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/devices/video-display.svg: -------------------------------------------------------------------------------- 1 | computer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/mimetypes/image-ico.svg: -------------------------------------------------------------------------------- 1 | image-x-ico.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/mimetypes/odf.svg: -------------------------------------------------------------------------------- 1 | x-office-document.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/mimetypes/text-mathml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/mimetypes/text-rdf+xml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/mimetypes/text-rdf.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/mimetypes/text-sgml.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/mimetypes/text-vnd.abc.svg: -------------------------------------------------------------------------------- 1 | text-rtf.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/mimetypes/text-x-rust.svg: -------------------------------------------------------------------------------- 1 | text-rust.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/mimetypes/text-x-xslfo.svg: -------------------------------------------------------------------------------- 1 | text-xml.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/mimetypes/video-x-mng.svg: -------------------------------------------------------------------------------- 1 | image-png.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/mimetypes/viewbib.svg: -------------------------------------------------------------------------------- 1 | text-x-tex.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/mimetypes/viewhtml.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/albert-panel.svg: -------------------------------------------------------------------------------- 1 | albert-tray.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/battery-full.svg: -------------------------------------------------------------------------------- 1 | battery-100.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/battery-good.svg: -------------------------------------------------------------------------------- 1 | battery-080.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/battery-low.svg: -------------------------------------------------------------------------------- 1 | battery-020.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/battery_full.svg: -------------------------------------------------------------------------------- 1 | battery-100.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/blueman.svg: -------------------------------------------------------------------------------- 1 | bluetooth-active.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/capslock-on.svg: -------------------------------------------------------------------------------- 1 | caps-lock-on.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/clipman.svg: -------------------------------------------------------------------------------- 1 | diodon-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/diodon-panel.svg: -------------------------------------------------------------------------------- 1 | clipboard.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/empathy-away.svg: -------------------------------------------------------------------------------- 1 | user-away.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/empathy-busy.svg: -------------------------------------------------------------------------------- 1 | user-busy.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/encrypted.svg: -------------------------------------------------------------------------------- 1 | changes-prevent.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/glipper.svg: -------------------------------------------------------------------------------- 1 | clipboard.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/gnote-panel.svg: -------------------------------------------------------------------------------- 1 | notes-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/gpaste.svg: -------------------------------------------------------------------------------- 1 | clipboard.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/gpm-ups-000.svg: -------------------------------------------------------------------------------- 1 | battery-empty.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/gpm-ups-040.svg: -------------------------------------------------------------------------------- 1 | battery-low.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/gpm-ups-080.svg: -------------------------------------------------------------------------------- 1 | battery-good.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/gpm-ups-100.svg: -------------------------------------------------------------------------------- 1 | battery-full.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/gsd-xrandr.svg: -------------------------------------------------------------------------------- 1 | disper-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/insync-share.svg: -------------------------------------------------------------------------------- 1 | insync-feed.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/mic-off.svg: -------------------------------------------------------------------------------- 1 | mic-volume-muted.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/msd-xrandr.svg: -------------------------------------------------------------------------------- 1 | disper-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/nm-tech-lte.svg: -------------------------------------------------------------------------------- 1 | nm-tech-4g.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/numlock-off.svg: -------------------------------------------------------------------------------- 1 | num-lock-off.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/numlock-on.svg: -------------------------------------------------------------------------------- 1 | num-lock-on.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/odrive-tray.svg: -------------------------------------------------------------------------------- 1 | grive-app-ind.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/scc-alive.svg: -------------------------------------------------------------------------------- 1 | qjoypad-tray.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/todo-indicator.svg: -------------------------------------------------------------------------------- 1 | gtg-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/tomboy-panel.svg: -------------------------------------------------------------------------------- 1 | notes-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/tray-offline.svg: -------------------------------------------------------------------------------- 1 | user-offline.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/user-away-panel.svg: -------------------------------------------------------------------------------- 1 | user-away.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/user-busy-panel.svg: -------------------------------------------------------------------------------- 1 | user-busy.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/user-idle-panel.svg: -------------------------------------------------------------------------------- 1 | user-idle.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/weather-mist.svg: -------------------------------------------------------------------------------- 1 | weather-fog.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/wired.svg: -------------------------------------------------------------------------------- 1 | network-wired.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/xfpm-ups-040.svg: -------------------------------------------------------------------------------- 1 | battery-low.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/xfpm-ups-080.svg: -------------------------------------------------------------------------------- 1 | battery-good.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/xfpm-ups-100.svg: -------------------------------------------------------------------------------- 1 | battery-full.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/yd-busy2.svg: -------------------------------------------------------------------------------- 1 | yd-ind-idle.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/yd-busy3.svg: -------------------------------------------------------------------------------- 1 | yd-busy1.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/yd-busy4.svg: -------------------------------------------------------------------------------- 1 | yd-ind-idle.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/yd-busy5.svg: -------------------------------------------------------------------------------- 1 | yd-busy1.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22/panel/zeal-panel.svg: -------------------------------------------------------------------------------- 1 | zeal-tray.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/22@2x: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/devices/display.svg: -------------------------------------------------------------------------------- 1 | computer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/devices/laptop.svg: -------------------------------------------------------------------------------- 1 | computer-laptop.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/devices/video-display.svg: -------------------------------------------------------------------------------- 1 | computer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/albert-panel.svg: -------------------------------------------------------------------------------- 1 | albert-tray.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/battery-full.svg: -------------------------------------------------------------------------------- 1 | battery-100.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/battery-good.svg: -------------------------------------------------------------------------------- 1 | battery-080.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/battery-low.svg: -------------------------------------------------------------------------------- 1 | battery-020.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/battery_full.svg: -------------------------------------------------------------------------------- 1 | battery-100.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/blueman.svg: -------------------------------------------------------------------------------- 1 | bluetooth-active.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/capslock-on.svg: -------------------------------------------------------------------------------- 1 | caps-lock-on.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/clipman.svg: -------------------------------------------------------------------------------- 1 | diodon-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/diodon-panel.svg: -------------------------------------------------------------------------------- 1 | clipboard.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/empathy-away.svg: -------------------------------------------------------------------------------- 1 | user-away.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/empathy-busy.svg: -------------------------------------------------------------------------------- 1 | user-busy.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/encrypted.svg: -------------------------------------------------------------------------------- 1 | changes-prevent.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/glipper.svg: -------------------------------------------------------------------------------- 1 | clipboard.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/gnote-panel.svg: -------------------------------------------------------------------------------- 1 | notes-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/gpaste.svg: -------------------------------------------------------------------------------- 1 | clipboard.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/gpm-ups-000.svg: -------------------------------------------------------------------------------- 1 | battery-empty.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/gpm-ups-040.svg: -------------------------------------------------------------------------------- 1 | battery-low.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/gpm-ups-080.svg: -------------------------------------------------------------------------------- 1 | battery-good.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/gpm-ups-100.svg: -------------------------------------------------------------------------------- 1 | battery-full.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/gsd-xrandr.svg: -------------------------------------------------------------------------------- 1 | disper-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/insync-share.svg: -------------------------------------------------------------------------------- 1 | insync-feed.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/mic-off.svg: -------------------------------------------------------------------------------- 1 | mic-volume-muted.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/msd-xrandr.svg: -------------------------------------------------------------------------------- 1 | disper-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/nm-tech-lte.svg: -------------------------------------------------------------------------------- 1 | nm-tech-4g.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/numlock-off.svg: -------------------------------------------------------------------------------- 1 | num-lock-off.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/numlock-on.svg: -------------------------------------------------------------------------------- 1 | num-lock-on.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/odrive-tray.svg: -------------------------------------------------------------------------------- 1 | grive-app-ind.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/scc-alive.svg: -------------------------------------------------------------------------------- 1 | qjoypad-tray.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/todo-indicator.svg: -------------------------------------------------------------------------------- 1 | gtg-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/tomboy-panel.svg: -------------------------------------------------------------------------------- 1 | notes-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/tray-offline.svg: -------------------------------------------------------------------------------- 1 | user-offline.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/user-away-panel.svg: -------------------------------------------------------------------------------- 1 | user-away.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/user-busy-panel.svg: -------------------------------------------------------------------------------- 1 | user-busy.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/user-idle-panel.svg: -------------------------------------------------------------------------------- 1 | user-idle.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/weather-mist.svg: -------------------------------------------------------------------------------- 1 | weather-fog.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/wired.svg: -------------------------------------------------------------------------------- 1 | network-wired.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/xfpm-ups-040.svg: -------------------------------------------------------------------------------- 1 | battery-low.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/xfpm-ups-080.svg: -------------------------------------------------------------------------------- 1 | battery-good.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/xfpm-ups-100.svg: -------------------------------------------------------------------------------- 1 | battery-full.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/yd-busy2.svg: -------------------------------------------------------------------------------- 1 | yd-ind-idle.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/yd-busy3.svg: -------------------------------------------------------------------------------- 1 | yd-busy1.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/yd-busy4.svg: -------------------------------------------------------------------------------- 1 | yd-ind-idle.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/yd-busy5.svg: -------------------------------------------------------------------------------- 1 | yd-busy1.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24/panel/zeal-panel.svg: -------------------------------------------------------------------------------- 1 | zeal-tray.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/24@2x: -------------------------------------------------------------------------------- 1 | 24 -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/arrow-down.svg: -------------------------------------------------------------------------------- 1 | ./go-down.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/arrow-right.svg: -------------------------------------------------------------------------------- 1 | ./go-next.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/arrow-up.svg: -------------------------------------------------------------------------------- 1 | ./go-up.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/arrow.svg: -------------------------------------------------------------------------------- 1 | edit-select.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/blurimage.svg: -------------------------------------------------------------------------------- 1 | color-picker.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/bookmarks.svg: -------------------------------------------------------------------------------- 1 | bookmark-new.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/collapse.svg: -------------------------------------------------------------------------------- 1 | ./go-up.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/draw-arrow-up.svg: -------------------------------------------------------------------------------- 1 | ./go-up.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/editor.svg: -------------------------------------------------------------------------------- 1 | document-edit.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/expand.svg: -------------------------------------------------------------------------------- 1 | ./go-down.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/file-zoom-in.svg: -------------------------------------------------------------------------------- 1 | zoom-in.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/file-zoom-out.svg: -------------------------------------------------------------------------------- 1 | zoom-out.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/gtk-ok.svg: -------------------------------------------------------------------------------- 1 | dialog-ok-apply.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/mail-queued.svg: -------------------------------------------------------------------------------- 1 | mail-queue.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/mail-sent.svg: -------------------------------------------------------------------------------- 1 | mail-send.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/select.svg: -------------------------------------------------------------------------------- 1 | edit-select.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/zoom-draw.svg: -------------------------------------------------------------------------------- 1 | zoom-fit-best.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/zoom-in-large.svg: -------------------------------------------------------------------------------- 1 | zoom-in.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/actions/zoom-out-large.svg: -------------------------------------------------------------------------------- 1 | zoom-out.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/blueman-cellular.svg: -------------------------------------------------------------------------------- 1 | phone.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/blueman-scanner.svg: -------------------------------------------------------------------------------- 1 | scanner.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/blueman.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/camera.svg: -------------------------------------------------------------------------------- 1 | camera-photo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/display.svg: -------------------------------------------------------------------------------- 1 | computer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/joystick.svg: -------------------------------------------------------------------------------- 1 | input-gaming.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/kdeconnect.svg: -------------------------------------------------------------------------------- 1 | smartphone.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/keyboard.svg: -------------------------------------------------------------------------------- 1 | input-keyboard.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/laptop.svg: -------------------------------------------------------------------------------- 1 | computer-laptop.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/media-cdr.svg: -------------------------------------------------------------------------------- 1 | media-optical.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/media-dvd.svg: -------------------------------------------------------------------------------- 1 | media-optical.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/modem.svg: -------------------------------------------------------------------------------- 1 | network-modem.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/stock_cell-phone.svg: -------------------------------------------------------------------------------- 1 | phone.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/system.svg: -------------------------------------------------------------------------------- 1 | computer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32/devices/video-display.svg: -------------------------------------------------------------------------------- 1 | computer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/32@2x: -------------------------------------------------------------------------------- 1 | 32 -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/10B4_steam.0.svg: -------------------------------------------------------------------------------- 1 | steam.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/1CD8_rundll32.0.svg: -------------------------------------------------------------------------------- 1 | wine.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/2048-qt.svg: -------------------------------------------------------------------------------- 1 | 2048.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/2048.svg: -------------------------------------------------------------------------------- 1 | gnome-2048.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/3dchess.svg: -------------------------------------------------------------------------------- 1 | knights.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/7z.svg: -------------------------------------------------------------------------------- 1 | 7zip.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/AdobeFlash.svg: -------------------------------------------------------------------------------- 1 | flash.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/AdobeReader.svg: -------------------------------------------------------------------------------- 1 | acroread.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Alacritty.svg: -------------------------------------------------------------------------------- 1 | alacritty.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Babe.svg: -------------------------------------------------------------------------------- 1 | babe.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Blender.svg: -------------------------------------------------------------------------------- 1 | blender.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/CMakeSetup.svg: -------------------------------------------------------------------------------- 1 | cmake.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/CMakeSetup32.svg: -------------------------------------------------------------------------------- 1 | cmake.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/CPU-X.svg: -------------------------------------------------------------------------------- 1 | cpu-x.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Caprine.svg: -------------------------------------------------------------------------------- 1 | fbmessenger.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/DBeaver.svg: -------------------------------------------------------------------------------- 1 | dbeaver.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Dropbox.svg: -------------------------------------------------------------------------------- 1 | dropbox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/EasyTAG_icon.svg: -------------------------------------------------------------------------------- 1 | easytag.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/FBReader.svg: -------------------------------------------------------------------------------- 1 | calibre-gui.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/GitKraken.svg: -------------------------------------------------------------------------------- 1 | gitkraken.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Gnome-Notes.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Gnome-notes.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/GnomeBaker.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Grsync.SVG: -------------------------------------------------------------------------------- 1 | grsync.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Grsync.svg: -------------------------------------------------------------------------------- 1 | grsync.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/J7Z.svg: -------------------------------------------------------------------------------- 1 | 7zip.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Last.fm-icon.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Musescore.svg: -------------------------------------------------------------------------------- 1 | musescore.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/MvGather.svg: -------------------------------------------------------------------------------- 1 | totem.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Notion.svg: -------------------------------------------------------------------------------- 1 | notion.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Panini.svg: -------------------------------------------------------------------------------- 1 | kipi-panorama.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Pithos.svg: -------------------------------------------------------------------------------- 1 | cantata.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/QMapShack.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/QtIcon.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/RSS_feeds.svg: -------------------------------------------------------------------------------- 1 | akregator.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ScudCloud.svg: -------------------------------------------------------------------------------- 1 | slack.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Stacer.svg: -------------------------------------------------------------------------------- 1 | stacer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/TeXworks.svg: -------------------------------------------------------------------------------- 1 | texstudio.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Terminal.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Thunar.svg: -------------------------------------------------------------------------------- 1 | thunar.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/VBox.svg: -------------------------------------------------------------------------------- 1 | virtualbox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/Vbox.svg: -------------------------------------------------------------------------------- 1 | virtualbox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/WMail.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/XMind.svg: -------------------------------------------------------------------------------- 1 | xmind.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/abiword_48.svg: -------------------------------------------------------------------------------- 1 | abiword.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/abrt-gui.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/abrt.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ace.svg: -------------------------------------------------------------------------------- 1 | kpatience.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/acidrip.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/administration.svg: -------------------------------------------------------------------------------- 1 | yast.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/agenda.svg: -------------------------------------------------------------------------------- 1 | korganizer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/aisleriot.svg: -------------------------------------------------------------------------------- 1 | kpat.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/akonaditray.svg: -------------------------------------------------------------------------------- 1 | akonadi.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/alacarte.svg: -------------------------------------------------------------------------------- 1 | menu-editor.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/alleyoop.svg: -------------------------------------------------------------------------------- 1 | abrt.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/alsamixergui.svg: -------------------------------------------------------------------------------- 1 | kmix.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/altyo.svg: -------------------------------------------------------------------------------- 1 | yakuake.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/amarok-icon.svg: -------------------------------------------------------------------------------- 1 | amarok.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/amarok2.svg: -------------------------------------------------------------------------------- 1 | amarok.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/amazon.svg: -------------------------------------------------------------------------------- 1 | amazon-store.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/amulegui.svg: -------------------------------------------------------------------------------- 1 | amule.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/anjuta6.svg: -------------------------------------------------------------------------------- 1 | anjuta.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/anjuta_icon.svg: -------------------------------------------------------------------------------- 1 | anjuta.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/app.svg: -------------------------------------------------------------------------------- 1 | gitkraken.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/apper.svg: -------------------------------------------------------------------------------- 1 | muon.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/apport-gtk.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/apport-gtk2.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/appset.svg: -------------------------------------------------------------------------------- 1 | ./synaptic.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/aptana-studio.svg: -------------------------------------------------------------------------------- 1 | aptana.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/archivemanager.svg: -------------------------------------------------------------------------------- 1 | ark.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ardour2.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ardour3.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ardour4.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ardour5.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ardour6.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/arduino-ide.svg: -------------------------------------------------------------------------------- 1 | arduino.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/arora.svg: -------------------------------------------------------------------------------- 1 | browser.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/artha.svg: -------------------------------------------------------------------------------- 1 | dictionary.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/as-icon.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/as-powered.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/asounder.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/assistant5.svg: -------------------------------------------------------------------------------- 1 | qt4logo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/asunder.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/aterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/atlas.svg: -------------------------------------------------------------------------------- 1 | gnome-maps.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/atomix-icon.svg: -------------------------------------------------------------------------------- 1 | katomic.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/atomix.svg: -------------------------------------------------------------------------------- 1 | katomic.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/audacity16.svg: -------------------------------------------------------------------------------- 1 | audacity.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/audacity32.svg: -------------------------------------------------------------------------------- 1 | audacity.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/audex.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/audio-player.svg: -------------------------------------------------------------------------------- 1 | juk.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/avidemux.svg: -------------------------------------------------------------------------------- 1 | totem.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/awn-applet.svg: -------------------------------------------------------------------------------- 1 | dock.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ax-applet.svg: -------------------------------------------------------------------------------- 1 | access.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/backlite.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/banji.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/bash.svg: -------------------------------------------------------------------------------- 1 | yast-sudo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/beagled.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/bijiben.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/bless.svg: -------------------------------------------------------------------------------- 1 | okteta.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/blivet-gui.svg: -------------------------------------------------------------------------------- 1 | gparted.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/blocks.svg: -------------------------------------------------------------------------------- 1 | gnome-klotski.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/bluedun.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/blueman.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/bombono-dvd.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/boot.svg: -------------------------------------------------------------------------------- 1 | system-shutdown.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/bottles_wine.svg: -------------------------------------------------------------------------------- 1 | wine.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/boxes.svg: -------------------------------------------------------------------------------- 1 | gnome-boxes.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/brave-browser.svg: -------------------------------------------------------------------------------- 1 | brave.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/browser.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/bt-logo.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/btsync-user.svg: -------------------------------------------------------------------------------- 1 | reload.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/bug-buddy.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/bug.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/bum.svg: -------------------------------------------------------------------------------- 1 | grub-customizer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/bumblebee.svg: -------------------------------------------------------------------------------- 1 | nvidia.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/burner.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cacao-oj6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cacao-oj7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cacao-oj8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cacao-oj9.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/caja-dropbox.svg: -------------------------------------------------------------------------------- 1 | dropbox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/calligrakrita.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/calligrakrita2.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/calligraplan.svg: -------------------------------------------------------------------------------- 1 | plan.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/calligrastage.svg: -------------------------------------------------------------------------------- 1 | stage.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/calligrawords.svg: -------------------------------------------------------------------------------- 1 | words.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/camera-web.svg: -------------------------------------------------------------------------------- 1 | camera.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/caprine.svg: -------------------------------------------------------------------------------- 1 | fbmessenger.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cgoban.svg: -------------------------------------------------------------------------------- 1 | qgo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cgoban_32x32.svg: -------------------------------------------------------------------------------- 1 | qgo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/checkers.svg: -------------------------------------------------------------------------------- 1 | qgo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/checkgmail.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/chemtool.svg: -------------------------------------------------------------------------------- 1 | chmsee-icon.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/chessx.svg: -------------------------------------------------------------------------------- 1 | knights.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/chinese.svg: -------------------------------------------------------------------------------- 1 | ibus-pinyin.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/chrome.svg: -------------------------------------------------------------------------------- 1 | google-chrome.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/clawsker.svg: -------------------------------------------------------------------------------- 1 | claws-mail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cmake-gui.svg: -------------------------------------------------------------------------------- 1 | cmake.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/color-pick.svg: -------------------------------------------------------------------------------- 1 | gpick.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/colorpicker.svg: -------------------------------------------------------------------------------- 1 | gcolor2.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/colour.svg: -------------------------------------------------------------------------------- 1 | color.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/config-users.svg: -------------------------------------------------------------------------------- 1 | users.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/contact.svg: -------------------------------------------------------------------------------- 1 | addressbook.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/contacts.svg: -------------------------------------------------------------------------------- 1 | addressbook.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cs-applets.svg: -------------------------------------------------------------------------------- 1 | dock.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cs-desklets.svg: -------------------------------------------------------------------------------- 1 | dock.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cs-desktop.svg: -------------------------------------------------------------------------------- 1 | desktop.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cs-details.svg: -------------------------------------------------------------------------------- 1 | userinfo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cs-drivers.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cs-firewall.svg: -------------------------------------------------------------------------------- 1 | firewall.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cs-fonts.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cs-login.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cs-mouse.svg: -------------------------------------------------------------------------------- 1 | input-mouse.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cs-panel.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cs-printer.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/csd-printer.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cuckoo.svg: -------------------------------------------------------------------------------- 1 | gnome-clocks.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cumulus.svg: -------------------------------------------------------------------------------- 1 | weather.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cups.svg: -------------------------------------------------------------------------------- 1 | office-printer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cupsprinter.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cuttlefish.svg: -------------------------------------------------------------------------------- 1 | plasma.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/cx.ring.Ring.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/date.svg: -------------------------------------------------------------------------------- 1 | office-calendar.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/dbeaver-ce.svg: -------------------------------------------------------------------------------- 1 | dbeaver.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/dbeaver-ee.svg: -------------------------------------------------------------------------------- 1 | dbeaver.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ddm.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/deepin-emacs.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/deepin-repair.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/deepin.com.qq.im.svg: -------------------------------------------------------------------------------- 1 | qq.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/deepinwine-qq.svg: -------------------------------------------------------------------------------- 1 | qq.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/deezer.svg: -------------------------------------------------------------------------------- 1 | equaliser.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/designer.svg: -------------------------------------------------------------------------------- 1 | qtdesigner.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/designer5.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/deskbar.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/desktop-effect.svg: -------------------------------------------------------------------------------- 1 | ccsm.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/desktop-effects.svg: -------------------------------------------------------------------------------- 1 | ccsm.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/devede.svg: -------------------------------------------------------------------------------- 1 | k9-copy.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/devedeng.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/dialog-info.svg: -------------------------------------------------------------------------------- 1 | userinfo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/dict.svg: -------------------------------------------------------------------------------- 1 | dictionary.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/dillo.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/discord-ptb.svg: -------------------------------------------------------------------------------- 1 | discord.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/disk-burner.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/disks.svg: -------------------------------------------------------------------------------- 1 | disk-check.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/dnfdragora.svg: -------------------------------------------------------------------------------- 1 | synaptic.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/dockbarx.svg: -------------------------------------------------------------------------------- 1 | dock.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/draksec-mdk.svg: -------------------------------------------------------------------------------- 1 | gufw.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/dreamchess.svg: -------------------------------------------------------------------------------- 1 | chess.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/dvd95.svg: -------------------------------------------------------------------------------- 1 | k9-copy.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/dvd9548.svg: -------------------------------------------------------------------------------- 1 | k9-copy.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/e-mail.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/eTube.svg: -------------------------------------------------------------------------------- 1 | minitube.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/easy-tag.svg: -------------------------------------------------------------------------------- 1 | easytag.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/easytags.svg: -------------------------------------------------------------------------------- 1 | easytag.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/electron2.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/electron3.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/electron4.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/electron5.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/electron6.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/electron9.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/emacs-24.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/emacs-25.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/emacs-nox.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/emacs-snapshot.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/emacs22.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/emacs23.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/emacs24.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/emacs25.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/email.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/emerillon.svg: -------------------------------------------------------------------------------- 1 | gnome-maps.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/emule.svg: -------------------------------------------------------------------------------- 1 | amule.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/engrampa.svg: -------------------------------------------------------------------------------- 1 | file-roller.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/eom.svg: -------------------------------------------------------------------------------- 1 | eog.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/epdfview.svg: -------------------------------------------------------------------------------- 1 | qpdfview.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ephoto.svg: -------------------------------------------------------------------------------- 1 | kphotoalbum.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/epiphany.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/epulse.svg: -------------------------------------------------------------------------------- 1 | kmix.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/etube.svg: -------------------------------------------------------------------------------- 1 | minitube.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ezame.svg: -------------------------------------------------------------------------------- 1 | menu-editor.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/f-spot.svg: -------------------------------------------------------------------------------- 1 | screenie.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/featherpad.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/figma-linux.svg: -------------------------------------------------------------------------------- 1 | figma.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/filelight.svg: -------------------------------------------------------------------------------- 1 | baobab.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/firefox-3.0.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/firefox-3.5.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/firefox-4.0.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/firefox-beta.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/firefox-bin.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/firefox-esr.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/firefox-gtk3.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/firefox-icon.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/firefox3.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/firestarter.svg: -------------------------------------------------------------------------------- 1 | firewall.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/firewall.svg: -------------------------------------------------------------------------------- 1 | gufw.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/flashplayer.svg: -------------------------------------------------------------------------------- 1 | flash.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/font-manager.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/font-viewer.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/footnote.svg: -------------------------------------------------------------------------------- 1 | knotes.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/freefilesync.svg: -------------------------------------------------------------------------------- 1 | reload.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/freeminer.svg: -------------------------------------------------------------------------------- 1 | minecraft.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/freetuxtv.svg: -------------------------------------------------------------------------------- 1 | minitube.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/fusion-icon.svg: -------------------------------------------------------------------------------- 1 | ccsm.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/fwbuilder.svg: -------------------------------------------------------------------------------- 1 | firewall.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/galculator.svg: -------------------------------------------------------------------------------- 1 | calc.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/galeon.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gallery.svg: -------------------------------------------------------------------------------- 1 | photo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gambitchess.svg: -------------------------------------------------------------------------------- 1 | knights.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gcalculator.svg: -------------------------------------------------------------------------------- 1 | calc.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gcolor.svg: -------------------------------------------------------------------------------- 1 | gcolor2.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gcolor2.svg: -------------------------------------------------------------------------------- 1 | colorgrab.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gcolor3.svg: -------------------------------------------------------------------------------- 1 | gcolor2.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gcompris-qt.svg: -------------------------------------------------------------------------------- 1 | gcompris.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gconf-editor.svg: -------------------------------------------------------------------------------- 1 | builder.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gconfeditor.svg: -------------------------------------------------------------------------------- 1 | builder.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gcr-gnupg.svg: -------------------------------------------------------------------------------- 1 | gnupg.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gcrystal.svg: -------------------------------------------------------------------------------- 1 | crystal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gdeb.svg: -------------------------------------------------------------------------------- 1 | gdebi.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gdiskdump.svg: -------------------------------------------------------------------------------- 1 | palimpsest.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gdm-setup.svg: -------------------------------------------------------------------------------- 1 | gdm-xnest.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gdm-xnest.svg: -------------------------------------------------------------------------------- 1 | cs-login.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gdm.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gdm2setup.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gdmap.svg: -------------------------------------------------------------------------------- 1 | palimpsest.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gdmflexiserver.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gdmsetup.svg: -------------------------------------------------------------------------------- 1 | gdm-xnest.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/geary.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gedbi.svg: -------------------------------------------------------------------------------- 1 | gdebi.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gedit.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gedit1.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gedit2.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gfeedline.svg: -------------------------------------------------------------------------------- 1 | empathy.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ghetto-skype.svg: -------------------------------------------------------------------------------- 1 | skype.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/git-cola.svg: -------------------------------------------------------------------------------- 1 | git.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/git-dag.svg: -------------------------------------------------------------------------------- 1 | git.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/git-gui.svg: -------------------------------------------------------------------------------- 1 | git.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gitg.svg: -------------------------------------------------------------------------------- 1 | git.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gitk.svg: -------------------------------------------------------------------------------- 1 | gitg.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/glade-3.svg: -------------------------------------------------------------------------------- 1 | glade.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/glchess.svg: -------------------------------------------------------------------------------- 1 | chess.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/glines.svg: -------------------------------------------------------------------------------- 1 | gnome-glines.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/glipper.svg: -------------------------------------------------------------------------------- 1 | diodon.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/glxinfo.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gmail-desktop.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gmail-plasmoid.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gmailwatcher.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnect.svg: -------------------------------------------------------------------------------- 1 | four-in-a-row.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnobots.svg: -------------------------------------------------------------------------------- 1 | gnome-robots.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnochm.svg: -------------------------------------------------------------------------------- 1 | help-browser.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnoduino.svg: -------------------------------------------------------------------------------- 1 | arduino.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-abrt.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-baker.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-devel.svg: -------------------------------------------------------------------------------- 1 | builder.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-emacs.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-eterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-gmail.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-hearts.svg: -------------------------------------------------------------------------------- 1 | kpat.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-iagno.svg: -------------------------------------------------------------------------------- 1 | qgo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-info.svg: -------------------------------------------------------------------------------- 1 | info.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-latex.svg: -------------------------------------------------------------------------------- 1 | latexila.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-mpv.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-note.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-panel.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-status.svg: -------------------------------------------------------------------------------- 1 | hwinfo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-term.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-warning.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnome-xterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnomebaker.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnomine.svg: -------------------------------------------------------------------------------- 1 | gnome-mines.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnote.svg: -------------------------------------------------------------------------------- 1 | tomboy.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnotes.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnucash.svg: -------------------------------------------------------------------------------- 1 | gnucash-icon.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnugo.svg: -------------------------------------------------------------------------------- 1 | qgo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gnugo48.svg: -------------------------------------------------------------------------------- 1 | qgo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/goa-account-msn.svg: -------------------------------------------------------------------------------- 1 | live.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gp.svg: -------------------------------------------------------------------------------- 1 | gnome-paint.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gpa.svg: -------------------------------------------------------------------------------- 1 | keyring-manager.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gpaint.svg: -------------------------------------------------------------------------------- 1 | gnome-paint.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gpick.svg: -------------------------------------------------------------------------------- 1 | gcolor2.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gpmdp.svg: -------------------------------------------------------------------------------- 1 | google-music.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gpxsee.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/grip.svg: -------------------------------------------------------------------------------- 1 | ubiquity.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/grsync.svg: -------------------------------------------------------------------------------- 1 | reload.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gscan2pdf.svg: -------------------------------------------------------------------------------- 1 | qpdfview.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gsearchtool.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gtali.svg: -------------------------------------------------------------------------------- 1 | tali.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gtg.svg: -------------------------------------------------------------------------------- 1 | kmenuedit.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gthumb.svg: -------------------------------------------------------------------------------- 1 | kuickshow.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gtk-about.svg: -------------------------------------------------------------------------------- 1 | info.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gtk-help.svg: -------------------------------------------------------------------------------- 1 | help.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gtk-lshw.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gtk4-demo.svg: -------------------------------------------------------------------------------- 1 | gtk3-demo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gtk_info.svg: -------------------------------------------------------------------------------- 1 | gtk-info.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gtkam-camera.svg: -------------------------------------------------------------------------------- 1 | photo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gtklp.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gtklpq.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gtkterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gtwitter.svg: -------------------------------------------------------------------------------- 1 | web-twitter.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/guayadeque.svg: -------------------------------------------------------------------------------- 1 | juk.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gufw_menu.svg: -------------------------------------------------------------------------------- 1 | firewall.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/guitarix2.svg: -------------------------------------------------------------------------------- 1 | guitarix.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/guvcview.svg: -------------------------------------------------------------------------------- 1 | cheese.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gvim.svg: -------------------------------------------------------------------------------- 1 | vim.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gx_head.svg: -------------------------------------------------------------------------------- 1 | guitarix.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gxine.svg: -------------------------------------------------------------------------------- 1 | xine.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/gydl.svg: -------------------------------------------------------------------------------- 1 | youtube-dl.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/h2-icon.svg: -------------------------------------------------------------------------------- 1 | hydrogen.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/hamsket.svg: -------------------------------------------------------------------------------- 1 | rambox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/harddrake.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/harddrake2.svg: -------------------------------------------------------------------------------- 1 | hardinfo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/hardinfo.svg: -------------------------------------------------------------------------------- 1 | hwinfo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/help-about.svg: -------------------------------------------------------------------------------- 1 | userinfo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/help-contents.svg: -------------------------------------------------------------------------------- 1 | help.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/help-info.svg: -------------------------------------------------------------------------------- 1 | info.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/help.svg: -------------------------------------------------------------------------------- 1 | help-browser.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/hp-toolbox.svg: -------------------------------------------------------------------------------- 1 | hp_logo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/hplip.svg: -------------------------------------------------------------------------------- 1 | hp_logo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/hugin.svg: -------------------------------------------------------------------------------- 1 | kipi-panorama.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/hwbrowser.svg: -------------------------------------------------------------------------------- 1 | hwinfo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ibus-engine.svg: -------------------------------------------------------------------------------- 1 | ibus.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ibus-setup.svg: -------------------------------------------------------------------------------- 1 | ibus.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/iconthemes.svg: -------------------------------------------------------------------------------- 1 | icons.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/idle.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/idle3.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/im-msn.svg: -------------------------------------------------------------------------------- 1 | live.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/info.svg: -------------------------------------------------------------------------------- 1 | userinfo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/intellij-idea.svg: -------------------------------------------------------------------------------- 1 | idea.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/intellij.svg: -------------------------------------------------------------------------------- 1 | idea.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/intellij_idea.svg: -------------------------------------------------------------------------------- 1 | idea.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/internet-chat.svg: -------------------------------------------------------------------------------- 1 | polari.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/internet.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/io.atom.Atom.svg: -------------------------------------------------------------------------------- 1 | atom.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/io.lmms.LMMS.svg: -------------------------------------------------------------------------------- 1 | lmms.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/io.lmms.Lmms.svg: -------------------------------------------------------------------------------- 1 | lmms.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/io.mpv.Mpv.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/io.neovim.nvim.svg: -------------------------------------------------------------------------------- 1 | nvim.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/iok.svg: -------------------------------------------------------------------------------- 1 | onboard.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ipython3.svg: -------------------------------------------------------------------------------- 1 | ipython.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/irix.svg: -------------------------------------------------------------------------------- 1 | kuickshow.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java-1.6.0.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java-1.7.0.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java-1.8.0.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java-1.9.0.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java-10-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java-11-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java-12-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java-13-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java-14-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java10-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java11-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java12-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java13-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java14-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java8-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/java9-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/javaws.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/jeex.svg: -------------------------------------------------------------------------------- 1 | okteta.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/jockey-gtk.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/jockey-kde.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/josm.svg: -------------------------------------------------------------------------------- 1 | gnome-maps.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/jotasync.svg: -------------------------------------------------------------------------------- 1 | reload.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/journal.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/k9copy.svg: -------------------------------------------------------------------------------- 1 | k9-copy.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kali-docs.svg: -------------------------------------------------------------------------------- 1 | devhelp.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kamerka.svg: -------------------------------------------------------------------------------- 1 | cheese.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kamule.svg: -------------------------------------------------------------------------------- 1 | amule.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kate2.svg: -------------------------------------------------------------------------------- 1 | kate.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kbackup.svg: -------------------------------------------------------------------------------- 1 | deja-dup.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kbugbuster.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kbugster.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kcalc.svg: -------------------------------------------------------------------------------- 1 | calc.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kchart.svg: -------------------------------------------------------------------------------- 1 | sheets.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kcmkicker.svg: -------------------------------------------------------------------------------- 1 | cs-panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kcmpci.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kcmx.svg: -------------------------------------------------------------------------------- 1 | xorg.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kconsole.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kdeapp.svg: -------------------------------------------------------------------------------- 1 | kde-logo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kedit.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/keepass2.svg: -------------------------------------------------------------------------------- 1 | keepass.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/keepassx.svg: -------------------------------------------------------------------------------- 1 | seahorse.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/keepassx2.svg: -------------------------------------------------------------------------------- 1 | seahorse.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kfilebox.svg: -------------------------------------------------------------------------------- 1 | dropbox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kfind.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kflickr.svg: -------------------------------------------------------------------------------- 1 | flickr.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kfm.svg: -------------------------------------------------------------------------------- 1 | file-manager.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kfontview.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kgpg.svg: -------------------------------------------------------------------------------- 1 | gnupg.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kid3-qt.svg: -------------------------------------------------------------------------------- 1 | kid3.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kjobviewer.svg: -------------------------------------------------------------------------------- 1 | cups.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kjots.svg: -------------------------------------------------------------------------------- 1 | knotes.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/klipper.svg: -------------------------------------------------------------------------------- 1 | diodon.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kmail.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kmail2.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kmines.svg: -------------------------------------------------------------------------------- 1 | gnome-mines.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kmymoney.svg: -------------------------------------------------------------------------------- 1 | homebank.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/knotes.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/konsole_tux.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kontact.svg: -------------------------------------------------------------------------------- 1 | addressbook.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kopete.svg: -------------------------------------------------------------------------------- 1 | empathy.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kopete2.svg: -------------------------------------------------------------------------------- 1 | kopete.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/korgac.svg: -------------------------------------------------------------------------------- 1 | gnome-clocks.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kphoto.svg: -------------------------------------------------------------------------------- 1 | photo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kphotoalbum.svg: -------------------------------------------------------------------------------- 1 | photo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kplato.svg: -------------------------------------------------------------------------------- 1 | calligraplan.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kplayer.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kpresenter.svg: -------------------------------------------------------------------------------- 1 | stage.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/krdc.svg: -------------------------------------------------------------------------------- 1 | remote-desktop.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/krename.svg: -------------------------------------------------------------------------------- 1 | ./leafpad.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/krfb.svg: -------------------------------------------------------------------------------- 1 | remote-desktop.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/krita.svg: -------------------------------------------------------------------------------- 1 | mtpaint.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kritagemini.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kritasketch.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ksensors.svg: -------------------------------------------------------------------------------- 1 | psensor.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kspread.svg: -------------------------------------------------------------------------------- 1 | sheets.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kstars.svg: -------------------------------------------------------------------------------- 1 | plasmagik.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ksudoku.svg: -------------------------------------------------------------------------------- 1 | gnome-sudoku.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ktip.svg: -------------------------------------------------------------------------------- 1 | info.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ktneft.svg: -------------------------------------------------------------------------------- 1 | file-roller.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kuser.svg: -------------------------------------------------------------------------------- 1 | users.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kwikdisk.svg: -------------------------------------------------------------------------------- 1 | gparted.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kword.svg: -------------------------------------------------------------------------------- 1 | words.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kwords.svg: -------------------------------------------------------------------------------- 1 | calligrawords.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kylin-video.svg: -------------------------------------------------------------------------------- 1 | mplayer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/kynaptic.svg: -------------------------------------------------------------------------------- 1 | synaptic.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/l3afpad.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/labplot2.svg: -------------------------------------------------------------------------------- 1 | labplot.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/lash.svg: -------------------------------------------------------------------------------- 1 | deezer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/last-fm.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/lastfm-valut.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/latexila.svg: -------------------------------------------------------------------------------- 1 | texstudio.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/lazpaint.svg: -------------------------------------------------------------------------------- 1 | gnome-paint.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/linguist5.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/linssid.svg: -------------------------------------------------------------------------------- 1 | wicd.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/login-photo.svg: -------------------------------------------------------------------------------- 1 | mugshot.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/lpi-bug.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/lshw.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/luckybackup.svg: -------------------------------------------------------------------------------- 1 | deja-dup.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/lxterminal.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/macchanger.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mailer.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mailspring.svg: -------------------------------------------------------------------------------- 1 | email.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/maps.svg: -------------------------------------------------------------------------------- 1 | gnome-maps.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/marble.svg: -------------------------------------------------------------------------------- 1 | google-earth.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mate-panel.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/maxima-icon.svg: -------------------------------------------------------------------------------- 1 | wxmaxima.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/maxima-new.svg: -------------------------------------------------------------------------------- 1 | wxmaxima.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/maxima.svg: -------------------------------------------------------------------------------- 1 | wxmaxima.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mdmsetup.svg: -------------------------------------------------------------------------------- 1 | cs-login.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/me-tv.svg: -------------------------------------------------------------------------------- 1 | minitube.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/media-cdrom.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/meteo-qt.svg: -------------------------------------------------------------------------------- 1 | weather.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/minetest.svg: -------------------------------------------------------------------------------- 1 | minecraft.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/minimizeall.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mintBackup.svg: -------------------------------------------------------------------------------- 1 | deja-dup.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mintdrivers.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mintreport.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mitter.svg: -------------------------------------------------------------------------------- 1 | web-twitter.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mixxx-icon.svg: -------------------------------------------------------------------------------- 1 | mixxx.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mkv-gui.svg: -------------------------------------------------------------------------------- 1 | mkvmerge.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mkvmergeGUI.svg: -------------------------------------------------------------------------------- 1 | mkvmerge.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mouse.svg: -------------------------------------------------------------------------------- 1 | input-mouse.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mozo.svg: -------------------------------------------------------------------------------- 1 | menu-editor.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mpv.svg: -------------------------------------------------------------------------------- 1 | smplayer.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ms-skype.svg: -------------------------------------------------------------------------------- 1 | skype.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mscore.svg: -------------------------------------------------------------------------------- 1 | musescore.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mscore3.svg: -------------------------------------------------------------------------------- 1 | musescore.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mtpaint.svg: -------------------------------------------------------------------------------- 1 | gnome-paint.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mugshot.svg: -------------------------------------------------------------------------------- 1 | users.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mupdf.svg: -------------------------------------------------------------------------------- 1 | qpdfview.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mx-clocky.svg: -------------------------------------------------------------------------------- 1 | clock.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/mypaint.svg: -------------------------------------------------------------------------------- 1 | mtpaint.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/net.jami.Jami.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/net.xmind.ZEN.svg: -------------------------------------------------------------------------------- 1 | xmind.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/nmm_qt_client.svg: -------------------------------------------------------------------------------- 1 | kpat.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/nocover.svg: -------------------------------------------------------------------------------- 1 | mixxx.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/notecase.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/notes.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/nvclock.svg: -------------------------------------------------------------------------------- 1 | nvidia.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/nvidia-ddm-mx.svg: -------------------------------------------------------------------------------- 1 | nvidia.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/nvim-gtk.svg: -------------------------------------------------------------------------------- 1 | neovim.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/nvim-qt.svg: -------------------------------------------------------------------------------- 1 | neovim.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/nvim.svg: -------------------------------------------------------------------------------- 1 | neovim.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/nxterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/nylas-mail.svg: -------------------------------------------------------------------------------- 1 | nylas.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/octave-icon.svg: -------------------------------------------------------------------------------- 1 | octave.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/octave-logo.svg: -------------------------------------------------------------------------------- 1 | octave.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/octavebackend.svg: -------------------------------------------------------------------------------- 1 | octave.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/octopi.svg: -------------------------------------------------------------------------------- 1 | muon.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ogmrip.svg: -------------------------------------------------------------------------------- 1 | ubiquity.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/onboard-mono.svg: -------------------------------------------------------------------------------- 1 | onboard.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/onlyoffice.svg: -------------------------------------------------------------------------------- 1 | asc-de.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/openerp-client.svg: -------------------------------------------------------------------------------- 1 | opera.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/openjdk-10.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/openjdk-11.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/openjdk-6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/openjdk-7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/openjdk-8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/openjdk-9.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/openshot-qt.svg: -------------------------------------------------------------------------------- 1 | openshot.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/openterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/openwmail.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/opera-browser.svg: -------------------------------------------------------------------------------- 1 | opera.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/opera-icon.svg: -------------------------------------------------------------------------------- 1 | opera.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/oracle-javaws.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/oracle_java6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/oracle_java7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/oracle_java8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/oracle_java9.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/orage.svg: -------------------------------------------------------------------------------- 1 | gnome-clocks.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/orca.svg: -------------------------------------------------------------------------------- 1 | access.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.gimp.GIMP.svg: -------------------------------------------------------------------------------- 1 | gimp.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.gnome.2048.svg: -------------------------------------------------------------------------------- 1 | 2048.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.gnome.GTG.svg: -------------------------------------------------------------------------------- 1 | gtg.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.gnome.Mpv.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.gnome.eog.svg: -------------------------------------------------------------------------------- 1 | eog.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.gnome.gitg.svg: -------------------------------------------------------------------------------- 1 | gitg.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.gnome.maps.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.gnome.meld.svg: -------------------------------------------------------------------------------- 1 | meld.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.gnu.emacs.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.kde.babe.svg: -------------------------------------------------------------------------------- 1 | babe.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.kde.juk.svg: -------------------------------------------------------------------------------- 1 | juk.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.kde.k3b.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.kde.kget.svg: -------------------------------------------------------------------------------- 1 | kget.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.kde.kgpg.svg: -------------------------------------------------------------------------------- 1 | gnupg.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.kde.kid3.svg: -------------------------------------------------------------------------------- 1 | kid3.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.kde.kjots.svg: -------------------------------------------------------------------------------- 1 | tomboy.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.kde.kmail.svg: -------------------------------------------------------------------------------- 1 | kmail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.kde.kmail2.svg: -------------------------------------------------------------------------------- 1 | kmail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.kde.krita.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.kde.vvave.svg: -------------------------------------------------------------------------------- 1 | babe.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.o20.svg: -------------------------------------------------------------------------------- 1 | ms-office.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.o20.word.svg: -------------------------------------------------------------------------------- 1 | ms-word.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.videolan.VLC.svg: -------------------------------------------------------------------------------- 1 | vlc.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/org.vim.Vim.svg: -------------------------------------------------------------------------------- 1 | vim.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/osmo.svg: -------------------------------------------------------------------------------- 1 | gnome-clocks.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/p7zip.svg: -------------------------------------------------------------------------------- 1 | 7zip.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/pan.svg: -------------------------------------------------------------------------------- 1 | akregator.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/parole.svg: -------------------------------------------------------------------------------- 1 | totem.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/pcb.svg: -------------------------------------------------------------------------------- 1 | cpuinfo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/photo.svg: -------------------------------------------------------------------------------- 1 | photos.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/pinta.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/pitivi.svg: -------------------------------------------------------------------------------- 1 | avidemux.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/pix.svg: -------------------------------------------------------------------------------- 1 | gthumb.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/plank.svg: -------------------------------------------------------------------------------- 1 | docky.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/planner.svg: -------------------------------------------------------------------------------- 1 | plan.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/printer1.svg: -------------------------------------------------------------------------------- 1 | cups.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/printmgr.svg: -------------------------------------------------------------------------------- 1 | cups.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/pycad.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/pychess.svg: -------------------------------------------------------------------------------- 1 | chess.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/pynvim.svg: -------------------------------------------------------------------------------- 1 | neovim.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/q4wine.svg: -------------------------------------------------------------------------------- 1 | wine.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qdirstat.svg: -------------------------------------------------------------------------------- 1 | baobab.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qlipper.svg: -------------------------------------------------------------------------------- 1 | diodon.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qmapshack.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qmlscene.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qt-logo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qt4-logo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qt4logo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qt5-logo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qt5ct.svg: -------------------------------------------------------------------------------- 1 | qtconfig.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qtassistant.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qtconfig.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qtdbusviewer.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qtlinguistic.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qtlogo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qtoctave.svg: -------------------------------------------------------------------------------- 1 | octave.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qv4l2.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/qvidcap.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/rbackend.svg: -------------------------------------------------------------------------------- 1 | r.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/regexxer.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ring-jami.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ring-kde.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/rip.svg: -------------------------------------------------------------------------------- 1 | ubiquity.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/ripperx.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/sabaki.svg: -------------------------------------------------------------------------------- 1 | qgo.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/scid.svg: -------------------------------------------------------------------------------- 1 | chess.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/scudcloud.svg: -------------------------------------------------------------------------------- 1 | slack.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/selene.svg: -------------------------------------------------------------------------------- 1 | deja-dup.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/semn.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/sigram.svg: -------------------------------------------------------------------------------- 1 | telegram.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/sonata.svg: -------------------------------------------------------------------------------- 1 | cantata.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/strigi.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/sun-java.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/sun-java6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/sun-java7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/sun-java8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/sun-javaws.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/sun_java.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/sysprof.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/tagua.svg: -------------------------------------------------------------------------------- 1 | chess.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/tali.svg: -------------------------------------------------------------------------------- 1 | gnome-tali.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/terra.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/tild.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/tint2.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/tint2conf.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/tkpacman.svg: -------------------------------------------------------------------------------- 1 | gdebi.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/tomboy-16.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/tomboy-32.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/tsclient.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/tvmaxe.svg: -------------------------------------------------------------------------------- 1 | tvtime.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/tvtime.svg: -------------------------------------------------------------------------------- 1 | minitube.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/twin.svg: -------------------------------------------------------------------------------- 1 | gnome-wm.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/uget.svg: -------------------------------------------------------------------------------- 1 | uget-icon.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/user-admin.svg: -------------------------------------------------------------------------------- 1 | gksu.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/user_auth.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/userdrake.svg: -------------------------------------------------------------------------------- 1 | users.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/vbox.svg: -------------------------------------------------------------------------------- 1 | virtualbox.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/vidiot.svg: -------------------------------------------------------------------------------- 1 | avidemux.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/vim-qt.svg: -------------------------------------------------------------------------------- 1 | vim.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/vimlogo.svg: -------------------------------------------------------------------------------- 1 | gvim.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/vvave.svg: -------------------------------------------------------------------------------- 1 | babe.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/webide.svg: -------------------------------------------------------------------------------- 1 | phpstorm.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/wewechat.svg: -------------------------------------------------------------------------------- 1 | wechat.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/wicd-gtk.svg: -------------------------------------------------------------------------------- 1 | wicd.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/wifi-radar.svg: -------------------------------------------------------------------------------- 1 | wicd.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/windows.svg: -------------------------------------------------------------------------------- 1 | wine.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/wingpanel.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/wmail.svg: -------------------------------------------------------------------------------- 1 | WMail.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/wpa_gui.svg: -------------------------------------------------------------------------------- 1 | wicd.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/x.svg: -------------------------------------------------------------------------------- 1 | xorg.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/x11.svg: -------------------------------------------------------------------------------- 1 | xorg.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/xame.svg: -------------------------------------------------------------------------------- 1 | kmenuedit.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/xapp.svg: -------------------------------------------------------------------------------- 1 | xorg.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/xar.svg: -------------------------------------------------------------------------------- 1 | ark.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/xboard.svg: -------------------------------------------------------------------------------- 1 | knights.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/xchess.svg: -------------------------------------------------------------------------------- 1 | knights.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/xdiagnose.svg: -------------------------------------------------------------------------------- 1 | xorg.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/xedit.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/xemacs.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/xfburn.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/xine.svg: -------------------------------------------------------------------------------- 1 | totem.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/xpad.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/xplayer.svg: -------------------------------------------------------------------------------- 1 | totem.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/xsane.svg: -------------------------------------------------------------------------------- 1 | scanner.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/xterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/yast-x11.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/zim.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/znotes.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable/apps/zoom-icon.svg: -------------------------------------------------------------------------------- 1 | Zoom.svg -------------------------------------------------------------------------------- /local/share/icons/dracula-icons-main/scalable@2x: -------------------------------------------------------------------------------- 1 | scalable -------------------------------------------------------------------------------- /themes/Dracula/gtk-2.0/assets/radio-mixed.png: -------------------------------------------------------------------------------- 1 | ../../assets/radio-mixed.png -------------------------------------------------------------------------------- /xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zproger/bspwm-dotfiles/HEAD/xinitrc --------------------------------------------------------------------------------