├── .cache ├── Trackers │ ├── screenshotAreaTracker.txt │ ├── screenshotScreenTracker.txt │ ├── trackPattern.txt │ ├── trackPokemon.txt │ └── wallTracker.txt ├── lockscreen_images │ └── lock.png ├── menu_icon │ └── rofi.png ├── screenshot_icon │ └── screenshot.png ├── wallpaper_icon │ └── wall.png └── wallselect_icons │ ├── 3_swordsman.png │ └── tokyo_city.png ├── .config ├── Scripts │ ├── clipboard.sh │ ├── cookies.txt │ ├── emoji.sh │ ├── greet.sh │ ├── hide.sh │ ├── hour.sh │ ├── menu.sh │ ├── minutes.sh │ ├── playlists.txt │ ├── pokemon.sh │ ├── refresh.sh │ ├── run.sh │ ├── save_area.sh │ ├── save_screen.sh │ ├── shebang.sh │ ├── tofi.sh │ ├── update.sh │ ├── wallselect.sh │ ├── walltofi.sh │ └── yt-rip.sh ├── ghostty │ └── config ├── gtk-3.0 │ └── settings.ini ├── hypr │ ├── hypridle.conf │ ├── hyprland.conf │ └── hyprlock.conf ├── hyprpanel │ └── config.json ├── kitty │ ├── kitty.conf │ └── theme.conf ├── mpd │ ├── database │ ├── mpd.conf │ ├── pid │ └── sticker.sql ├── ncmpcpp │ └── error.log ├── nvim │ ├── .gitignore │ ├── .neoconf.json │ ├── init.lua │ ├── lazy-lock.json │ ├── lazyvim.json │ ├── lua │ │ ├── config │ │ │ ├── autocmds.lua │ │ │ ├── keymaps.lua │ │ │ ├── lazy.lua │ │ │ └── options.lua │ │ └── plugins │ │ │ ├── dashboard.lua │ │ │ ├── theme.lua │ │ │ └── web.lua │ └── stylua.toml ├── rofi │ ├── clipboard.rasi │ ├── emoji.rasi │ ├── menu.rasi │ └── wallselect.rasi ├── termArt │ ├── pokemon │ │ ├── Raikou.png │ │ ├── abra.png │ │ ├── bulbasaur.png │ │ ├── eve_evol.png │ │ ├── lapras.png │ │ ├── nidorina.png │ │ ├── ninetails.png │ │ ├── pidgeot.png │ │ ├── pikachu.png │ │ ├── poliwrath.png │ │ ├── raquaza.png │ │ ├── snorlax.png │ │ ├── vinesaur.png │ │ └── weepinbell.png │ └── shebang │ │ ├── Blue.png │ │ ├── Green.png │ │ ├── Red.png │ │ └── Yellow.png ├── tmux │ └── tmux.conf ├── tofi │ └── config ├── wezterm │ └── wezterm.lua ├── yazi │ ├── flavors │ │ └── catppuccin-mocha.yazi │ │ │ ├── DO_NOT_MODIFY_ANYTHING_IN_THIS_DIRECTORY │ │ │ ├── LICENSE │ │ │ ├── LICENSE-tmtheme │ │ │ ├── README.md │ │ │ ├── flavor.toml │ │ │ ├── preview.png │ │ │ └── tmtheme.xml │ ├── keymap.toml │ ├── package.toml │ ├── theme.toml │ └── yazi.toml └── zsh │ └── functions.zsh ├── .gitignore ├── .icons ├── BeautyLine │ ├── AUTHORS │ ├── COPYING │ ├── ReadMe │ ├── actions │ │ └── scalable │ │ │ ├── .directory │ │ │ ├── 1-dark.svg │ │ │ ├── 1.svg │ │ │ ├── 2-dark.svg │ │ │ ├── 2.svg │ │ │ ├── 31B2_Search_Engine_Ranker.0.svg │ │ │ ├── CVnamespace.svg │ │ │ ├── Finished.svg │ │ │ ├── Info-amarok.svg │ │ │ ├── SuggestionError.svg │ │ │ ├── SuggestionTM.svg │ │ │ ├── accept_time_event.svg │ │ │ ├── accessories-dictionary-symbolic.svg │ │ │ ├── account-logged-in.svg │ │ │ ├── acrobat.svg │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ ├── action-rss_tag.svg │ │ │ ├── action-unavailable-symbolic.svg │ │ │ ├── action-unavailable-symbolic.symbolic.svg │ │ │ ├── action-unavailable.svg │ │ │ ├── activities.svg │ │ │ ├── activity-fork.svg │ │ │ ├── actor.svg │ │ │ ├── add-files-to-archive-symbolic.svg │ │ │ ├── add-files-to-archive.svg │ │ │ ├── add-folder-to-archive.svg │ │ │ ├── add-placemark.svg │ │ │ ├── add-subtitle.svg │ │ │ ├── add.svg │ │ │ ├── address-book-new-symbolic.svg │ │ │ ├── address-book-new.svg │ │ │ ├── addressbook-details.svg │ │ │ ├── adjustcurves.svg │ │ │ ├── adjustlevels.svg │ │ │ ├── adjustrgb.svg │ │ │ ├── administration.svg │ │ │ ├── adress-book-new.svg │ │ │ ├── advert-block.svg │ │ │ ├── adw-expander-arrow-symbolic.svg │ │ │ ├── adw-expander-arrow.svg │ │ │ ├── adw-external-link-symbolic.svg │ │ │ ├── adw-external-link.svg │ │ │ ├── adw-tab-pin-symbolic.svg │ │ │ ├── adw-tab-pin.svg │ │ │ ├── adw-tab-unpin-symbolic.svg │ │ │ ├── adw-tab-unpin.svg │ │ │ ├── airplane-mode-symbolic.svg │ │ │ ├── airplane-mode.svg │ │ │ ├── airplanemode-off-dark.svg │ │ │ ├── airplanemode-off-symbolic.svg │ │ │ ├── airplanemode-off.svg │ │ │ ├── airplanemode-on-dark.svg │ │ │ ├── airplanemode-on.svg │ │ │ ├── akonadi-phone-home.svg │ │ │ ├── akonadiconsole.svg │ │ │ ├── alarm-symbolic.svg │ │ │ ├── alarm-symbolic.symbolic.svg │ │ │ ├── albumfolder-importdir.svg │ │ │ ├── albumfolder-importimages.svg │ │ │ ├── albumfolder-new.svg │ │ │ ├── albumfolder-properties.svg │ │ │ ├── albumfolder-user-trash.svg │ │ │ ├── align-horizontal-center.svg │ │ │ ├── align-horizontal-left.svg │ │ │ ├── align-horizontal-right.svg │ │ │ ├── align-vertical-bottom.svg │ │ │ ├── align-vertical-center.svg │ │ │ ├── align-vertical-top.svg │ │ │ ├── all-apps.svg │ │ │ ├── amarok_artist.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 │ │ │ ├── animation-stage.svg │ │ │ ├── answer-correct.svg │ │ │ ├── answer.svg │ │ │ ├── app-installed-symbolic.svg │ │ │ ├── app-installed.svg │ │ │ ├── app-remove-symbolic.svg │ │ │ ├── app-remove.svg │ │ │ ├── application-add-symbolic.svg │ │ │ ├── application-add.svg │ │ │ ├── application-exit-symbolic.svg │ │ │ ├── application-exit-symbolic.symbolic.svg │ │ │ ├── application-exit.svg │ │ │ ├── application-menu-symbolic.svg │ │ │ ├── application-menu-symbolic.symbolic.svg │ │ │ ├── application-menu.svg │ │ │ ├── application-terminate.svg │ │ │ ├── application-x-reject.svg │ │ │ ├── applications-chat-panel.svg │ │ │ ├── applications-email-panel.svg │ │ │ ├── applications-other.svg │ │ │ ├── applications.svg │ │ │ ├── appointment-new-symbolic.svg │ │ │ ├── appointment-new-symbolic.symbolic.svg │ │ │ ├── appointment-new.svg │ │ │ ├── appointment-recurring.svg │ │ │ ├── appointment-symbolic.svg │ │ │ ├── appointment-symbolic.symbolic.svg │ │ │ ├── appointment.svg │ │ │ ├── approved.svg │ │ │ ├── aptdaemon-delete.svg │ │ │ ├── arch-error-symbolic.svg │ │ │ ├── arch-error.svg │ │ │ ├── arch-lit-symbolic.svg │ │ │ ├── arch-unknown-symbolic.svg │ │ │ ├── arch-unknown.svg │ │ │ ├── arch-updates-symbolic.svg │ │ │ ├── arch-uptodate-symbolic.svg │ │ │ ├── archive-extract-symbolic.svg │ │ │ ├── archive-extract.svg │ │ │ ├── archive-insert-directory.svg │ │ │ ├── archive-insert.svg │ │ │ ├── archive-remove.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-down-dark.svg │ │ │ ├── arrow-down-double.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left-dark.svg │ │ │ ├── arrow-left-double.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right-dark.svg │ │ │ ├── arrow-right-double.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-up-dark.svg │ │ │ ├── arrow-up-double.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrow.svg │ │ │ ├── atmosphere.svg │ │ │ ├── audio-off.svg │ │ │ ├── audio-only-symbolic.svg │ │ │ ├── audio-only.svg │ │ │ ├── audio-output-none-panel.svg │ │ │ ├── audio-output-none.svg │ │ │ ├── audio-ready.svg │ │ │ ├── audio-volume-high-panel.svg │ │ │ ├── audio-volume-high-symbolic-dark.svg │ │ │ ├── audio-volume-high-symbolic.svg │ │ │ ├── audio-volume-high.svg │ │ │ ├── audio-volume-low-panel.svg │ │ │ ├── audio-volume-low-symbolic-dark.svg │ │ │ ├── audio-volume-low-symbolic.svg │ │ │ ├── audio-volume-low-symbolic.symbolic.svg │ │ │ ├── audio-volume-low-zero-panel.svg │ │ │ ├── audio-volume-low-zero.svg │ │ │ ├── audio-volume-low.svg │ │ │ ├── audio-volume-medium-panel.svg │ │ │ ├── audio-volume-medium-symbolic-dark.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-dark.svg │ │ │ ├── audio-volume-muted-symbolic.svg │ │ │ ├── audio-volume-muted-symbolic.symbolic.svg │ │ │ ├── audio-volume-muted.svg │ │ │ ├── audio-volume-off-symbolic.svg │ │ │ ├── audio-volume-off.svg │ │ │ ├── audio-volume-overamplified-symbolic.svg │ │ │ ├── audio-volume-overamplified-symbolic.symbolic.svg │ │ │ ├── audio-volume-overamplified.svg │ │ │ ├── audio-volume-zero-panel.svg │ │ │ ├── audio.svg │ │ │ ├── auth-face-symbolic.svg │ │ │ ├── auth-face-symbolic.symbolic.svg │ │ │ ├── auth-face.svg │ │ │ ├── auto-scale-all.svg │ │ │ ├── autocorrection.svg │ │ │ ├── avatar-default-symbolic.svg │ │ │ ├── avatar-default.svg │ │ │ ├── back.svg │ │ │ ├── backup.svg │ │ │ ├── beamerblock.svg │ │ │ ├── beamerframe.svg │ │ │ ├── bibtex.svg │ │ │ ├── bittorrent-sync.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-add-symbolic.svg │ │ │ ├── bookmark-edit.svg │ │ │ ├── bookmark-new-list.svg │ │ │ ├── bookmark-new-symbolic.svg │ │ │ ├── bookmark-new.svg │ │ │ ├── bookmark-remove.svg │ │ │ ├── bookmark-toolbar.svg │ │ │ ├── bookmark.svg │ │ │ ├── bookmark_add.svg │ │ │ ├── bookmark_list_add.svg │ │ │ ├── bookmarks-organize.svg │ │ │ ├── bookmarks-symbolic.svg │ │ │ ├── bookmarks.svg │ │ │ ├── bookmarks_list_add.svg │ │ │ ├── borderpainter.svg │ │ │ ├── box.svg │ │ │ ├── bqm-add.svg │ │ │ ├── bqm-addqueue.svg │ │ │ ├── bqm-commit.svg │ │ │ ├── bqm-diff.svg │ │ │ ├── bqm-remove.svg │ │ │ ├── bqm-rmqueue.svg │ │ │ ├── bqm-update.svg │ │ │ ├── breeze-settings.svg │ │ │ ├── brightness-display-symbolic.svg │ │ │ ├── brightness-display.svg │ │ │ ├── brightness-high-symbolic.svg │ │ │ ├── brightness-systray.svg │ │ │ ├── brightnesssettings.svg │ │ │ ├── brisk_system-log-out-symbolic.svg │ │ │ ├── brisk_system-log-out.svg │ │ │ ├── browser-download-symbolic.svg │ │ │ ├── browser-download.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-7.svg │ │ │ ├── btsync-gui-8.svg │ │ │ ├── btsync-gui-9.svg │ │ │ ├── btsync-gui-connecting.svg │ │ │ ├── btsync-gui-gtk.svg │ │ │ ├── btsync-gui.svg │ │ │ ├── btsync-user.svg │ │ │ ├── budgie-brightness-controller-1-symbolic.svg │ │ │ ├── budgie-dropby-symbolic.svg │ │ │ ├── budgie-dropby.svg │ │ │ ├── budgie-polkit-dialog.svg │ │ │ ├── budgie-rotation-lock-button-symbolic.svg │ │ │ ├── burst.svg │ │ │ ├── button_cancel.svg │ │ │ ├── button_ok.svg │ │ │ ├── bwtonal.svg │ │ │ ├── cab_extract.svg │ │ │ ├── cab_view.svg │ │ │ ├── cache.svg │ │ │ ├── cacher.svg │ │ │ ├── calendar-go-today.svg │ │ │ ├── calibre-ebook-edit.svg │ │ │ ├── call-end-symbolic.svg │ │ │ ├── call-end.svg │ │ │ ├── call-outgoing.svg │ │ │ ├── call-start-symbolic.svg │ │ │ ├── call-start.svg │ │ │ ├── call-stop-symbolic.svg │ │ │ ├── call-stop.svg │ │ │ ├── callout-shape.svg │ │ │ ├── camera-disabled-symbolic.svg │ │ │ ├── camera-disabled.svg │ │ │ ├── camera-hardware-disabled-symbolic.svg │ │ │ ├── camera-hardware-disabled.svg │ │ │ ├── camera-off.svg │ │ │ ├── camera-on.svg │ │ │ ├── camera-ready.svg │ │ │ ├── camera-switch-symbolic.svg │ │ │ ├── camera-switch.svg │ │ │ ├── camera_unmount.svg │ │ │ ├── cancel.svg │ │ │ ├── cards-block.svg │ │ │ ├── carousel-arrow-previous-symbolic.svg │ │ │ ├── category-delete.svg │ │ │ ├── category.svg │ │ │ ├── cd.svg │ │ │ ├── cdplayer-eject.svg │ │ │ ├── cell_edit.svg │ │ │ ├── cell_layout.svg │ │ │ ├── change-date-symbolic.svg │ │ │ ├── change-date.svg │ │ │ ├── changes-allow-symbolic.svg │ │ │ ├── changes-allow-symbolic.symbolic.svg │ │ │ ├── changes-allow.svg │ │ │ ├── changes-prevent-symbolic.svg │ │ │ ├── changes-prevent-symbolic.symbolic.svg │ │ │ ├── changes-prevent.svg │ │ │ ├── channel-insecure-symbolic.svg │ │ │ ├── channel-insecure.svg │ │ │ ├── channel-secure-symbolic.svg │ │ │ ├── channel-secure-symbolic.symbolic.svg │ │ │ ├── channel-secure.svg │ │ │ ├── channelmixer.svg │ │ │ ├── character-set.svg │ │ │ ├── chat-message-new-symbolic.svg │ │ │ ├── chat-message-new.svg │ │ │ ├── chat-symbolic.svg │ │ │ ├── chat.svg │ │ │ ├── check-filled.svg │ │ │ ├── checkbox-checked-symbolic.svg │ │ │ ├── checkbox-checked-symbolic.symbolic.svg │ │ │ ├── checkbox-checked.svg │ │ │ ├── checkbox-mixed-symbolic.svg │ │ │ ├── checkbox-mixed-symbolic.symbolic.svg │ │ │ ├── checkbox-mixed.svg │ │ │ ├── checkbox-symbolic.svg │ │ │ ├── checkbox-symbolic.symbolic.svg │ │ │ ├── checkbox.svg │ │ │ ├── checkmark.svg │ │ │ ├── chronometer-lap.svg │ │ │ ├── chronometer-pause.svg │ │ │ ├── chronometer-reset.svg │ │ │ ├── chronometer-start.svg │ │ │ ├── chronometer-stop.svg │ │ │ ├── chronometer.svg │ │ │ ├── class-or-package.svg │ │ │ ├── class.svg │ │ │ ├── classicmenu-indicator-dark.svg │ │ │ ├── clear_left.svg │ │ │ ├── clipboard.svg │ │ │ ├── clipit-trayicon-panel.svg │ │ │ ├── clipman.svg │ │ │ ├── clock-large.svg │ │ │ ├── clock.svg │ │ │ ├── close-symbolic.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cm_briefview.svg │ │ │ ├── cm_columnsview.svg │ │ │ ├── cm_copyfullnamestoclip.svg │ │ │ ├── cm_extractfiles.svg │ │ │ ├── cm_flatview.svg │ │ │ ├── cm_multirename.svg │ │ │ ├── cm_options.svg │ │ │ ├── cm_packfiles.svg │ │ │ ├── cm_refresh.svg │ │ │ ├── cm_runterm.svg │ │ │ ├── cm_search.svg │ │ │ ├── cm_thumbnailsview.svg │ │ │ ├── cm_viewhistorynext.svg │ │ │ ├── cm_viewhistoryprev.svg │ │ │ ├── code-block.svg │ │ │ ├── code-class.svg │ │ │ ├── code-context.svg │ │ │ ├── code-function.svg │ │ │ ├── collapse-all-symbolic.svg │ │ │ ├── collapse-all.svg │ │ │ ├── collapse.svg │ │ │ ├── collection-rescan-amarok.svg │ │ │ ├── color-fill.svg │ │ │ ├── color-management.svg │ │ │ ├── color-picker-grey.svg │ │ │ ├── color-picker.svg │ │ │ ├── color-profile-symbolic.svg │ │ │ ├── color-profile.svg │ │ │ ├── color-select-symbolic.svg │ │ │ ├── color-select.svg │ │ │ ├── colorhug-refresh.svg │ │ │ ├── colormanagement.svg │ │ │ ├── colorneg.svg │ │ │ ├── colors-chromablue.svg │ │ │ ├── colors-chromagreen.svg │ │ │ ├── colors-chromared.svg │ │ │ ├── colors-luma.svg │ │ │ ├── com.apps.todometer.svg │ │ │ ├── com.apps.xcas.svg │ │ │ ├── com.calibre_ebook.calibre.ebook-edit.svg │ │ │ ├── com.calibre_ebook.calibre.ebook_edit.svg │ │ │ ├── comment-symbolic.svg │ │ │ ├── comment.svg │ │ │ ├── compass.svg │ │ │ ├── component.svg │ │ │ ├── computer-fail-symbolic.svg │ │ │ ├── computer-fail.svg │ │ │ ├── computer-log-out.svg │ │ │ ├── config.svg │ │ │ ├── configuration.svg │ │ │ ├── configure-shortcuts.svg │ │ │ ├── configure-toolbars.svg │ │ │ ├── configure.svg │ │ │ ├── configure_kile.svg │ │ │ ├── configure_project.svg │ │ │ ├── configure_shortcuts.svg │ │ │ ├── configure_toolbars.svg │ │ │ ├── contact-new-symbolic.svg │ │ │ ├── contact-new.svg │ │ │ ├── content-loading-symbolic.svg │ │ │ ├── content-loading-symbolic.symbolic.svg │ │ │ ├── content-loading.svg │ │ │ ├── contents.svg │ │ │ ├── contexthelp.svg │ │ │ ├── contrast.svg │ │ │ ├── convert.svg │ │ │ ├── cppcheck.svg │ │ │ ├── cryptfolder-closed-light.svg │ │ │ ├── cryptfolder-indicator-light.svg │ │ │ ├── cryptfolder-indicator.svg │ │ │ ├── cryptfolder-open-light.svg │ │ │ ├── cryptkeeper.svg │ │ │ ├── csd-automount.svg │ │ │ ├── csd-clipboard.svg │ │ │ ├── currenttrack_pause.svg │ │ │ ├── currenttrack_play.svg │ │ │ ├── cursor-arrow.svg │ │ │ ├── curve-connector.svg │ │ │ ├── cvc-about.svg │ │ │ ├── cvc-configure.svg │ │ │ ├── cvc-connect.svg │ │ │ ├── cvc-disconnect.svg │ │ │ ├── cvc-info.svg │ │ │ ├── data-error.svg │ │ │ ├── data-information.svg │ │ │ ├── data-password.svg │ │ │ ├── data-question.svg │ │ │ ├── data-warning.svg │ │ │ ├── database-index.svg │ │ │ ├── database-lock.svg │ │ │ ├── dblatex.svg │ │ │ ├── deadbeef-panel.svg │ │ │ ├── debug-run.svg │ │ │ ├── decryptet.svg │ │ │ ├── deepin-music-symbolic-dark.svg │ │ │ ├── deepin-music-symbolic.svg │ │ │ ├── deepin-virtualkeyboard.svg │ │ │ ├── delete-comment.svg │ │ │ ├── delete-table-row.svg │ │ │ ├── delete.svg │ │ │ ├── delete_table.svg │ │ │ ├── deletecell.svg │ │ │ ├── device.svg │ │ │ ├── dfm-app-grid.svg │ │ │ ├── dfm-view-app-grid.svg │ │ │ ├── dfm-view-grid.svg │ │ │ ├── dfm-view-icon.svg │ │ │ ├── dfm_rightview_detail.svg │ │ │ ├── dfm_view_details.svg │ │ │ ├── diag_component.svg │ │ │ ├── dialog-align-and-distribute.svg │ │ │ ├── dialog-apply.svg │ │ │ ├── dialog-cancel.svg │ │ │ ├── dialog-close.svg │ │ │ ├── dialog-error-symbolic.svg │ │ │ ├── dialog-error-symbolic.symbolic.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-symbolic.svg │ │ │ ├── dialog-password-symbolic.symbolic.svg │ │ │ ├── dialog-password.svg │ │ │ ├── dialog-positive.svg │ │ │ ├── dialog-question-symbolic.svg │ │ │ ├── dialog-question-symbolic.symbolic.svg │ │ │ ├── dialog-question.svg │ │ │ ├── dialog-rows-and-columns.svg │ │ │ ├── dialog-scripts.svg │ │ │ ├── dialog-selectors.svg │ │ │ ├── dialog-templates.svg │ │ │ ├── dialog-text-and-font.svg │ │ │ ├── dialog-transform.svg │ │ │ ├── dialog-warning-symbolic.svg │ │ │ ├── dialog-warning-symbolic.symbolic.svg │ │ │ ├── dialog-warning.svg │ │ │ ├── dialog-xml-editor.svg │ │ │ ├── dialog-yes.svg │ │ │ ├── dino-double-tick-symbolic.svg │ │ │ ├── dino-double-tick.svg │ │ │ ├── dino-status-away.svg │ │ │ ├── dino-status-chat.svg │ │ │ ├── dino-status-dnd.svg │ │ │ ├── dino-status-online.svg │ │ │ ├── dino-tick-symbolic.svg │ │ │ ├── dino-tick.svg │ │ │ ├── diodon-panel.svg │ │ │ ├── dirsync.svg │ │ │ ├── disabled-audio-output-plugged.svg │ │ │ ├── disconnect.svg │ │ │ ├── disconnect_dark.svg │ │ │ ├── discord-tray-connected.svg │ │ │ ├── discord-tray-speaking.svg │ │ │ ├── display-brightness-high-symbolic.svg │ │ │ ├── display-brightness-high.svg │ │ │ ├── display-brightness-low-symbolic.svg │ │ │ ├── display-brightness-low.svg │ │ │ ├── display-brightness-medium-symbolic.svg │ │ │ ├── display-brightness-medium.svg │ │ │ ├── display-brightness-symbolic.svg │ │ │ ├── display-brightness-symbolic.symbolic.svg │ │ │ ├── displaymathmode.svg │ │ │ ├── distribute-horizontal-margin.svg │ │ │ ├── distribute-horizontal-page.svg │ │ │ ├── distribute-vertical-margin.svg │ │ │ ├── distribute-vertical-page.svg │ │ │ ├── distribute.svg │ │ │ ├── document-cleanup.svg │ │ │ ├── document-close.svg │ │ │ ├── document-decrypt.svg │ │ │ ├── document-download.svg │ │ │ ├── document-duplicate.svg │ │ │ ├── document-edit-decrypt.svg │ │ │ ├── document-edit-encrypt.svg.svg │ │ │ ├── document-edit-sign.svg │ │ │ ├── document-edit-symbolic.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-symbolic.svg │ │ │ ├── document-import.svg │ │ │ ├── document-multiple.svg │ │ │ ├── document-new-from-template.svg │ │ │ ├── document-new-symbolic.svg │ │ │ ├── document-new.svg │ │ │ ├── document-open-data.svg │ │ │ ├── document-open-folder.svg │ │ │ ├── document-open-recent-symbolic.svg │ │ │ ├── document-open-recent-symbolic.symbolic.svg │ │ │ ├── document-open-recent.svg │ │ │ ├── document-open-remote.svg │ │ │ ├── document-open-symbolic.svg │ │ │ ├── document-open-symbolic.symbolic.svg │ │ │ ├── document-open.svg │ │ │ ├── document-page-setup-symbolic.svg │ │ │ ├── document-page-setup.svg │ │ │ ├── document-preview-archive.svg │ │ │ ├── document-preview.svg │ │ │ ├── document-print-direct.svg │ │ │ ├── document-print-frame.svg │ │ │ ├── document-print-preview-symbolic.svg │ │ │ ├── document-print-preview-symbolic.symbolic.svg │ │ │ ├── document-print-preview.svg │ │ │ ├── document-print-symbolic.svg │ │ │ ├── document-print-symbolic.symbolic.svg │ │ │ ├── document-print.svg │ │ │ ├── document-properties-symbolic.svg │ │ │ ├── document-properties.svg │ │ │ ├── document-replace-symbolic.svg │ │ │ ├── document-replace.svg │ │ │ ├── document-revert-rtl-symbolic.svg │ │ │ ├── document-revert-symbolic-rtl.svg │ │ │ ├── document-revert-symbolic.svg │ │ │ ├── document-revert.svg │ │ │ ├── document-save-all.svg │ │ │ ├── document-save-as-symbolic.svg │ │ │ ├── document-save-as-template.svg │ │ │ ├── document-save-as.svg │ │ │ ├── document-save-symbolic.svg │ │ │ ├── document-save-symbolic.symbolic.svg │ │ │ ├── document-save.svg │ │ │ ├── document-send-symbolic.svg │ │ │ ├── document-send.svg │ │ │ ├── document-share.svg │ │ │ ├── document-sign.svg │ │ │ ├── document-single.svg │ │ │ ├── documentation.svg │ │ │ ├── documentinfo.svg │ │ │ ├── donate.svg │ │ │ ├── double-page.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-brush.svg │ │ │ ├── draw-circle.svg │ │ │ ├── draw-ellipse.svg │ │ │ ├── draw-eraser-delete-objects.svg │ │ │ ├── draw-eraser.svg │ │ │ ├── draw-freehand.svg │ │ │ ├── draw-geometry-inactive.svg │ │ │ ├── draw-path.svg │ │ │ ├── draw-polygon-star.svg │ │ │ ├── draw-rectangle.svg │ │ │ ├── draw-star.svg │ │ │ ├── draw-text.svg │ │ │ ├── draw.io.svg │ │ │ ├── drive-mount-failed.svg │ │ │ ├── drive-removable-dock-symbolic-dark.svg │ │ │ ├── drive-removable-dock-symbolic.svg │ │ │ ├── drive-removable-dock.svg │ │ │ ├── drive-removable-media.svg │ │ │ ├── dropboxstatus-logo.svg │ │ │ ├── dvipdf.svg │ │ │ ├── dvipng.svg │ │ │ ├── dvips.svg │ │ │ ├── dynamic-amarok.svg │ │ │ ├── edit-add.svg │ │ │ ├── edit-audio.svg │ │ │ ├── edit-clear-all-symbolic.svg │ │ │ ├── edit-clear-all.svg │ │ │ ├── edit-clear-history.svg │ │ │ ├── edit-clear-list.svg │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ ├── edit-clear-rtl-symbolic.svg │ │ │ ├── edit-clear-symbolic-rtl.svg │ │ │ ├── edit-clear-symbolic.svg │ │ │ ├── edit-clear-symbolic.symbolic.svg │ │ │ ├── edit-clear.svg │ │ │ ├── edit-comment.svg │ │ │ ├── edit-copy-symbolic.svg │ │ │ ├── edit-copy-symbolic.symbolic.svg │ │ │ ├── edit-copy.svg │ │ │ ├── edit-cut-symbolic.svg │ │ │ ├── edit-cut-symbolic.symbolic.svg │ │ │ ├── edit-cut.svg │ │ │ ├── edit-delete-remove.svg │ │ │ ├── edit-delete-shred.svg │ │ │ ├── edit-delete-symbolic.svg │ │ │ ├── edit-delete-symbolic.symbolic.svg │ │ │ ├── edit-delete.svg │ │ │ ├── edit-download.svg │ │ │ ├── edit-duplicate.svg │ │ │ ├── edit-entry.svg │ │ │ ├── edit-find-mail.svg │ │ │ ├── edit-find-project.svg │ │ │ ├── edit-find-replace-symbolic.svg │ │ │ ├── edit-find-replace-symbolic.symbolic.svg │ │ │ ├── edit-find-replace.svg │ │ │ ├── edit-find-symbolic.svg │ │ │ ├── edit-find-symbolic.symbolic.svg │ │ │ ├── edit-find-user.svg │ │ │ ├── edit-find.svg │ │ │ ├── edit-flag.svg │ │ │ ├── edit-group.svg │ │ │ ├── edit-image-face-add.svg │ │ │ ├── edit-image-face-detect.svg │ │ │ ├── edit-image-face-show.svg │ │ │ ├── edit-link.svg │ │ │ ├── edit-map.svg │ │ │ ├── edit-mark.svg │ │ │ ├── edit-move-symbolic.svg │ │ │ ├── edit-move.svg │ │ │ ├── edit-node.svg │ │ │ ├── edit-none.svg │ │ │ ├── edit-paste-in-place.svg │ │ │ ├── edit-paste-style.svg │ │ │ ├── edit-paste-symbolic.svg │ │ │ ├── edit-paste-symbolic.symbolic.svg │ │ │ ├── edit-paste.svg │ │ │ ├── edit-redo-rtl-symbolic.svg │ │ │ ├── edit-redo-symbolic-rtl.svg │ │ │ ├── edit-redo-symbolic.svg │ │ │ ├── edit-redo.svg │ │ │ ├── edit-rename.svg │ │ │ ├── edit-save.svg │ │ │ ├── edit-select-all-symbolic.svg │ │ │ ├── edit-select-all-symbolic.symbolic.svg │ │ │ ├── edit-select-all.svg │ │ │ ├── edit-select-invert.svg │ │ │ ├── edit-select-none.svg │ │ │ ├── edit-select-symbolic.svg │ │ │ ├── edit-select.svg │ │ │ ├── edit-symbolic.svg │ │ │ ├── edit-symbolic.symbolic.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-tag-symbolic.svg │ │ │ ├── edit-tag.svg │ │ │ ├── edit-undo-history.svg │ │ │ ├── edit-undo-rtl-symbolic.svg │ │ │ ├── edit-undo-symbolic-rtl.svg │ │ │ ├── edit-undo-symbolic.svg │ │ │ ├── edit-undo.svg │ │ │ ├── edit-upload.svg │ │ │ ├── edit.svg │ │ │ ├── editclear.svg │ │ │ ├── editcopy.svg │ │ │ ├── editcut.svg │ │ │ ├── editdelete.svg │ │ │ ├── editimage.svg │ │ │ ├── editor.svg │ │ │ ├── editpaste.svg │ │ │ ├── edittext.svg │ │ │ ├── edittrash.svg │ │ │ ├── ejecter.svg │ │ │ ├── emblem-added.svg │ │ │ ├── emblem-checked.svg │ │ │ ├── emblem-default-symbolic.svg │ │ │ ├── emblem-default-symbolic.symbolic.svg │ │ │ ├── emblem-default.svg │ │ │ ├── emblem-documents-symbolic.svg │ │ │ ├── emblem-documents-symbolic.symbolic.svg │ │ │ ├── emblem-documents.svg │ │ │ ├── emblem-download.svg │ │ │ ├── emblem-downloads.svg │ │ │ ├── emblem-dropbox-app.svg │ │ │ ├── emblem-dropbox-infinite.svg │ │ │ ├── emblem-dropbox-mixedstate.svg │ │ │ ├── emblem-dropbox-selsync.svg │ │ │ ├── emblem-dropbox-syncing.svg │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ ├── emblem-dropbox-uptodate.svg │ │ │ ├── emblem-dropbox.svg │ │ │ ├── emblem-encrypted-locked.svg │ │ │ ├── emblem-encrypted-unlocked.svg │ │ │ ├── emblem-error.svg │ │ │ ├── emblem-favorite-symbolic.svg │ │ │ ├── emblem-favorite-symbolic.symbolic.svg │ │ │ ├── emblem-favorite.svg │ │ │ ├── emblem-generic.svg │ │ │ ├── emblem-git-new.svg │ │ │ ├── emblem-git.svg │ │ │ ├── emblem-important-symbolic.svg │ │ │ ├── emblem-important-symbolic.symbolic.svg │ │ │ ├── emblem-important.svg │ │ │ ├── emblem-information-symbolic.svg │ │ │ ├── emblem-information-symbolic.symbolic.svg │ │ │ ├── emblem-information.svg │ │ │ ├── emblem-installed.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-mega-uptodate.svg │ │ │ ├── emblem-mounted.svg │ │ │ ├── emblem-music-symbolic.svg │ │ │ ├── emblem-music-symbolic.symbolic.svg │ │ │ ├── emblem-music.svg │ │ │ ├── emblem-new.svg │ │ │ ├── emblem-noread.svg │ │ │ ├── emblem-nowrite.svg │ │ │ ├── emblem-ok-symbolic.svg │ │ │ ├── emblem-ok-symbolic.symbolic.svg │ │ │ ├── emblem-ok.svg │ │ │ ├── emblem-package.svg │ │ │ ├── emblem-pause.svg │ │ │ ├── emblem-photos-symbolic.svg │ │ │ ├── emblem-photos-symbolic.symbolic.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-error.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-symbolic.svg │ │ │ ├── emblem-shared-symbolic.symbolic.svg │ │ │ ├── emblem-shared.svg │ │ │ ├── emblem-success.svg │ │ │ ├── emblem-symbolic-link.svg │ │ │ ├── emblem-synced-callbacks-active.svg │ │ │ ├── emblem-synchronizing-symbolic.svg │ │ │ ├── emblem-synchronizing-symbolic.symbolic.svg │ │ │ ├── emblem-synchronizing.svg │ │ │ ├── emblem-unavailable.svg │ │ │ ├── emblem-unlocked.svg │ │ │ ├── emblem-unmounted.svg │ │ │ ├── emblem-unreadable.svg │ │ │ ├── emblem-urgent.svg │ │ │ ├── emblem-videos-symbolic.svg │ │ │ ├── emblem-videos.svg │ │ │ ├── emblem-warning.svg │ │ │ ├── emblem-web.svg │ │ │ ├── emoji-flags-symbolic.svg │ │ │ ├── emoji-flags.svg │ │ │ ├── emoji-people-symbolic.svg │ │ │ ├── emoji-people.svg │ │ │ ├── emoji-recent-symbolic.svg │ │ │ ├── emoji-recent.svg │ │ │ ├── empathy-available.svg │ │ │ ├── empathy-away.svg │ │ │ ├── empathy-offline.svg │ │ │ ├── emptytrash.svg │ │ │ ├── encrypted.svg │ │ │ ├── end_of_life.svg │ │ │ ├── end_state.svg │ │ │ ├── enterprise.svg │ │ │ ├── entry-clone.svg │ │ │ ├── entry-delete.svg │ │ │ ├── entry-edit.svg │ │ │ ├── entry-new.svg │ │ │ ├── ephy-bookmark-tag-symbolic.svg │ │ │ ├── ephy-bookmarks-symbolic.svg │ │ │ ├── ephy-bookmarks.svg │ │ │ ├── ephy-reader-mode-symbolic.svg │ │ │ ├── ephy-reader-mode.svg │ │ │ ├── epiphany-download.svg │ │ │ ├── epiphany-upload.svg │ │ │ ├── equalizer.svg │ │ │ ├── error.svg │ │ │ ├── event-birthday-symbolic.svg │ │ │ ├── event-birthday.svg │ │ │ ├── exaile-pause.svg │ │ │ ├── exaile-play.svg │ │ │ ├── exception.svg │ │ │ ├── exchange-positions-clockwise.svg │ │ │ ├── exchange-positions.svg │ │ │ ├── exifinfo.svg │ │ │ ├── exit.svg │ │ │ ├── expand-all-symbolic.svg │ │ │ ├── expand-all.svg │ │ │ ├── expand.svg │ │ │ ├── export-symbolic.svg │ │ │ ├── extension-symbolic.svg │ │ │ ├── extension.svg │ │ │ ├── external-link-symbolic.svg │ │ │ ├── external-link.svg │ │ │ ├── extract-archive-symbolic.svg │ │ │ ├── extract-archive.svg │ │ │ ├── eye-not-looking-symbolic.svg │ │ │ ├── eye-not-looking.svg │ │ │ ├── eye-open-negative-filled-symbolic.svg │ │ │ ├── eye-open-negative-filled.svg │ │ │ ├── face-smile-panel.svg │ │ │ ├── favorite-new-symbolic.svg │ │ │ ├── favorite-new.svg │ │ │ ├── favorite.svg │ │ │ ├── favorites.svg │ │ │ ├── fcitx-fullwidth-active-dark.svg │ │ │ ├── fcitx-fullwidth-active-symbolic-dark.svg │ │ │ ├── fcitx-fullwidth-active-symbolic.svg │ │ │ ├── fcitx-fullwidth-active.svg │ │ │ ├── fcitx-fullwidth-inactive-dark.svg │ │ │ ├── fcitx-fullwidth-inactive.svg │ │ │ ├── fcitx-googlepinyin-dark.svg │ │ │ ├── fcitx-googlepinyin.svg │ │ │ ├── fcitx-handwriting-active-dark.svg │ │ │ ├── fcitx-handwriting-active.svg │ │ │ ├── fcitx-handwriting-inactive-dark.svg │ │ │ ├── fcitx-handwriting-inactive.svg │ │ │ ├── fcitx-kbd-dark.svg │ │ │ ├── fcitx-kbd-symbolic-dark.svg │ │ │ ├── fcitx-kbd-symbolic.svg │ │ │ ├── fcitx-kbd.svg │ │ │ ├── fcitx-panel.svg │ │ │ ├── fcitx-rime-deploy-dark.svg │ │ │ ├── fcitx-rime-deploy.svg │ │ │ ├── fcitx-rime-sync-dark.svg │ │ │ ├── fcitx-rime-sync.svg │ │ │ ├── fcitx-vk-active-dark.svg │ │ │ ├── fcitx-vk-active-symbolic-dark.svg │ │ │ ├── fcitx-vk-active-symbolic.svg │ │ │ ├── fcitx-vk-active.svg │ │ │ ├── fcitx-vk-inactive-dark.svg │ │ │ ├── fcitx-vk-inactive-symbolic-dark.svg │ │ │ ├── fcitx-vk-inactive-symbolic.svg │ │ │ ├── fcitx-vk-inactive.svg │ │ │ ├── file-catalog-symbolic.svg │ │ │ ├── file-catalog.svg │ │ │ ├── file-library-symbolic.svg │ │ │ ├── file-library.svg │ │ │ ├── file-operation-cancelled-symbolic.svg │ │ │ ├── file-operation-cancelled.svg │ │ │ ├── file-operation-finished-symbolic.svg │ │ │ ├── file-operation-finished.svg │ │ │ ├── file-print.svg │ │ │ ├── file-roller-symbolic.svg │ │ │ ├── file-save-as.svg │ │ │ ├── file-save.svg │ │ │ ├── file-search-symbolic.svg │ │ │ ├── file-search-symbolic.symbolic.svg │ │ │ ├── file-search.svg │ │ │ ├── file-zoom-in.svg │ │ │ ├── file-zoom-out.svg │ │ │ ├── filefind.svg │ │ │ ├── filegrep.svg │ │ │ ├── filename-album-amarok.svg │ │ │ ├── filename-artist-amarok.svg │ │ │ ├── filename-bpm-amarok.svg │ │ │ ├── filename-comment-amarok.svg │ │ │ ├── filename-composer-amarok.svg │ │ │ ├── filename-discnumber-amarok.svg │ │ │ ├── filename-filetype-amarok.svg │ │ │ ├── filename-group-length.svg │ │ │ ├── filename-group-tracks.svg │ │ │ ├── filename-ignore-amarok.svg │ │ │ ├── filename-sample-rate.svg │ │ │ ├── filename-track-amarok.svg │ │ │ ├── filename-year-amarok.svg │ │ │ ├── filenew.svg │ │ │ ├── fileopen.svg │ │ │ ├── fileprint.svg │ │ │ ├── filequickprint.svg │ │ │ ├── filesave.svg │ │ │ ├── filesaveas.svg │ │ │ ├── fileview-preview.svg │ │ │ ├── fill-color.svg │ │ │ ├── filmgrain.svg │ │ │ ├── filter-symbolic.svg │ │ │ ├── filter.svg │ │ │ ├── final_activity.svg │ │ │ ├── financial-payees.svg │ │ │ ├── financial-report.svg │ │ │ ├── find-location-symbolic.svg │ │ │ ├── find-location-symbolic.symbolic.svg │ │ │ ├── find-location.svg │ │ │ ├── find.svg │ │ │ ├── fitmanual.svg │ │ │ ├── flag-black.svg │ │ │ ├── flag-blue.svg │ │ │ ├── flag-green.svg │ │ │ ├── flag-red.svg │ │ │ ├── flag-symbolic.svg │ │ │ ├── flag-yellow.svg │ │ │ ├── flag.svg │ │ │ ├── flashlight-off.svg │ │ │ ├── flashlight-on.svg │ │ │ ├── flightmode.svg │ │ │ ├── fm-compact.svg │ │ │ ├── fm-details.svg │ │ │ ├── fm-icons.svg │ │ │ ├── fm-new.svg │ │ │ ├── fm-thumbs.svg │ │ │ ├── focus-legacy-systray-symbolic.svg │ │ │ ├── focus-legacy-systray.svg │ │ │ ├── focus-windows-symbolic.svg │ │ │ ├── focus-windows-symbolic.symbolic.svg │ │ │ ├── focus-windows.svg │ │ │ ├── folder-copy.svg │ │ │ ├── folder-documents-symbolic.svg │ │ │ ├── folder-drag-accept-symbolic.svg │ │ │ ├── folder-move.svg │ │ │ ├── folder-new-symbolic.svg │ │ │ ├── folder-new.svg │ │ │ ├── folder-open-symbolic.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-saved-search-symbolic.svg │ │ │ ├── folder-saved-search.svg │ │ │ ├── folder-script.svg │ │ │ ├── folder-sync.svg │ │ │ ├── folder-tag.svg │ │ │ ├── folder_color_picker.svg │ │ │ ├── folder_copy.svg │ │ │ ├── folder_new.svg │ │ │ ├── followmouse.svg │ │ │ ├── font-face.svg │ │ │ ├── font-size-down.svg │ │ │ ├── font-size-up.svg │ │ │ ├── font.svg │ │ │ ├── fork.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-fill-color.svg │ │ │ ├── format-font-size-less.svg │ │ │ ├── format-font-size-more.svg │ │ │ ├── format-indent-less.svg │ │ │ ├── format-indent-more.svg │ │ │ ├── format-justify-center-symbolic.svg │ │ │ ├── format-justify-center.svg │ │ │ ├── format-justify-fill-symbolic.svg │ │ │ ├── format-justify-fill.svg │ │ │ ├── format-justify-left-symbolic.svg │ │ │ ├── format-justify-left.svg │ │ │ ├── format-justify-right-symbolic.svg │ │ │ ├── format-justify-right.svg │ │ │ ├── format-list-ordered.svg │ │ │ ├── format-list-unordered.svg │ │ │ ├── format-text-bold-symbolic.svg │ │ │ ├── format-text-bold.svg │ │ │ ├── format-text-code.svg │ │ │ ├── format-text-color.svg │ │ │ ├── format-text-direction-ltr-symbolic.svg │ │ │ ├── format-text-direction-ltr.svg │ │ │ ├── format-text-direction-rtl-symbolic.svg │ │ │ ├── format-text-direction-rtl.svg │ │ │ ├── format-text-larger-symbolic.svg │ │ │ ├── format-text-larger.svg │ │ │ ├── format-text-smaller-symbolic.svg │ │ │ ├── format-text-smaller.svg │ │ │ ├── format-text-symbol.svg │ │ │ ├── format-unordered-list-symbolic.svg │ │ │ ├── format-unordered-list.svg │ │ │ ├── formula.svg │ │ │ ├── forward.svg │ │ │ ├── funnel-symbolic.svg │ │ │ ├── funnel.svg │ │ │ ├── games-achievements.svg │ │ │ ├── games-config-background.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-solve.svg │ │ │ ├── gdu-eject.svg │ │ │ ├── geany-build.svg │ │ │ ├── geany-close-all.svg │ │ │ ├── geany-save-all.svg │ │ │ ├── geany-save.svg │ │ │ ├── gearhead-shape.svg │ │ │ ├── get-hot-new-stuff.svg │ │ │ ├── giggle-branch.svg │ │ │ ├── giggle-diff-view.svg │ │ │ ├── giggle-history-view.svg │ │ │ ├── giggle-remote.svg │ │ │ ├── giggle-tag.svg │ │ │ ├── glipper.svg │ │ │ ├── global-search-dark.svg │ │ │ ├── global-search-light.svg │ │ │ ├── globe-symbolic.svg │ │ │ ├── globe.svg │ │ │ ├── gnome-app-install-star.svg │ │ │ ├── gnome-contacts-symbolic.svg │ │ │ ├── gnome-dev-symlink.svg │ │ │ ├── gnome-dev-wavelan-encrypted.svg │ │ │ ├── gnome-fs-directory-accept.svg │ │ │ ├── gnome-fs-directory-visiting.svg │ │ │ ├── gnome-fs-loading-icon.svg │ │ │ ├── gnome-lock-screen.svg │ │ │ ├── gnome-lockscreen.svg │ │ │ ├── gnome-log-out.svg │ │ │ ├── gnome-maps-symbolic.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-panel-hibernate.svg │ │ │ ├── gnome-panel-reboot.svg │ │ │ ├── gnome-panel-suspend.svg │ │ │ ├── gnome-reboot.svg │ │ │ ├── gnome-save-as.svg │ │ │ ├── gnome-searchtool.svg │ │ │ ├── gnome-session-hebirnate.svg │ │ │ ├── gnome-session-hibernate.svg │ │ │ ├── gnome-session-logout.svg │ │ │ ├── gnome-session-suspend.svg │ │ │ ├── gnome-shutdown.svg │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ ├── gnome-stock-mail-new.svg │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ ├── gnome-stock-trash-full.svg │ │ │ ├── gnome-suspend.svg │ │ │ ├── gnome-tweak-tool-symbolic.svg │ │ │ ├── gnumeric-autofilter.svg │ │ │ ├── gnumeric-brush.svg │ │ │ ├── gnumeric-column-hide.svg │ │ │ ├── gnumeric-column-unhide.svg │ │ │ ├── gnumeric-comment-add.svg │ │ │ ├── gnumeric-comment-edit.svg │ │ │ ├── gnumeric-font.svg │ │ │ ├── gnumeric-format-border-all.svg │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ ├── gnumeric-format-border-diag.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-outside.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-url.svg │ │ │ ├── gnumeric-object-checkbox.svg │ │ │ ├── gnumeric-object-label.svg │ │ │ ├── gnumeric-object-line.svg │ │ │ ├── gnumeric-object-list.svg │ │ │ ├── gnumeric-pagesetup-hf-cell.svg │ │ │ ├── gnumeric-pagesetup-hf-time.svg │ │ │ ├── gnumeric-protection-no.svg │ │ │ ├── gnumeric-protection-yes.svg │ │ │ ├── gnumeric-row-hide.svg │ │ │ ├── gnumeric-row-unhide.svg │ │ │ ├── gnumeric-visible.svg │ │ │ ├── go-bottom-symbolic.svg │ │ │ ├── go-bottom.svg │ │ │ ├── go-down-search.svg │ │ │ ├── go-down-skip.svg │ │ │ ├── go-down-symbolic.svg │ │ │ ├── go-down.svg │ │ │ ├── go-first-rtl-symbolic.svg │ │ │ ├── go-first-symbolic-rtl.svg │ │ │ ├── go-first-symbolic.svg │ │ │ ├── go-first-view-page.svg │ │ │ ├── go-first-view.svg │ │ │ ├── go-first.svg │ │ │ ├── go-home-large.svg │ │ │ ├── go-home-symbolic.svg │ │ │ ├── go-home-symbolic.symbolic.svg │ │ │ ├── go-home.svg │ │ │ ├── go-jump-definition.svg │ │ │ ├── go-jump-locationbar.svg │ │ │ ├── go-jump-rtl-symbolic.svg │ │ │ ├── go-jump-rtl.svg │ │ │ ├── go-jump-symbolic-rtl.svg │ │ │ ├── go-jump-symbolic.svg │ │ │ ├── go-jump-today.svg │ │ │ ├── go-jump.svg │ │ │ ├── go-last-rtl-symbolic.svg │ │ │ ├── go-last-symbolic-rtl.svg │ │ │ ├── go-last-symbolic.svg │ │ │ ├── go-last-view-page.svg │ │ │ ├── go-last-view.svg │ │ │ ├── go-last.svg │ │ │ ├── go-left-symbolic.svg │ │ │ ├── go-left.svg │ │ │ ├── go-next-rtl-symbolic.svg │ │ │ ├── go-next-symbolic-rtl.svg │ │ │ ├── go-next-symbolic.svg │ │ │ ├── go-next-view-page.svg │ │ │ ├── go-next-view.svg │ │ │ ├── go-next.svg │ │ │ ├── go-parent-folder.svg │ │ │ ├── go-previous-24.svg │ │ │ ├── go-previous-rtl-symbolic.svg │ │ │ ├── go-previous-symbolic-rtl.svg │ │ │ ├── go-previous-symbolic.svg │ │ │ ├── go-previous-symbolic.symbolic.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-symbolic.svg │ │ │ ├── go-top.svg │ │ │ ├── go-up-search.svg │ │ │ ├── go-up-skip.svg │ │ │ ├── go-up-symbolic.svg │ │ │ ├── go-up.svg │ │ │ ├── go.svg │ │ │ ├── gohome.svg │ │ │ ├── google-tasks-indicator-light-normal.svg │ │ │ ├── google-tasks-indicator-normal.svg │ │ │ ├── google-tasks-indicator.svg │ │ │ ├── gpaste.svg │ │ │ ├── gpg.svg │ │ │ ├── gpgsm.svg │ │ │ ├── gpm-monitor.svg │ │ │ ├── gpmdp-tray-pause.svg │ │ │ ├── gpmdp-tray-play.svg │ │ │ ├── gps.svg │ │ │ ├── grand-search-dark.svg │ │ │ ├── grand-search-light.svg │ │ │ ├── graphics.svg │ │ │ ├── group-delete.svg │ │ │ ├── group-edit.svg │ │ │ ├── group-new.svg │ │ │ ├── group.svg │ │ │ ├── gtg-home.svg │ │ │ ├── gtg-note-new.svg │ │ │ ├── gtg-panel.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-symbolic.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-dialog-authentication-panel.svg │ │ │ ├── gtk-dialog-authentication.svg │ │ │ ├── gtk-dialog-error.svg │ │ │ ├── gtk-dialog-info.svg │ │ │ ├── gtk-dialog-ok.svg │ │ │ ├── gtk-dialog-question.svg │ │ │ ├── gtk-dialog-warning.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-first-ltr.svg │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ ├── gtk-home.svg │ │ │ ├── gtk-index.svg │ │ │ ├── gtk-info.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-stop.svg │ │ │ ├── gtk-tab-duplicate.svg │ │ │ ├── gtk-tab-new.svg │ │ │ ├── gtk-undelete-ltr.svg │ │ │ ├── gtk-undelete-rtl.svg │ │ │ ├── gtk-yes.svg │ │ │ ├── gtk-zoom-100.svg │ │ │ ├── gtk-zoom-fit.svg │ │ │ ├── gtk-zoom-in-symbolic.svg │ │ │ ├── gtk-zoom-in-symbolic.symbolic.svg │ │ │ ├── gtk-zoom-in.svg │ │ │ ├── gtk-zoom-out.svg │ │ │ ├── handle-move.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 │ │ │ ├── help-about-symbolic.svg │ │ │ ├── help-about-symbolic.symbolic.svg │ │ │ ├── help-about.svg │ │ │ ├── help-contents.svg │ │ │ ├── help-contextual.svg │ │ │ ├── help-donate-ars.svg │ │ │ ├── help-donate-aud.svg │ │ │ ├── help-donate-cad.svg │ │ │ ├── help-donate-mxn.svg │ │ │ ├── help-donate-usd.svg │ │ │ ├── help-donate.svg │ │ │ ├── help-feedback.svg │ │ │ ├── help-hint.svg │ │ │ ├── help-info-symbolic.svg │ │ │ ├── help-info.svg │ │ │ ├── help-keybord-shortcuts.svg │ │ │ ├── help-latex.svg │ │ │ ├── help-whatsthis.svg │ │ │ ├── help.svg │ │ │ ├── hide-dialogs.svg │ │ │ ├── hide-menu.svg │ │ │ ├── hide_table_column.svg │ │ │ ├── hide_table_row.svg │ │ │ ├── high-brightness.svg │ │ │ ├── hint.svg │ │ │ ├── history.svg │ │ │ ├── history_entry.svg │ │ │ ├── homerun.svg │ │ │ ├── hook-notifier.svg │ │ │ ├── horizontal.svg │ │ │ ├── hwinfo.svg │ │ │ ├── icon-task-list-symbolic.svg │ │ │ ├── icon-task-list.svg │ │ │ ├── icon_details.svg │ │ │ ├── icon_tag.svg │ │ │ ├── identity.svg │ │ │ ├── im-aim.svg │ │ │ ├── im-ban-kick-user.svg │ │ │ ├── im-ban-user.svg │ │ │ ├── im-irc.svg │ │ │ ├── im-kick-user.svg │ │ │ ├── im-message-new.svg │ │ │ ├── im-user-away.svg │ │ │ ├── im-user-busy.svg │ │ │ ├── im-user-offline.svg │ │ │ ├── im-user-online.svg │ │ │ ├── im-user.svg │ │ │ ├── image-adjust.svg │ │ │ ├── image-auto-adjust.svg │ │ │ ├── image-crop-symbolic.svg │ │ │ ├── image-crop.svg │ │ │ ├── image-invert-symbolic.svg │ │ │ ├── image-invert.svg │ │ │ ├── image-loading-symbolic.svg │ │ │ ├── image-loading.svg │ │ │ ├── image-missing.svg │ │ │ ├── image-navigator-symbolic.svg │ │ │ ├── image-navigator.svg │ │ │ ├── image-red-eye-symbolic.svg │ │ │ ├── image-resize-symbolic.svg │ │ │ ├── image-resize.svg │ │ │ ├── image-rotate-left-symbolic.svg │ │ │ ├── image-rotate-left.svg │ │ │ ├── image-rotate-right-symbolic.svg │ │ │ ├── image-rotate-right.svg │ │ │ ├── imagecomment.svg │ │ │ ├── important.svg │ │ │ ├── inbox.svg │ │ │ ├── indicator-lunar.svg │ │ │ ├── indicator-messages-new.svg │ │ │ ├── indicator-messages.svg │ │ │ ├── indicator-notification-close-select.svg │ │ │ ├── indicator-privacy-panel.svg │ │ │ ├── indicator-trashindicator-attention.svg │ │ │ ├── info.svg │ │ │ ├── initial_state.svg │ │ │ ├── input-keyboard-virtual-off.svg │ │ │ ├── input-keyboard-virtual.svg │ │ │ ├── input-keyboard.svg │ │ │ ├── input-mouse-click-left.svg │ │ │ ├── input-mouse-click-right.svg │ │ │ ├── insert-emoticon-symbolic.svg │ │ │ ├── insert-emoticon.svg │ │ │ ├── insert-horizontal-rule.svg │ │ │ ├── insert-image-symbolic.svg │ │ │ ├── insert-image.svg │ │ │ ├── insert-link-symbolic.svg │ │ │ ├── insert-link.svg │ │ │ ├── insert-math-expression.svg │ │ │ ├── insert-table-of-contents.svg │ │ │ ├── insert-table-row.svg │ │ │ ├── insert-table.svg │ │ │ ├── insert-tableofcontents.svg │ │ │ ├── insert-text-symbolic.svg │ │ │ ├── insert-text.svg │ │ │ ├── instaled.svg │ │ │ ├── install.svg │ │ │ ├── installed.svg │ │ │ ├── interface.svg │ │ │ ├── internet-amarok.svg │ │ │ ├── internet-services.svg │ │ │ ├── invertimage.svg │ │ │ ├── io.github.orontee.Argos.svg │ │ │ ├── irc-channel-active.svg │ │ │ ├── irc-close-channel.svg │ │ │ ├── irc-join-channel.svg │ │ │ ├── irc-operator.svg │ │ │ ├── irc-unvoice.svg │ │ │ ├── irc-voice.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-select-all.svg │ │ │ ├── itmages-settings.svg │ │ │ ├── itmages-stop.svg │ │ │ ├── itmages-tools.svg │ │ │ ├── itmages-upload.svg │ │ │ ├── itmages-utils.svg │ │ │ ├── itmages-warning.svg │ │ │ ├── kazam-paused.svg │ │ │ ├── kazam-stopped.svg │ │ │ ├── kdenlive-add-clip.svg │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ ├── kdenlive-align-left.svg │ │ │ ├── kdenlive-align-none.svg │ │ │ ├── kdenlive-align-right.svg │ │ │ ├── kdenlive-custom-effect.svg │ │ │ ├── kdenlive-deleffect.svg │ │ │ ├── kdenlive-down.svg │ │ │ ├── kdenlive-hide-audio.svg │ │ │ ├── kdenlive-insert-rect.svg │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ ├── kdenlive-lock.svg │ │ │ ├── kdenlive-menu.svg │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ ├── kdenlive-select-tool.svg │ │ │ ├── kdenlive-show-audio.svg │ │ │ ├── kdenlive-show-video.svg │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ ├── kdenlive-track-has-effect.svg │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ ├── kdenlive-unlock.svg │ │ │ ├── kdenlive-unselect-all.svg │ │ │ ├── kdenlive-up.svg │ │ │ ├── kdenlive-zone-end.svg │ │ │ ├── kdenlive-zone-start.svg │ │ │ ├── kdocumentinfo.svg │ │ │ ├── keyboard-hide-symbolic.svg │ │ │ ├── keyboard-hide.svg │ │ │ ├── keyboard-layout-filled-symbolic.svg │ │ │ ├── keyboard-layout-filled.svg │ │ │ ├── keyboard-shift-filled-symbolic.svg │ │ │ ├── keys.svg │ │ │ ├── kfm_home.svg │ │ │ ├── kgpg.svg │ │ │ ├── klipper.svg │ │ │ ├── kmix.svg │ │ │ ├── kmousetool_on.svg │ │ │ ├── kmouth-phrase.svg │ │ │ ├── kmouth-phrasebook.svg │ │ │ ├── knotes_alarm.svg │ │ │ ├── knotes_date.svg │ │ │ ├── knotes_delete.svg │ │ │ ├── kontes_close.svg │ │ │ ├── korg-todo.svg │ │ │ ├── kr_comparedirs.svg │ │ │ ├── kr_jumpback.svg │ │ │ ├── kr_mountman.svg │ │ │ ├── kr_setjumpback.svg │ │ │ ├── kr_syncbrowse_off.svg │ │ │ ├── kr_syncbrowse_on.svg │ │ │ ├── krb-valid-ticket.svg │ │ │ ├── kruler-north.svg │ │ │ ├── kstars_advanced.svg │ │ │ ├── kstars_catalog.svg │ │ │ ├── kstars_colors.svg │ │ │ ├── kstars_flag.svg │ │ │ ├── kstars_guides.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-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-all.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-cursor-arrow.svg │ │ │ ├── labplot-format-text-symbol.svg │ │ │ ├── labplot-transform-move.svg │ │ │ ├── labplot-zoom-select.svg │ │ │ ├── ladi-stopped.svg │ │ │ ├── language-chooser.svg │ │ │ ├── languages.svg │ │ │ ├── lastfm-neighbour.svg │ │ │ ├── lastfm-personal.svg │ │ │ ├── lastfm-recommended.svg │ │ │ ├── lastfm-tag.svg │ │ │ ├── layer-rename.svg │ │ │ ├── layer-visible-on.svg │ │ │ ├── leftjust.svg │ │ │ ├── lens.svg │ │ │ ├── libpeas-plugin.svg │ │ │ ├── lighttable.svg │ │ │ ├── lighttableadd.svg │ │ │ ├── lilypond.svg │ │ │ ├── link-symbolic.svg │ │ │ ├── link.svg │ │ │ ├── links.svg │ │ │ ├── list-add-symbolic.svg │ │ │ ├── list-add-user-symbolic.svg │ │ │ ├── list-add-user.svg │ │ │ ├── list-add.svg │ │ │ ├── list-edit-symbolic.svg │ │ │ ├── list-edit-symbolic.symbolic.svg │ │ │ ├── list-remove-all-symbolic.svg │ │ │ ├── list-remove-all.svg │ │ │ ├── list-remove-symbolic.svg │ │ │ ├── list-remove.svg │ │ │ ├── list-resource-add.svg │ │ │ ├── liteinfo.svg │ │ │ ├── location-services-active-symbolic.svg │ │ │ ├── location-services-active.svg │ │ │ ├── location-services-disabled-symbolic.svg │ │ │ ├── location-services-disabled.svg │ │ │ ├── location-services-enabled-symbolic.svg │ │ │ ├── location-services-enabled.svg │ │ │ ├── lock.svg │ │ │ ├── locked.svg │ │ │ ├── love-amarok.svg │ │ │ ├── love.svg │ │ │ ├── loved_radio.svg │ │ │ ├── low-brightness.svg │ │ │ ├── lpi-bug.svg │ │ │ ├── lpi-help.svg │ │ │ ├── lpi-translate.svg │ │ │ ├── mail-archive.svg │ │ │ ├── mail-attachment-symbolic.svg │ │ │ ├── mail-attachment.svg │ │ │ ├── mail-deleted.svg │ │ │ ├── mail-download-later.svg │ │ │ ├── mail-download-now.svg │ │ │ ├── mail-encrypted-full.svg │ │ │ ├── mail-encrypted-part.svg │ │ │ ├── mail-encrypted.svg │ │ │ ├── mail-flag-symbolic.svg │ │ │ ├── mail-flag.svg │ │ │ ├── mail-flagged.svg │ │ │ ├── mail-folder-inbox.svg │ │ │ ├── mail-folder-outbox.svg │ │ │ ├── mail-folder-sent.svg │ │ │ ├── mail-forward-attachment.svg │ │ │ ├── mail-forward-rtl-symbolic.svg │ │ │ ├── mail-forward-symbolic-rtl.svg │ │ │ ├── mail-forward-symbolic.svg │ │ │ ├── mail-forward.svg │ │ │ ├── mail-forwarded-replied.svg │ │ │ ├── mail-forwarded-symbolic.svg │ │ │ ├── mail-forwarded.svg │ │ │ ├── mail-inbox.svg │ │ │ ├── mail-invitation.svg │ │ │ ├── mail-junk-symbolic.svg │ │ │ ├── mail-mark-important-symbolic.svg │ │ │ ├── mail-mark-important-symbolic.symbolic.svg │ │ │ ├── mail-mark-important.svg │ │ │ ├── mail-mark-junk-symbolic.svg │ │ │ ├── mail-mark-junk.svg │ │ │ ├── mail-mark-notjunk-symbolic.svg │ │ │ ├── mail-mark-notjunk.svg │ │ │ ├── mail-mark-read.svg │ │ │ ├── mail-mark-task.svg │ │ │ ├── mail-mark-unread-new.svg │ │ │ ├── mail-mark-unread.svg │ │ │ ├── mail-message-new.svg │ │ │ ├── mail-message.svg │ │ │ ├── mail-move.svg │ │ │ ├── mail-outbox.svg │ │ │ ├── mail-queue.svg │ │ │ ├── mail-queued.svg │ │ │ ├── mail-read-symbolic.svg │ │ │ ├── mail-read.svg │ │ │ ├── mail-receive.svg │ │ │ ├── mail-replied-symbolic.svg │ │ │ ├── mail-replied.svg │ │ │ ├── mail-reply-all-symbolic-rtl.svg │ │ │ ├── mail-reply-all-symbolic.svg │ │ │ ├── mail-reply-all.svg │ │ │ ├── mail-reply-custom-all.svg │ │ │ ├── mail-reply-custom.svg │ │ │ ├── mail-reply-list.svg │ │ │ ├── mail-reply-rtl-symbolic.svg │ │ │ ├── mail-reply-sender-rtl-symbolic.svg │ │ │ ├── mail-reply-sender-symbolic.svg │ │ │ ├── mail-reply-sender.svg │ │ │ ├── mail-reply-symbolic.svg │ │ │ ├── mail-send-receive-symbolic.svg │ │ │ ├── mail-send-receive-symbolic.symbolic.svg │ │ │ ├── mail-send-receive.svg │ │ │ ├── mail-send-symbolic.svg │ │ │ ├── mail-send.svg │ │ │ ├── mail-sent-symbolic.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-spam-symbolic.svg │ │ │ ├── mail-tagged.svg │ │ │ ├── mail-task.svg │ │ │ ├── mail-thread-ignored.svg │ │ │ ├── mail-thread-watch.svg │ │ │ ├── mail-unread-new.svg │ │ │ ├── mail-unread-symbolic.svg │ │ │ ├── mail-unread.svg │ │ │ ├── mail.svg │ │ │ ├── mail_forward.svg │ │ │ ├── mail_generic.svg │ │ │ ├── mail_new.svg │ │ │ ├── mail_reply.svg │ │ │ ├── mail_replyall.svg │ │ │ ├── mailspring-tray-empty.svg │ │ │ ├── mailspring-tray-full-newitems.svg │ │ │ ├── map-symbolic.svg │ │ │ ├── mark-location-symbolic.svg │ │ │ ├── mark-location-symbolic.symbolic.svg │ │ │ ├── mark-location.svg │ │ │ ├── marker-symbolic.svg │ │ │ ├── marker.svg │ │ │ ├── mate-brightness-applet.svg │ │ │ ├── mate-inhibit-applet.svg │ │ │ ├── math0.svg │ │ │ ├── math1.svg │ │ │ ├── math2.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-default-album.svg │ │ │ ├── media-eject-symbolic.svg │ │ │ ├── media-eject-symbolic.symbolic.svg │ │ │ ├── media-eject.svg │ │ │ ├── media-eq-symbolic.svg │ │ │ ├── media-forward.svg │ │ │ ├── media-import-audio-cd.svg │ │ │ ├── media-mount-symbolic.svg │ │ │ ├── media-mount-symbolic.symbolic.svg │ │ │ ├── media-mount.svg │ │ │ ├── media-pause.svg │ │ │ ├── media-play.svg │ │ │ ├── media-playback-pause-symbolic.svg │ │ │ ├── media-playback-pause-symbolic.symbolic.svg │ │ │ ├── media-playback-pause.svg │ │ │ ├── media-playback-paused.svg │ │ │ ├── media-playback-playing.svg │ │ │ ├── media-playback-start-rtl.svg │ │ │ ├── media-playback-start-symbolic.svg │ │ │ ├── media-playback-start-symbolic.symbolic.svg │ │ │ ├── media-playback-start.svg │ │ │ ├── media-playback-stop-symbolic.svg │ │ │ ├── media-playback-stop-symbolic.symbolic.svg │ │ │ ├── media-playback-stop.svg │ │ │ ├── media-playback-stoped.svg │ │ │ ├── media-playback-stopped.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-repeat.svg │ │ │ ├── media-playlist-no-shuffle-symbolic.svg │ │ │ ├── media-playlist-no-shuffle.svg │ │ │ ├── media-playlist-normal.svg │ │ │ ├── media-playlist-play.svg │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ ├── media-playlist-repeat-disabled-symbolic.svg │ │ │ ├── media-playlist-repeat-disabled.svg │ │ │ ├── media-playlist-repeat-one-rtl-symbolic.svg │ │ │ ├── media-playlist-repeat-one-symbolic-rtl.svg │ │ │ ├── media-playlist-repeat-one-symbolic.svg │ │ │ ├── media-playlist-repeat-one.svg │ │ │ ├── media-playlist-repeat-rtl-symbolic.svg │ │ │ ├── media-playlist-repeat-rtl.svg │ │ │ ├── media-playlist-repeat-song-rtl-symbolic.svg │ │ │ ├── media-playlist-repeat-song-rtl.svg │ │ │ ├── media-playlist-repeat-song-symbolic-rtl.svg │ │ │ ├── media-playlist-repeat-song-symbolic.svg │ │ │ ├── media-playlist-repeat-song.svg │ │ │ ├── media-playlist-repeat-symbolic-rtl.svg │ │ │ ├── media-playlist-repeat-symbolic.svg │ │ │ ├── media-playlist-repeat.svg │ │ │ ├── media-playlist-shuffle-symbolic-rtl.svg │ │ │ ├── media-playlist-shuffle-symbolic.svg │ │ │ ├── media-playlist-shuffle.svg │ │ │ ├── media-random-tracks-amarok.svg │ │ │ ├── media-record-symbolic.svg │ │ │ ├── media-record-symbolic.symbolic.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-rtl-symbolic.svg │ │ │ ├── media-seek-backward-symbolic-rtl.svg │ │ │ ├── media-seek-backward-symbolic-rtl.symbolic.svg │ │ │ ├── media-seek-backward-symbolic.svg │ │ │ ├── media-seek-backward-symbolic.symbolic.svg │ │ │ ├── media-seek-backward.svg │ │ │ ├── media-seek-forward-rtl-symbolic.svg │ │ │ ├── media-seek-forward-symbolic-rtl.svg │ │ │ ├── media-seek-forward-symbolic.svg │ │ │ ├── media-seek-forward-symbolic.symbolic.svg │ │ │ ├── media-seek-forward.svg │ │ │ ├── media-show-active-track-amarok.svg │ │ │ ├── media-skip-backward-rtl-symbolic.svg │ │ │ ├── media-skip-backward-symbolic-rtl.svg │ │ │ ├── media-skip-backward-symbolic.svg │ │ │ ├── media-skip-backward.svg │ │ │ ├── media-skip-forward-rtl-symbolic.svg │ │ │ ├── media-skip-forward-symbolic-rtl.svg │ │ │ ├── media-skip-forward-symbolic.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-remove-amarok.svg │ │ │ ├── media-track-show-active.svg │ │ │ ├── media-view-subtitles-symbolic.svg │ │ │ ├── media-view-subtitles-symbolic.symbolic.svg │ │ │ ├── media-view-subtitles.svg │ │ │ ├── medium-brightness.svg │ │ │ ├── meeting-attending-tentative.svg │ │ │ ├── meeting-attending.svg │ │ │ ├── meeting-organizer.svg │ │ │ ├── meeting-participant-no-response.svg │ │ │ ├── meeting-participant-request-response.svg │ │ │ ├── meld-version-control.svg │ │ │ ├── menu_new.svg │ │ │ ├── menu_new_sep.svg │ │ │ ├── message-close.svg │ │ │ ├── message-indicator-symbolic.svg │ │ │ ├── message-indicator.svg │ │ │ ├── message-new.svg │ │ │ ├── messagebox_critical.svg │ │ │ ├── messagebox_info.svg │ │ │ ├── messagebox_warning.svg │ │ │ ├── mic-volume-muted.svg │ │ │ ├── microphone-sensitivity-muted.svg │ │ │ ├── milestone.svg │ │ │ ├── mintupdate-checking.svg │ │ │ ├── mintupdate-error.svg │ │ │ ├── mintupdate-installing.svg │ │ │ ├── mintupdate-up-to-date.svg │ │ │ ├── mintupdate-updates-available.svg │ │ │ ├── mintupload.svg │ │ │ ├── modified.svg │ │ │ ├── mpost.svg │ │ │ ├── msgid2msgstr.svg │ │ │ ├── multimedia-equalizer-symbolic.svg │ │ │ ├── multimedia-equalizer.svg │ │ │ ├── multimedia-volume-control.svg │ │ │ ├── music-amarok.svg │ │ │ ├── music-artist-symbolic.svg │ │ │ ├── music-artist.svg │ │ │ ├── music-note-16th.svg │ │ │ ├── music-playlist-symbolic.svg │ │ │ ├── music-playlist.svg │ │ │ ├── nemo-desktop-scale-symbolic.svg │ │ │ ├── nemo-desktop-scale.svg │ │ │ ├── nemo-eject.svg │ │ │ ├── nemo-horizontal-layout-symbolic.svg │ │ │ ├── nemo-horizontal-layout-wide-symbolic.svg │ │ │ ├── nemo-horizontal-layout-wide.svg │ │ │ ├── nemo-horizontal-layout.svg │ │ │ ├── nemo-vertical-layout-symbolic.svg │ │ │ ├── nemo-vertical-layout-wide-symbolic.svg │ │ │ ├── nemo-vertical-layout.svg │ │ │ ├── network-connect.svg │ │ │ ├── network-disabled-symbolic-dark.svg │ │ │ ├── network-disabled-symbolic.svg │ │ │ ├── network-disconnect.svg │ │ │ ├── network-error-symbolic-dark.svg │ │ │ ├── network-error-symbolic.svg │ │ │ ├── network-error.svg │ │ │ ├── network-flightmode-off.svg │ │ │ ├── network-flightmode-on.svg │ │ │ ├── network-modem.svg │ │ │ ├── network-offline-symbolic-dark.svg │ │ │ ├── network-offline-symbolic.svg │ │ │ ├── network-offline.svg │ │ │ ├── network-online-symbolic-dark.svg │ │ │ ├── network-online-symbolic.svg │ │ │ ├── network-transmit-receive-symbolic.svg │ │ │ ├── network-vpn-active-symbolic-dark.svg │ │ │ ├── network-vpn-active-symbolic.svg │ │ │ ├── network-vpn-active.svg │ │ │ ├── network-vpn-disable-symbolic-dark.svg │ │ │ ├── network-vpn-disable-symbolic.svg │ │ │ ├── network-vpn-symbolic.svg │ │ │ ├── network-vpn.svg │ │ │ ├── network-warning-symbolic-dark.svg │ │ │ ├── network-warning-symbolic.svg │ │ │ ├── network-wired-disconnected-symbolic.svg │ │ │ ├── network-wired-disconnected.svg │ │ │ ├── network-wired-offline-symbolic.svg │ │ │ ├── network-wired-offline.svg │ │ │ ├── network-wired-secure-symbolic.svg │ │ │ ├── network-wired-symbolic-connecting3-dark.svg │ │ │ ├── network-wired-symbolic-connecting3.svg │ │ │ ├── network-wired-symbolic-connecting4-dark.svg │ │ │ ├── network-wired-symbolic-connecting4.svg │ │ │ ├── network-wired-symbolic-connecting5-dark.svg │ │ │ ├── network-wired-symbolic-connecting5.svg │ │ │ ├── network-wired-symbolic-dark.svg │ │ │ ├── network-wired-symbolic.svg │ │ │ ├── network-workgroup.svg │ │ │ ├── network.svg │ │ │ ├── new-audio-alarm.svg │ │ │ ├── new-command-alarm.svg │ │ │ ├── new-messages-red.svg │ │ │ ├── new-window-symbolic.svg │ │ │ ├── new-window.svg │ │ │ ├── newer.svg │ │ │ ├── news-subscribe.svg │ │ │ ├── news-unsubscribe.svg │ │ │ ├── next.svg │ │ │ ├── night-light.svg │ │ │ ├── nm-device-wired-secure-symbolic.svg │ │ │ ├── nm-device-wired-symbolic.svg │ │ │ ├── nm-no-connection.svg │ │ │ ├── nm-secure-lock.svg │ │ │ ├── nm-vpn-lock.svg │ │ │ ├── nm-vpn-standalone-lock-symbolic.svg │ │ │ ├── nm-vpn-standalone-lock.svg │ │ │ ├── no-marker.svg │ │ │ ├── no.svg │ │ │ ├── nocover.svg │ │ │ ├── noisereduction.svg │ │ │ ├── non-starred-symbolic.svg │ │ │ ├── non-starred.svg │ │ │ ├── noninstalled.svg │ │ │ ├── note.svg │ │ │ ├── notification-audio-next.svg │ │ │ ├── notification-audio-pause.svg │ │ │ ├── notification-audio-play.svg │ │ │ ├── notification-audio-previous.svg │ │ │ ├── notification-audio-stop.svg │ │ │ ├── notification-audio-volume-off.svg │ │ │ ├── notification-change-language-failed.svg │ │ │ ├── notification-change-language-finished.svg │ │ │ ├── notification-change-language-start.svg │ │ │ ├── notification-device-eject.svg │ │ │ ├── notification-display-brightness.svg │ │ │ ├── notification-message-im.svg │ │ │ ├── notification-network-proxy-disabled.svg │ │ │ ├── notification-network-proxy-enabled.svg │ │ │ ├── notification-network-vpn-connected.svg │ │ │ ├── notification-network-vpn-disconnected.svg │ │ │ ├── notification-network-vpn.svg │ │ │ ├── notification-network-wired-connected.svg │ │ │ ├── notification-network-wired-disconnected.svg │ │ │ ├── notification-network-wired-local.svg │ │ │ ├── notification-printer-error.svg │ │ │ ├── notification-printer.svg │ │ │ ├── now-playing.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-center-calligra.svg │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ ├── object-columns.svg │ │ │ ├── object-flip-horizontal.svg │ │ │ ├── object-flip-vertical.svg │ │ │ ├── object-group-calligra.svg │ │ │ ├── object-group.svg │ │ │ ├── object-hidden.svg │ │ │ ├── object-inverse-symbolic.svg │ │ │ ├── object-inverse.svg │ │ │ ├── object-locked.svg │ │ │ ├── object-move-symbolic.svg │ │ │ ├── object-move.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-symbolic.svg │ │ │ ├── object-rotate-left-symbolic.symbolic.svg │ │ │ ├── object-rotate-left.svg │ │ │ ├── object-rotate-right-symbolic.svg │ │ │ ├── object-rotate-right-symbolic.symbolic.svg │ │ │ ├── object-rotate-right.svg │ │ │ ├── object-rows.svg │ │ │ ├── object-select-symbolic.svg │ │ │ ├── object-select-symbolic.symbolic.svg │ │ │ ├── object-select.svg │ │ │ ├── object-unlocked.svg │ │ │ ├── object-visible.svg │ │ │ ├── object.svg │ │ │ ├── off-outline.svg │ │ │ ├── off.svg │ │ │ ├── office-chart-line-stacked.svg │ │ │ ├── office-chart-line.svg │ │ │ ├── offline-settings.svg │ │ │ ├── offline.svg │ │ │ ├── oilpaint.svg │ │ │ ├── ok.svg │ │ │ ├── on-outline.svg │ │ │ ├── on.svg │ │ │ ├── online.svg │ │ │ ├── open-for-editing.svg │ │ │ ├── open-menu-symbolic.svg │ │ │ ├── open-menu-symbolic.symbolic.svg │ │ │ ├── open-menu.svg │ │ │ ├── org.buddiesofbudgie.Settings-about-symbolic.svg │ │ │ ├── org.gnome.Settings-about-symbolic.svg │ │ │ ├── org.gnome.Tweaks-symbolic.svg │ │ │ ├── org.gnome.design.Contrast.svg │ │ │ ├── org.gnome.tweaks-symbolic.svg │ │ │ ├── org.kde.activeWindowControl.svg │ │ │ ├── org.kde.plasma.appmenu.svg │ │ │ ├── org.kde.plasma.devicenotifier.svg │ │ │ ├── org.ubuntubudgie.shufflercontrol.svg │ │ │ ├── org.ubuntubudgie.wallstreet-control.svg │ │ │ ├── outbox.svg │ │ │ ├── outdated.svg │ │ │ ├── output_win.svg │ │ │ ├── overexposure.svg │ │ │ ├── overflow-menu.svg │ │ │ ├── pack-less.svg │ │ │ ├── pack-more.svg │ │ │ ├── package-available-locked.svg │ │ │ ├── package-available.svg │ │ │ ├── package-broken.svg │ │ │ ├── package-downgrade.svg │ │ │ ├── package-download-failed.svg │ │ │ ├── package-generic.svg │ │ │ ├── package-instaled-updated.svg │ │ │ ├── package-install-failed.svg │ │ │ ├── package-install-succeed.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-updated-failed.svg │ │ │ ├── package-updated-succeed.svg │ │ │ ├── package-upgrade.svg │ │ │ ├── package.svg │ │ │ ├── package_download_failed.svg │ │ │ ├── package_install_failed.svg │ │ │ ├── package_install_succeed.svg │ │ │ ├── package_settings.svg │ │ │ ├── package_update_failed.svg │ │ │ ├── padlock-open-symbolic.svg │ │ │ ├── page-zoom.svg │ │ │ ├── paint-none.svg │ │ │ ├── paint-unknown.svg │ │ │ ├── palette-symbolic.svg │ │ │ ├── pamac-tray-no-update.svg │ │ │ ├── pamac-tray-update.svg │ │ │ ├── pan-down-symbolic.svg │ │ │ ├── pan-down-symbolic.symbolic.svg │ │ │ ├── pan-down.svg │ │ │ ├── pan-end-symbolic.svg │ │ │ ├── pan-end-symbolic.symbolic.svg │ │ │ ├── pan-end.svg │ │ │ ├── pan-start-symbolic.svg │ │ │ ├── pan-start.svg │ │ │ ├── pan-up-symbolic.svg │ │ │ ├── pan-up-symbolic.symbolic.svg │ │ │ ├── pan-up.svg │ │ │ ├── pane-hide-symbolic-rtl.svg │ │ │ ├── pane-hide-symbolic.svg │ │ │ ├── pane-hide.svg │ │ │ ├── pane-show-symbolic-rtl.svg │ │ │ ├── pane-show-symbolic.svg │ │ │ ├── pane-show.svg │ │ │ ├── password-copy.svg │ │ │ ├── password-generate.svg │ │ │ ├── password-show-off.svg │ │ │ ├── password-show-on.svg │ │ │ ├── pdf-annotations.svg │ │ │ ├── pdflatex.svg │ │ │ ├── pdftex.svg │ │ │ ├── pgp-keys.svg │ │ │ ├── photo.svg │ │ │ ├── photos-amarok.svg │ │ │ ├── pidgin-tray-available.svg │ │ │ ├── pidgin-tray-away.svg │ │ │ ├── pidgin-tray-busy.svg │ │ │ ├── pidgin-tray-connect.svg │ │ │ ├── pidgin-tray-offline.svg │ │ │ ├── pidgin-tray-pending.svg │ │ │ ├── pidgin-tray-xa.svg │ │ │ ├── pin.svg │ │ │ ├── plasmavault.svg │ │ │ ├── plasmavault_error.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-sort.svg │ │ │ ├── plugins.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 │ │ │ ├── pomodoneapp-break.svg │ │ │ ├── pomodoneapp-indicator.svg │ │ │ ├── pomodoneapp-paused.svg │ │ │ ├── pomodoneapp-started.svg │ │ │ ├── port.svg │ │ │ ├── postalcode.svg │ │ │ ├── practice-setup.svg │ │ │ ├── practice-start.svg │ │ │ ├── practice-stop.svg │ │ │ ├── preferences-desktop-multitasking 1.svg │ │ │ ├── preferences-desktop-multitasking-symbolic.svg │ │ │ ├── preferences-desktop-multitasking-symbolic.symbolic.svg │ │ │ ├── preferences-desktop-multitasking.svg │ │ │ ├── preferences-desktop-notification.svg │ │ │ ├── preferences-desktop-symbolic.svg │ │ │ ├── preferences-desktop-user-password.svg │ │ │ ├── preferences-devices-tree.svg │ │ │ ├── preferences-indicator-amarok.svg │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ ├── preferences-other-symbolic.svg │ │ │ ├── preferences-other-symbolic.symbolic.svg │ │ │ ├── preferences-other.svg │ │ │ ├── preferences-plugin.svg │ │ │ ├── preferences-system-privacy-location.svg │ │ │ ├── preferences-system-session-services.svg │ │ │ ├── preferences-system-symbolic.svg │ │ │ ├── preferences-system-tabbox.svg │ │ │ ├── preferences-system-windows-effect-contrast.svg │ │ │ ├── preferences-system-windows-effect-coverswitch.svg.svg │ │ │ ├── preferences-system-windows-effect-flipswitch.svg │ │ │ ├── preferences-system-windows-effect-invert.svg │ │ │ ├── preferences-system-windows-effect-resize.svg │ │ │ ├── preferences-system-windows-move.svg │ │ │ ├── preferences-web-browser-adblock.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 │ │ │ ├── print-24.svg │ │ │ ├── printer-error-symbolic.svg │ │ │ ├── printer-error.svg │ │ │ ├── printer-printing-symbolic.svg │ │ │ ├── printer-printing.svg │ │ │ ├── printer-warning-symbolic.svg │ │ │ ├── printer-warning.svg │ │ │ ├── privatebrowsing.svg │ │ │ ├── process-completed-symbolic.svg │ │ │ ├── process-completed.svg │ │ │ ├── process-stop-symbolic.svg │ │ │ ├── process-stop-symbolic.symbolic.svg │ │ │ ├── process-stop.svg │ │ │ ├── process-syncing-error.svg │ │ │ ├── process-syncing.svg │ │ │ ├── process-working-symbolic.svg │ │ │ ├── process-working.svg │ │ │ ├── project-development-close-all.svg │ │ │ ├── project-development-close.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 │ │ │ ├── qrscanner-symbolic.svg │ │ │ ├── qrscanner-symbolic.symbolic.svg │ │ │ ├── qrscanner.svg │ │ │ ├── quick.svg │ │ │ ├── quickopen-file.svg │ │ │ ├── quickopen-function.svg │ │ │ ├── quickopen.svg │ │ │ ├── quickview.svg │ │ │ ├── quickwizard.svg │ │ │ ├── rabbitvcs-about.svg │ │ │ ├── rabbitvcs-add.svg │ │ │ ├── rabbitvcs-annotate.svg │ │ │ ├── rabbitvcs-asynchronous.svg │ │ │ ├── rabbitvcs-branch.svg │ │ │ ├── rabbitvcs-bug.svg │ │ │ ├── rabbitvcs-cancel.svg │ │ │ ├── rabbitvcs-changes.svg │ │ │ ├── rabbitvcs-checkmods.svg │ │ │ ├── rabbitvcs-checkout.svg │ │ │ ├── rabbitvcs-cleanup.svg │ │ │ ├── rabbitvcs-clear.svg │ │ │ ├── rabbitvcs-commit.svg │ │ │ ├── rabbitvcs-dbus.svg │ │ │ ├── rabbitvcs-delete.svg │ │ │ ├── rabbitvcs-drive.svg │ │ │ ├── rabbitvcs-editconflicts.svg │ │ │ ├── rabbitvcs-emblems.svg │ │ │ ├── rabbitvcs-export.svg │ │ │ ├── rabbitvcs-help.svg │ │ │ ├── rabbitvcs-import.svg │ │ │ ├── rabbitvcs-lock.svg │ │ │ ├── rabbitvcs-monkey.svg │ │ │ ├── rabbitvcs-properties.svg │ │ │ ├── rabbitvcs-push.svg │ │ │ ├── rabbitvcs-refresh.svg │ │ │ ├── rabbitvcs-relocate.svg │ │ │ ├── rabbitvcs-remove.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 │ │ │ ├── randomize.svg │ │ │ ├── rating-half.svg │ │ │ ├── rating-unrated.svg │ │ │ ├── rating.svg │ │ │ ├── ratiocrop.svg │ │ │ ├── recently_used.svg │ │ │ ├── record-desktop-indicator-recording.svg │ │ │ ├── record.svg │ │ │ ├── redeyes.svg │ │ │ ├── redhat-home.svg │ │ │ ├── refactor.svg │ │ │ ├── refresh_dark.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 │ │ │ ├── reply-all-rtl-symbolic.svg │ │ │ ├── reply-all-rtl.svg │ │ │ ├── reply-all-symbolic-rtl.svg │ │ │ ├── reply-all-symbolic.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply-symbolic.svg │ │ │ ├── reply.svg │ │ │ ├── resource-calendar-insert.svg │ │ │ ├── resource-group.svg │ │ │ ├── reverse.svg │ │ │ ├── revert.svg │ │ │ ├── rhythmbox-set-star.svg │ │ │ ├── rhythmbox-unset-star.svg │ │ │ ├── rightjust.svg │ │ │ ├── rime-latin.svg │ │ │ ├── roll.svg │ │ │ ├── routeplanning.svg │ │ │ ├── rsibreakx.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 │ │ │ ├── scan-type-batch-symbolic.svg │ │ │ ├── scc-dead.svg │ │ │ ├── scc-error.svg │ │ │ ├── scc-unknown.svg │ │ │ ├── screencast-stop-symbolic.svg │ │ │ ├── screensaver-switch-users-symbolic.svg │ │ │ ├── screensaver-unlock-symbolic.svg │ │ │ ├── screensaver-unlock.svg │ │ │ ├── script-error.svg │ │ │ ├── scriptnew.svg │ │ │ ├── scriptopen.svg │ │ │ ├── seahorse-sign-bad.svg │ │ │ ├── seahorse-sign-ok.svg │ │ │ ├── seahorse-sign.svg │ │ │ ├── search-icon.svg │ │ │ ├── search-symbolic.svg │ │ │ ├── search-symbolic.symbolic.svg │ │ │ ├── search.svg │ │ │ ├── security.svg │ │ │ ├── security_dark.svg │ │ │ ├── select.svg │ │ │ ├── select_dark.svg │ │ │ ├── selection-add.svg │ │ │ ├── selection-checked.svg │ │ │ ├── selection-lower.svg │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ ├── selection-mode-symbolic.svg │ │ │ ├── selection-mode-symbolic.symbolic.svg │ │ │ ├── selection-mode.svg │ │ │ ├── selection-raise.svg │ │ │ ├── selection-remove.svg │ │ │ ├── selection-top.svg │ │ │ ├── selection.svg │ │ │ ├── send-to-symbolic.svg │ │ │ ├── send-to.svg │ │ │ ├── services.svg │ │ │ ├── set-language.svg │ │ │ ├── setroubleshoot_icon.svg │ │ │ ├── settings-configuration.svg │ │ │ ├── settings-configure.svg │ │ │ ├── settings.svg │ │ │ ├── shallow-history.svg │ │ │ ├── shoot.svg │ │ │ ├── show-all-effects.svg │ │ │ ├── show-dialogs.svg │ │ │ ├── show-grid.svg │ │ │ ├── show-hidden.svg │ │ │ ├── show-menu.svg │ │ │ ├── show-offline.svg │ │ │ ├── show-sidebar.svg │ │ │ ├── show-thumbnail-bar.svg │ │ │ ├── show_table_column.svg │ │ │ ├── show_table_row.svg │ │ │ ├── shuffle.svg │ │ │ ├── sidebar-collapse-left.svg │ │ │ ├── sidebar-collapse-right.svg │ │ │ ├── sidebar-collapse-symbolic.svg │ │ │ ├── sidebar-collapse.svg │ │ │ ├── sidebar-expand-left.svg │ │ │ ├── sidebar-expand-right.svg │ │ │ ├── sidebar-expand.svg │ │ │ ├── sidebar-hide-symbolic.svg │ │ │ ├── sidebar-hide.svg │ │ │ ├── sidebar-places.svg │ │ │ ├── sidebar-show-right-rtl-symbolic.svg │ │ │ ├── sidebar-show-right-symbolic.svg │ │ │ ├── sidebar-show-rtl-symbolic.svg │ │ │ ├── sidebar-show-symbolic.svg │ │ │ ├── sidebar-show.svg │ │ │ ├── sidebar.svg │ │ │ ├── similarartists-amarok.svg │ │ │ ├── simplescreenrecorder-error.svg │ │ │ ├── simplescreenrecorder-paused.svg │ │ │ ├── slideshow-plugin.svg │ │ │ ├── slideshow-symbolic.svg │ │ │ ├── smallclock.svg │ │ │ ├── sms-symbolic.svg │ │ │ ├── sms.svg │ │ │ ├── snap-page.svg │ │ │ ├── social.svg │ │ │ ├── software-install-successful.svg │ │ │ ├── software-update-available.svg │ │ │ ├── software-update-urgent.svg │ │ │ ├── software-updates.svg │ │ │ ├── sort-name.svg │ │ │ ├── sort-presence.svg │ │ │ ├── sort_incr.svg │ │ │ ├── soundkonverter-replaygain.svg │ │ │ ├── source-php.svg │ │ │ ├── source-playlist.svg │ │ │ ├── source-smart-playlist.svg │ │ │ ├── spacefm-find.svg │ │ │ ├── speaker.svg │ │ │ ├── special-effects-symbolic.svg │ │ │ ├── special-effects.svg │ │ │ ├── specific-setup.svg │ │ │ ├── speedometer.svg │ │ │ ├── star-new-symbolic.svg │ │ │ ├── star-new.svg │ │ │ ├── star-off.svg │ │ │ ├── star-on.svg │ │ │ ├── star-shape.svg │ │ │ ├── starred-symbolic.svg │ │ │ ├── starred.svg │ │ │ ├── start.svg │ │ │ ├── state-information.svg │ │ │ ├── state-offline.svg │ │ │ ├── state-ok.svg │ │ │ ├── state-pause.svg │ │ │ ├── state-warning.svg │ │ │ ├── status_lock.svg │ │ │ ├── step_object_Controller.svg │ │ │ ├── step_object_Disk.svg │ │ │ ├── step_object_Graph.svg │ │ │ ├── step_object_Note.svg │ │ │ ├── step_object_Pin.svg │ │ │ ├── sticky_zoom.svg │ │ │ ├── stock-duplicate.svg │ │ │ ├── stock-save.svg │ │ │ ├── stock_about.svg │ │ │ ├── stock_add-bookmark.svg │ │ │ ├── stock_attach.svg │ │ │ ├── stock_backup.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_dialog-error.svg │ │ │ ├── stock_dialog-info.svg │ │ │ ├── stock_dialog-question.svg │ │ │ ├── stock_dialog-warning.svg │ │ │ ├── stock_down.svg │ │ │ ├── stock_download.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_copy.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_lock-open.svg │ │ │ ├── stock_lock.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-reply-to-all.svg │ │ │ ├── stock_mail-reply.svg │ │ │ ├── stock_mail-send-receive.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_music-library.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_open.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_repeat.svg │ │ │ ├── stock_right.svg │ │ │ ├── stock_save-as.svg │ │ │ ├── stock_save.svg │ │ │ ├── stock_save_as.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_shuffle.svg │ │ │ ├── stock_shutdown.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_text_center.svg │ │ │ ├── stock_text_justify.svg │ │ │ ├── stock_text_left.svg │ │ │ ├── stock_text_right.svg │ │ │ ├── stock_thunar-shortcuts.svg │ │ │ ├── stock_timezone.svg │ │ │ ├── stock_todo.svg │ │ │ ├── stock_top.svg │ │ │ ├── stock_trash_full.svg │ │ │ ├── stock_undo.svg │ │ │ ├── stock_up.svg │ │ │ ├── stock_upload.svg │ │ │ ├── stock_video-conferencing.svg │ │ │ ├── stock_view-details.svg │ │ │ ├── stock_volume-0.svg │ │ │ ├── stock_volume-max.svg │ │ │ ├── stock_volume-med.svg │ │ │ ├── stock_volume-min.svg │ │ │ ├── stock_volume-mute.svg │ │ │ ├── stock_volume.svg │ │ │ ├── stock_xfburn-audio-cd.svg │ │ │ ├── stock_xfburn-blank-cdrw.svg │ │ │ ├── stock_yes.svg │ │ │ ├── stock_zoom-1.svg │ │ │ ├── stock_zoom-in.svg │ │ │ ├── stock_zoom-out-symbolic.svg │ │ │ ├── stock_zoom-out.svg │ │ │ ├── stock_zoom-page.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch-symbolic.svg │ │ │ ├── stopwatch.svg │ │ │ ├── story-editor.svg │ │ │ ├── structure.svg │ │ │ ├── subsystem.svg │ │ │ ├── svn-commit.svg │ │ │ ├── svn-update.svg │ │ │ ├── swap-panels.svg │ │ │ ├── switchuser.svg │ │ │ ├── symbols.svg │ │ │ ├── sync-synchronizing-symbolic.svg │ │ │ ├── sync-synchronizing.svg │ │ │ ├── system-file-manager-symbolic.svg │ │ │ ├── system-help.svg │ │ │ ├── system-hibernate.svg │ │ │ ├── system-lock-screen-symbolic.svg │ │ │ ├── system-lock-screen.svg │ │ │ ├── system-log-out-symbolic.svg │ │ │ ├── system-log-out.svg │ │ │ ├── system-reboot-symbolic.svg │ │ │ ├── system-reboot.svg │ │ │ ├── system-restart-symbolic.svg │ │ │ ├── system-restart.svg │ │ │ ├── system-run-symbolic.svg │ │ │ ├── system-run-symbolic.symbolic.svg │ │ │ ├── system-run.svg │ │ │ ├── system-save-session-symbolic.svg │ │ │ ├── system-save-session.svg │ │ │ ├── system-search-symbolic.svg │ │ │ ├── system-search-symbolic.symbolic.svg │ │ │ ├── system-search.svg │ │ │ ├── system-settings-symbolic.svg │ │ │ ├── system-shutdown-symbolic.svg │ │ │ ├── system-shutdown.svg │ │ │ ├── system-suspend-hibernate-symbolic.svg │ │ │ ├── system-suspend-hibernate.svg │ │ │ ├── system-suspend-symbolic.svg │ │ │ ├── system-suspend.svg │ │ │ ├── system-switch-user-symbolic.svg │ │ │ ├── system-switch-user.svg │ │ │ ├── system-updated.svg │ │ │ ├── system-upgrade-symbolic.svg │ │ │ ├── system-upgrade.svg │ │ │ ├── system-users.svg │ │ │ ├── system_updated.svg │ │ │ ├── systemsettings.svg │ │ │ ├── tab-close-other.svg │ │ │ ├── tab-close.svg │ │ │ ├── tab-detach.svg │ │ │ ├── tab-duplicate.svg │ │ │ ├── tab-new-symbolic.svg │ │ │ ├── tab-new-symbolic.symbolic.svg │ │ │ ├── tab-new.svg │ │ │ ├── tab.svg │ │ │ ├── tab_duplicate.svg │ │ │ ├── tab_new.svg │ │ │ ├── tab_remove.svg │ │ │ ├── tab_remove_other.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-recent.svg │ │ │ ├── tag-recents.svg │ │ │ ├── tag-reset.svg │ │ │ ├── tag-symbolic.svg │ │ │ ├── tag.svg │ │ │ ├── tap-create.svg │ │ │ ├── tap-extract-to.svg │ │ │ ├── tap-extract.svg │ │ │ ├── task-attempt.svg │ │ │ ├── task-attention.svg │ │ │ ├── task-complete.svg │ │ │ ├── task-due-symbolic.svg │ │ │ ├── task-due.svg │ │ │ ├── task-list-symbolic.svg │ │ │ ├── task-list.svg │ │ │ ├── task-new.svg │ │ │ ├── task-recurring.svg │ │ │ ├── taskbar.svg │ │ │ ├── taxes-finances.svg │ │ │ ├── template.svg │ │ │ ├── terminal.svg │ │ │ ├── terminator_horiz.svg │ │ │ ├── terminator_vert.svg │ │ │ ├── test-pass-symbolic.svg │ │ │ ├── test-pass.svg │ │ │ ├── text-speak.svg │ │ │ ├── ticktick-tray.svg │ │ │ ├── tiny-pause.svg │ │ │ ├── tiny-start.svg │ │ │ ├── todo-indicator.svg │ │ │ ├── tool-animator.svg │ │ │ ├── tool-brush-symbolic.svg │ │ │ ├── tool-crop-symbolic.svg │ │ │ ├── tool-crop.svg │ │ │ ├── tool-eraser-symbolic.svg │ │ │ ├── tool-eraser.svg │ │ │ ├── tool-magic-symbolic.svg │ │ │ ├── tool-magic.svg │ │ │ ├── tool-paint-symbolic.svg │ │ │ ├── tool-paint.svg │ │ │ ├── tool-pencil-symbolic.svg │ │ │ ├── tool-pencil.svg │ │ │ ├── tool-pointer.svg │ │ │ ├── tool-text-symbolic.svg │ │ │ ├── tool_brush.svg │ │ │ ├── tool_color_eraser.svg │ │ │ ├── tool_color_picker.svg │ │ │ ├── tool_flood_fill.svg │ │ │ ├── tool_pagelayout.svg │ │ │ ├── tool_pen.svg │ │ │ ├── tool_review.svg │ │ │ ├── tool_rounded_rectangle.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-symbolic.svg │ │ │ ├── tools-timer-symbolic.svg │ │ │ ├── tools-timer.svg │ │ │ ├── tools-wizard.svg │ │ │ ├── tools.svg │ │ │ ├── top.svg │ │ │ ├── transfers.svg │ │ │ ├── transform-crop-and-resize.svg │ │ │ ├── transform-crop.svg │ │ │ ├── transform-move.svg │ │ │ ├── transform-scale.svg │ │ │ ├── transsearch.svg │ │ │ ├── trash-empty.svg │ │ │ ├── trashcan_full.svg │ │ │ ├── tray-offline.svg │ │ │ ├── tray-online.svg │ │ │ ├── tweaks-app-symbolic.svg │ │ │ ├── twitter-profile-symbolic.svg │ │ │ ├── twitter-profile.svg │ │ │ ├── udiskie-eject.svg │ │ │ ├── udiskie-lock.svg │ │ │ ├── udiskie-submenu.svg │ │ │ ├── udiskie-unlock.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_collaboration.svg │ │ │ ├── umbrello_diagram_component.svg │ │ │ ├── umbrello_diagram_state.svg │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ ├── un-reboot.svg │ │ │ ├── underexposure.svg │ │ │ ├── undo.svg │ │ │ ├── uninstall.svg │ │ │ ├── unity-tweak-tool-symbolic.svg │ │ │ ├── unlock.svg │ │ │ ├── unmount.svg │ │ │ ├── unpin.svg │ │ │ ├── unrequired.svg │ │ │ ├── up.svg │ │ │ ├── upcomingevents-amarok.svg │ │ │ ├── upindicator.svg │ │ │ ├── upload-amarok.svg │ │ │ ├── upload-media.svg │ │ │ ├── upload.svg │ │ │ ├── url-copy.svg │ │ │ ├── user-available-panel.svg │ │ │ ├── user-available-symbolic.svg │ │ │ ├── user-available.svg │ │ │ ├── user-away-panel.svg │ │ │ ├── user-away-symbolic.svg │ │ │ ├── user-away.svg │ │ │ ├── user-busy-panel.svg │ │ │ ├── user-busy-symbolic.svg │ │ │ ├── user-busy.svg │ │ │ ├── user-group-delete.svg │ │ │ ├── user-group-new.svg │ │ │ ├── user-group-properties.svg │ │ │ ├── user-identity.svg │ │ │ ├── user-idle-panel.svg │ │ │ ├── user-idle-symbolic.svg │ │ │ ├── user-idle.svg │ │ │ ├── user-not-tracked-symbolic.svg │ │ │ ├── user-not-tracked.svg │ │ │ ├── user-offline-panel.svg │ │ │ ├── user-offline-symbolic.svg │ │ │ ├── user-offline.svg │ │ │ ├── user-online.svg │ │ │ ├── user-properties.svg │ │ │ ├── user-status-pending-symbolic.svg │ │ │ ├── user-status-pending.svg │ │ │ ├── user-trash-full-symbolic.svg │ │ │ ├── user-typing.svg │ │ │ ├── user.svg │ │ │ ├── usermenu-delete.svg │ │ │ ├── usermenu-down.svg │ │ │ ├── usermenu-up.svg │ │ │ ├── username-copy.svg │ │ │ ├── utilities-terminal.svg │ │ │ ├── utilities-tweak-tool-symbolic.svg │ │ │ ├── value-decrease-symbolic.svg │ │ │ ├── value-decrease.svg │ │ │ ├── value-increase-symbolic.svg │ │ │ ├── value-increase.svg │ │ │ ├── vcs-added.svg │ │ │ ├── vcs-conflicting.svg │ │ │ ├── vcs-locally-modified-unstaged.svg │ │ │ ├── vcs-locally-modified.svg │ │ │ ├── vcs-normal.svg │ │ │ ├── vcs-pull.svg │ │ │ ├── vcs-removed.svg │ │ │ ├── vcs-update-required.svg │ │ │ ├── verb.svg │ │ │ ├── verbatim.svg │ │ │ ├── vertical.svg │ │ │ ├── video.svg │ │ │ ├── videoclip-amarok.svg │ │ │ ├── view-app-grid-symbolic.svg │ │ │ ├── view-app-grid-symbolic.symbolic.svg │ │ │ ├── view-app-grid.svg │ │ │ ├── view-bank.svg │ │ │ ├── view-barcode-add.svg │ │ │ ├── view-barcode-qr.svg │ │ │ ├── view-barcode.svg │ │ │ ├── view-calendar-agenda.svg │ │ │ ├── view-calendar-day.svg │ │ │ ├── view-calendar-holiday.svg │ │ │ ├── view-calendar-journal.svg │ │ │ ├── view-calendar-list.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-week.svg │ │ │ ├── view-calendar-whatsnext.svg │ │ │ ├── view-calendar-workweek.svg │ │ │ ├── view-calendar.svg │ │ │ ├── view-catalog.svg │ │ │ ├── view-categories-symbolic.svg │ │ │ ├── view-categories.svg │ │ │ ├── view-certificate-sign.svg │ │ │ ├── view-certificate.svg │ │ │ ├── view-choose.svg │ │ │ ├── view-close.svg │ │ │ ├── view-column-symbolic.svg │ │ │ ├── view-column.svg │ │ │ ├── view-compact-symbolic.svg │ │ │ ├── view-compact.svg │ │ │ ├── view-conceal-symbolic.svg │ │ │ ├── view-conceal-symbolic.symbolic.svg │ │ │ ├── view-conceal.svg │ │ │ ├── view-conversation-balloon.svg │ │ │ ├── view-coverflow-symbolic.svg │ │ │ ├── view-coverflow.svg │ │ │ ├── view-dual-symbolic.svg │ │ │ ├── view-dual-symbolic.symbolic.svg │ │ │ ├── view-dual.svg │ │ │ ├── view-file-columns.svg │ │ │ ├── view-filter-symbolic.svg │ │ │ ├── view-filter.svg │ │ │ ├── view-financial-list.svg │ │ │ ├── view-form-action.svg │ │ │ ├── view-form.svg │ │ │ ├── view-fullscreen-symbolic.svg │ │ │ ├── view-fullscreen-symbolic.symbolic.svg │ │ │ ├── view-fullscreen.svg │ │ │ ├── view-grid-symbolic.svg │ │ │ ├── view-grid-symbolic.symbolic.svg │ │ │ ├── view-grid.svg │ │ │ ├── view-group.svg │ │ │ ├── view-hidden.svg │ │ │ ├── view-history.svg │ │ │ ├── view-left-pane-symbolic-rtl.svg │ │ │ ├── view-left-pane-symbolic.svg │ │ │ ├── view-left-pane.svg │ │ │ ├── view-list-bullet-symbolic.svg │ │ │ ├── view-list-bullet-symbolic.symbolic.svg │ │ │ ├── view-list-bullet.svg │ │ │ ├── view-list-compact-symbolic.svg │ │ │ ├── view-list-compact.svg │ │ │ ├── view-list-details.svg │ │ │ ├── view-list-icons.svg │ │ │ ├── view-list-images-symbolic.svg │ │ │ ├── view-list-images.svg │ │ │ ├── view-list-symbolic.svg │ │ │ ├── view-list-symbolic.symbolic.svg │ │ │ ├── view-list-text.svg │ │ │ ├── view-list-tree-symbolic.svg │ │ │ ├── view-list-tree.svg │ │ │ ├── view-list-video-symbolic.svg │ │ │ ├── view-list-video.svg │ │ │ ├── view-list.svg │ │ │ ├── view-maximized.svg │ │ │ ├── view-media-album-cover.svg │ │ │ ├── view-media-artist.svg │ │ │ ├── view-media-config.svg │ │ │ ├── view-media-equalizer-symbolic.svg │ │ │ ├── view-media-equalizer.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-subtitles.svg │ │ │ ├── view-media-track.svg │ │ │ ├── view-media-visualization.svg │ │ │ ├── view-more-horizontal-symbolic.svg │ │ │ ├── view-more-horizontal.svg │ │ │ ├── view-more-symbolic.svg │ │ │ ├── view-more-symbolic.symbolic.svg │ │ │ ├── view-more.svg │ │ │ ├── view-multiple-objects.svg │ │ │ ├── view-page-one-24.svg │ │ │ ├── view-page-sided-24.svg │ │ │ ├── view-paged-symbolic.svg │ │ │ ├── view-paged-symbolic.symbolic.svg │ │ │ ├── view-paged.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-pin-symbolic.svg │ │ │ ├── view-pin-symbolic.symbolic.svg │ │ │ ├── view-pin.svg │ │ │ ├── view-presentation-symbolic.svg │ │ │ ├── view-presentation.svg │ │ │ ├── view-preview.svg │ │ │ ├── view-private-symbolic.svg │ │ │ ├── view-private.svg │ │ │ ├── view-process-all-tree-symbolic.svg │ │ │ ├── view-process-all-tree.svg │ │ │ ├── view-process-all.svg │ │ │ ├── view-process-own.svg │ │ │ ├── view-process-system.svg │ │ │ ├── view-process-tree-symbolic.svg │ │ │ ├── view-process-tree.svg │ │ │ ├── view-process-users.svg │ │ │ ├── view-reader.svg │ │ │ ├── view-readermode-active.svg │ │ │ ├── view-readermode.svg │ │ │ ├── view-refresh-symbolic.svg │ │ │ ├── view-refresh-symbolic.symbolic.svg │ │ │ ├── view-refresh.svg │ │ │ ├── view-resource-calendar.svg │ │ │ ├── view-restore-symbolic.svg │ │ │ ├── view-restore-symbolic.symbolic.svg │ │ │ ├── view-restore.svg │ │ │ ├── view-reveal-symbolic.svg │ │ │ ├── view-reveal-symbolic.symbolic.svg │ │ │ ├── view-reveal.svg │ │ │ ├── view-right-close.svg │ │ │ ├── view-right-new.svg │ │ │ ├── view-right-pane-symbolic-rtl.svg │ │ │ ├── view-right-pane-symbolic.svg │ │ │ ├── view-right-pane.svg │ │ │ ├── view-services-scripted-amarok.svg │ │ │ ├── view-sidebar-end-symbolic.svg │ │ │ ├── view-sidebar-end.svg │ │ │ ├── view-sidetree.svg │ │ │ ├── view-sort-ascending-name.svg │ │ │ ├── view-sort-ascending-symbolic.svg │ │ │ ├── view-sort-ascending.svg │ │ │ ├── view-sort-decending-name.svg │ │ │ ├── view-sort-descending-name.svg │ │ │ ├── view-sort-descending-symbolic.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.svg │ │ │ ├── view-tasks-all-symbolic.svg │ │ │ ├── view-tasks-all.svg │ │ │ ├── view-tasks.svg │ │ │ ├── view-time-schedule-edit.svg │ │ │ ├── view-time-schedule.svg │ │ │ ├── view-user-offline-kopete.svg │ │ │ ├── view-visible.svg │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ ├── view-wrapped-symbolic-rtl.svg │ │ │ ├── view-wrapped-symbolic.svg │ │ │ ├── view-wrapped.svg │ │ │ ├── view-zoom-fit-symbolic.svg │ │ │ ├── view-zoom-in-symbolic.svg │ │ │ ├── view-zoom-in.svg │ │ │ ├── view-zoom-original-symbolic.svg │ │ │ ├── view-zoom-out-symbolic.svg │ │ │ ├── view-zoom-out-symbolic.symbolic.svg │ │ │ ├── view-zoom-out.svg │ │ │ ├── view.svg │ │ │ ├── view_choose.svg │ │ │ ├── view_detailed.svg │ │ │ ├── view_fit_to_page.svg │ │ │ ├── view_icon.svg │ │ │ ├── view_icons.svg │ │ │ ├── view_left_right.svg │ │ │ ├── view_multicolumn.svg │ │ │ ├── view_text.svg │ │ │ ├── view_top_bottom.svg │ │ │ ├── view_tree.svg │ │ │ ├── viewbib.svg │ │ │ ├── viewhtml.svg │ │ │ ├── viewimage.svg │ │ │ ├── viewitem.svg │ │ │ ├── viewlog.svg │ │ │ ├── viewmag+.svg │ │ │ ├── viewmag-.svg │ │ │ ├── viewmagfit.svg │ │ │ ├── viewpdf.svg │ │ │ ├── viewps.svg │ │ │ ├── vinyl.svg │ │ │ ├── visibility.svg │ │ │ ├── vm-create.svg │ │ │ ├── vm-download.svg │ │ │ ├── vm-power-off.svg │ │ │ ├── vm-power-on.svg │ │ │ ├── vm-restart.svg │ │ │ ├── vm-settings.svg │ │ │ ├── vm-suspend.svg │ │ │ ├── vm-tools-install-cancel.svg │ │ │ ├── vm-upload.svg │ │ │ ├── vm_new.svg │ │ │ ├── vmware-checkpoint-next.svg │ │ │ ├── vmware-checkpoint-previous.svg │ │ │ ├── vmware-component.svg │ │ │ ├── vmware-locked.svg │ │ │ ├── vmware-manage-autostart-vms.svg │ │ │ ├── vmware-marker-add.svg │ │ │ ├── vmware-powered-on.svg │ │ │ ├── vmware-ram-max-recommended-bullet.svg │ │ │ ├── vmware-ram-max-recommended-flag.svg │ │ │ ├── vmware-ram-min-recommended-bullet.svg │ │ │ ├── vmware-ram-min-recommended-flag.svg │ │ │ ├── vmware-ram-recommended-bullet.svg │ │ │ ├── vmware-ram-recommended-flag.svg │ │ │ ├── vmware-replay-beginning.svg │ │ │ ├── vmware-replay-pause.svg │ │ │ ├── vmware-replay-play.svg │ │ │ ├── vmware-settings.svg │ │ │ ├── vmware-suspended.svg │ │ │ ├── vmware-unlocked.svg │ │ │ ├── vmware-vcd-server.svg │ │ │ ├── vmware-vcenter.svg │ │ │ ├── vmware-view-appliance.svg │ │ │ ├── vmware-view-console.svg │ │ │ ├── vmware-view-unity-error.svg │ │ │ ├── vmware-view-unity.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 │ │ │ ├── wallet-close.svg │ │ │ ├── wallet-open.svg │ │ │ ├── wallet.svg │ │ │ ├── web-browser.svg │ │ │ ├── window-close-symbolic.svg │ │ │ ├── window-close.svg │ │ │ ├── window-duplicate-symbolic.svg │ │ │ ├── window-duplicate.svg │ │ │ ├── window-keep-above-symbolic.svg │ │ │ ├── window-keep-above.svg │ │ │ ├── window-keep-below-symbolic.svg │ │ │ ├── window-keep-below.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ ├── window-new-symbolic.svg │ │ │ ├── window-new-symbolic.symbolic.svg │ │ │ ├── window-new.svg │ │ │ ├── window-pin-symbolic.svg │ │ │ ├── window-pin.svg │ │ │ ├── window-restore-symbolic.svg │ │ │ ├── window-restore.svg │ │ │ ├── window-unpin-symbolic.svg │ │ │ ├── window-unpin.svg │ │ │ ├── window.svg │ │ │ ├── window_fullscreen.svg │ │ │ ├── window_new.svg │ │ │ ├── window_nofullscreen.svg │ │ │ ├── wizard_math.svg │ │ │ ├── wizard_pdftools.svg │ │ │ ├── wizard_pstools.svg │ │ │ ├── x-clementine-album.svg │ │ │ ├── x-clementine-albums.svg │ │ │ ├── x-clementine-artist.svg │ │ │ ├── x-clementine-shuffle.svg │ │ │ ├── x-office-address-book.svg │ │ │ ├── x-shape-formula.svg │ │ │ ├── x-shape-image.svg │ │ │ ├── x-shape-text.svg │ │ │ ├── x-tile-panel.svg │ │ │ ├── xapp-annotations-text-symbolic.svg │ │ │ ├── xapp-annotations-text.svg │ │ │ ├── xapp-go-history-next-symbolic-rtl.svg │ │ │ ├── xapp-go-history-next-symbolic.svg │ │ │ ├── xapp-go-history-next.svg │ │ │ ├── xapp-go-history-previous-symbolic-rtl.svg │ │ │ ├── xapp-go-history-previous-symbolic.svg │ │ │ ├── xapp-go-history-previous.svg │ │ │ ├── xapp-prefs-behavior-symbolic.svg │ │ │ ├── xapp-prefs-behavior.svg │ │ │ ├── xapp-prefs-display-symbolic.svg │ │ │ ├── xapp-prefs-display.svg │ │ │ ├── xapp-prefs-plugins-symbolic.svg │ │ │ ├── xapp-prefs-plugins.svg │ │ │ ├── xapp-prefs-preview-symbolic.svg │ │ │ ├── xapp-prefs-preview.svg │ │ │ ├── xapp-prefs-toolbar-symbolic.svg │ │ │ ├── xapp-prefs-toolbar.svg │ │ │ ├── xapp-text-case-symbolic.svg │ │ │ ├── xapp-text-case.svg │ │ │ ├── xarchiver-add.svg │ │ │ ├── xarchiver-close.svg │ │ │ ├── xarchiver-extract.svg │ │ │ ├── xarchiver-html.svg │ │ │ ├── xarchiver-select.svg │ │ │ ├── xcas.svg │ │ │ ├── xfce-newmail.svg │ │ │ ├── xfce-nomail.svg │ │ │ ├── xfce-system-exit.svg │ │ │ ├── xfce-trash_full.svg │ │ │ ├── xfce-wm-close.svg │ │ │ ├── xfce-wm-maximize.svg │ │ │ ├── xfce-wm-menu.svg │ │ │ ├── xfce-wm-minimize.svg │ │ │ ├── xfce-wm-unmaximize.svg │ │ │ ├── xfce4-mixer-muted.svg │ │ │ ├── xfce4-mixer-no-muted.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 │ │ │ ├── xfpm-brightness-lcd.svg │ │ │ ├── xfpm-suspend.svg │ │ │ ├── xfsm-hibernate.svg │ │ │ ├── xfsm-lock.svg │ │ │ ├── xfsm-log-out.svg │ │ │ ├── xfsm-logout.svg │ │ │ ├── xfsm-reboot.svg │ │ │ ├── xfsm-shutdown.svg │ │ │ ├── xfsm-sleep.svg │ │ │ ├── xfsm-suspend.svg │ │ │ ├── xfsm-switch-user.svg │ │ │ ├── xfsm-upgrade.svg │ │ │ ├── xml-attribute-delete.svg │ │ │ ├── xml-element-new.svg │ │ │ ├── xml-node-delete.svg │ │ │ ├── xml-node-duplicate.svg │ │ │ ├── xml-text-new.svg │ │ │ ├── yast-alternatives.svg │ │ │ ├── yast-vpn.svg │ │ │ ├── ymuse-add-symbolic.svg │ │ │ ├── ymuse-clear-symbolic.svg │ │ │ ├── ymuse-delete-symbolic.svg │ │ │ ├── ymuse-delete-track-symbolic.svg │ │ │ ├── ymuse-delete-track.svg │ │ │ ├── ymuse-delete.svg │ │ │ ├── ymuse-edit-symbolic.svg │ │ │ ├── ymuse-filter-symbolic.svg │ │ │ ├── ymuse-filter.svg │ │ │ ├── ymuse-home-symbolic.svg │ │ │ ├── ymuse-next-symbolic.svg │ │ │ ├── ymuse-next.svg │ │ │ ├── ymuse-now-playing-symbolic.svg │ │ │ ├── ymuse-now-playing.svg │ │ │ ├── ymuse-pause-symbolic.svg │ │ │ ├── ymuse-play-symbolic.svg │ │ │ ├── ymuse-play.svg │ │ │ ├── ymuse-previous-symbolic.svg │ │ │ ├── ymuse-previous.svg │ │ │ ├── ymuse-random-symbolic.svg │ │ │ ├── ymuse-random.svg │ │ │ ├── ymuse-repeat-symbolic.svg │ │ │ ├── ymuse-repeat.svg │ │ │ ├── ymuse-replace-queue-symbolic.svg │ │ │ ├── ymuse-replace-queue.svg │ │ │ ├── ymuse-save-symbolic.svg │ │ │ ├── ymuse-search-symbolic.svg │ │ │ ├── ymuse-stop-symbolic.svg │ │ │ ├── ymuse-stop.svg │ │ │ ├── yum-indicator-error.svg │ │ │ ├── yum-indicator-info.svg │ │ │ ├── yum-indicator-no-updates.svg │ │ │ ├── yum-indicator-updates.svg │ │ │ ├── yum-indicator-working.svg │ │ │ ├── zoom-all.svg │ │ │ ├── zoom-best-fit.svg │ │ │ ├── zoom-center-page.svg │ │ │ ├── zoom-draw.svg │ │ │ ├── zoom-fit-best-symbolic.svg │ │ │ ├── zoom-fit-best-symbolic.symbolic.svg │ │ │ ├── zoom-fit-best.svg │ │ │ ├── zoom-fit-drawing.svg │ │ │ ├── zoom-fit-page.svg │ │ │ ├── zoom-fit-selection.svg │ │ │ ├── zoom-in-large.svg │ │ │ ├── zoom-in-symbolic.svg │ │ │ ├── zoom-in-symbolic.symbolic.svg │ │ │ ├── zoom-in.svg │ │ │ ├── zoom-original-symbolic.svg │ │ │ ├── zoom-original.svg │ │ │ ├── zoom-out-large.svg │ │ │ ├── zoom-out-symbolic.svg │ │ │ ├── zoom-out-symbolic.symbolic.svg │ │ │ ├── zoom-out.svg │ │ │ ├── zoom-select-fit.svg │ │ │ ├── zoom-select.svg │ │ │ ├── zoom-selection.svg │ │ │ └── zoom.svg │ ├── apps │ │ └── scalable │ │ │ ├── .directory │ │ │ ├── 0363_Unist.0.svg │ │ │ ├── 09BE_EpicGamesLauncher.0.svg │ │ │ ├── 0ad.svg │ │ │ ├── 1-password.svg │ │ │ ├── 10B4_steam.0.svg │ │ │ ├── 19EE_tutor.0.svg │ │ │ ├── 1CD8_rundll32.0.svg │ │ │ ├── 1E64_notepad.0.svg │ │ │ ├── 1EF9_d991f95d96e1c76d2acb944bb09447628cd96caa.0.svg │ │ │ ├── 1cestart.svg │ │ │ ├── 1cv8.svg │ │ │ ├── 1cv8c.svg │ │ │ ├── 1deepin-launcher.svg │ │ │ ├── 1password-panel-locked.svg │ │ │ ├── 1password-panel.svg │ │ │ ├── 1password.svg │ │ │ ├── 2048-qt.svg │ │ │ ├── 2048.svg │ │ │ ├── 2402_msiexec.0.svg │ │ │ ├── 2905_wscript.0.svg │ │ │ ├── 2E40_notepad.0.svg │ │ │ ├── 2EF4_wordpad.0.svg │ │ │ ├── 2gis.svg │ │ │ ├── 2xclient.svg │ │ │ ├── 2xsession.svg │ │ │ ├── 32EF_web.0.svg │ │ │ ├── 3365_wordpad.0.svg │ │ │ ├── 399B_WINWORD.0.svg │ │ │ ├── 3depict.svg │ │ │ ├── 4012_xlicons.0.svg │ │ │ ├── 4137_winhlp32.0.svg │ │ │ ├── 446B_docu.0.svg │ │ │ ├── 4kslideshowmaker.svg │ │ │ ├── 4kstogram.svg │ │ │ ├── 4kvideodownloader.svg │ │ │ ├── 5742_rundll32.0.svg │ │ │ ├── 5961_Defunct_x86.0.svg │ │ │ ├── 6305_EXCEL.0.svg │ │ │ ├── 63EE_sublime_text.0.svg │ │ │ ├── 67EF_addoninstaller.0.svg │ │ │ ├── 7-zip.svg │ │ │ ├── 7-zipa.svg │ │ │ ├── 7596_iexplore.0.svg │ │ │ ├── 7765_winebrowser.0.svg │ │ │ ├── 7A63_EXCEL.0.svg │ │ │ ├── 7z.svg │ │ │ ├── 7za.svg │ │ │ ├── 7zip.svg │ │ │ ├── 81F5_winebrowser.0.svg │ │ │ ├── 97C1_wordpad.0.svg │ │ │ ├── A186_Updater.0.svg │ │ │ ├── A35F_hh.0.svg │ │ │ ├── A4E3_idman.0.svg │ │ │ ├── Acetino2.svg │ │ │ ├── AddressManager.svg │ │ │ ├── AdobeAIR.svg │ │ │ ├── AdobeFlash.svg │ │ │ ├── AdobePhotoshop.svg │ │ │ ├── AdobeReader.svg │ │ │ ├── AdobeReader10.svg │ │ │ ├── AdobeReader11.svg │ │ │ ├── AdobeReader12.svg │ │ │ ├── AdobeReader13.svg │ │ │ ├── AdobeReader7.svg │ │ │ ├── AdobeReader8.svg │ │ │ ├── AdobeReader9.svg │ │ │ ├── AdobeUpdate.svg │ │ │ ├── AdobeWidgetBrowser.svg │ │ │ ├── AdvancedPhoto.svg │ │ │ ├── Alacritty-simple.svg │ │ │ ├── Alacritty.svg │ │ │ ├── Alva.svg │ │ │ ├── Amazon-www.amazon.ca.svg │ │ │ ├── Amazon-www.amazon.cn.svg │ │ │ ├── Amazon-www.amazon.co.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 │ │ │ ├── Anatine.svg │ │ │ ├── Anydesk.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-Ardour_6.5.0.svg │ │ │ ├── Ardour-icon_256px.svg │ │ │ ├── Ardour.svg │ │ │ ├── B13E_wscript.0.svg │ │ │ ├── B46B_javaws.0.svg │ │ │ ├── BTM.svg │ │ │ ├── Babe.svg │ │ │ ├── BeuatyLine-launcher-alt.svg │ │ │ ├── BeuatyLine-launcher-alt2.svg │ │ │ ├── BeuatyLine-launcher-alt3.svg │ │ │ ├── BeuatyLine-launcher.svg │ │ │ ├── Blender.svg │ │ │ ├── BlueMail.svg │ │ │ ├── C06E_winhlp32.0.svg │ │ │ ├── C73E_watloader.0.svg │ │ │ ├── CC99_WINWORD.0.svg │ │ │ ├── CMakeSetup.svg │ │ │ ├── CMakeSetup32.svg │ │ │ ├── Calibre.svg │ │ │ ├── Caprine.svg │ │ │ ├── Charm.svg │ │ │ ├── Clementine.svg │ │ │ ├── D15F_hh.0.svg │ │ │ ├── D23E_msiexec.0.svg │ │ │ ├── D3EE_SwitchBoard.0.svg │ │ │ ├── DCE4_EXCEL.0.svg │ │ │ ├── Darktable.svg │ │ │ ├── DeSmuME.svg │ │ │ ├── Dictionary.app.svg │ │ │ ├── Dictionary.svg │ │ │ ├── DictionaryReader.svg │ │ │ ├── Dropbox.svg │ │ │ ├── E22D_grabber.0.svg │ │ │ ├── ECB7_iexplore.0.svg │ │ │ ├── ED2E_EpicGamesLauncher.0.svg │ │ │ ├── EE7D_change.0.svg │ │ │ ├── EF99_unins000.0.svg │ │ │ ├── EasyTAG_icon.svg │ │ │ ├── Elaunch.svg │ │ │ ├── Element.svg │ │ │ ├── Etermutilities-terminal.svg │ │ │ ├── Evernote-evernote.com.svg │ │ │ ├── Evernote-www.evernote.com.svg │ │ │ ├── Evernote.svg │ │ │ ├── F136_SubmitRSS.0.svg │ │ │ ├── F23F_unins000.0.svg │ │ │ ├── F666_EXCEL.0.svg │ │ │ ├── FB4C_iexplore.0.svg │ │ │ ├── FD9C_wordicon.0.svg │ │ │ ├── FacebookMessenger-facebook.com.svg │ │ │ ├── FedoraMediaWriter.svg │ │ │ ├── Filemanager.svg │ │ │ ├── Firefox-orginal.svg │ │ │ ├── Firefox2.svg │ │ │ ├── Firefox3.svg │ │ │ ├── Font-Manager.svg │ │ │ ├── Foto.svg │ │ │ ├── FoxitReader.svg │ │ │ ├── FreeFileSync.svg │ │ │ ├── FreeTube.svg │ │ │ ├── GMail-mail.google.com.svg │ │ │ ├── GPG-Key4.svg │ │ │ ├── GPU_Viewer.svg │ │ │ ├── GameMakerStudio2.svg │ │ │ ├── Genymotion.svg │ │ │ ├── Geogebra.svg │ │ │ ├── GitKraken.svg │ │ │ ├── Gitkraken.svg │ │ │ ├── Gitter.svg │ │ │ ├── Gmail-mail.google.com.svg │ │ │ ├── Gnome-Camara.svg │ │ │ ├── Gnome-Notes.svg │ │ │ ├── Gnome-Photos.svg │ │ │ ├── Gnome-notes.svg │ │ │ ├── GnomeBaker.svg │ │ │ ├── Google-docs-docs.google.com.svg │ │ │ ├── Grsync.SVG │ │ │ ├── Grsync.svg │ │ │ ├── HexChat.svg │ │ │ ├── HexChat1.svg │ │ │ ├── HexChat14.svg │ │ │ ├── IENT-YUView-64.svg │ │ │ ├── IPlan.svg │ │ │ ├── ImageJ.svg │ │ │ ├── Imagemagick.svg │ │ │ ├── Insight-FileManager.svg │ │ │ ├── Ipub.svg │ │ │ ├── J7Z.svg │ │ │ ├── JRomManager.svg │ │ │ ├── Jellyamp.svg │ │ │ ├── Joplin.svg │ │ │ ├── Kazam.svg │ │ │ ├── KittehPlayer.svg │ │ │ ├── LSHW.svg │ │ │ ├── LabPlot2.svg │ │ │ ├── Last.fm-icon.svg │ │ │ ├── Launcher.svg │ │ │ ├── Launchpad-launchpad.net.svg │ │ │ ├── LinSSID.svg │ │ │ ├── Mailspring.svg │ │ │ ├── Manuskript.svg │ │ │ ├── MediathekView.svg │ │ │ ├── MidnightCommand.svg │ │ │ ├── MidnightCommander.svg │ │ │ ├── ModemManager.svg │ │ │ ├── MultiBrowser.svg │ │ │ ├── Musescore.svg │ │ │ ├── MvGather.svg │ │ │ ├── Nautilus.svg │ │ │ ├── Nextcloud │ │ │ ├── Nextcloud.svg │ │ │ ├── NoMachine.svg │ │ │ ├── Nocturn-linux.svg │ │ │ ├── Nocturn.svg │ │ │ ├── NotepadNext.svg │ │ │ ├── Nvidiux.svg │ │ │ ├── Nylas-N1.svg │ │ │ ├── OpenRGB.svg │ │ │ ├── OpenTodoList.svg │ │ │ ├── PCSX2.svg │ │ │ ├── PCSXR.svg │ │ │ ├── Panini.svg │ │ │ ├── Pinta_icon.svg │ │ │ ├── Pithos.svg │ │ │ ├── Play.svg │ │ │ ├── PlayOnLinux.svg │ │ │ ├── Pomodoro.svg │ │ │ ├── PrismLauncher.svg │ │ │ ├── ProtonMail_Bridge.svg │ │ │ ├── PrusaSlicer.svg │ │ │ ├── Psensor_normal.svg │ │ │ ├── QMPlay2-panel.svg │ │ │ ├── QMPlay2.svg │ │ │ ├── QMapShack.svg │ │ │ ├── QtAV.svg │ │ │ ├── QtIcon.svg │ │ │ ├── QtProject-designer.svg │ │ │ ├── QtProject-linguist.svg │ │ │ ├── QtProject-qdbusviewer.svg │ │ │ ├── QtProject-qtcreator-qt5.svg │ │ │ ├── QtProject-qtcreator.svg │ │ │ ├── RSS_feeds.svg │ │ │ ├── Rapid-Photo-Downloader.svg │ │ │ ├── SM64nightly.svg │ │ │ ├── SPEEDTEST.svg │ │ │ ├── SUSEgreeter.svg │ │ │ ├── Sci48M.svg │ │ │ ├── SciTE.svg │ │ │ ├── ScudCloud.svg │ │ │ ├── SendAnywhere.svg │ │ │ ├── Skanlite.svg │ │ │ ├── SlingsCold.svg │ │ │ ├── Sparrow.svg │ │ │ ├── Spotify.svg │ │ │ ├── Stacer.svg │ │ │ ├── SuperMario64.svg │ │ │ ├── Support.svg │ │ │ ├── Sylpheed.svg │ │ │ ├── SysMonTask.svg │ │ │ ├── Tabby.svg │ │ │ ├── TeXmacs.svg │ │ │ ├── TeXworks.svg │ │ │ ├── TeamViewer.svg │ │ │ ├── Temps.svg │ │ │ ├── Terminal-tango.svg │ │ │ ├── Terminal.svg │ │ │ ├── Termius.svg │ │ │ ├── Thunar.svg │ │ │ ├── Todoist.svg │ │ │ ├── Tumblr.svg │ │ │ ├── Tweetdeck-tweetdeck.twitter.com.svg │ │ │ ├── Tweetdeck.svg │ │ │ ├── Twitter-twitter.com.svg │ │ │ ├── Twitter-twitter.svg │ │ │ ├── UNetbootin.svg │ │ │ ├── VBox.svg │ │ │ ├── Vbox.svg │ │ │ ├── Veromix.svg │ │ │ ├── WMail.svg │ │ │ ├── Wireshark.svg │ │ │ ├── WorkerIcon48.svg │ │ │ ├── XMind.svg │ │ │ ├── Xfwm4CompositeEditor.svg │ │ │ ├── XrendrMixer.svg │ │ │ ├── YACReader.svg │ │ │ ├── YACReaderLibrary.svg │ │ │ ├── YaST2-org.opensuse.yast.LAN.svg │ │ │ ├── YouTube-youtube.com.svg │ │ │ ├── YouTubeDownloader.svg │ │ │ ├── Youtube-www.youtube.com.svg │ │ │ ├── Youtube-youtube.com.svg │ │ │ ├── Z-web-browser.svg │ │ │ ├── ZeroNet.svg │ │ │ ├── Zoom.svg │ │ │ ├── aarddict.svg │ │ │ ├── abiword.svg │ │ │ ├── abiword_48.svg │ │ │ ├── about.svg │ │ │ ├── about_kde.svg │ │ │ ├── abrt-gui.svg │ │ │ ├── abrt.svg │ │ │ ├── access.svg │ │ │ ├── accessibility-directory.svg │ │ │ ├── accessibility.svg │ │ │ ├── accessibility_section.svg │ │ │ ├── accessories-archiver.svg │ │ │ ├── accessories-calculator-symbolic.svg │ │ │ ├── accessories-calculator.svg │ │ │ ├── accessories-camera.svg │ │ │ ├── accessories-character-map-symbolic.svg │ │ │ ├── accessories-character-map-symbolic.symbolic.svg │ │ │ ├── accessories-character-map.svg │ │ │ ├── accessories-clock.svg │ │ │ ├── accessories-dictionary-symbolic.svg │ │ │ ├── accessories-dictionary-symbolic.symbolic.svg │ │ │ ├── accessories-dictionary.svg │ │ │ ├── accessories-document-viewer.svg │ │ │ ├── accessories-ebook-reader.svg │ │ │ ├── accessories-emacs22-gtk.svg │ │ │ ├── accessories-image-viewer.svg │ │ │ ├── accessories-media-converter.svg │ │ │ ├── accessories-notes.svg │ │ │ ├── accessories-paint.svg │ │ │ ├── accessories-painting-symbolic.svg │ │ │ ├── accessories-painting.svg │ │ │ ├── accessories-podcast.svg │ │ │ ├── accessories-safe.svg │ │ │ ├── accessories-screenshot-symbolic.svg │ │ │ ├── accessories-screenshot-symbolic.symbolic.svg │ │ │ ├── accessories-screenshot.svg │ │ │ ├── accessories-system-cleaner.svg │ │ │ ├── accessories-text-editor-symbolic.svg │ │ │ ├── accessories-text-editor.svg │ │ │ ├── accessories-thesaurus.svg │ │ │ ├── accessories_character_map.svg │ │ │ ├── accessories_text_editor.svg │ │ │ ├── ace.svg │ │ │ ├── acestream.svg │ │ │ ├── acetoneiso.svg │ │ │ ├── acidrip.svg │ │ │ ├── acroread.svg │ │ │ ├── activities.svg │ │ │ ├── activity-journal.svg │ │ │ ├── activity-log-manager.svg │ │ │ ├── add-subtitle.svg │ │ │ ├── address-book.svg │ │ │ ├── addressbook.svg │ │ │ ├── adjust-colors.svg │ │ │ ├── administration.svg │ │ │ ├── adobe-air.svg │ │ │ ├── adobe-flashplayer.svg │ │ │ ├── adobe-photoshop.svg │ │ │ ├── adobe-reader.svg │ │ │ ├── adobeflashplugin.svg │ │ │ ├── adroid-sdk.svg │ │ │ ├── advanced-rest-client.svg │ │ │ ├── advancedmetronome.svg │ │ │ ├── agenda.svg │ │ │ ├── agent.svg │ │ │ ├── ailurus.svg │ │ │ ├── air.svg │ │ │ ├── airbnb.svg │ │ │ ├── airvpn.svg │ │ │ ├── aisleriot.svg │ │ │ ├── akonadi-serializer.svg │ │ │ ├── akonadi.svg │ │ │ ├── akonadiconsole.svg │ │ │ ├── akonaditray.svg │ │ │ ├── akregator.svg │ │ │ ├── akregator_empty.svg │ │ │ ├── alacarte.svg │ │ │ ├── alacritty-simple.svg │ │ │ ├── alacritty-term+scanlines.svg │ │ │ ├── alacritty-term.svg │ │ │ ├── alarm-clock.svg │ │ │ ├── alarm-timer.svg │ │ │ ├── alarm.svg │ │ │ ├── alc.svg │ │ │ ├── allen-b1.news.svg │ │ │ ├── alleyoop.svg │ │ │ ├── alligator.svg │ │ │ ├── alltray.svg │ │ │ ├── almanah.svg │ │ │ ├── alsa-tools.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 │ │ │ ├── amd-alto.svg │ │ │ ├── amd-ati.svg │ │ │ ├── amd-bajo.svg │ │ │ ├── amd-catalyst-control-center.svg │ │ │ ├── amd-catalyst.svg │ │ │ ├── amd-ddm-mx.svg │ │ │ ├── amd-medio.svg │ │ │ ├── amd.svg │ │ │ ├── amor.svg │ │ │ ├── amsynth.svg │ │ │ ├── anaconda.svg │ │ │ ├── anatine.svg │ │ │ ├── anbox-com-android-vending.svg │ │ │ ├── anbox.appmgr.svg │ │ │ ├── anbox.svg │ │ │ ├── android-file-transfer-linux.svg │ │ │ ├── android-file-transfer.svg │ │ │ ├── android-messages-desktop-tray-unread.svg │ │ │ ├── android-messages-desktop-tray.svg │ │ │ ├── android-messages-desktop.svg │ │ │ ├── android-sdk.svg │ │ │ ├── android-studio-beta.svg │ │ │ ├── android-studio.svg │ │ │ ├── androidestudio.svg │ │ │ ├── androidstudio.svg │ │ │ ├── angelfish.svg │ │ │ ├── angular-console.svg │ │ │ ├── anjuta.svg │ │ │ ├── anjuta6.svg │ │ │ ├── anjuta_icon.svg │ │ │ ├── anki.svg │ │ │ ├── anoise.svg │ │ │ ├── antimicro-panel.svg │ │ │ ├── antimicro.svg │ │ │ ├── antimicrox.svg │ │ │ ├── antimicrox_trayicon.svg │ │ │ ├── anydesk.svg │ │ │ ├── anydo.svg │ │ │ ├── apache-netbeans.svg │ │ │ ├── apacheconf.svg │ │ │ ├── app-launcher.svg │ │ │ ├── app-outlet.svg │ │ │ ├── app.authpass.AuthPass.svg │ │ │ ├── app.briar.gtk.svg │ │ │ ├── app.drey.Dialect.svg │ │ │ ├── app.drey.Warp.svg │ │ │ ├── app.gummi.gummi.svg │ │ │ ├── app.midterm.MidtermDesktop.svg │ │ │ ├── app.rednotebook.RedNotebook.svg │ │ │ ├── app.svg │ │ │ ├── app.xemu.xemu.svg │ │ │ ├── app.ytmdesktop.ytmdesktop.svg │ │ │ ├── apparmor_view_profile.svg │ │ │ ├── apper.svg │ │ │ ├── appgrid.svg │ │ │ ├── appimagekit-1password.svg │ │ │ ├── appimagekit-Alva.svg │ │ │ ├── appimagekit-AppImage.svg │ │ │ ├── appimagekit-Jellyamp.svg │ │ │ ├── appimagekit-KittehPlayer.svg │ │ │ ├── appimagekit-OpenRGB.svg │ │ │ ├── appimagekit-PCSX2.svg │ │ │ ├── appimagekit-Play.svg │ │ │ ├── appimagekit-QMPlay2.svg │ │ │ ├── appimagekit-advanced-rest-client.svg │ │ │ ├── appimagekit-android-file-transfer.svg │ │ │ ├── appimagekit-android-messages-desktop.svg │ │ │ ├── appimagekit-app-outlet.svg │ │ │ ├── appimagekit-archipelago.svg │ │ │ ├── appimagekit-ark-desktop-wallet.svg │ │ │ ├── appimagekit-azpainter.svg │ │ │ ├── appimagekit-baiji-manga-viewer.svg │ │ │ ├── appimagekit-balena-etcher-electron.svg │ │ │ ├── appimagekit-beaker-browser.svg │ │ │ ├── appimagekit-beekeeper-studio.svg │ │ │ ├── appimagekit-bitwarden.svg │ │ │ ├── appimagekit-brackets-electron.svg │ │ │ ├── appimagekit-cacher.svg │ │ │ ├── appimagekit-caprine.svg │ │ │ ├── appimagekit-clickup-desktop.svg │ │ │ ├── appimagekit-clipgrab.svg │ │ │ ├── appimagekit-colorpicker.svg │ │ │ ├── appimagekit-conky-logomark-violet.svg │ │ │ ├── appimagekit-cozydrive.svg │ │ │ ├── appimagekit-cpod.svg │ │ │ ├── appimagekit-cryptr.svg │ │ │ ├── appimagekit-cura-icon.svg │ │ │ ├── appimagekit-de.rwth_aachen.ient.YUView.svg │ │ │ ├── appimagekit-deltachat-desktop.svg │ │ │ ├── appimagekit-draw.io.svg │ │ │ ├── appimagekit-drawpile.svg │ │ │ ├── appimagekit-duskplayer.svg │ │ │ ├── appimagekit-emacs.svg │ │ │ ├── appimagekit-encryptpad.svg │ │ │ ├── appimagekit-ferdi.svg │ │ │ ├── appimagekit-ff-password-exporter.svg │ │ │ ├── appimagekit-filmulator-gui.svg │ │ │ ├── appimagekit-fontbase.svg │ │ │ ├── appimagekit-github-desktop.svg │ │ │ ├── appimagekit-gmail-desktop.svg │ │ │ ├── appimagekit-gqrx.svg │ │ │ ├── appimagekit-heroic.svg │ │ │ ├── appimagekit-irccloud-desktop.svg │ │ │ ├── appimagekit-jitsi-meet.svg │ │ │ ├── appimagekit-joplin.svg │ │ │ ├── appimagekit-kitty.svg │ │ │ ├── appimagekit-knowte.svg │ │ │ ├── appimagekit-ksnip.svg │ │ │ ├── appimagekit-leocad.svg │ │ │ ├── appimagekit-librewolf.svg │ │ │ ├── appimagekit-mellowplayer.svg │ │ │ ├── appimagekit-midterm.svg │ │ │ ├── appimagekit-mscore-portable.svg │ │ │ ├── appimagekit-museeks.svg │ │ │ ├── appimagekit-negibox.svg │ │ │ ├── appimagekit-obsidian.svg │ │ │ ├── appimagekit-odio.svg │ │ │ ├── appimagekit-odrive.svg │ │ │ ├── appimagekit-org.cryptomator.Cryptomator.svg │ │ │ ├── appimagekit-org.fontforge.FontForge.svg │ │ │ ├── appimagekit-org.keepassxc.KeePassXC.svg │ │ │ ├── appimagekit-pcloud.svg │ │ │ ├── appimagekit-plexamp.svg │ │ │ ├── appimagekit-pling-store.svg │ │ │ ├── appimagekit-pocket-casts-linux.svg │ │ │ ├── appimagekit-poddr.svg │ │ │ ├── appimagekit-premid.svg │ │ │ ├── appimagekit-protonmail-desktop-unofficial.svg │ │ │ ├── appimagekit-pulse-sms.svg │ │ │ ├── appimagekit-qnapi.svg │ │ │ ├── appimagekit-qtox.svg │ │ │ ├── appimagekit-retroarch.svg │ │ │ ├── appimagekit-retroshare.svg │ │ │ ├── appimagekit-rpcs3.svg │ │ │ ├── appimagekit-sc-controller.svg │ │ │ ├── appimagekit-smplayer.svg │ │ │ ├── appimagekit-stacer.svg │ │ │ ├── appimagekit-standard-notes.svg │ │ │ ├── appimagekit-superpaper.svg │ │ │ ├── appimagekit-supertux2.svg │ │ │ ├── appimagekit-synfigstudio.svg │ │ │ ├── appimagekit-teams-for-linux.svg │ │ │ ├── appimagekit-thorium.svg │ │ │ ├── appimagekit-tweet-tray.svg │ │ │ ├── appimagekit-unityhub.svg │ │ │ ├── appimagekit-videomass.svg │ │ │ ├── appimagekit-viper-browser.svg │ │ │ ├── appimagekit-vnote.svg │ │ │ ├── appimagekit-webcamoid.svg │ │ │ ├── appimagekit-wewechat.svg │ │ │ ├── appimagekit-wine-launcher.svg │ │ │ ├── appimagekit-wire-desktop.svg │ │ │ ├── appimagekit-workflowy.svg │ │ │ ├── appimagekit-youtube-dl-gui.svg │ │ │ ├── appimagekit-youtube-music-desktop-app.svg │ │ │ ├── appimagekit-youtube-music.svg │ │ │ ├── appimagekit-yuzu.svg │ │ │ ├── appimagekit_irix.svg │ │ │ ├── apple-music.svg │ │ │ ├── applet_lockkeys.svg │ │ │ ├── applets-screenshooter-symbolic.svg │ │ │ ├── applets-screenshooter.svg │ │ │ ├── applets-template.svg │ │ │ ├── application-default-icon.svg │ │ │ ├── application-default-symbolic.svg │ │ │ ├── application-pdf.svg │ │ │ ├── application-vidiot.svg │ │ │ ├── application-vnd.iccprofile.svg │ │ │ ├── application-x-addon-symbolic.svg │ │ │ ├── application-x-addon-symbolic.symbolic.svg │ │ │ ├── application-x-ardour.svg │ │ │ ├── application-x-chemtool.svg │ │ │ ├── application-x-clementine.svg │ │ │ ├── application-x-codeblocks-workspace.svg │ │ │ ├── application-x-codeblocks.svg │ │ │ ├── application-x-executable.svg │ │ │ ├── application-x-firmware-symbolic.svg │ │ │ ├── application-x-firmware-symbolic.symbolic.svg │ │ │ ├── application-x-firmware.svg │ │ │ ├── application-x-msdownload.svg │ │ │ ├── application-x-pml18.svg │ │ │ ├── application-x-pml18free.svg │ │ │ ├── application-x-pml19free.svg │ │ │ ├── application-x-pml20free.svg │ │ │ ├── application-x-pml21free.svg │ │ │ ├── application-x-pml22free.svg │ │ │ ├── application-x-prl18.svg │ │ │ ├── application-x-prl18free.svg │ │ │ ├── application-x-prl19free.svg │ │ │ ├── application-x-prl20free.svg │ │ │ ├── application-x-prl21free.svg │ │ │ ├── application-x-prl22free.svg │ │ │ ├── application-x-remote-connection.svg │ │ │ ├── application-x-tml18.svg │ │ │ ├── application-x-tml18free.svg │ │ │ ├── application-x-tml19free.svg │ │ │ ├── application-x-tml20free.svg │ │ │ ├── application-x-tml21free.svg │ │ │ ├── application-x-tml22free.svg │ │ │ ├── application-x-vnc.svg │ │ │ ├── application-x-wine-extension-its.svg │ │ │ ├── application-x-wine-extension-vpk.svg │ │ │ ├── applications-Wine.svg │ │ │ ├── applications-accessories.svg │ │ │ ├── applications-all.svg │ │ │ ├── applications-development-symbolic.svg │ │ │ ├── applications-development-translation.svg │ │ │ ├── applications-development-web.svg │ │ │ ├── applications-development.svg │ │ │ ├── applications-education-language.svg │ │ │ ├── applications-education-mathematics.svg │ │ │ ├── applications-education.svg │ │ │ ├── applications-electronics.svg │ │ │ ├── applications-engineering-symbolic.svg │ │ │ ├── applications-engineering-symbolic.symbolic.svg │ │ │ ├── applications-engineering.svg │ │ │ ├── applications-featured-symbolic.svg │ │ │ ├── applications-featured.svg │ │ │ ├── applications-font.svg │ │ │ ├── applications-fonts.svg │ │ │ ├── applications-games.svg │ │ │ ├── applications-graphics-drawing.svg │ │ │ ├── applications-graphics-painting.svg │ │ │ ├── applications-graphics-photography.svg │ │ │ ├── applications-graphics-symbolic.svg │ │ │ ├── applications-graphics-symbolic.symbolic.svg │ │ │ ├── applications-graphics.svg │ │ │ ├── applications-interfacedesign.svg │ │ │ ├── applications-internet-chat.svg │ │ │ ├── applications-internet-symbolic.svg │ │ │ ├── applications-internet.svg │ │ │ ├── applications-java.svg │ │ │ ├── applications-languages.svg │ │ │ ├── applications-libraries.svg │ │ │ ├── applications-multimedia-svg │ │ │ ├── applications-multimedia-symbolic.svg │ │ │ ├── applications-multimedia.svg │ │ │ ├── applications-network.svg │ │ │ ├── applications-office-publishing.svg │ │ │ ├── applications-office-symbolic.svg │ │ │ ├── applications-office-symbolic.symbolic.svg │ │ │ ├── applications-office.svg │ │ │ ├── applications-other.svg │ │ │ ├── applications-puzzles.svg │ │ │ ├── applications-python.svg │ │ │ ├── applications-science.svg │ │ │ ├── applications-system-orange.svg │ │ │ ├── applications-system-symbolic.svg │ │ │ ├── applications-system-symbolic.symbolic.svg │ │ │ ├── applications-system.svg │ │ │ ├── applications-toys.svg │ │ │ ├── applications-utilities.svg │ │ │ ├── applications-webapps.svg │ │ │ ├── applications-webbrowsers.svg │ │ │ ├── applications-wine.svg │ │ │ ├── applications_accessories.svg │ │ │ ├── appointment-soon.svg │ │ │ ├── appointment.svg │ │ │ ├── apport-gtk.svg │ │ │ ├── apport-gtk2.svg │ │ │ ├── apport.svg │ │ │ ├── apps.cn.com.winrar.svg │ │ │ ├── apps.com.2048.svg │ │ │ ├── apps.com.baidu.map.svg │ │ │ ├── apps.com.baidu.music.svg │ │ │ ├── apps.com.easymindmap.svg │ │ │ ├── apps.com.evernote.svg │ │ │ ├── apps.com.google.docs.svg │ │ │ ├── apps.com.google.drive.svg │ │ │ ├── apps.com.google.map.svg │ │ │ ├── apps.com.office │ │ │ ├── apps.com.qianlong.svg │ │ │ ├── apps.com.qq.im.svg │ │ │ ├── apps.com.wechat.web.svg │ │ │ ├── apps.org.7-zip.svg │ │ │ ├── appset.svg │ │ │ ├── aptanastudio.svg │ │ │ ├── aptdaemon-add.svg │ │ │ ├── aptdaemon-download.svg │ │ │ ├── aptdaemon-setup.svg │ │ │ ├── aptdaemon-update-cache.svg │ │ │ ├── aptdaemon-upgrade.svg │ │ │ ├── aptdaemon-working.svg │ │ │ ├── aptik-battery-monitor.svg │ │ │ ├── aptik-gtk.svg │ │ │ ├── aptitude.svg │ │ │ ├── arch-logo-icon.svg │ │ │ ├── archipelago.svg │ │ │ ├── archive-manager.svg │ │ │ ├── archive-mounter.svg │ │ │ ├── archivemanager.svg │ │ │ ├── archiver-manager.svg │ │ │ ├── archivermanager.svg │ │ │ ├── archlinux.svg │ │ │ ├── arcolinux-hello.svg │ │ │ ├── ardour.svg │ │ │ ├── ardour2.svg │ │ │ ├── ardour3.svg │ │ │ ├── ardour4.svg │ │ │ ├── ardour5.svg │ │ │ ├── ardour6.svg │ │ │ ├── ardour7.svg │ │ │ ├── ardour_icon_22px.svg │ │ │ ├── arduino-arduinoide.svg │ │ │ ├── arduino-icon-small.svg │ │ │ ├── arduino-ide.svg │ │ │ ├── arduino.svg │ │ │ ├── ario.svg │ │ │ ├── ario.xpm.svg │ │ │ ├── ark.svg │ │ │ ├── arora.svg │ │ │ ├── artemanufrij.imageburner.svg │ │ │ ├── artemanufrij.metronome.svg │ │ │ ├── artemanufrij.playmymusic.svg │ │ │ ├── artemanufrij.screencast.svg │ │ │ ├── artha.svg │ │ │ ├── arts.svg │ │ │ ├── artsbuilder.svg │ │ │ ├── artscontrol.svg │ │ │ ├── as-icon.svg │ │ │ ├── as-powered.svg │ │ │ ├── asc-de.svg │ │ │ ├── asounder.svg │ │ │ ├── assistant-qt4.svg │ │ │ ├── assistant-qt5.svg │ │ │ ├── assistant-qt6.svg │ │ │ ├── assistant.svg │ │ │ ├── assistant5.svg │ │ │ ├── asunder.svg │ │ │ ├── at-support.svg │ │ │ ├── at.lehklu.plasmoid.vallpaper.svg │ │ │ ├── at.priv.toastfreeware.ConfClerk.svg │ │ │ ├── atari-vault.svg │ │ │ ├── aterm.svg │ │ │ ├── athena.svg │ │ │ ├── ati.svg │ │ │ ├── atlantikdesigner.svg │ │ │ ├── atlas.svg │ │ │ ├── atlauncher.svg │ │ │ ├── atom-beta.svg │ │ │ ├── atom-nightly.svg │ │ │ ├── atom-text-editor.svg │ │ │ ├── atom.svg │ │ │ ├── atomic-icon │ │ │ ├── atomix-icon.svg │ │ │ ├── atomix.svg │ │ │ ├── atril.svg │ │ │ ├── atunes.svg │ │ │ ├── atunes125.svg │ │ │ ├── audacious-16.svg │ │ │ ├── audacious-32.svg │ │ │ ├── audacious-panel.svg │ │ │ ├── audacious.svg │ │ │ ├── audacious2.svg │ │ │ ├── audacity.svg │ │ │ ├── audacity16.svg │ │ │ ├── audacity32.svg │ │ │ ├── audex.svg │ │ │ ├── audience.svg │ │ │ ├── audio-card.svg │ │ │ ├── audio-editor.svg │ │ │ ├── audio-input-microphone-symbolic.svg │ │ │ ├── audio-input-microphone-symbolic.symbolic.svg │ │ │ ├── audio-player.svg │ │ │ ├── audio-radio.svg │ │ │ ├── audio-recorder.svg │ │ │ ├── audio-speakers-symbolic.symbolic.svg │ │ │ ├── audio-speakers.svg │ │ │ ├── audio-subwoofer-symbolic.svg │ │ │ ├── audio-subwoofer-testing.svg │ │ │ ├── audio-subwoofer.svg │ │ │ ├── audio.svg │ │ │ ├── audoban.applet.playbar.svg │ │ │ ├── audoban.applet.separator.svg │ │ │ ├── auth-fingerprint-symbolic.svg │ │ │ ├── auth-fingerprint-symbolic.symbolic.svg │ │ │ ├── auth-fingerprint.svg │ │ │ ├── authpass.svg │ │ │ ├── authy.svg │ │ │ ├── auto-package-manager-gtk.svg │ │ │ ├── autocolor.svg │ │ │ ├── autokey.svg │ │ │ ├── autopackage-installer.svg │ │ │ ├── autopackage-manager-gtk.svg │ │ │ ├── avant-window-navigator-48.svg │ │ │ ├── avant-window-navigator.svg │ │ │ ├── avatar-default.svg │ │ │ ├── avernote.svg │ │ │ ├── avidemux-gtk.svg │ │ │ ├── avidemux-qt4.svg │ │ │ ├── avidemux-qt5.svg │ │ │ ├── avidemux.svg │ │ │ ├── avidemux_icon.svg │ │ │ ├── aweather.svg │ │ │ ├── awf.svg │ │ │ ├── awn-applet-digital-clock.svg │ │ │ ├── awn-applet.svg │ │ │ ├── awn-manager.svg │ │ │ ├── awn-plugins.svg │ │ │ ├── awn-settings.svg │ │ │ ├── ax-applet.svg │ │ │ ├── azpainter.svg │ │ │ ├── azuredatastudio.svg │ │ │ ├── babe.svg │ │ │ ├── background.svg │ │ │ ├── backintime.svg │ │ │ ├── backlite.svg │ │ │ ├── badge-small.svg │ │ │ ├── badge.svg │ │ │ ├── baiji-manga-viewer.svg │ │ │ ├── baka-mplayer.svg │ │ │ ├── balena-etcher-electron.svg │ │ │ ├── balena-etcher.svg │ │ │ ├── baloo.svg │ │ │ ├── bangarang.svg │ │ │ ├── banji.svg │ │ │ ├── banshee-01.svg │ │ │ ├── banshee-1.svg │ │ │ ├── banshee-panel.svg │ │ │ ├── banshee.svg │ │ │ ├── baobab.svg │ │ │ ├── bash.svg │ │ │ ├── basket.svg │ │ │ ├── battery.svg │ │ │ ├── bauh.svg │ │ │ ├── beagled.svg │ │ │ ├── beaker-browser.svg │ │ │ ├── beaker.svg │ │ │ ├── beatbox.svg │ │ │ ├── beekeeper-studio.svg │ │ │ ├── bell.svg │ │ │ ├── beryl-manager.svg │ │ │ ├── beryl-settings.svg │ │ │ ├── beryl.svg │ │ │ ├── bibletime.svg │ │ │ ├── bijiben.svg │ │ │ ├── bingwall.svg │ │ │ ├── birdie.svg │ │ │ ├── bitcoin-qt.svg │ │ │ ├── bitcoin.svg │ │ │ ├── bitcoin128.svg │ │ │ ├── bittorrent-sync.svg │ │ │ ├── bitwarden-tray.svg │ │ │ ├── bitwarden.svg │ │ │ ├── bitwig-studio.svg │ │ │ ├── blackmagicraw-speedtest.svg │ │ │ ├── blanket.svg │ │ │ ├── bleachbit.svg │ │ │ ├── blender.svg │ │ │ ├── blinken.svg │ │ │ ├── blivet-gui.svg │ │ │ ├── blockbench.svg │ │ │ ├── blogger.svg │ │ │ ├── blogilo.svg │ │ │ ├── blue-recorder.svg │ │ │ ├── blueberry-active.svg │ │ │ ├── blueberry.svg │ │ │ ├── blueclock.svg │ │ │ ├── blueclock32.svg │ │ │ ├── bluedun.svg │ │ │ ├── bluefish-icon.svg │ │ │ ├── bluefish.svg │ │ │ ├── bluegriffon.svg │ │ │ ├── bluejeans.svg │ │ │ ├── blueman-active.svg │ │ │ ├── blueman-desktop.svg │ │ │ ├── blueman-device.svg │ │ │ ├── blueman.svg │ │ │ ├── blueradio-48.svg │ │ │ ├── blueradio.svg │ │ │ ├── bluetooth-48.svg │ │ │ ├── bluetooth-active.svg │ │ │ ├── bluetooth-black.svg │ │ │ ├── bluetooth-paired.svg │ │ │ ├── bluetooth-radio.svg │ │ │ ├── bluetooth-symbolic.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bluetoothradio.svg │ │ │ ├── boinc-manager.svg │ │ │ ├── boinc.svg │ │ │ ├── bombermaaan.svg │ │ │ ├── bombono-dvd.svg │ │ │ ├── bomi.svg │ │ │ ├── bookmarks-organize.svg │ │ │ ├── bookreader.svg │ │ │ ├── bookworm.svg │ │ │ ├── boomaga.svg │ │ │ ├── boot-repair.svg │ │ │ ├── borderlands-the-pre-sequel.svg │ │ │ ├── bottles.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 │ │ │ ├── box.svg │ │ │ ├── brackerts_B.svg │ │ │ ├── brackerts_b.svg │ │ │ ├── brackets-electron.svg │ │ │ ├── brackets.svg │ │ │ ├── braindump.svg │ │ │ ├── brasero.svg │ │ │ ├── brave-agimnkijcaahngcdmfeangaknmldooml-Default.svg │ │ │ ├── brave-aohghmighlieiainnegkcijnfilokake-Default.svg │ │ │ ├── brave-apboafhkiegglekeafbckfjldecefkhn-Default.svg │ │ │ ├── brave-apdfllckaahabafndbhieahigkjlhalf-Default.svg │ │ │ ├── brave-bgjohebimpjdhhocbknplfelpmdhifhd-Default.svg │ │ │ ├── brave-bgkodfmeijboinjdegggmkbkjfiagaan-Default.svg │ │ │ ├── brave-bikioccmkafdpakkkcpdbppfkghcmihk-Default.svg │ │ │ ├── brave-bin.svg │ │ │ ├── brave-bllmngcdibgbgjnginpehneeofhbmdjm-Default.svg │ │ │ ├── brave-blpcfgokakmgnkcojhhkbfbldkacnbeo-Default.svg │ │ │ ├── brave-bnbaboaihhkjoaolfnfoablhllahjnee-Default.svg │ │ │ ├── brave-boeajhmfdjldchidhphikilcgdacljfm-Default.svg │ │ │ ├── brave-bommmmpbplimfmebiadkflfgbgejahgm-Default.svg │ │ │ ├── brave-browser-beta.svg │ │ │ ├── brave-browser.svg │ │ │ ├── brave-cinhimbnkkaeohfgghhklpknlkffjgod-Default.svg │ │ │ ├── brave-cjanmonomjogheabiocdamfpknlpdehm-Default.svg │ │ │ ├── brave-clhhggbfdinjmjhajaheehoeibfljjno-Default.svg │ │ │ ├── brave-damddgdogmdhjjbgpfpgmkdgdgjhohef-Default.svg │ │ │ ├── brave-defekohaofmambflfpfoojkmfdpcbgko-Default.svg │ │ │ ├── brave-desktop.svg │ │ │ ├── brave-dihbebhmaoagdpbcnfedokpfkkgmmpgc-Default.svg │ │ │ ├── brave-djejicklhojeokkfmdelnempiecmdomj-Default.svg │ │ │ ├── brave-eelgndlbgohgbfkmhamljdkkdpejnemo-Default.svg │ │ │ ├── brave-efmjfjelnicpmdcmfikempdhlmainjcb-Default.svg │ │ │ ├── brave-efobjgdlbfdfckkpghggmiephjgicmak-Default.svg │ │ │ ├── brave-egmafekfmcnknbdlbfbhafbllplmjlhn-Default.svg │ │ │ ├── brave-eikjhbkpemdappjfcmdeeeamdpkgabmk-Default.svg │ │ │ ├── brave-ejidjjhkpiempkbhmpbfngldlkglhimk-Default.svg │ │ │ ├── brave-ejjicmeblgpmajnghnpcppodonldlgfn-Default.svg │ │ │ ├── brave-fahmaaghhglfmonjliepjlchgpgfmobi-Default.svg │ │ │ ├── brave-faolnafnngnfdaknnbpnkhgohbobgegn-Default.svg │ │ │ ├── brave-felcaaldnbdncclmgdcncolpebgiejap-Default.svg │ │ │ ├── brave-fjliknjliaohjgjajlgolhijphojjdkc-Default.svg │ │ │ ├── brave-fpniocchabmgenibceglhnfeimmdhdfm-Default.svg │ │ │ ├── brave-gaedmjdfmmahhbjefcbgaolhhanlaolb-Default.svg │ │ │ ├── brave-gbchcmhmhahfdphkhkmpfmihenigjmpp-Default.svg │ │ │ ├── brave-gjmanaihpgjcijokbimnamcdndkffigp-Default.svg │ │ │ ├── brave-gkcknpgdmiigoagkcoglklgaagnpojed-Default.svg │ │ │ ├── brave-hadgilakbfohcfcgfbioeeehgpkopaga-Default.svg │ │ │ ├── brave-hbdpomandigafcibbmofojjchbcdagbl-Default.svg │ │ │ ├── brave-hcglmfcclpfgljeaiahehebeoaiicbko-Default.svg │ │ │ ├── brave-hihbikoooaenkpdooehgemieligjejcb-Default.svg │ │ │ ├── brave-hmjkmjkepdijhoojdojkdfohbdgmmhki-Default.svg │ │ │ ├── brave-hncfgilfeieogcpghjnnhddghgdjbekl-Default.svg │ │ │ ├── brave-hnpfjngllnobngcgfapefoaidbinmjnm-Default.svg │ │ │ ├── brave-icppfcnhkcmnfdhfhphakoifcfokfdhg-Default.svg │ │ │ ├── brave-ighkikkfkalojiibipjigpccggljgdff-Default.svg │ │ │ ├── brave-jgeocpdicgmkeemopbanhokmhcgcflmi-Default.svg │ │ │ ├── brave-jjphmlaoffndcnecccgemfdaaoighkel-Default.svg │ │ │ ├── brave-jknmpnbgkaekopldbncmggaejjamkemn-Default.svg │ │ │ ├── brave-khjnjifipfkgglficmipimgjpbmlbemd-Default.svg │ │ │ ├── brave-knipolnnllmklapflnccelgolnpehhpl-Default.svg │ │ │ ├── brave-lainlkmlgipednloilifbppmhdocjbda-Default.svg │ │ │ ├── brave-lbfehkoinhhcknnbdgnnmjhiladcgbol-Default.svg │ │ │ ├── brave-lgnggepjiihbfdbedefdhcffnmhcahbm-Default.svg │ │ │ ├── brave-mdpkiolbdkhdjpekfbkbmhigcaggjagi-Default.svg │ │ │ ├── brave-mjcnijlhddpbdemagnpefmlkjdagkogk-Default.svg │ │ │ ├── brave-mmfbcljfglbokpmkimbfghdkjmjhdgbg-Default.svg │ │ │ ├── brave-mnfehgbmkapmjnhcnbodoamcioleeooe-Default.svg │ │ │ ├── brave-nmmhkkegccagdldgiimedpiccmgmieda-Default.svg │ │ │ ├── brave-ojcflmmmcfpacggndoaaflkmcoblhnbh-Default.svg │ │ │ ├── brave-okdgofnjkaimfebepijgaoimfphblkpd-Default.svg │ │ │ ├── brave-oooiobdokpcfdlahlmcddobejikcmkfo-Default.svg │ │ │ ├── brave-pjkljhegncpnkpknbcohdijeoejaedia-Default.svg │ │ │ ├── brave.svg │ │ │ ├── breeze-settings.svg │ │ │ ├── brightness-systray.svg │ │ │ ├── brightnesssettings.svg │ │ │ ├── brightside.svg │ │ │ ├── briss.svg │ │ │ ├── broom.svg │ │ │ ├── browser-help.svg │ │ │ ├── browser-tor.svg │ │ │ ├── browser.svg │ │ │ ├── browser_help.svg │ │ │ ├── bt-logo.svg │ │ │ ├── btsync-gui-gtk.svg │ │ │ ├── btsync-gui.svg │ │ │ ├── btsync-user.svg │ │ │ ├── budgie-daemon.svg │ │ │ ├── budgie-desktop-settings.svg │ │ │ ├── budgie-hotcorners-symbolic.svg │ │ │ ├── budgie-keyboard-autoswitch-symbolic.svg │ │ │ ├── budgie-keyboard-autoswitch.svg │ │ │ ├── budgie-wm.svg │ │ │ ├── budgie-wsw-symbolic.svg │ │ │ ├── budgie-wsw.svg │ │ │ ├── bug-buddy.svg │ │ │ ├── bug-symbolic.svg │ │ │ ├── bug.svg │ │ │ ├── builder-symbolic.svg │ │ │ ├── builder.svg │ │ │ ├── bum.svg │ │ │ ├── bumblebee-config-gui.svg │ │ │ ├── bumblebee.svg │ │ │ ├── burner.svg │ │ │ ├── buttercup-desktop.svg │ │ │ ├── bwfmetaedit.svg │ │ │ ├── byobu.svg │ │ │ ├── byzanz.svg │ │ │ ├── ca._0ldsk00l.Nestopia.svg │ │ │ ├── ca.desrt.dconf-editor.svg │ │ │ ├── ca.littlesvr.asunder.svg │ │ │ ├── cacao-oj6.svg │ │ │ ├── cacao-oj7.svg │ │ │ ├── cacao-oj8.svg │ │ │ ├── cacao-oj9.svg │ │ │ ├── cacher.svg │ │ │ ├── caffeine-cup-full.svg │ │ │ ├── caffeine.svg │ │ │ ├── cairo-clock.svg │ │ │ ├── cairo-dock-c.svg │ │ │ ├── cairo-dock-o.svg │ │ │ ├── cairo-dock.svg │ │ │ ├── caja-actions.svg │ │ │ ├── caja-dropbox.svg │ │ │ ├── caja.svg │ │ │ ├── calamares.svg │ │ │ ├── calc.svg │ │ │ ├── calculator-app.svg │ │ │ ├── calculator.svg │ │ │ ├── calculator64.svg │ │ │ ├── calendar-blue-31.svg │ │ │ ├── calendar-purple-31.svg │ │ │ ├── calendar-red-31.svg │ │ │ ├── calendar.svg │ │ │ ├── calibre-.svg │ │ │ ├── calibre-GUI.SVG │ │ │ ├── calibre-GUI.svg │ │ │ ├── calibre-ebook-edit.svg │ │ │ ├── calibre-gui.svg │ │ │ ├── calibre-tray.svg │ │ │ ├── calibre-viewer.svg │ │ │ ├── calibre.svg │ │ │ ├── calibre2.svg │ │ │ ├── calibre_A.svg │ │ │ ├── calibre_B.svg │ │ │ ├── calibre_C.svg │ │ │ ├── california.svg │ │ │ ├── caligraplan.svg │ │ │ ├── calindori.svg │ │ │ ├── calligraauthor.svg │ │ │ ├── calligradevtools.svg │ │ │ ├── calligrahandbook.svg │ │ │ ├── calligrakexi.svg │ │ │ ├── calligrakrita.svg │ │ │ ├── calligrakrita2.svg │ │ │ ├── calligrakrita3.svg │ │ │ ├── calligrakrita_l.svg │ │ │ ├── calligraplan.svg │ │ │ ├── calligraplanner.svg │ │ │ ├── calligraplanwork.svg │ │ │ ├── calligraplugins.svg │ │ │ ├── calligrasheets.svg │ │ │ ├── calligrastage.svg │ │ │ ├── calligrawords.svg │ │ │ ├── camera-app.svg │ │ │ ├── camera-photo.svg │ │ │ ├── camera-video-symbolic.svg │ │ │ ├── camera-video-symbolic.symbolic.svg │ │ │ ├── camera-video.svg │ │ │ ├── camera-web-symbolic.svg │ │ │ ├── camera-web.svg │ │ │ ├── camera.svg │ │ │ ├── camorama.svg │ │ │ ├── cantata.svg │ │ │ ├── cantor.svg │ │ │ ├── caprine.svg │ │ │ ├── carla-control.svg │ │ │ ├── carla.svg │ │ │ ├── cat.xtec.clic.JClic.jclicauthor.svg │ │ │ ├── catalyst-control-center.svg │ │ │ ├── catfish.svg │ │ │ ├── cawbird.svg │ │ │ ├── cc.arduino.IDE2.svg │ │ │ ├── cc.arduino.arduinoide.svg │ │ │ ├── cc.retroshare.retroshare-gui.svg │ │ │ ├── ccc-large.svg │ │ │ ├── ccc_large.svg │ │ │ ├── ccsm.svg │ │ │ ├── cervisia.svg │ │ │ ├── ch.imatt.ClipQR.svg │ │ │ ├── ch.protonmail.protonmail-bridge.svg │ │ │ ├── ch.protonmail.protonmail-import-export-app.svg │ │ │ ├── ch.theologeek.Manuskript.svg │ │ │ ├── chainsaw.svg │ │ │ ├── chakra-backup.svg │ │ │ ├── change-password-48.svg │ │ │ ├── change-password.svg │ │ │ ├── changes-allow.svg │ │ │ ├── changes-prevent.svg │ │ │ ├── charm.svg │ │ │ ├── charpic.svg │ │ │ ├── chat.delta.desktop.svg │ │ │ ├── checkgmail.svg │ │ │ ├── cheese-symbolic.svg │ │ │ ├── cheese.svg │ │ │ ├── chemtool.svg │ │ │ ├── cherrytree.svg │ │ │ ├── chipsybug.svg │ │ │ ├── chmsee-16x16.svg │ │ │ ├── chmsee-32x32.svg │ │ │ ├── chmsee-icon.svg │ │ │ ├── chmsee.svg │ │ │ ├── chrome-acgopffjcnoglomfkekpjmckhhgmkmci.svg │ │ │ ├── chrome-aeejceomnhmjmeacdckmmopfaigimnkl-Default.svg │ │ │ ├── chrome-agedgfbdadefbodjkkkcpihgcmibpcff-Default.svg │ │ │ ├── chrome-agimnkijcaahngcdmfeangaknmldooml-Default.svg │ │ │ ├── chrome-aohghmighlieiainnegkcijnfilokake-Default.svg │ │ │ ├── chrome-aohghmighlieiainnegkcijnfilokake.svg │ │ │ ├── chrome-apboafhkiegglekeafbckfjldecefkhn-Default.svg │ │ │ ├── chrome-apdfllckaahabafndbhieahigkjlhalf-Default.svg │ │ │ ├── chrome-apdfllckaahabafndbhieahigkjlhalf.svg │ │ │ ├── chrome-app-list.svg │ │ │ ├── chrome-bgjohebimpjdhhocbknplfelpmdhifhd-Default.svg │ │ │ ├── chrome-bgkodfmeijboinjdegggmkbkjfiagaan-Default.svg │ │ │ ├── chrome-bikioccmkafdpakkkcpdbppfkghcmihk-Default.svg │ │ │ ├── chrome-bllmngcdibgbgjnginpehneeofhbmdjm-Default.svg │ │ │ ├── chrome-blpcfgokakmgnkcojhhkbfbldkacnbeo-Default.svg │ │ │ ├── chrome-blpcfgokakmgnkcojhhkbfbldkacnbeo.svg │ │ │ ├── chrome-bnbaboaihhkjoaolfnfoablhllahjnee-Default.svg │ │ │ ├── chrome-boeajhmfdjldchidhphikilcgdacljfm-Default.svg │ │ │ ├── chrome-bommmmpbplimfmebiadkflfgbgejahgm-Default.svg │ │ │ ├── chrome-calculator.svg │ │ │ ├── chrome-cifmbmfpndbdeefaiicmmojdeihammok-Default.svg │ │ │ ├── chrome-cigolahoahpkfmhoomckiodabnlfdhpp-Default.svg │ │ │ ├── chrome-cinhimbnkkaeohfgghhklpknlkffjgod-Default.svg │ │ │ ├── chrome-ciniambnphakdoflgeamacamhfllbkmo-Default.svg │ │ │ ├── chrome-cjanmonomjogheabiocdamfpknlpdehm-Default.svg │ │ │ ├── chrome-clgddkicplcbgjfobecebadodeggpghp-Default.svg │ │ │ ├── chrome-clhhggbfdinjmjhajaheehoeibfljjno-Default.svg │ │ │ ├── chrome-cnkjkdjlofllcpbemipjbcpfnglbgieh-Default.svg │ │ │ ├── chrome-damddgdogmdhjjbgpfpgmkdgdgjhohef-Default.svg │ │ │ ├── chrome-ddfcbhajfcbadieedchpomhocpkhgeke-Default.svg │ │ │ ├── chrome-defekohaofmambflfpfoojkmfdpcbgko-Default.svg │ │ │ ├── chrome-dihbebhmaoagdpbcnfedokpfkkgmmpgc-Default.svg │ │ │ ├── chrome-djejicklhojeokkfmdelnempiecmdomj-Default.svg │ │ │ ├── chrome-eelgndlbgohgbfkmhamljdkkdpejnemo-Default.svg │ │ │ ├── chrome-efmjfjelnicpmdcmfikempdhlmainjcb-Default.svg │ │ │ ├── chrome-efobjgdlbfdfckkpghggmiephjgicmak-Default.svg │ │ │ ├── chrome-egmafekfmcnknbdlbfbhafbllplmjlhn-Default.svg │ │ │ ├── chrome-eifdbcbnlahelniokpkpdlhaocgjdcje-Default.svg │ │ │ ├── chrome-eikjhbkpemdappjfcmdeeeamdpkgabmk-Default.svg │ │ │ ├── chrome-ejidjjhkpiempkbhmpbfngldlkglhimk-Default.svg │ │ │ ├── chrome-ejjicmeblgpmajnghnpcppodonldlgfn-Default.svg │ │ │ ├── chrome-ejjicmeblgpmajnghnpcppodonldlgfn.svg │ │ │ ├── chrome-fahmaaghhglfmonjliepjlchgpgfmobi-Default.svg │ │ │ ├── chrome-fahmaaghhglfmonjliepjlchgpgfmobi.svg │ │ │ ├── chrome-faolnafnngnfdaknnbpnkhgohbobgegn-Default.svg │ │ │ ├── chrome-fdmmgilgnpjigdojojpjoooidkmcomcm-Default.svg │ │ │ ├── chrome-felcaaldnbdncclmgdcncolpebgiejap-Default.svg │ │ │ ├── chrome-fhbjgbiflinjbdggehcddcbncdddomop-Default.svg │ │ │ ├── chrome-fjliknjliaohjgjajlgolhijphojjdkc-Default.svg │ │ │ ├── chrome-fpniocchabmgenibceglhnfeimmdhdfm-Default.svg │ │ │ ├── chrome-gaedmjdfmmahhbjefcbgaolhhanlaolb-Default.svg │ │ │ ├── chrome-gbchcmhmhahfdphkhkmpfmihenigjmpp-Default.svg │ │ │ ├── chrome-gbchcmhmhahfdphkhkmpfmihenigjmpp.svg │ │ │ ├── chrome-gcjbnclfkeffmdfdhflnadahgmajfgcm-Default.svg │ │ │ ├── chrome-gjmanaihpgjcijokbimnamcdndkffigp-Default.svg │ │ │ ├── chrome-gkcknpgdmiigoagkcoglklgaagnpojed-Default.svg │ │ │ ├── chrome-gmail.svg │ │ │ ├── chrome-google-calendar.svg │ │ │ ├── chrome-google-docs.svg │ │ │ ├── chrome-google-drive.svg │ │ │ ├── chrome-google-keep.svg │ │ │ ├── chrome-google-maps.svg │ │ │ ├── chrome-google-photos.svg │ │ │ ├── chrome-google-play-books.svg │ │ │ ├── chrome-google-play-music.svg │ │ │ ├── chrome-google-play-store.svg │ │ │ ├── chrome-hadgilakbfohcfcgfbioeeehgpkopaga-Default.svg │ │ │ ├── chrome-hbdpomandigafcibbmofojjchbcdagbl-Default.svg │ │ │ ├── chrome-hblpgmjcnlmnencfjcjcjdajdhloioam-Default.svg │ │ │ ├── chrome-hcglmfcclpfgljeaiahehebeoaiicbko-Default.svg │ │ │ ├── chrome-hcglmfcclpfgljeaiahehebeoaiicbko.svg │ │ │ ├── chrome-hfhhnacclhffhdffklopdkcgdhifgngh-Default.svg │ │ │ ├── chrome-hihbikoooaenkpdooehgemieligjejcb-Default.svg │ │ │ ├── chrome-hmjkmjkepdijhoojdojkdfohbdgmmhki-Default.svg │ │ │ ├── chrome-hmjkmjkepdijhoojdojkdfohbdgmmhki.svg │ │ │ ├── chrome-hncfgilfeieogcpghjnnhddghgdjbekl-Default.svg │ │ │ ├── chrome-hnpfjngllnobngcgfapefoaidbinmjnm-Default.svg │ │ │ ├── chrome-https___telegram.org_.svg │ │ │ ├── chrome-ibblmnobmgdmpoeblocemifbpglakpoi-Default.svg │ │ │ ├── chrome-icdipabjmbhpdkjaihfjoikhjjeneebd-Default.svg │ │ │ ├── chrome-icppfcnhkcmnfdhfhphakoifcfokfdhg-Default.svg │ │ │ ├── chrome-idiemcijhbenngdhkdiipmpkafnkbkeg-Default.svg │ │ │ ├── chrome-ighkikkfkalojiibipjigpccggljgdff-Default.svg │ │ │ ├── chrome-ioekoebejdcmnlefjiknokhhafglcjdl-Default.svg │ │ │ ├── chrome-jcjbnkncddbeomhaacaeokhfnefibpde-Default.svg │ │ │ ├── chrome-jeogkiiogjbmhklcnbgkdcjoioegiknm-Default.svg │ │ │ ├── chrome-jgeocpdicgmkeemopbanhokmhcgcflmi-Default.svg │ │ │ ├── chrome-jjphmlaoffndcnecccgemfdaaoighkel-Default.svg │ │ │ ├── chrome-jknmpnbgkaekopldbncmggaejjamkemn-Default.svg │ │ │ ├── chrome-joodangkbfjnajiiifokapkpmhfnpleo-Default.svg │ │ │ ├── chrome-joodangkbfjnajiiifokapkpmhfnpleo.svg │ │ │ ├── chrome-khjnjifipfkgglficmipimgjpbmlbemd-Default.svg │ │ │ ├── chrome-kjgfgldnnfoeklkmfkjfagphfepbbdan-Default.svg │ │ │ ├── chrome-knipolnnllmklapflnccelgolnpehhpl-Default.svg │ │ │ ├── chrome-kogcfmeennoidocadkgjhnbancebmlbf-Default.svg │ │ │ ├── chrome-komhbcfkdcgmcdoenjcjheifdiabikfi-Default.svg │ │ │ ├── chrome-komhbcfkdcgmcdoenjcjheifdiabikfi.svg │ │ │ ├── chrome-lainlkmlgipednloilifbppmhdocjbda-Default.svg │ │ │ ├── chrome-lbfehkoinhhcknnbdgnnmjhiladcgbol-Default.svg │ │ │ ├── chrome-lgnggepjiihbfdbedefdhcffnmhcahbm-Default.svg │ │ │ ├── chrome-lneaknkopdijkpnocmklfnjbeapigfbh-Default.svg │ │ │ ├── chrome-lneaknkopdijkpnocmklfnjbeapigfbh.svg │ │ │ ├── chrome-mdpkiolbdkhdjpekfbkbmhigcaggjagi-Default.svg │ │ │ ├── chrome-mijlebbfndhelmdpmllgcfadlkankhok-Default.svg │ │ │ ├── chrome-mjcnijlhddpbdemagnpefmlkjdagkogk-Default.svg │ │ │ ├── chrome-mmfbcljfglbokpmkimbfghdkjmjhdgbg-Default.svg │ │ │ ├── chrome-mmimngoggfoobjdlefbcabngfnmieonb-Default.svg │ │ │ ├── chrome-mmimngoggfoobjdlefbcabngfnmieonb.svg │ │ │ ├── chrome-mnfehgbmkapmjnhcnbodoamcioleeooe-Default.svg │ │ │ ├── chrome-mpnpojknpmmopombnjdcgaaiekajbnjb-Default.svg │ │ │ ├── chrome-nmgfcbigejokjgholnnnipegblickgnp-Default.svg │ │ │ ├── chrome-nmmhkkegccagdldgiimedpiccmgmieda-Default.svg │ │ │ ├── chrome-ocdlmjhbenodhlknglojajgokahchlkk.svg │ │ │ ├── chrome-ojcflmmmcfpacggndoaaflkmcoblhnbh-Default.svg │ │ │ ├── chrome-okdgofnjkaimfebepijgaoimfphblkpd-Default.svg │ │ │ ├── chrome-oooiobdokpcfdlahlmcddobejikcmkfo-Default.svg │ │ │ ├── chrome-opngmganjdbkepnmaakokoicipolgaeh-Default.svg │ │ │ ├── chrome-pfoeakahkgllhkommkfeehmkfcloagkl-Default.svg │ │ │ ├── chrome-pjkljhegncpnkpknbcohdijeoejaedia-Default.svg │ │ │ ├── chrome-pjkljhegncpnkpknbcohdijeoejaedia.svg │ │ │ ├── chrome-pnhechapfaindjhompbnflcldabbghjo-Default.svg │ │ │ ├── chrome-pnhechapfaindjhompbnflcldabbghjo.svg │ │ │ ├── chrome-remote-desktop.svg │ │ │ ├── chrome-ssh-terminal.svg │ │ │ ├── chrome-store.svg │ │ │ ├── chrome-youtube.svg │ │ │ ├── chrome.svg │ │ │ ├── chromium-browser-privacy.svg │ │ │ ├── chromium-browser-symbolic.svg │ │ │ ├── chromium-browser.svg │ │ │ ├── chromium-browser2.svg │ │ │ ├── chromium-freeworld.svg │ │ │ ├── chromium.svg │ │ │ ├── ciano.svg │ │ │ ├── cider.svg │ │ │ ├── cin-multimedia-volume-control.svg │ │ │ ├── cin.svg │ │ │ ├── cinelerra-cv.svg │ │ │ ├── cinelerra-gg.svg │ │ │ ├── cinelerra-hv.svg │ │ │ ├── cinelerra.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 │ │ │ ├── cinnamon-virtual-keyboard.svg │ │ │ ├── cisco-pt.svg │ │ │ ├── citra.svg │ │ │ ├── clamav-gui.svg │ │ │ ├── clamav.svg │ │ │ ├── clamtk.svg │ │ │ ├── clanbomber.svg │ │ │ ├── clapper.svg │ │ │ ├── classicmenu-indicator-dark.svg │ │ │ ├── classicmenu-indicator-light.svg │ │ │ ├── classicmenu-indicator.svg │ │ │ ├── claws-mail-128x128.svg │ │ │ ├── claws-mail-32x32.svg │ │ │ ├── claws-mail-64x64.svg │ │ │ ├── claws-mail.svg │ │ │ ├── claws-mail_logo.svg │ │ │ ├── clawsker.svg │ │ │ ├── clementine-panel.svg │ │ │ ├── clementine-player.svg │ │ │ ├── clementine.svg │ │ │ ├── clickup-desktop.svg │ │ │ ├── clion.svg │ │ │ ├── clip.svg │ │ │ ├── clipgrab-kde.svg │ │ │ ├── clipgrab.svg │ │ │ ├── clipit-trayicon.svg │ │ │ ├── clock-applet-symbolic.svg │ │ │ ├── clock-applet.svg │ │ │ ├── clock.svg │ │ │ ├── clock_B.svg │ │ │ ├── clock_C.svg │ │ │ ├── clockify.svg │ │ │ ├── clocks.svg │ │ │ ├── cloudstatus.svg │ │ │ ├── cmake-gui.svg │ │ │ ├── cmake.svg │ │ │ ├── cmakesetup.svg │ │ │ ├── cmplayer.svg │ │ │ ├── cocomusic.svg │ │ │ ├── code-insiders.svg │ │ │ ├── code-oss.svg │ │ │ ├── code.svg │ │ │ ├── codeblock.svg │ │ │ ├── codeblocks.svg │ │ │ ├── codes.nora.gDiceRoller.svg │ │ │ ├── codium │ │ │ ├── cog.svg │ │ │ ├── color-calibate.svg │ │ │ ├── color-line.svg │ │ │ ├── color-line1.svg │ │ │ ├── color-management.svg │ │ │ ├── color-pick.svg │ │ │ ├── color-picker.svg │ │ │ ├── color.svg │ │ │ ├── color_line.svg │ │ │ ├── colorgrab.svg │ │ │ ├── colorhug-flash.svg │ │ │ ├── colorhug.svg │ │ │ ├── colorimages.svg │ │ │ ├── colorimeter-colorhug.svg │ │ │ ├── colorize.svg │ │ │ ├── colorman.svg │ │ │ ├── colorpicker.svg │ │ │ ├── colors.svg │ │ │ ├── colorset.svg │ │ │ ├── colortone.svg │ │ │ ├── colorwall.svg │ │ │ ├── colour.svg │ │ │ ├── com.Adobe.Flash-Player-Projector.svg │ │ │ ├── com.abisource.AbiWord.svg │ │ │ ├── com.adilhanney.saber.svg │ │ │ ├── com.adobe.Flash-Player-Projector.svg │ │ │ ├── com.adobe.Reader.svg │ │ │ ├── com.adrienplazas.Metronome.svg │ │ │ ├── com.alacritty.Alacritty.svg │ │ │ ├── com.anydesk.Anydesk.svg │ │ │ ├── com.applications.kate.svg │ │ │ ├── com.apps.AntiMicroX.svg │ │ │ ├── com.apps.Audacity.svg │ │ │ ├── com.apps.Blender.svg │ │ │ ├── com.apps.Cinema.svg │ │ │ ├── com.apps.CopyQ.svg │ │ │ ├── com.apps.Drawing.svg │ │ │ ├── com.apps.Gcolor.svg │ │ │ ├── com.apps.Glnemo2.svg │ │ │ ├── com.apps.Joplin.svg │ │ │ ├── com.apps.KAddressBook.svg │ │ │ ├── com.apps.KDevelop.svg │ │ │ ├── com.apps.Yakuake.svg │ │ │ ├── com.apps.abiword.svg │ │ │ ├── com.apps.alarm-cron.svg │ │ │ ├── com.apps.brave.svg │ │ │ ├── com.apps.chromium.svg │ │ │ ├── com.apps.dconf-editor.svg │ │ │ ├── com.apps.drawio-desktop.svg │ │ │ ├── com.apps.easytag.svg │ │ │ ├── com.apps.encryptpad.svg │ │ │ ├── com.apps.filelight.svg │ │ │ ├── com.apps.flameshot.svg │ │ │ ├── com.apps.knowte.svg │ │ │ ├── com.apps.medit.svg │ │ │ ├── com.apps.swatchbooker.svg │ │ │ ├── com.apps.xfce4-dict.svg │ │ │ ├── com.apps.zulip.svg │ │ │ ├── com.atlauncher.ATLauncher.svg │ │ │ ├── com.authy.Authy.svg │ │ │ ├── com.axosoft.GitKraken.svg │ │ │ ├── com.azuredatastudio.oss.svg │ │ │ ├── com.azuredatastudio.svg │ │ │ ├── com.basemark.BasemarkGPU.svg │ │ │ ├── com.beakerbrowser.Beaker.svg │ │ │ ├── com.belmoussaoui.Authenticator.svg │ │ │ ├── com.bitwarden.Bitwarden.svg │ │ │ ├── com.bitwarden.BitwardenDesktop.svg │ │ │ ├── com.bitwarden.desktop.svg │ │ │ ├── com.bitwig.BitwigStudio.svg │ │ │ ├── com.bixense.PasswordCalculator.svg │ │ │ ├── com.bluejeans.BlueJeans.svg │ │ │ ├── com.brave.Browser.svg │ │ │ ├── com.bxabi.bumblebee-indicator.svg │ │ │ ├── com.calibre_ebook.calibre.ebook-edit.svg │ │ │ ├── com.calibre_ebook.calibre.ebook-viewer.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.calibre_ebook.calibre_gui.svg │ │ │ ├── com.carpeludum.KegaFusion.svg │ │ │ ├── com.corifeus.onenote.svg │ │ │ ├── com.deepin.Calculator.svg │ │ │ ├── com.deepin.Calendar.svg │ │ │ ├── com.deepin.ImageViewer.svg │ │ │ ├── com.deepin.Movie.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.discordapp.Discord.svg │ │ │ ├── com.discordapp.DiscordCanary.svg │ │ │ ├── com.dosbox_x.DOSBox-X.svg │ │ │ ├── com.dropbox.Client.svg │ │ │ ├── com.elsevier.MendeleyDesktop.svg │ │ │ ├── com.georgefb.haruna.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.gigitux.youp.svg │ │ │ ├── com.github.Eloston.UngoogledChromium.svg │ │ │ ├── com.github.Eloston.ungoogled-chromium.svg │ │ │ ├── com.github.Flacon.svg │ │ │ ├── com.github.GradienceTeam.Gradience.svg │ │ │ ├── com.github.IsmaelMartinez.teams_for_linux.svg │ │ │ ├── com.github.JannikHv.Gydl.svg │ │ │ ├── com.github.Matoking.protontricks.svg │ │ │ ├── com.github.PintaProject.Pinta.svg │ │ │ ├── com.github.afrantzis.Bless.svg │ │ │ ├── com.github.alainm23.planner.svg │ │ │ ├── com.github.alcadica.develop.svg │ │ │ ├── com.github.alecaddd.sequeler.svg │ │ │ ├── com.github.alexkdeveloper.radio.svg │ │ │ ├── com.github.alexkdeveloper.somafm.svg │ │ │ ├── com.github.arshubham.cipher.svg │ │ │ ├── com.github.artegeek.planner.svg │ │ │ ├── com.github.artemanufrij.graphui.svg │ │ │ ├── com.github.artemanufrij.hashit.svg │ │ │ ├── com.github.artemanufrij.imageburner.svg │ │ │ ├── com.github.artemanufrij.metronome.svg │ │ │ ├── com.github.artemanufrij.playmymusic.svg │ │ │ ├── com.github.artemanufrij.playmyvideos.svg │ │ │ ├── com.github.artemanufrij.screencast.svg │ │ │ ├── com.github.artemanufrij.showmypictures.svg │ │ │ ├── com.github.babluboy.bookworm.svg │ │ │ ├── com.github.bajoja.indicator-kdeconnect.svg │ │ │ ├── com.github.bcedu.museic.svg │ │ │ ├── com.github.bcedu.shutdownscheduler.svg │ │ │ ├── com.github.bharatkalluri.easypass.svg │ │ │ ├── com.github.bilelmoussaoui.Authenticator.svg │ │ │ ├── com.github.birros.WebArchives.svg │ │ │ ├── com.github.bitseater.weather.svg │ │ │ ├── com.github.bleakgrey.tootle.svg │ │ │ ├── com.github.brandonlujan.exchange.svg │ │ │ ├── com.github.cassidyjames.dippi.svg │ │ │ ├── com.github.cassidyjames.ephemeral.svg │ │ │ ├── com.github.cassidyjames.ideogram.svg │ │ │ ├── com.github.cassidyjames.palette.svg │ │ │ ├── com.github.christophernugent.locksmith.svg │ │ │ ├── com.github.configurable_button.svg │ │ │ ├── com.github.corna.Vivado.svg │ │ │ ├── com.github.coslyk.MoonPlayer.svg │ │ │ ├── com.github.cryptowyrm.copypastegrab.svg │ │ │ ├── com.github.dahenson.agenda.svg │ │ │ ├── com.github.dail8859.NotepadNext.svg │ │ │ ├── com.github.danrabbit.lookbook.svg │ │ │ ├── com.github.danrabbit.nimbus.svg │ │ │ ├── com.github.davidmhewitt.clipped.svg │ │ │ ├── com.github.dbhowell.peeq.svg │ │ │ ├── com.github.debauchee.barrier.svg │ │ │ ├── com.github.donadigo.appeditor.svg │ │ │ ├── com.github.donadigo.eddy.svg │ │ │ ├── com.github.dynobo.normcap.svg │ │ │ ├── com.github.eneshecan.WhatsAppForLinux-tray.svg │ │ │ ├── com.github.eneshecan.WhatsAppForLinux.svg │ │ │ ├── com.github.fabiocolacio.marker.svg │ │ │ ├── com.github.finefindus.eyedropper.svg │ │ │ ├── com.github.flxzt.rnote.svg │ │ │ ├── com.github.fushinari.Wordbook.svg │ │ │ ├── com.github.fwbuilder.svg │ │ │ ├── com.github.gabutakut.gabutdm.svg │ │ │ ├── com.github.geigi.cozy.svg │ │ │ ├── com.github.georgekap1an.chores.svg │ │ │ ├── com.github.gi_lom.dialect.svg │ │ │ ├── com.github.gijsgoudzwaard.image-optimizer.svg │ │ │ ├── com.github.git_cola.git-cola.svg │ │ │ ├── com.github.gmg137.netease-cloud-music-gtk.svg │ │ │ ├── com.github.hannesschulze.optimizer.svg │ │ │ ├── com.github.hluk.copyq.svg │ │ │ ├── com.github.iwalton3.jellyfin-media-player.svg │ │ │ ├── com.github.iwalton3.jellyfin-mpv-shim.svg │ │ │ ├── com.github.jeromerobert.pdfarranger.svg │ │ │ ├── com.github.jkotra.eovpn.svg │ │ │ ├── com.github.jmoerman.go-for-it.svg │ │ │ ├── com.github.johnfactotum.Foliate.svg │ │ │ ├── com.github.johnfactotum.QuickLookup.svg │ │ │ ├── com.github.joseexposito.touche.svg │ │ │ ├── com.github.juliagoda.antimicro.svg │ │ │ ├── com.github.juliagoda.antimicroX.svg │ │ │ ├── com.github.junrrein.PDFSlicer.svg │ │ │ ├── com.github.kalibari.audok.svg │ │ │ ├── com.github.kjlaw89.webwatcher.svg │ │ │ ├── com.github.lainsce.notejot.svg │ │ │ ├── com.github.lainsce.palaura.svg │ │ │ ├── com.github.lainsce.quilter.svg │ │ │ ├── com.github.lainsce.yishu.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.marinm.songrec.svg │ │ │ ├── com.github.marktext.marktext.svg │ │ │ ├── com.github.matfantinel.moneta.svg │ │ │ ├── com.github.melix99.telegrand.svg │ │ │ ├── com.github.mgropp.PdfJumbler.svg │ │ │ ├── com.github.micahflee.torbrowser-launcher.svg │ │ │ ├── com.github.mirkobrombin.bottles.svg │ │ │ ├── com.github.mubitosh.qrshare.svg │ │ │ ├── com.github.muriloventuroso.easyssh.svg │ │ │ ├── com.github.muriloventuroso.pdftricks.svg │ │ │ ├── com.github.naaando.rush.svg │ │ │ ├── com.github.needle-and-thread.vocal.svg │ │ │ ├── com.github.needleandthread.vocal.svg │ │ │ ├── com.github.neithern.g4music.svg │ │ │ ├── com.github.optyfr.JRomManager.svg │ │ │ ├── com.github.panosx2.brightness.svg │ │ │ ├── com.github.parnold-x.timer.svg │ │ │ ├── com.github.persepolisdm.persepolis.svg │ │ │ ├── com.github.phase1geo.annotator.svg │ │ │ ├── com.github.phase1geo.minder.svg │ │ │ ├── com.github.phase1geo.outliner.svg │ │ │ ├── com.github.philip-scott.notes-up.svg │ │ │ ├── com.github.philip-scott.spice-up.svg │ │ │ ├── com.github.philip-scott.wallpaperize.svg │ │ │ ├── com.github.philip_scott.notes-up.svg │ │ │ ├── com.github.philip_scott.spice-up.svg │ │ │ ├── com.github.qarmin.szyszka.svg │ │ │ ├── com.github.quaternion.svg │ │ │ ├── com.github.rafostar.Clapper.svg │ │ │ ├── com.github.ranfdev.raddiu.svg │ │ │ ├── com.github.ransome1.sleek.svg │ │ │ ├── com.github.rapidfingers.translator.svg │ │ │ ├── com.github.robertsanseries.karim.svg │ │ │ ├── com.github.ronnydo.colorpicker.svg │ │ │ ├── com.github.ronnydo.wammer.svg │ │ │ ├── com.github.rssguard.svg │ │ │ ├── com.github.ryonakano.konbucase.svg │ │ │ ├── com.github.ryonakano.reco.svg │ │ │ ├── com.github.santileortiz.iconoscope.svg │ │ │ ├── com.github.sgpthomas.hourglass.svg │ │ │ ├── com.github.sixpounder.GameOfLife.svg │ │ │ ├── com.github.stsdc.monitor.svg │ │ │ ├── com.github.subhadeepjasu.pebbles.svg │ │ │ ├── com.github.taiko2k.tauonmb-symbolic.svg │ │ │ ├── com.github.taiko2k.tauonmb.svg │ │ │ ├── com.github.tchx84.Flatseal.svg │ │ │ ├── com.github.thezbyg.Gpick.svg │ │ │ ├── com.github.thezbyg.gpick.svg │ │ │ ├── com.github.timecraft.notifier.svg │ │ │ ├── com.github.tkashkin.gamehub.svg │ │ │ ├── com.github.torikulhabib.nino.svg │ │ │ ├── com.github.treagod.spectator.svg │ │ │ ├── com.github.unrud.VideoDownloader.svg │ │ │ ├── com.github.unrud.djpdf.svg │ │ │ ├── com.github.vladimiry.ElectronMail.svg │ │ │ ├── com.github.wjaguar.mtPaint.svg │ │ │ ├── com.github.wjaguar.mtpaint.svg │ │ │ ├── com.github.wwmm.easyeffects.svg │ │ │ ├── com.github.wwmm.pulseeffects.svg │ │ │ ├── com.github.xournalpp.xournalpp.svg │ │ │ ├── com.github.zren.commandoutput.svg │ │ │ ├── com.github.zren.githubissues.svg │ │ │ ├── com.github.zren.tiledmenu.svg │ │ │ ├── com.github.zren.todolist.svg │ │ │ ├── com.gitlab.ColinDuquesnoy.MellowPlayer.svg │ │ │ ├── com.gitlab.bitseater.meteo.svg │ │ │ ├── com.gitlab.davem.ClamTk.svg │ │ │ ├── com.gitlab.guillermop.MasterKey.svg │ │ │ ├── com.gitlab.j0chn.nextcloud_password_client.svg │ │ │ ├── com.gitlab.newsflash.svg │ │ │ ├── com.giuspen.cherrytree.svg │ │ │ ├── com.gnome.Software.svg │ │ │ ├── com.gnome.gradience.svg │ │ │ ├── com.gnome.software.svg │ │ │ ├── com.google.AndroidStudio.desktop.svg │ │ │ ├── com.google.AndroidStudio.svg │ │ │ ├── com.google.Chrome.svg │ │ │ ├── com.google.ChromeDev.svg │ │ │ ├── com.google.Earth.svg │ │ │ ├── com.google.EarthPro.svg │ │ │ ├── com.googleplaymusicdesktopplayer.GPMDP.svg │ │ │ ├── com.hamrick.VueScan.svg │ │ │ ├── com.heroicgameslauncher.hgl.svg │ │ │ ├── com.hostbuf.FinalShell.svg │ │ │ ├── com.interversehq.qView.svg │ │ │ ├── com.irccloud.desktop.svg │ │ │ ├── com.jetbrains.CLion.svg │ │ │ ├── com.jetbrains.DataGrip.svg │ │ │ ├── com.jetbrains.GoLand.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.jgraph.drawio.svg │ │ │ ├── com.jvieira.tpt.Metronome.svg │ │ │ ├── com.kavilgroup.gestimator.svg │ │ │ ├── com.koldbyte.kde.termoid.svg │ │ │ ├── com.ktechpit.colorwall.svg │ │ │ ├── com.ktechpit.ultimate-media-downloader.svg │ │ │ ├── com.ktechpit.whatsie.svg │ │ │ ├── com.leinardi.gwe.svg │ │ │ ├── com.librehat.yahooweather.svg │ │ │ ├── com.makemkv.MakeMKV.svg │ │ │ ├── com.mattermost.Desktop.svg │ │ │ ├── com.mattjakeman.ExtensionManager.svg │ │ │ ├── com.microsoft.Edge.svg │ │ │ ├── com.microsoft.Teams.svg │ │ │ ├── com.mojang.Minecraft.svg │ │ │ ├── com.mousepawmedia.omission.svg │ │ │ ├── com.netease.CloudMusic.svg │ │ │ ├── com.nextcloud.desktopclient.nextcloud.svg │ │ │ ├── com.notepadqq.Notepadqq.svg │ │ │ ├── com.obsproject.Studio.svg │ │ │ ├── com.onlyoffice.DesktopEditors.svg │ │ │ ├── com.opera.Opera.svg │ │ │ ├── com.ozmartians.VidCutter.svg │ │ │ ├── com.play0ad.zeroad.svg │ │ │ ├── com.plexamp.Plexamp.svg │ │ │ ├── com.poweriso.PowerISO.svg │ │ │ ├── com.protonvpn.www.svg │ │ │ ├── com.prusa3d.PrusaSlicer.svg │ │ │ ├── com.qq.QQ.svg │ │ │ ├── com.qq.QQmusic.svg │ │ │ ├── com.qq.music.deepin.svg │ │ │ ├── com.qq.weixin.deepin.svg │ │ │ ├── com.rabbit_company.passky.svg │ │ │ ├── com.rafaelmardojai.Blanket.svg │ │ │ ├── com.seafile.Client.svg │ │ │ ├── com.simplenote.Simplenote.svg │ │ │ ├── com.simplenote.simplenote.svg │ │ │ ├── com.sindresorhus.Caprine.svg │ │ │ ├── com.skype.Client.svg │ │ │ ├── com.slack.Slack.svg │ │ │ ├── com.spotify.Client.svg │ │ │ ├── com.stremio.Stremio.svg │ │ │ ├── com.sublimemerge.App.svg │ │ │ ├── com.sublimetext.SublimeText3.svg │ │ │ ├── com.sublimetext.three.svg │ │ │ ├── com.synology.CloudStationBackup.svg │ │ │ ├── com.syntevo.SmartGit.svg │ │ │ ├── com.syntevo.SmartSynchronize.svg │ │ │ ├── com.system76.Popsicle.svg │ │ │ ├── com.todoist.Todoist.svg │ │ │ ├── com.toggl.TogglDesktop.svg │ │ │ ├── com.tomjwatson.Emote.svg │ │ │ ├── com.transmissionbt.Transmission.svg │ │ │ ├── com.ugetdm.uGet.svg │ │ │ ├── com.ulduzsoft.Birdtray.svg │ │ │ ├── com.ulduzsoft.KchmViewer.svg │ │ │ ├── com.ultimaker.cura.svg │ │ │ ├── com.unity.UnityHub.svg │ │ │ ├── com.uploadedlobster.peek.svg │ │ │ ├── com.usebottles.bottles.svg │ │ │ ├── com.valvesoftware.Steam.svg │ │ │ ├── com.viber.Viber.svg │ │ │ ├── com.visualstudio.code-oss.svg │ │ │ ├── com.visualstudio.code.exploration.svg │ │ │ ├── com.visualstudio.code.insiders.svg │ │ │ ├── com.visualstudio.code.oss │ │ │ ├── com.visualstudio.code.oss.svg │ │ │ ├── com.visualstudio.code.svg │ │ │ ├── com.vivaldi.Vivaldi.svg │ │ │ ├── com.vscodium.codium │ │ │ ├── com.vscodium.codium.svg │ │ │ ├── com.vysp3r.ProtonPlus.svg │ │ │ ├── com.whitemagicsoftware.kmcaster.svg │ │ │ ├── com.wire.WireDesktop.svg │ │ │ ├── com.wiz.Note.svg │ │ │ ├── com.wps.Office.etmain.svg │ │ │ ├── com.wps.Office.kprometheus.svg │ │ │ ├── com.wps.Office.pdfmain.svg │ │ │ ├── com.wps.Office.wppmain.svg │ │ │ ├── com.wps.Office.wpsmain.svg │ │ │ ├── com.wps.Office2019.etmain.svg │ │ │ ├── com.wps.Office2019.pdfmain.svg │ │ │ ├── com.wps.Office2019.wppmain.svg │ │ │ ├── com.wps.Office2019.wpsmain.svg │ │ │ ├── com.xamarin.MonoDevelop.svg │ │ │ ├── com.yacreader.YACReader.svg │ │ │ ├── com.yubico.yubioath.svg │ │ │ ├── comix.svg │ │ │ ├── compass.svg │ │ │ ├── compton.svg │ │ │ ├── computer-log-out.svg │ │ │ ├── computer-runprocesscatcher.svg │ │ │ ├── computerjanitor.svg │ │ │ ├── computersettings.svg │ │ │ ├── confclerk.svg │ │ │ ├── config-date.svg │ │ │ ├── config-date1.svg │ │ │ ├── config-language-symbolic.svg │ │ │ ├── config-language.svg │ │ │ ├── config-users-groups.svg │ │ │ ├── config-users.svg │ │ │ ├── configuration_section.svg │ │ │ ├── configurator.svg │ │ │ ├── configure-debian.svg │ │ │ ├── configure-shortcuts.svg │ │ │ ├── conky-manager.svg │ │ │ ├── conky.svg │ │ │ ├── contact-editor.svg │ │ │ ├── contact.svg │ │ │ ├── contacts.svg │ │ │ ├── control-center2.svg │ │ │ ├── converseen.svg │ │ │ ├── cookie.svg │ │ │ ├── copyq-busy.svg │ │ │ ├── copyq-normal.svg │ │ │ ├── copyq.svg │ │ │ ├── corebird.svg │ │ │ ├── corepdf.svg │ │ │ ├── coypu.svg │ │ │ ├── cozy.svg │ │ │ ├── cozydrive.svg │ │ │ ├── cpod-tray.svg │ │ │ ├── cpod.svg │ │ │ ├── cpu-symbolic.svg │ │ │ ├── cpuinfo.svg │ │ │ ├── cqcb.plasma.webslice.svg │ │ │ ├── credentials-preferences-symbolic.svg │ │ │ ├── credentials-preferences.svg │ │ │ ├── crossover.svg │ │ │ ├── cryfs-gui.svg │ │ │ ├── cryptfolder-indicator.svg │ │ │ ├── cryptkeeper.svg │ │ │ ├── cryptomator.svg │ │ │ ├── cryptr.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-gnome.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-gestures.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-theme.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-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 │ │ │ ├── cuphead.svg │ │ │ ├── cups-launcher.svg │ │ │ ├── cups.svg │ │ │ ├── cupsprinter.svg │ │ │ ├── cupt.svg │ │ │ ├── cura-icon.svg │ │ │ ├── customdesktopmenu.svg │ │ │ ├── cutefish-screenshot.svg │ │ │ ├── cutemarked.svg │ │ │ ├── cx.ring.Ring.svg │ │ │ ├── cxmenu-cxoffice-0-crossover.svg │ │ │ ├── cxmenu-cxoffice-0-cxdoc.svg │ │ │ ├── cxmenu-cxoffice-0-cxmenu.svg │ │ │ ├── cxmenu-cxoffice-0-cxregister.svg │ │ │ ├── cxmenu-cxoffice-0-cxreset.svg │ │ │ ├── cxmenu-cxoffice-0-cxuninstall.svg │ │ │ ├── cxmenu.svg │ │ │ ├── cxmenuedit.svg │ │ │ ├── d-feet-icon.svg │ │ │ ├── d-feet.svg │ │ │ ├── d3lphin.svg │ │ │ ├── daily-wallpaper.svg │ │ │ ├── darktable.svg │ │ │ ├── datagrip.svg │ │ │ ├── date.svg │ │ │ ├── dates.svg │ │ │ ├── dayfolder.svg │ │ │ ├── dayjournal.svg │ │ │ ├── dbeaver-ee.svg │ │ │ ├── dbeaver.svg │ │ │ ├── dcc_nav_deepin_systeminfo.svg │ │ │ ├── dcc_nav_systeminfo.svg │ │ │ ├── dconf-editor.svg │ │ │ ├── ddcopy.svg │ │ │ ├── dde-calendar.svg │ │ │ ├── dde-file-manager.svg │ │ │ ├── dde-printer.svg │ │ │ ├── ddm.svg │ │ │ ├── ddrescue-gui.svg │ │ │ ├── de.finnik.PassVault.svg │ │ │ ├── de.haeckerfelix.Fragments.svg │ │ │ ├── de.haeckerfelix.Shortwave.svg │ │ │ ├── de.haeckerfelix.gradio.svg │ │ │ ├── de.openstreetmap.josm.svg │ │ │ ├── de.rwth_aachen.ient.YUView.svg │ │ │ ├── de.wolfvollprecht.UberWriter.svg │ │ │ ├── deadbeef.svg │ │ │ ├── debian-installer-launcher.svg │ │ │ ├── debian-logo.svg │ │ │ ├── debian-plymouth-manager.svg │ │ │ ├── debian-reference.svg │ │ │ ├── debian-swirl.svg │ │ │ ├── debian.svg │ │ │ ├── deepin-album.svg │ │ │ ├── deepin-app-store.svg │ │ │ ├── deepin-appstore.svg │ │ │ ├── deepin-boot-maker.svg │ │ │ ├── deepin-browser.svg │ │ │ ├── deepin-calculator.svg │ │ │ ├── deepin-calendar.svg │ │ │ ├── deepin-camera.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-compressor.svg │ │ │ ├── deepin-contacts.svg │ │ │ ├── deepin-crossover.svg │ │ │ ├── deepin-deb-installer.svg │ │ │ ├── deepin-defender.svg │ │ │ ├── deepin-devicemanager-16px.svg │ │ │ ├── deepin-devicemanager.svg │ │ │ ├── deepin-diskmanager.svg │ │ │ ├── deepin-download.svg │ │ │ ├── deepin-draw.svg │ │ │ ├── deepin-editor.svg │ │ │ ├── deepin-emacs.svg │ │ │ ├── deepin-feedback.svg │ │ │ ├── deepin-font-installer.svg │ │ │ ├── deepin-font-manager.svg │ │ │ ├── deepin-game-center.svg │ │ │ ├── deepin-graphics-driver-manager.svg │ │ │ ├── deepin-image-viewer.svg │ │ │ ├── deepin-installer-oem.svg │ │ │ ├── deepin-installer.svg │ │ │ ├── deepin-launcher.svg │ │ │ ├── deepin-log-viewer.svg │ │ │ ├── deepin-mail.svg │ │ │ ├── deepin-manual.svg │ │ │ ├── deepin-media-player.svg │ │ │ ├── deepin-movie.svg │ │ │ ├── deepin-movies.svg │ │ │ ├── deepin-multitasking-view.svg │ │ │ ├── deepin-music-player.svg │ │ │ ├── deepin-music.svg │ │ │ ├── deepin-note.svg │ │ │ ├── deepin-phone-assistant.svg │ │ │ ├── deepin-picker.svg │ │ │ ├── deepin-reader.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-virtualkeyboard │ │ │ ├── deepin-voice-note.svg │ │ │ ├── deepin-voice-recorder.svg │ │ │ ├── deepin-wine-assist.svg │ │ │ ├── deepin.com.qq.im.light.svg │ │ │ ├── deepin.com.qq.im.svg │ │ │ ├── deepin.com.wechat.devtools.svg │ │ │ ├── deepin.com.wechat.svg │ │ │ ├── deepinwine-360zip.svg │ │ │ ├── deepinwine-7zip.svg │ │ │ ├── deepinwine-qq.svg │ │ │ ├── deepinwine-winrar.svg │ │ │ ├── deezer.svg │ │ │ ├── default-application.svg │ │ │ ├── default-folder.svg │ │ │ ├── deja-dup.svg │ │ │ ├── deltachat-desktop.svg │ │ │ ├── deltachat-tray.svg │ │ │ ├── deltachat.svg │ │ │ ├── deluge-panel.svg │ │ │ ├── deluge-torrent.svg │ │ │ ├── deluge.svg │ │ │ ├── designer5.svg │ │ │ ├── deskbar-applet.svg │ │ │ ├── deskbar.svg │ │ │ ├── desktop-effect.svg │ │ │ ├── desktop-effects.svg │ │ │ ├── desktop-environment-gnome.svg │ │ │ ├── desktop-environment-kde.svg │ │ │ ├── desktop-environment-lxqt.svg │ │ │ ├── desktop-environment-mate.svg │ │ │ ├── desktop-environment-xfce.svg │ │ │ ├── desktop-profiler.svg │ │ │ ├── desktop-webmail.svg │ │ │ ├── desktop.svg │ │ │ ├── desmume.svg │ │ │ ├── dev.alextren.Spot.svg │ │ │ ├── dev.lapce.lapce.svg │ │ │ ├── dev.tchx84.Portfolio.svg │ │ │ ├── devdocs.svg │ │ │ ├── devede.svg │ │ │ ├── devhelp.svg │ │ │ ├── device-notifier.svg │ │ │ ├── dhcpcd.svg │ │ │ ├── diag_activity.svg │ │ │ ├── dialog-info.svg │ │ │ ├── dialog-information-symbolic.svg │ │ │ ├── dialog-information.svg │ │ │ ├── dialog-password-symbolic.svg │ │ │ ├── dialog-password.svg │ │ │ ├── dict.svg │ │ │ ├── dictionary.svg │ │ │ ├── diffpdf.svg │ │ │ ├── diffuse.svg │ │ │ ├── digikam.svg │ │ │ ├── digital-assets.svg │ │ │ ├── dillo.svg │ │ │ ├── dino-symbolic.svg │ │ │ ├── dino.svg │ │ │ ├── diodon.svg │ │ │ ├── dippi.svg │ │ │ ├── discord-bin.svg │ │ │ ├── discord-canary.svg │ │ │ ├── discord-development.svg │ │ │ ├── discord-ptb.svg │ │ │ ├── discord.svg │ │ │ ├── disk-burner.svg │ │ │ ├── disk-check.svg │ │ │ ├── disk-manager-root.svg │ │ │ ├── disk-manager.svg │ │ │ ├── disk-partition-manager.svg │ │ │ ├── disk-usage-analyzer.svg │ │ │ ├── disk-utility.svg │ │ │ ├── diskmonitor.svg │ │ │ ├── disks.svg │ │ │ ├── disper-panel.svg │ │ │ ├── disper.svg │ │ │ ├── display-applet.svg │ │ │ ├── display-brightness-symbolic.svg │ │ │ ├── display-brightness.svg │ │ │ ├── display-capplet.svg │ │ │ ├── display-im6.Q16.svg │ │ │ ├── display-im6.q16.svg │ │ │ ├── display.im6.svg │ │ │ ├── display.svg │ │ │ ├── distributor-logo-android.svg │ │ │ ├── distributor-logo-arch.svg │ │ │ ├── distributor-logo-archlinux.svg │ │ │ ├── distributor-logo-arcolinux.svg │ │ │ ├── distributor-logo-budgie-remix.svg │ │ │ ├── distributor-logo-budgie.svg │ │ │ ├── distributor-logo-debian.svg │ │ │ ├── distributor-logo-fedora.svg │ │ │ ├── distributor-logo-gentoo.svg │ │ │ ├── distributor-logo-lfs.svg │ │ │ ├── distributor-logo-linux-mint.svg │ │ │ ├── distributor-logo-lubuntu.svg │ │ │ ├── distributor-logo-manjaro.svg │ │ │ ├── distributor-logo-mint.svg │ │ │ ├── distributor-logo-nixos.png │ │ │ ├── distributor-logo-opensuse.svg │ │ │ ├── distributor-logo-peppermint.svg │ │ │ ├── distributor-logo-pop-os.svg │ │ │ ├── distributor-logo-popos.svg │ │ │ ├── distributor-logo-rhel.svg │ │ │ ├── distributor-logo-solus.svg │ │ │ ├── distributor-logo-steamos.svg │ │ │ ├── distributor-logo-ubuntu-budgie-BL.svg │ │ │ ├── distributor-logo-ubuntu-budgie.svg │ │ │ ├── distributor-logo-ubuntu-mate.svg │ │ │ ├── distributor-logo-ubuntu.svg │ │ │ ├── distributor-logo-windows.svg │ │ │ ├── distributor-logo-xubuntu.svg │ │ │ ├── distributor-logo.svg │ │ │ ├── distro-upgrade.svg │ │ │ ├── dnfdragora.svg │ │ │ ├── docear.svg │ │ │ ├── dock.svg │ │ │ ├── dockbarx.svg │ │ │ ├── dockx.svg │ │ │ ├── docky.svg │ │ │ ├── document-open-recent.svg │ │ │ ├── document-print-preview.svg │ │ │ ├── document-viewer.svg │ │ │ ├── documentation.svg │ │ │ ├── documentation_help.svg │ │ │ ├── dolphin-dropbox.svg │ │ │ ├── dolphin-emu.svg │ │ │ ├── dolphin-root.svg │ │ │ ├── dosbox-ece.svg │ │ │ ├── dosbox-staging.svg │ │ │ ├── dosbox-x.svg │ │ │ ├── dosbox.svg │ │ │ ├── doublecmd.svg │ │ │ ├── downloader-arrow.svg │ │ │ ├── downloader.svg │ │ │ ├── dragonplayer.svg │ │ │ ├── drakconf.svg │ │ │ ├── drakmenustyle.svg │ │ │ ├── draksec-mdk.svg │ │ │ ├── drakstats.svg │ │ │ ├── draw-io.svg │ │ │ ├── draw.io.svg │ │ │ ├── drawing.svg │ │ │ ├── drawio.svg │ │ │ ├── drawpile.svg │ │ │ ├── drive-multipartition-symbolic.svg │ │ │ ├── drive-multipartition.svg │ │ │ ├── drive-removable-media.svg │ │ │ ├── driver-manager.svg │ │ │ ├── drkonqi.svg │ │ │ ├── dropbox-symbolic.svg │ │ │ ├── dropbox.svg │ │ │ ├── dropboxstatus-logo.svg │ │ │ ├── duckstation.svg │ │ │ ├── duskplayer.svg │ │ │ ├── dvd95.svg │ │ │ ├── dvd9548.svg │ │ │ ├── dvdstyler.svg │ │ │ ├── dwww-gnome-touristinfo.svg │ │ │ ├── e-mail.svg │ │ │ ├── e-module-bluez4.svg │ │ │ ├── e-module-conf_applications.svg │ │ │ ├── e-module-conf_menus.svg │ │ │ ├── e-module-everything.svg │ │ │ ├── e-module-fileman.svg │ │ │ ├── e-module-ibar.svg │ │ │ ├── e-module-illume-bluetooth.svg │ │ │ ├── e-module-mail.svg │ │ │ ├── e-module-packagekit.svg │ │ │ ├── e-module-quickaccess.svg │ │ │ ├── eTube.svg │ │ │ ├── earth.svg │ │ │ ├── easy-tag.svg │ │ │ ├── easyeda.svg │ │ │ ├── easyeffects.svg │ │ │ ├── easytag.svg │ │ │ ├── easytags.svg │ │ │ ├── ebook.svg │ │ │ ├── echomixer.svg │ │ │ ├── eclipse-Java.svg │ │ │ ├── eclipse-android.svg │ │ │ ├── eclipse.svg │ │ │ ├── eclipse4Android.svg │ │ │ ├── ecrire.svg │ │ │ ├── eddy.svg │ │ │ ├── edile.svg │ │ │ ├── edit-clear.svg │ │ │ ├── edit-find.svg │ │ │ ├── edit-paste.svg │ │ │ ├── edit-urpm-sources.svg │ │ │ ├── edu.berkeley.BOINC.svg │ │ │ ├── edu.mit.Scratch.svg │ │ │ ├── eekboard.svg │ │ │ ├── effects.svg │ │ │ ├── eiciel.svg │ │ │ ├── electorrent.svg │ │ │ ├── electrip.svg │ │ │ ├── electron-mail-tray.svg │ │ │ ├── electron-mail.svg │ │ │ ├── electron.svg │ │ │ ├── electron12.svg │ │ │ ├── electron13.svg │ │ │ ├── electron14.svg │ │ │ ├── electron15.svg │ │ │ ├── electron16.svg │ │ │ ├── electron17.svg │ │ │ ├── electron18.svg │ │ │ ├── electron19.svg │ │ │ ├── electron2.svg │ │ │ ├── electron20.svg │ │ │ ├── electron3.svg │ │ │ ├── electron4.svg │ │ │ ├── electron5.svg │ │ │ ├── electron6.svg │ │ │ ├── electron7.svg │ │ │ ├── electron8.svg │ │ │ ├── electron9.svg │ │ │ ├── electronic-wechat.svg │ │ │ ├── element-desktop-bin.svg │ │ │ ├── element-desktop-tray.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-dropbox-app.svg │ │ │ ├── emblem-mail.svg │ │ │ ├── emblem-people.svg │ │ │ ├── emblem-system-symbolic.svg │ │ │ ├── emblem-system-symbolic.symbolic.svg │ │ │ ├── emblem-system.svg │ │ │ ├── emby-server.svg │ │ │ ├── emerillon.svg │ │ │ ├── emesene.svg │ │ │ ├── emoji-picker.svg │ │ │ ├── empass.svg │ │ │ ├── empathy.svg │ │ │ ├── encryptpad.svg │ │ │ ├── engauge-digitizer.svg │ │ │ ├── engrampa.svg │ │ │ ├── enjoy-music-player.svg │ │ │ ├── enjoy.svg │ │ │ ├── enpass.svg │ │ │ ├── eog-symbolic.svg │ │ │ ├── eog.svg │ │ │ ├── eom.svg │ │ │ ├── epdfview.svg │ │ │ ├── ephoto.svg │ │ │ ├── epic-games.svg │ │ │ ├── epiphany-bookmarks.svg │ │ │ ├── epiphany-browser.svg │ │ │ ├── epiphany-gecko.svg │ │ │ ├── epiphany-icon.svg │ │ │ ├── epiphany-webkit.svg │ │ │ ├── epiphany.svg │ │ │ ├── epsonscan2.svg │ │ │ ├── epulse.svg │ │ │ ├── equaliser.svg │ │ │ ├── eradio.svg │ │ │ ├── ericWeb.svg │ │ │ ├── ericWeb6.svg │ │ │ ├── error.svg │ │ │ ├── es.estoes.wallpaperDownloader.svg │ │ │ ├── esd.svg │ │ │ ├── estmob-sendanywhere.svg │ │ │ ├── etcher-electron.svg │ │ │ ├── etcher.svg │ │ │ ├── etube.svg │ │ │ ├── eu.blumenstingl.martin.keystateplasmoid.svg │ │ │ ├── eu.scarpetta.PDFMixTool.svg │ │ │ ├── eu.scarpetta.QtWAW.svg │ │ │ ├── eu.skribisto.skribisto.svg │ │ │ ├── eu.tiliado.Nuvola.svg │ │ │ ├── eu.tiliado.NuvolaAppAmazonCloudPlayer.svg │ │ │ ├── eu.tiliado.NuvolaAppDeezer.svg │ │ │ ├── eu.tiliado.NuvolaAppGooglePlayMusic.svg │ │ │ ├── eu.tiliado.NuvolaAppJamendo.svg │ │ │ ├── eu.tiliado.NuvolaAppOwncloudMusic.svg │ │ │ ├── eu.tiliado.NuvolaAppPlex.svg │ │ │ ├── eu.tiliado.NuvolaAppSoundcloud.svg │ │ │ ├── eu.tiliado.NuvolaAppSpotify.svg │ │ │ ├── eu.tiliado.NuvolaAppYandexMusic.svg │ │ │ ├── eu.tiliado.NuvolaAppYoutube.svg │ │ │ ├── eu.tiliado.NuvolaAppYoutubeMusic.svg │ │ │ ├── everdo.svg │ │ │ ├── evernote-client.svg │ │ │ ├── evernote.svg │ │ │ ├── everpad-mono.svg │ │ │ ├── everpad.svg │ │ │ ├── everything-launch.svg │ │ │ ├── evince.svg │ │ │ ├── evolution-2.8.svg │ │ │ ├── evolution-addressbook-factory-subprocess.svg │ │ │ ├── evolution-addressbook-factory.svg │ │ │ ├── evolution-alarm-notify.svg │ │ │ ├── evolution-calendar-factory-subprocess.svg │ │ │ ├── evolution-calendar-factory.svg │ │ │ ├── evolution-calendar.svg │ │ │ ├── evolution-mail.svg │ │ │ ├── evolution-memos.svg │ │ │ ├── evolution-source-registry.svg │ │ │ ├── evolution-tasks.svg │ │ │ ├── evolution.svg │ │ │ ├── evolution2.8.svg │ │ │ ├── evolution2.svg │ │ │ ├── ex-applet.svg │ │ │ ├── exaile.svg │ │ │ ├── exfalso.svg │ │ │ ├── exmplayer.svg │ │ │ ├── exodus.svg │ │ │ ├── expoblending.svg │ │ │ ├── extensions.svg │ │ │ ├── extraterm.svg │ │ │ ├── eyedropper.svg │ │ │ ├── ezame.svg │ │ │ ├── f-spot.svg │ │ │ ├── f3d.svg │ │ │ ├── face-smile.svg │ │ │ ├── facebook-facebook.com.svg │ │ │ ├── facebook.svg │ │ │ ├── facebookresource.svg │ │ │ ├── falkon.svg │ │ │ ├── fastmail.svg │ │ │ ├── fbmessenger.svg │ │ │ ├── fceu.svg │ │ │ ├── fceux.svg │ │ │ ├── fcitx-kbd-panel.svg │ │ │ ├── fcitx-mozc-properties.svg │ │ │ ├── fcitx-mozc-tool.svg │ │ │ ├── fcitx-setting.svg │ │ │ ├── fcitx-sogoupinyin.svg │ │ │ ├── fcitx-vk-active-dark.svg │ │ │ ├── fcitx.svg │ │ │ ├── fcitx_ubuntukylin.svg │ │ │ ├── feather.svg │ │ │ ├── feathernotes.svg │ │ │ ├── featherpad.svg │ │ │ ├── fedora-documentation.svg │ │ │ ├── fedora-logo-icon.svg │ │ │ ├── fedora-release-notes.svg │ │ │ ├── fedora-utils.svg │ │ │ ├── fedoramediawriter.svg │ │ │ ├── fedorausb.svg │ │ │ ├── fedorautils.svg │ │ │ ├── feed-subscribe.svg │ │ │ ├── feedindicator-active.svg │ │ │ ├── feedreader.svg │ │ │ ├── feh.svg │ │ │ ├── ferdi.svg │ │ │ ├── ferdium.svg │ │ │ ├── fern-wifi-cracker.svg │ │ │ ├── ff-password-exporter.svg │ │ │ ├── ffado-mixer.svg │ │ │ ├── ffado.svg │ │ │ ├── fgfs.svg │ │ │ ├── fgrun.svg │ │ │ ├── figma-linux.svg │ │ │ ├── figma.svg │ │ │ ├── file-archiver.svg │ │ │ ├── file-compressor.svg │ │ │ ├── file-manager.svg │ │ │ ├── file-roller.svg │ │ │ ├── file-system-manager.svg │ │ │ ├── file_manager.svg │ │ │ ├── filelight.svg │ │ │ ├── filerunner.svg │ │ │ ├── filezilla.svg │ │ │ ├── filled-xterm_32x32.svg │ │ │ ├── filled-xterm_48x48.svg │ │ │ ├── filmulator-gui.svg │ │ │ ├── filmulator-gui64.svg │ │ │ ├── filter.svg │ │ │ ├── final-term.svg │ │ │ ├── final-terminal.svg │ │ │ ├── financial-schedule.svg │ │ │ ├── find-location.svg │ │ │ ├── fingerprint-gui.svg │ │ │ ├── fingerprint-symbolic.svg │ │ │ ├── fingerprint.svg │ │ │ ├── firefox-2.svg │ │ │ ├── firefox-3.0-icon.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-dev.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-old.svg │ │ │ ├── firefox-orginal.svg │ │ │ ├── firefox-original.svg │ │ │ ├── firefox-symbolic.svg │ │ │ ├── firefox-trunk.svg │ │ │ ├── firefox.svg │ │ │ ├── firefox3.svg │ │ │ ├── firestarter.svg │ │ │ ├── firewall-applet-shields_up.svg │ │ │ ├── firewall-applet.svg │ │ │ ├── firewall-config.svg │ │ │ ├── firewall.svg │ │ │ ├── firewall_64.svg │ │ │ ├── firewalld.svg │ │ │ ├── firmware-manager.svg │ │ │ ├── fish.svg │ │ │ ├── fjt.svg │ │ │ ├── flacon.svg │ │ │ ├── flameshot-tray.svg │ │ │ ├── flameshot.svg │ │ │ ├── flare.svg │ │ │ ├── flash-player-properties.svg │ │ │ ├── flash.svg │ │ │ ├── flashplayer-properties.svg │ │ │ ├── flashplayer.svg │ │ │ ├── flashplayerproperties.svg │ │ │ ├── flegita.svg │ │ │ ├── flickr.svg │ │ │ ├── flickr64.svg │ │ │ ├── flickr_upload.svg │ │ │ ├── flickr_uploader.svg │ │ │ ├── flightgear.svg │ │ │ ├── flock-browser.svg │ │ │ ├── florence.svg │ │ │ ├── flowblade.svg │ │ │ ├── flpsed.svg │ │ │ ├── fluid.svg │ │ │ ├── fma-config-tool.svg │ │ │ ├── focuswriter.svg │ │ │ ├── folder-mega.svg │ │ │ ├── folder-remote-properties.svg │ │ │ ├── folder-remote.svg │ │ │ ├── folder-wine.svg │ │ │ ├── font-manager.svg │ │ │ ├── font-viewer.svg │ │ │ ├── fontbase.svg │ │ │ ├── fontforge.svg │ │ │ ├── fonts.svg │ │ │ ├── footage.svg │ │ │ ├── footnote.svg │ │ │ ├── fork.svg │ │ │ ├── foto.svg │ │ │ ├── fotowall.svg │ │ │ ├── fotoxx.svg │ │ │ ├── foxit-reader.svg │ │ │ ├── foxitpdf.svg │ │ │ ├── foxitreader.svg │ │ │ ├── fprint-demo.svg │ │ │ ├── fprint.svg │ │ │ ├── fprint_demo │ │ │ ├── fr.fgrabenstaetter.DigitalAssets.svg │ │ │ ├── fr.handbrake.ghb.svg │ │ │ ├── fr.romainvigier.MetadataCleaner.svg │ │ │ ├── fr.romainvigier.zap.svg │ │ │ ├── fragments.svg │ │ │ ├── freac.svg │ │ │ ├── freealchemist.svg │ │ │ ├── freecad-daily.svg │ │ │ ├── freecad.svg │ │ │ ├── freeciv-client.svg │ │ │ ├── freeciv-server.svg │ │ │ ├── freefilesync.svg │ │ │ ├── freeminer.svg │ │ │ ├── freeoffice-planmaker.svg │ │ │ ├── freeoffice-presentations.svg │ │ │ ├── freeoffice-textmaker.svg │ │ │ ├── freetube-bin.svg │ │ │ ├── freetube.svg │ │ │ ├── freetuxtv.svg │ │ │ ├── freon-voltage-symbolic.svg │ │ │ ├── freon-voltage.svg │ │ │ ├── furiusisomount.svg │ │ │ ├── fusion-icon-panel.svg │ │ │ ├── fusion-icon.svg │ │ │ ├── fwbuilder.svg │ │ │ ├── fwupd.svg │ │ │ ├── g.svg │ │ │ ├── g4music.svg │ │ │ ├── gEcrit.svg │ │ │ ├── gaiksaurus.svg │ │ │ ├── gajim-agent-http-ws.svg │ │ │ ├── gajim.svg │ │ │ ├── galculator.svg │ │ │ ├── galeon.svg │ │ │ ├── gallery-app.svg │ │ │ ├── gallery.svg │ │ │ ├── galternatives.svg │ │ │ ├── game-aisleriot.svg │ │ │ ├── game-pcsx.svg │ │ │ ├── game-pcsx2.svg │ │ │ ├── gamecards.svg │ │ │ ├── games.svg │ │ │ ├── gammastep.svg │ │ │ ├── gaupol.svg │ │ │ ├── gazette.svg │ │ │ ├── gbalculator.svg │ │ │ ├── gbrainy.svg │ │ │ ├── gcalc.svg │ │ │ ├── gcalctool.svg │ │ │ ├── gcalculator.svg │ │ │ ├── gcbalculator.svg │ │ │ ├── gcdmaster.svg │ │ │ ├── gcleaner.svg │ │ │ ├── gcolor.svg │ │ │ ├── gcolor2.svg │ │ │ ├── gcolor3.svg │ │ │ ├── gcompris-edit.svg │ │ │ ├── gconf-cleaner.svg │ │ │ ├── gconf-editor.svg │ │ │ ├── gconfeditor.svg │ │ │ ├── gcr-gnupg.svg │ │ │ ├── gcr-key-pair.svg │ │ │ ├── gcr-key.svg │ │ │ ├── gcr-password.svg │ │ │ ├── gda-control-center.svg │ │ │ ├── gddccontrol.svg │ │ │ ├── gdeb.svg │ │ │ ├── gdebi.svg │ │ │ ├── gdesklets.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-symbolic.svg │ │ │ ├── gedit.svg │ │ │ ├── gedit1.svg │ │ │ ├── gedit2.svg │ │ │ ├── geeqie.svg │ │ │ ├── geforcenow-nativefier.svg │ │ │ ├── geforcenow.svg │ │ │ ├── gentoo-logo-icon.svg │ │ │ ├── genymotion-bin.svg │ │ │ ├── genymotion-player.svg │ │ │ ├── genymotion.svg │ │ │ ├── geogebra-classic.svg │ │ │ ├── geogebra.svg │ │ │ ├── gfeedline.svg │ │ │ ├── gfpm-mcs.svg │ │ │ ├── gfpm.svg │ │ │ ├── gg.guilded.Guilded.svg │ │ │ ├── ghetto-skype.svg │ │ │ ├── ghex.svg │ │ │ ├── ghostery.svg │ │ │ ├── ghostwriter.svg │ │ │ ├── gimp-2.10.svg │ │ │ ├── gimp-plugin.svg │ │ │ ├── gimp.svg │ │ │ ├── girl.svg │ │ │ ├── gis-weather.svg │ │ │ ├── git-annex.svg │ │ │ ├── git-cola.svg │ │ │ ├── git-dag.svg │ │ │ ├── git-eye.svg │ │ │ ├── git-gui.svg │ │ │ ├── git.svg │ │ │ ├── gitg.svg │ │ │ ├── github-desktop.svg │ │ │ ├── github.svg │ │ │ ├── gitk.svg │ │ │ ├── gitkraken-git.svg │ │ │ ├── gitkraken.svg │ │ │ ├── gitter-indicator.svg │ │ │ ├── gitter.svg │ │ │ ├── gjots2.svg │ │ │ ├── gkdebconf-icon.svg │ │ │ ├── gkdebconf.svg │ │ │ ├── gkrellm.svg │ │ │ ├── gksu-debian.svg │ │ │ ├── gksu-icon.svg │ │ │ ├── gksu-root-terminal.svg │ │ │ ├── gksu.svg │ │ │ ├── glViewImage.svg │ │ │ ├── glade-3.svg │ │ │ ├── glade.svg │ │ │ ├── gladish.svg │ │ │ ├── glide.svg │ │ │ ├── glipper.svg │ │ │ ├── glippy.svg │ │ │ ├── globe-symbolic.svg │ │ │ ├── glrp.svg │ │ │ ├── glxinfo.svg │ │ │ ├── gmail-desktop.svg │ │ │ ├── gmail-notify-icon.svg │ │ │ ├── gmail-offline.svg │ │ │ ├── gmail-plasmoid.svg │ │ │ ├── gmail.svg │ │ │ ├── gmailwatcher.svg │ │ │ ├── gmpc.svg │ │ │ ├── gmplayer-dvb.svg │ │ │ ├── gmusicbrowser.svg │ │ │ ├── gnac.svg │ │ │ ├── gnethogs.svg │ │ │ ├── gnochm.svg │ │ │ ├── gnoduino.svg │ │ │ ├── gnome-2048.svg │ │ │ ├── gnome-Boxes.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-applications.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-break-timer.svg │ │ │ ├── gnome-builder.svg │ │ │ ├── gnome-calc.svg │ │ │ ├── gnome-calculator.svg │ │ │ ├── gnome-calendar.svg │ │ │ ├── gnome-character-map.svg │ │ │ ├── gnome-characters-symbolic.svg │ │ │ ├── gnome-characters.svg │ │ │ ├── gnome-clocks.svg │ │ │ ├── gnome-color-chooser.svg │ │ │ ├── gnome-color-manager.svg │ │ │ ├── gnome-commander.svg │ │ │ ├── gnome-console.svg │ │ │ ├── gnome-contacts.svg │ │ │ ├── gnome-control-center-datetime.svg │ │ │ ├── gnome-control-center-sound.svg │ │ │ ├── gnome-control-center-symbolic.svg │ │ │ ├── gnome-control-center.svg │ │ │ ├── gnome-cups-manager.svg │ │ │ ├── gnome-debian.svg │ │ │ ├── gnome-desktop-config.svg │ │ │ ├── gnome-desktop-item-edit.svg │ │ │ ├── gnome-dev-memory.svg │ │ │ ├── gnome-dev-printer.svg │ │ │ ├── gnome-dev-removable-usb.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-do-panel.svg │ │ │ ├── gnome-do.svg │ │ │ ├── gnome-documents.svg │ │ │ ├── gnome-drawing.svg │ │ │ ├── gnome-dsiplay-properties.svg │ │ │ ├── gnome-emacs.svg │ │ │ ├── gnome-encfs-manager.svg │ │ │ ├── gnome-eog.svg │ │ │ ├── gnome-eterm.svg │ │ │ ├── gnome-feedback.svg │ │ │ ├── gnome-foot.svg │ │ │ ├── gnome-freecell.svg │ │ │ ├── gnome-games.svg │ │ │ ├── gnome-genius.svg │ │ │ ├── gnome-gimp.svg │ │ │ ├── gnome-gmail.svg │ │ │ ├── gnome-gmenu.svg │ │ │ ├── gnome-gnumeric.svg │ │ │ ├── gnome-graphics.svg │ │ │ ├── gnome-hearts.svg │ │ │ ├── gnome-help.svg │ │ │ ├── gnome-hideseek.svg │ │ │ ├── gnome-icon-preview.svg │ │ │ ├── gnome-info.svg │ │ │ ├── gnome-internet-radio-locator.svg │ │ │ ├── gnome-internet.svg │ │ │ ├── gnome-joystick.svg │ │ │ ├── gnome-keyring.svg │ │ │ ├── gnome-latex.svg │ │ │ ├── gnome-ldraw.svg │ │ │ ├── gnome-lightsoff.svg │ │ │ ├── gnome-lockscreen.svg │ │ │ ├── gnome-logo-icon-transparent.svg │ │ │ ├── gnome-logo-icon.svg │ │ │ ├── gnome-logout.svg │ │ │ ├── gnome-logs.svg │ │ │ ├── gnome-mahjongg-symbolic.svg │ │ │ ├── gnome-mahjongg.svg │ │ │ ├── gnome-main-menu.svg │ │ │ ├── gnome-map.svg │ │ │ ├── gnome-maps.svg │ │ │ ├── gnome-menu.svg │ │ │ ├── gnome-mime-application-x-deb.svg │ │ │ ├── gnome-mime-application-x-remote-connection.svg │ │ │ ├── gnome-mime-application-x-vnc.svg │ │ │ ├── gnome-mime-text-x-vcalendar.svg │ │ │ ├── gnome-mines.svg │ │ │ ├── gnome-mini-commander.svg │ │ │ ├── gnome-mixer-applet.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-multimedia.svg │ │ │ ├── gnome-music.svg │ │ │ ├── gnome-netspeed-applet.svg │ │ │ ├── gnome-nettool.svg │ │ │ ├── gnome-nettools.svg │ │ │ ├── gnome-network-properties.svg │ │ │ ├── gnome-networktool.svg │ │ │ ├── gnome-note.svg │ │ │ ├── gnome-notification-properties.svg │ │ │ ├── gnome-office.svg │ │ │ ├── gnome-other.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-pie-symbolic.svg │ │ │ ├── gnome-pie.svg │ │ │ ├── gnome-planner.svg │ │ │ ├── gnome-player.svg │ │ │ ├── gnome-pomodoro.svg │ │ │ ├── gnome-power-manager-symbolic.svg │ │ │ ├── gnome-power-manager-symbolic.symbolic.svg │ │ │ ├── gnome-power-manager.svg │ │ │ ├── gnome-power-preferences.svg │ │ │ ├── gnome-power-statistics.svg │ │ │ ├── gnome-qalculate.svg │ │ │ ├── gnome-rdp.svg │ │ │ ├── gnome-remote-desktop.svg │ │ │ ├── gnome-run.svg │ │ │ ├── gnome-schedule.svg │ │ │ ├── gnome-screenruler.svg │ │ │ ├── gnome-screenshot-symbolic.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-switch.svg │ │ │ ├── gnome-session.svg │ │ │ ├── gnome-set-time.svg │ │ │ ├── gnome-settings-accessibility-keyboard.svg │ │ │ ├── gnome-settings-accessibility-technologies.svg │ │ │ ├── gnome-settings-accessiblity-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-symbolic.svg │ │ │ ├── gnome-software.svg │ │ │ ├── gnome-sound-properties.svg │ │ │ ├── gnome-sound-recorder.svg │ │ │ ├── gnome-status.svg │ │ │ ├── gnome-sticky-notes-applet.svg │ │ │ ├── gnome-subtitles.svg │ │ │ ├── gnome-system-config.svg │ │ │ ├── gnome-system-log.svg │ │ │ ├── gnome-system-monitor.svg │ │ │ ├── gnome-system.svg │ │ │ ├── gnome-tali.svg │ │ │ ├── gnome-term.svg │ │ │ ├── gnome-terminal-server.svg │ │ │ ├── gnome-terminal-symbolic.svg │ │ │ ├── gnome-terminal.svg │ │ │ ├── gnome-todo.svg │ │ │ ├── gnome-tracker.svg │ │ │ ├── gnome-translate.svg │ │ │ ├── gnome-tweak-tool-symbolic.svg │ │ │ ├── gnome-tweak-tool.svg │ │ │ ├── gnome-tweaks.svg │ │ │ ├── gnome-twofactorauth.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-manager.svg │ │ │ ├── gnome-windows.svg │ │ │ ├── gnome-wm.svg │ │ │ ├── gnome-word.svg │ │ │ ├── gnome-xterm.svg │ │ │ ├── gnome.Extensions.svg │ │ │ ├── gnome_apps.svg │ │ │ ├── gnome_graphics.svg │ │ │ ├── gnomeradio.svg │ │ │ ├── gnomines.svg │ │ │ ├── gnote.svg │ │ │ ├── gnotes.svg │ │ │ ├── gnucash-icon.svg │ │ │ ├── gnucash.svg │ │ │ ├── gnumeric.svg │ │ │ ├── gnunet-fs-gtk.svg │ │ │ ├── gnupg.svg │ │ │ ├── gnuradio-grc.svg │ │ │ ├── go-for-it.svg │ │ │ ├── go-jump.svg │ │ │ ├── go-today.svg │ │ │ ├── goa-account-exchange.svg │ │ │ ├── goa-account-facebook.svg │ │ │ ├── goa-account-fedora.svg │ │ │ ├── goa-account-flickr.svg │ │ │ ├── goa-account-google.svg │ │ │ ├── goa-account-lastfm.svg │ │ │ ├── goa-account-msn.svg │ │ │ ├── goa-account-nextcloud.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.svg │ │ │ ├── goa-panel-symbolic.svg │ │ │ ├── goa-panel-symbolic.symbolic.svg │ │ │ ├── goa-panel.svg │ │ │ ├── godot-mono.svg │ │ │ ├── godot.svg │ │ │ ├── gogoland.svg │ │ │ ├── goland.svg │ │ │ ├── goldendict.svg │ │ │ ├── goobox.svg │ │ │ ├── goodvibes.svg │ │ │ ├── google-agenda.svg │ │ │ ├── google-calculator.svg │ │ │ ├── google-calendar.svg │ │ │ ├── google-chat-linux.svg │ │ │ ├── google-chat.svg │ │ │ ├── google-chrome-beta.svg │ │ │ ├── google-chrome-dev.svg │ │ │ ├── google-chrome-no-notification.svg │ │ │ ├── google-chrome-panel.svg │ │ │ ├── google-chrome-stable.svg │ │ │ ├── google-chrome-symbolic.svg │ │ │ ├── google-chrome-unstable.svg │ │ │ ├── google-chrome.svg │ │ │ ├── google-chrome2.svg │ │ │ ├── google-chromium.svg │ │ │ ├── google-docs.svg │ │ │ ├── google-drive.svg │ │ │ ├── google-earth-pro.svg │ │ │ ├── google-earth.svg │ │ │ ├── google-keep.svg │ │ │ ├── google-mail.svg │ │ │ ├── google-map.svg │ │ │ ├── google-maps.svg │ │ │ ├── google-music.svg │ │ │ ├── google-musicmanager.svg │ │ │ ├── google-photos.svg │ │ │ ├── google-play-books.svg │ │ │ ├── google-play-music-desktop-player.svg │ │ │ ├── google-play-music.svg │ │ │ ├── google-play.svg │ │ │ ├── google-reader.svg │ │ │ ├── google-webdesigner.svg │ │ │ ├── google.svg │ │ │ ├── googlechrome.svg │ │ │ ├── googledrive.svg │ │ │ ├── googleearth-icon.svg │ │ │ ├── googleearth.svg │ │ │ ├── googlemusicframe.svg │ │ │ ├── gopchop.svg │ │ │ ├── gp.svg │ │ │ ├── gpa.svg │ │ │ ├── gpaint.svg │ │ │ ├── gparted.svg │ │ │ ├── gpass-icon.svg │ │ │ ├── gpaste.svg │ │ │ ├── gpcview.svg │ │ │ ├── gpdtext.svg │ │ │ ├── gpick.svg │ │ │ ├── gpicview.svg │ │ │ ├── gpk-log.svg │ │ │ ├── gpk-prefs.svg │ │ │ ├── gpk-repo.svg │ │ │ ├── gpk-service-pack.svg │ │ │ ├── gpmdp-tray-play.svg │ │ │ ├── gpmdp-tray.svg │ │ │ ├── gpmdp.svg │ │ │ ├── gpodder.svg │ │ │ ├── gprename.svg │ │ │ ├── gps.svg │ │ │ ├── gpsdrive.svg │ │ │ ├── gpsicon.svg │ │ │ ├── gpx-viewer.svg │ │ │ ├── gpxsee.svg │ │ │ ├── gpxviewer.svg │ │ │ ├── gqrx.svg │ │ │ ├── gradience.svg │ │ │ ├── gradio.svg │ │ │ ├── graebert-gmbh.ares-commander.svg │ │ │ ├── granatier.svg │ │ │ ├── grandr.svg │ │ │ ├── graphics-image-editor.svg │ │ │ ├── graphics-image-viewer.svg │ │ │ ├── graphics-viewer-document.svg │ │ │ ├── graphics.svg │ │ │ ├── graphics_viewer_document.svg │ │ │ ├── greader.svg │ │ │ ├── green-foot.svg │ │ │ ├── green-recorder.svg │ │ │ ├── greenfoot.svg │ │ │ ├── grive.svg │ │ │ ├── groove.svg │ │ │ ├── group-edit.svg │ │ │ ├── grsync.svg │ │ │ ├── grub-customizer.svg │ │ │ ├── gscan2pdf.svg │ │ │ ├── gscreenshot.svg │ │ │ ├── gsd-xrandr.svg │ │ │ ├── gsearchtool.svg │ │ │ ├── gsmartcontrol.svg │ │ │ ├── gstreamer-properties.svg │ │ │ ├── gstreamer.svg │ │ │ ├── gsynaptics.svg │ │ │ ├── gtg.svg │ │ │ ├── gthumb.svg │ │ │ ├── gtick.svg │ │ │ ├── gtk-about.svg │ │ │ ├── gtk-dialog-authentication-panel.svg │ │ │ ├── gtk-dialog-authentication.svg │ │ │ ├── gtk-dialog-info.svg │ │ │ ├── gtk-exacute.svg │ │ │ ├── gtk-find.svg │ │ │ ├── gtk-font.svg │ │ │ ├── gtk-help.svg │ │ │ ├── gtk-info.svg │ │ │ ├── gtk-liveinstall.svg │ │ │ ├── gtk-lshw.svg │ │ │ ├── gtk-network.svg │ │ │ ├── gtk-preferences.svg │ │ │ ├── gtk-print-preview.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-icon-browser.svg │ │ │ ├── gtk4-widget-factory.svg │ │ │ ├── gtk_about.svg │ │ │ ├── gtk_info.svg │ │ │ ├── gtkam-camera.svg │ │ │ ├── gtkam.svg │ │ │ ├── gtkclocksetup.svg │ │ │ ├── gtkconfig.svg │ │ │ ├── gtkcord.svg │ │ │ ├── gtkdiskfree.svg │ │ │ ├── gtkhash.svg │ │ │ ├── gtkhostsetup.svg │ │ │ ├── gtklick.svg │ │ │ ├── gtklp.svg │ │ │ ├── gtklpq.svg │ │ │ ├── gtkpycad.svg │ │ │ ├── gtkterm.svg │ │ │ ├── gtranslator.svg │ │ │ ├── gtubeclock.svg │ │ │ ├── gtwitter.svg │ │ │ ├── guake-indicator.svg │ │ │ ├── guake-notification.svg │ │ │ ├── guake-tray.svg │ │ │ ├── guake.svg │ │ │ ├── guayadeque.svg │ │ │ ├── gucharmap.svg │ │ │ ├── gufw.svg │ │ │ ├── gufw_menu.svg │ │ │ ├── guilded.svg │ │ │ ├── gummi.svg │ │ │ ├── guvcview.svg │ │ │ ├── gvfsd-archive-file.svg │ │ │ ├── gvim.svg │ │ │ ├── gwallpapers.svg │ │ │ ├── gweled.svg │ │ │ ├── gwenrename.svg │ │ │ ├── gwenview.svg │ │ │ ├── gwibber.svg │ │ │ ├── gworldclock.svg │ │ │ ├── gxine.svg │ │ │ ├── gxneur.svg │ │ │ ├── gydl.svg │ │ │ ├── h2-icon.svg │ │ │ ├── handbrake.svg │ │ │ ├── harddrake.svg │ │ │ ├── harddrake2.svg │ │ │ ├── hardinfo.svg │ │ │ ├── haruna.svg │ │ │ ├── hashit.svg │ │ │ ├── hb-icon.svg │ │ │ ├── help-about.svg │ │ │ ├── help-browser-symbolic.svg │ │ │ ├── help-browser-symbolic.symbolic.svg │ │ │ ├── help-browser.svg │ │ │ ├── help-contents │ │ │ ├── help-contents-symbolic │ │ │ ├── help-contents.svg │ │ │ ├── help-faq-symbolic.svg │ │ │ ├── help-faq-symbolic.symbolic.svg │ │ │ ├── help-faq.svg │ │ │ ├── help-feedback.svg │ │ │ ├── help-info.svg │ │ │ ├── help-keyboard-shortcuts.svg │ │ │ ├── help.svg │ │ │ ├── help_browser.svg │ │ │ ├── help_index.svg │ │ │ ├── heroic-tray.svg │ │ │ ├── heroic.svg │ │ │ ├── hex-editor.svg │ │ │ ├── hexchat-indicator.svg │ │ │ ├── hexchat.svg │ │ │ ├── hexedit.svg │ │ │ ├── hfhhnacclhffhdffklopdkcgdhifgngh-Default.svg │ │ │ ├── hi16-app-photolayoutseditor.svg │ │ │ ├── hi22-app-photolayoutseditor.svg │ │ │ ├── hi28-app-photolayoutseditor.svg │ │ │ ├── hi32-app-photolayoutseditor.svg │ │ │ ├── hi48-app-photolayoutseditor.svg │ │ │ ├── hi48-app-wireshark.svg │ │ │ ├── hi64-app-photolayoutseditor.svg │ │ │ ├── hi64-apps-ffado.svg │ │ │ ├── higan.svg │ │ │ ├── hivelytracker.svg │ │ │ ├── homebank.svg │ │ │ ├── hotot.svg │ │ │ ├── hotwire.svg │ │ │ ├── hourglass.svg │ │ │ ├── howl.svg │ │ │ ├── hp-indicator.svg │ │ │ ├── hp-logo.svg │ │ │ ├── hp-toolbox.svg │ │ │ ├── hp-uiscan.svg │ │ │ ├── hp_logo.svg │ │ │ ├── hplip.svg │ │ │ ├── hplj1020_icon.svg │ │ │ ├── hterm.svg │ │ │ ├── htop.svg │ │ │ ├── httrack.svg │ │ │ ├── hugin.svg │ │ │ ├── hw-probe.svg │ │ │ ├── hwbrowser.svg │ │ │ ├── hwinfo.svg │ │ │ ├── hwloc.svg │ │ │ ├── hydrogen.svg │ │ │ ├── hypnotix.svg │ │ │ ├── i-network-printer.svg │ │ │ ├── ibus-anthy.svg │ │ │ ├── ibus-bopomofo.svg │ │ │ ├── ibus-daemon.svg │ │ │ ├── ibus-engine.svg │ │ │ ├── ibus-keyboard.svg │ │ │ ├── ibus-pinyin.svg │ │ │ ├── ibus-setup-chewing.svg │ │ │ ├── ibus-setup-hangul.svg │ │ │ ├── ibus-setup.svg │ │ │ ├── ibus.svg │ │ │ ├── icaconfigmgr.svg │ │ │ ├── icaconncenter.svg │ │ │ ├── icamanager.svg │ │ │ ├── icaselfservice.svg │ │ │ ├── icedove.svg │ │ │ ├── icloud-photos.svg │ │ │ ├── icloud.svg │ │ │ ├── icon-preview-app.svg │ │ │ ├── icon_epdfview-24.svg │ │ │ ├── icon_epdfview-32.svg │ │ │ ├── icon_epdfview-48.svg │ │ │ ├── icons.svg │ │ │ ├── iconthemes.svg │ │ │ ├── idea-community.svg │ │ │ ├── idea-ultimate.svg │ │ │ ├── idea.svg │ │ │ ├── idle-python2.6.svg │ │ │ ├── idle.svg │ │ │ ├── idle3.svg │ │ │ ├── iease-music.svg │ │ │ ├── ikona.svg │ │ │ ├── im-chooser.svg │ │ │ ├── im-config.svg │ │ │ ├── im-facebook.svg │ │ │ ├── im-google.svg │ │ │ ├── im-jabber.svg │ │ │ ├── im-msn.svg │ │ │ ├── im-qq.svg │ │ │ ├── im-skype.svg │ │ │ ├── im-telegram.svg │ │ │ ├── im-twitter.svg │ │ │ ├── im-youtube.svg │ │ │ ├── im.dino.Dino.svg │ │ │ ├── im.gitter.Gitter.svg │ │ │ ├── im.kaidan.kaidan.svg │ │ │ ├── im.pidgin.Pidgin.svg │ │ │ ├── im.pidgin.Pidgin3.svg │ │ │ ├── im.riot.Riot.svg │ │ │ ├── image-viewer.svg │ │ │ ├── imageburner.svg │ │ │ ├── imagej.svg │ │ │ ├── imagej1.svg │ │ │ ├── imagemagick.svg │ │ │ ├── imagemagick2.svg │ │ │ ├── imageviewer.svg │ │ │ ├── imagewriter.svg │ │ │ ├── imaginario.svg │ │ │ ├── imagination.svg │ │ │ ├── imap.svg │ │ │ ├── impression.svg │ │ │ ├── in.bharatkalluri.shortcircuit.svg │ │ │ ├── incubator-netbeans.svg │ │ │ ├── indicator-applet.svg │ │ │ ├── indicator-china-weather.svg │ │ │ ├── indicator-cpufreq.svg │ │ │ ├── indicator-feedindicator.svg │ │ │ ├── indicator-keyboard.svg │ │ │ ├── indicator-keylock.svg │ │ │ ├── indicator-privacy.svg │ │ │ ├── indicator-remindor.svg │ │ │ ├── indicator-rss-aware.svg │ │ │ ├── indicator-sensors │ │ │ ├── indicator-sensors-gpu.svg │ │ │ ├── indicator-sensors.svg │ │ │ ├── indicator-sound-switcher.svg │ │ │ ├── indicator-stickynotes.svg │ │ │ ├── indicator-virtual-box.svg │ │ │ ├── indicator-weather.svg │ │ │ ├── info.bibletime.BibleTime.svg │ │ │ ├── info.mumble.Mumble.svg │ │ │ ├── info.olasagasti.revelation.svg │ │ │ ├── info.portfolio_performance.PortfolioPerformance.svg │ │ │ ├── info.smplayer.SMPlayer.svg │ │ │ ├── info.svg │ │ │ ├── inkscape-logo.svg │ │ │ ├── inkscape-symbolic.svg │ │ │ ├── inkscape.svg │ │ │ ├── inkscape.viewer.svg │ │ │ ├── input-joystick.svg │ │ │ ├── input-keyboard-symbolic.svg │ │ │ ├── input-keyboard-virtual-on.svg │ │ │ ├── input-keyboard-virtual.svg │ │ │ ├── input-keyboard.svg │ │ │ ├── input-mouse-symbolic.svg │ │ │ ├── input-mouse-symbolic.symbolic.svg │ │ │ ├── input-mouse.svg │ │ │ ├── input.svg │ │ │ ├── input_device_settings.svg │ │ │ ├── input_devices_settings.svg │ │ │ ├── insight.svg │ │ │ ├── insomnia.svg │ │ │ ├── instagram.svg │ │ │ ├── instantbird.svg │ │ │ ├── intel-installer.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 │ │ │ ├── intergalacticfm.svg │ │ │ ├── internet-archive.svg │ │ │ ├── internet-chat-symbolic.svg │ │ │ ├── internet-chat.svg │ │ │ ├── internet-feed-reader.svg │ │ │ ├── internet-mail-symbolic.svg │ │ │ ├── internet-mail.svg │ │ │ ├── internet-news-reader.svg │ │ │ ├── internet-web-browser.svg │ │ │ ├── internet.svg │ │ │ ├── internet_mail.svg │ │ │ ├── io.ark.Desktop.svg │ │ │ ├── io.atom.Atom.svg │ │ │ ├── io.atom.electron.BaseApp.svg │ │ │ ├── io.balena.etcher.svg │ │ │ ├── io.bassi.Amberol.svg │ │ │ ├── io.bit3.WhatsAppQT.svg │ │ │ ├── io.brackets.Brackets.svg │ │ │ ├── io.dbeaver.DBeaverCommunity.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.feedback.svg │ │ │ ├── io.elementary.files.svg │ │ │ ├── io.elementary.mail.svg │ │ │ ├── io.elementary.meteo.svg │ │ │ ├── io.elementary.monitor.svg │ │ │ ├── io.elementary.music.svg │ │ │ ├── io.elementary.photos-viewer.svg │ │ │ ├── io.elementary.photos.svg │ │ │ ├── io.elementary.screenshot-tool.svg │ │ │ ├── io.elementary.screenshot.svg │ │ │ ├── io.elementary.sideload.svg │ │ │ ├── io.elementary.switchboard.keyboard.multitasking.svg │ │ │ ├── io.elementary.switchboard.keyboard.screenshots.svg │ │ │ ├── io.elementary.switchboard.svg │ │ │ ├── io.elementary.tasks.svg │ │ │ ├── io.elementary.terminal.svg │ │ │ ├── io.elementary.videos.svg │ │ │ ├── io.elementary.wingpanel.svg │ │ │ ├── io.enpass.Enpass.svg │ │ │ ├── io.exodus.Exodus.svg │ │ │ ├── io.freetubeapp.FreeTube.svg │ │ │ ├── io.github.Celluloid.svg │ │ │ ├── io.github.Figma_Linux.figma_linux.svg │ │ │ ├── io.github.GnomeMpv.svg │ │ │ ├── io.github.Hexchat.svg │ │ │ ├── io.github.JaGoLi.ytdl_gui.svg │ │ │ ├── io.github.OpenToonz.svg │ │ │ ├── io.github.Pithos.svg │ │ │ ├── io.github.Qalculate.svg │ │ │ ├── io.github.antimicrox.antimicrox.svg │ │ │ ├── io.github.arunsivaramanneo.GPUViewer.svg │ │ │ ├── io.github.bytezz.IPLookup.svg │ │ │ ├── io.github.celluloid-player.Celluloid.svg │ │ │ ├── io.github.celluloid_player.Celluloid.svg │ │ │ ├── io.github.cges30901.hmtimer.svg │ │ │ ├── io.github.cloose.CuteMarkEd.svg │ │ │ ├── io.github.davidoc26.wallpaper_selector.svg │ │ │ ├── io.github.diegoivan.pdf_metadata_editor.svg │ │ │ ├── io.github.diegoivanme.flowtime.svg │ │ │ ├── io.github.dosbox-staging.svg │ │ │ ├── io.github.f3d_app.f3d.svg │ │ │ ├── io.github.giantpinkrobots.flatsweep.svg │ │ │ ├── io.github.gustavoperedo.VideoDownloader.svg │ │ │ ├── io.github.hakandundar34coding.system-monitoring-center.svg │ │ │ ├── io.github.hmlendea.geforcenow-electron.svg │ │ │ ├── io.github.java_decompiler.jd-gui.svg │ │ │ ├── io.github.jkozera.ZevDocs.svg │ │ │ ├── io.github.jliljebl.Flowblade.svg │ │ │ ├── io.github.jonmagon.kdiskmark.svg │ │ │ ├── io.github.lainsce.Notejot.svg │ │ │ ├── io.github.lainsce.Palaura.svg │ │ │ ├── io.github.lainsce.Quilter.svg │ │ │ ├── io.github.liberodark.OpenDrive.svg │ │ │ ├── io.github.m64p.m64p.svg │ │ │ ├── io.github.markummitchell.Engauge_Digitizer.svg │ │ │ ├── io.github.martinrotter.rssguard.svg │ │ │ ├── io.github.martinrotter.rssguardlite.svg │ │ │ ├── io.github.mightycreak.Diffuse.svg │ │ │ ├── io.github.mihnea_radulescu.imagefanreloaded.svg │ │ │ ├── io.github.mimbrero.WhatsAppDesktop.svg │ │ │ ├── io.github.mmstick.FontFinder.svg │ │ │ ├── io.github.nokse22.minitext.svg │ │ │ ├── io.github.nuttyartist.notes.svg │ │ │ ├── io.github.openWMail.openWMail.svg │ │ │ ├── io.github.peazip.PeaZip.svg │ │ │ ├── io.github.pragha_music_player.pragha.svg │ │ │ ├── io.github.purplehorrorrus.Meridius.svg │ │ │ ├── io.github.qalculate.Qalculate.svg │ │ │ ├── io.github.qnapi.svg │ │ │ ├── io.github.qtox.qTox.svg │ │ │ ├── io.github.quodlibet.ExFalso.svg │ │ │ ├── io.github.realmazharhussain.GdmSettings.svg │ │ │ ├── io.github.seadve.Kooha.svg │ │ │ ├── io.github.seadve.Mousai.svg │ │ │ ├── io.github.shiftey.Desktop.svg │ │ │ ├── io.github.spacingbat3.webcord.svg │ │ │ ├── io.github.swanux.hbud.svg │ │ │ ├── io.github.tcobbs.LDView.svg │ │ │ ├── io.github.tralph3.Steam_Metadata_Editor.svg │ │ │ ├── io.github.troyeguo.koodo-reader.svg │ │ │ ├── io.github.vemonet.EmojiMart.svg │ │ │ ├── io.github.webcamoid.Webcamoid.svg │ │ │ ├── io.github.wereturtle.ghostwriter.svg │ │ │ ├── io.github.wh201906.serialtest.svg │ │ │ ├── io.github.zaps166.QMPlay2.svg │ │ │ ├── io.gitlab.Goodvibes.svg │ │ │ ├── io.gitlab.LibreWolf.svg │ │ │ ├── io.gitlab.adhami3310.Footage.svg │ │ │ ├── io.gitlab.adhami3310.Impression.svg │ │ │ ├── io.gitlab.daikhan.stable.svg │ │ │ ├── io.gitlab.jstest_gtk.jstest_gtk.svg │ │ │ ├── io.gitlab.librewolf-community.svg │ │ │ ├── io.gitlab.news_flash.NewsFlash.svg │ │ │ ├── io.gitlab.o20.onenote.svg │ │ │ ├── io.gitlab.o20.word.svg │ │ │ ├── io.gitlab.persiangolf.voicegen.svg │ │ │ ├── io.gitlab.sdl_jstest.sdl2_jstest.svg │ │ │ ├── io.gitlab.sdl_jstest.sdl_jstest.svg │ │ │ ├── io.howl.Editor.svg │ │ │ ├── io.kavan.GUADEC.svg │ │ │ ├── io.kopia.KopiaUI.svg │ │ │ ├── io.liri.Calculator.svg │ │ │ ├── io.liri.Text.svg │ │ │ ├── io.lmms.LMMS.svg │ │ │ ├── io.mgba.mGBA.svg │ │ │ ├── io.missioncenter.MissionCenter.svg │ │ │ ├── io.mpv.Mpv.svg │ │ │ ├── io.mrarm.mcpelauncher-ui.svg │ │ │ ├── io.mrarm.mcpelauncher.svg │ │ │ ├── io.otsaloma.gaupol.svg │ │ │ ├── io.otsaloma.nfoview.svg │ │ │ ├── io.photoflare.photoflare.svg │ │ │ ├── io.posidon.Paper.svg │ │ │ ├── io.sourceforge.Pixelitor.svg │ │ │ ├── io.sourceforge.qoobar.Qoobar.svg │ │ │ ├── iok.svg │ │ │ ├── iplan.svg │ │ │ ├── ipub.svg │ │ │ ├── ipython-doc.svg │ │ │ ├── ipython-qtconsole.svg │ │ │ ├── ir.imansalmani.IPlan.svg │ │ │ ├── irc-chat.svg │ │ │ ├── irccloud-desktop.svg │ │ │ ├── irccloud.svg │ │ │ ├── irix.svg │ │ │ ├── iso-image-burn.svg │ │ │ ├── isoimagewriter.svg │ │ │ ├── istanbul.svg │ │ │ ├── it.mijorus.smile.svg │ │ │ ├── itunes.svg │ │ │ ├── jabber-im.svg │ │ │ ├── jack-mixer.svg │ │ │ ├── jack.svg │ │ │ ├── jack_mixer.svg │ │ │ ├── jackeq.svg │ │ │ ├── jamendo.svg │ │ │ ├── jami-gnome.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-15-openjdk.svg │ │ │ ├── java-16-openjdk.svg │ │ │ ├── java-17-openjdk.svg │ │ │ ├── java-jdk.svg │ │ │ ├── java.svg │ │ │ ├── java10-openjdk.svg │ │ │ ├── java11-openjdk.svg │ │ │ ├── java12-openjdk.svg │ │ │ ├── java13-openjdk.svg │ │ │ ├── java14-openjdk.svg │ │ │ ├── java15-openjdk.svg │ │ │ ├── java16-openjdk.svg │ │ │ ├── java17-openjdk.svg │ │ │ ├── java18-openjdk.svg │ │ │ ├── java19-openjdk.svg │ │ │ ├── java20-openjdk.svg │ │ │ ├── java8-openjdk.svg │ │ │ ├── java8.svg │ │ │ ├── java9-openjdk.svg │ │ │ ├── javaws.svg │ │ │ ├── jazzradio.svg │ │ │ ├── jclicauthor.svg │ │ │ ├── jd-gui.svg │ │ │ ├── jdownloader-indicator.svg │ │ │ ├── jdownloader.svg │ │ │ ├── jedit.svg │ │ │ ├── jeex.svg │ │ │ ├── jellyfin-desktop.svg │ │ │ ├── jellyfin.svg │ │ │ ├── jetbrains-clion.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 │ │ │ ├── jitsi-meet-desktop.svg │ │ │ ├── jitsi-meet.svg │ │ │ ├── jitsi.svg │ │ │ ├── jockey-gtk.svg │ │ │ ├── jockey-kde.svg │ │ │ ├── jockey.svg │ │ │ ├── joplin-desktop.svg │ │ │ ├── joplin-tray.svg │ │ │ ├── joplin.svg │ │ │ ├── josm-32.svg │ │ │ ├── josm-latest.svg │ │ │ ├── josm.svg │ │ │ ├── jotasync.svg │ │ │ ├── journal.svg │ │ │ ├── jprofiler.svg │ │ │ ├── jshell-java-openjdk.svg │ │ │ ├── jstest-gtk.svg │ │ │ ├── juffed.svg │ │ │ ├── juk.svg │ │ │ ├── k3b.svg │ │ │ ├── k9-copy.svg │ │ │ ├── k9copy.svg │ │ │ ├── kaaddressbook.svg │ │ │ ├── kaccess.svg │ │ │ ├── kaccounts-nextcloud.svg │ │ │ ├── kaddressbook.svg │ │ │ ├── kaffeine.svg │ │ │ ├── kaidan.svg │ │ │ ├── kalarm.svg │ │ │ ├── kalgebra.svg │ │ │ ├── kali-bugs.svg │ │ │ ├── kali-database-assessment-trans.svg │ │ │ ├── kali-docs.svg │ │ │ ├── kali-fern-wifi-cracker.svg │ │ │ ├── kali-gqrx.svg │ │ │ ├── kali-info-gathering-trans.svg │ │ │ ├── kali-jd-gui.svg │ │ │ ├── kali-macchanger.svg │ │ │ ├── kali-nmap.svg │ │ │ ├── kali-p0f.svg │ │ │ ├── kali-password-attacks-trans.svg │ │ │ ├── kali-recordmydesktop.svg │ │ │ ├── kali-reporting-tools-trans.svg │ │ │ ├── kali-shellnoob.svg │ │ │ ├── kali-social-engineering-trans.svg │ │ │ ├── kali-ssdeep.svg │ │ │ ├── kali-stress-testing-trans.svg │ │ │ ├── kali-system-services-trans.svg │ │ │ ├── kali-truecrypt.svg │ │ │ ├── kali-vuln-assessment-trans.svg │ │ │ ├── kali-web-application-trans.svg │ │ │ ├── kali-wireless-attacks-trans.svg │ │ │ ├── kali-wireshark.svg │ │ │ ├── kali-zaproxy.svg │ │ │ ├── kalk.svg │ │ │ ├── kalu.svg │ │ │ ├── kamerka.svg │ │ │ ├── kamoso.svg │ │ │ ├── kapow.svg │ │ │ ├── kappfinder.svg │ │ │ ├── kapptemplate.svg │ │ │ ├── kasts.svg │ │ │ ├── kate.svg │ │ │ ├── kate2.svg │ │ │ ├── katimon.svg │ │ │ ├── katomic.svg │ │ │ ├── kazam-recording.svg │ │ │ ├── kazam.svg │ │ │ ├── kbabeldict.svg │ │ │ ├── kbackup.svg │ │ │ ├── kbibtex.svg │ │ │ ├── kblocks.svg │ │ │ ├── kblogger.svg │ │ │ ├── kbluetooth.svg │ │ │ ├── kbluetooth4-flashing.svg │ │ │ ├── kbluetooth4.svg │ │ │ ├── kbox.svg │ │ │ ├── kbruch.svg │ │ │ ├── kbugbuster.svg │ │ │ ├── kbugster.svg │ │ │ ├── kcachegrind.svg │ │ │ ├── kcalc.svg │ │ │ ├── kcharselect.svg │ │ │ ├── kcharselect1.svg │ │ │ ├── kchart.svg │ │ │ ├── kchmviewer.svg │ │ │ ├── kcmkicker.svg │ │ │ ├── kcmkwm.svg │ │ │ ├── kcmpartitions.svg │ │ │ ├── kcmpci.svg │ │ │ ├── kcmprocessor.svg │ │ │ ├── kcmsound.svg │ │ │ ├── kcmx.svg │ │ │ ├── kcnmsound.svg │ │ │ ├── kcolorchooser.svg │ │ │ ├── kconsole.svg │ │ │ ├── kcontrol.svg │ │ │ ├── kdbg.svg │ │ │ ├── kdcraw.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 │ │ │ ├── kdebluetooth.svg │ │ │ ├── kdeconnect-app.svg │ │ │ ├── kdeconnect-sms.svg │ │ │ ├── kdeconnect-tray.svg │ │ │ ├── kdeconnect.svg │ │ │ ├── kdeconnectindicator.svg │ │ │ ├── kded5.svg │ │ │ ├── kdeneur.svg │ │ │ ├── kdenlive.svg │ │ │ ├── kdepim-dropbox.svg │ │ │ ├── kdepim-googledrive.svg │ │ │ ├── kdesvn.svg │ │ │ ├── kdevelop.svg │ │ │ ├── kdf.svg │ │ │ ├── kdiff3.svg │ │ │ ├── kdiskfree.svg │ │ │ ├── kdiskmark.svg │ │ │ ├── kdisknav.svg │ │ │ ├── kdmconfig.svg │ │ │ ├── kdocker.svg │ │ │ ├── kdots.svg │ │ │ ├── kdoubanfm.svg │ │ │ ├── kedit-icon.svg │ │ │ ├── kedit.svg │ │ │ ├── keditbookmarks.svg │ │ │ ├── keep.svg │ │ │ ├── keepass.svg │ │ │ ├── keepass2.svg │ │ │ ├── keepassx-indicator.svg │ │ │ ├── keepassx-locked.svg │ │ │ ├── keepassx.svg │ │ │ ├── keepassx2.svg │ │ │ ├── keepassxc-locked.svg │ │ │ ├── keepassxc-monochrome-dark-locked.svg │ │ │ ├── keepassxc-monochrome-light-locked.svg │ │ │ ├── keepassxc-panel.svg │ │ │ ├── keepassxc-unlocked.svg │ │ │ ├── keepassxc.svg │ │ │ ├── keeweb.svg │ │ │ ├── kega-fusion.svg │ │ │ ├── kentoo.svg │ │ │ ├── keurocalc.svg │ │ │ ├── kexi.svg │ │ │ ├── key-mon.svg │ │ │ ├── key_bindings.svg │ │ │ ├── keyboard.svg │ │ │ ├── keyman.svg │ │ │ ├── keymon.svg │ │ │ ├── keyring-manager.svg │ │ │ ├── keyring.svg │ │ │ ├── keysmith.svg │ │ │ ├── keysync.svg │ │ │ ├── kfilebox.svg │ │ │ ├── kfind.svg │ │ │ ├── kfindb.svg │ │ │ ├── kfindc.svg │ │ │ ├── kflickr.svg │ │ │ ├── kfloppy.svg │ │ │ ├── kfm.svg │ │ │ ├── kfm_home.svg │ │ │ ├── kfontview.svg │ │ │ ├── kgeography.svg │ │ │ ├── kget.svg │ │ │ ├── kget_dock.svg │ │ │ ├── kget_dock_download.svg │ │ │ ├── kghostview.svg │ │ │ ├── kgpg.svg │ │ │ ├── kgraphviewer.svg │ │ │ ├── khelpcenter.svg │ │ │ ├── kid3-qt.svg │ │ │ ├── kid3-v2.svg │ │ │ ├── kid3.svg │ │ │ ├── kile.svg │ │ │ ├── kimtoy.svg │ │ │ ├── kindle.svg │ │ │ ├── kinfocenter.svg │ │ │ ├── kino.svg │ │ │ ├── kipi-debianscreenshots.svg │ │ │ ├── kipi-flash.svg │ │ │ ├── kipi-flickr.svg │ │ │ ├── kipi-gallery.svg │ │ │ ├── kipi-googlephoto.svg │ │ │ ├── kipi-logo.svg │ │ │ ├── kipi-panorama.svg │ │ │ ├── kipi-slideshow.svg │ │ │ ├── kipi-timeadjust.svg │ │ │ ├── kipi.svg │ │ │ ├── kittens.svg │ │ │ ├── kitty.svg │ │ │ ├── kjobviewer.svg │ │ │ ├── kjots.svg │ │ │ ├── kjournal.svg │ │ │ ├── kjumpingcube.svg │ │ │ ├── kleopatra.svg │ │ │ ├── klettres.svg │ │ │ ├── klinkstatus.svg │ │ │ ├── klipper.svg │ │ │ ├── klock.svg │ │ │ ├── klogg.svg │ │ │ ├── kmag.svg │ │ │ ├── kmahjongg.svg │ │ │ ├── kmail.svg │ │ │ ├── kmail2.svg │ │ │ ├── kmailcvt.svg │ │ │ ├── kmenu.svg │ │ │ ├── kmenuedit.svg │ │ │ ├── kmetronome.svg │ │ │ ├── kmines.svg │ │ │ ├── kmix.svg │ │ │ ├── kmldonkey.svg │ │ │ ├── kmousetool.svg │ │ │ ├── kmplayer.svg │ │ │ ├── kmymoney.svg │ │ │ ├── knemo.svg │ │ │ ├── knetattach.svg │ │ │ ├── knetwalk.svg │ │ │ ├── knewsticker.svg │ │ │ ├── knights.svg │ │ │ ├── knotes.svg │ │ │ ├── knotify.svg │ │ │ ├── knowte.svg │ │ │ ├── kodi.svg │ │ │ ├── kokopete_some_away.svg │ │ │ ├── kokopete_some_online.svg │ │ │ ├── kolourpaint.svg │ │ │ ├── kompare.svg │ │ │ ├── konqueror-icon.svg │ │ │ ├── konqueror.svg │ │ │ ├── konquest.svg │ │ │ ├── konsole-linux32.svg │ │ │ ├── konsole.svg │ │ │ ├── konsole_tux.svg │ │ │ ├── konsolekalendar.svg │ │ │ ├── kontact-import-wizard.svg │ │ │ ├── kontact.svg │ │ │ ├── konversation.svg │ │ │ ├── konversation32x32.svg │ │ │ ├── koodo-reader.svg │ │ │ ├── kopete.svg │ │ │ ├── kopete2-svg │ │ │ ├── kopete2.svg │ │ │ ├── kopete_all_away.svg │ │ │ ├── kopia-ui.svg │ │ │ ├── korg-journal.svg │ │ │ ├── korg-todo.svg │ │ │ ├── korgac.svg │ │ │ ├── korganizer.svg │ │ │ ├── kpackage.svg │ │ │ ├── kpackage48.svg │ │ │ ├── kpackagekit.svg │ │ │ ├── kpager.svg │ │ │ ├── kparted.svg │ │ │ ├── kpat.svg │ │ │ ├── kpatience.svg │ │ │ ├── kpdf.svg │ │ │ ├── kpersonalizer.svg │ │ │ ├── kphoto.svg │ │ │ ├── kphotoalbum.svg │ │ │ ├── kpk-desktop-gnome.svg │ │ │ ├── kpk-desktop-xfce.svg │ │ │ ├── kplato.svg │ │ │ ├── kplayer.svg │ │ │ ├── kpresenter.svg │ │ │ ├── kpresentor.svg │ │ │ ├── kr_diskusage.svg │ │ │ ├── kradio.svg │ │ │ ├── kradio4.svg │ │ │ ├── krb-no-valid-ticket.svg │ │ │ ├── krb-valid-ticket.svg │ │ │ ├── krdc.svg │ │ │ ├── krec.svg │ │ │ ├── krecorder.svg │ │ │ ├── krename.svg │ │ │ ├── krfb.svg │ │ │ ├── krita.svg │ │ │ ├── kritagemini.svg │ │ │ ├── kritasketch.svg │ │ │ ├── kronometer.svg │ │ │ ├── krudio.svg │ │ │ ├── kruler.svg │ │ │ ├── krunner.svg │ │ │ ├── krusader-user-2.svg │ │ │ ├── krusader-user.svg │ │ │ ├── krusader-user2.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 │ │ │ ├── ksysguard.svg │ │ │ ├── ksysguardd.svg │ │ │ ├── kteatime.svg │ │ │ ├── kterm.svg │ │ │ ├── ktexteditorautobrace.svg │ │ │ ├── kthesaurus.svg │ │ │ ├── ktimer.svg │ │ │ ├── ktimetracker.svg │ │ │ ├── ktip.svg │ │ │ ├── ktnef.svg │ │ │ ├── ktneft.svg │ │ │ ├── ktorrent.svg │ │ │ ├── ktouch.svg │ │ │ ├── ktp-contacts.svg │ │ │ ├── ktuberling.svg │ │ │ ├── kube-mail.svg │ │ │ ├── kuickshow.svg │ │ │ ├── kuiviewer.svg │ │ │ ├── kuro-tray.svg │ │ │ ├── kuroo.svg │ │ │ ├── kuser.svg │ │ │ ├── kvantum.svg │ │ │ ├── kvpm.svg │ │ │ ├── kwalletmanager.svg │ │ │ ├── kwalletmanager2.svg │ │ │ ├── kweather.svg │ │ │ ├── kwikdisk.svg │ │ │ ├── kwin.svg │ │ │ ├── kword.svg │ │ │ ├── kwordquiz.svg │ │ │ ├── kwords.svg │ │ │ ├── kwplayer.svg │ │ │ ├── kwrite.svg │ │ │ ├── kxsldbg.svg │ │ │ ├── kylin-user-guide.svg │ │ │ ├── kylin-video.svg │ │ │ ├── kyman.svg │ │ │ ├── kynapatic.svg │ │ │ ├── kynaptic.svg │ │ │ ├── kynpatic.svg │ │ │ ├── l3afpad.svg │ │ │ ├── labplot.svg │ │ │ ├── labplot2.svg │ │ │ ├── ladi-player.svg │ │ │ ├── ladi-started.svg │ │ │ ├── ladi-starting.svg │ │ │ ├── lapce.svg │ │ │ ├── lash.svg │ │ │ ├── last-fm.svg │ │ │ ├── lastfm-audioscrobbler.svg │ │ │ ├── lastfm-client.svg │ │ │ ├── lastfm-valut.svg │ │ │ ├── lastfm-www.last.fm.svg │ │ │ ├── lastfm.svg │ │ │ ├── latexila.svg │ │ │ ├── latte-dock.svg │ │ │ ├── launch.svg │ │ │ ├── launcher-program.svg │ │ │ ├── launcher.svg │ │ │ ├── launcher_bfb_ubuntu.svg │ │ │ ├── launchpad.svg │ │ │ ├── lazarus.svg │ │ │ ├── lazpaint.svg │ │ │ ├── ldview.svg │ │ │ ├── leafpad.svg │ │ │ ├── leftpad.svg │ │ │ ├── leocad.svg │ │ │ ├── libinput-gestures-qt.svg │ │ │ ├── libinput-gestures.svg │ │ │ ├── library-internet-radio.svg │ │ │ ├── library-podcast.svg │ │ │ ├── libreoffice-base-symbolic.svg │ │ │ ├── libreoffice-base.svg │ │ │ ├── libreoffice-calc-symbolic.svg │ │ │ ├── libreoffice-calc.svg │ │ │ ├── libreoffice-chart.svg │ │ │ ├── libreoffice-draw-symbolic.svg │ │ │ ├── libreoffice-draw.svg │ │ │ ├── libreoffice-impress-symbolic.svg │ │ │ ├── libreoffice-impress.svg │ │ │ ├── libreoffice-main.svg │ │ │ ├── libreoffice-math-symbolic.svg │ │ │ ├── libreoffice-math.svg │ │ │ ├── libreoffice-printeradmin.svg │ │ │ ├── libreoffice-start-centre.svg │ │ │ ├── libreoffice-startcenter.svg │ │ │ ├── libreoffice-template.svg │ │ │ ├── libreoffice-writer-V1.svg │ │ │ ├── libreoffice-writer-symbolic.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 │ │ │ ├── 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-printeradmin.svg │ │ │ ├── libreoffice5.3-startcenter.svg │ │ │ ├── libreoffice5.3-template.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-chart.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-chart.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-chart.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-chart.svg │ │ │ ├── libreoffice7.0-draw.svg │ │ │ ├── libreoffice7.0-impress.svg │ │ │ ├── libreoffice7.0-main.svg │ │ │ ├── libreoffice7.0-math.svg │ │ │ ├── libreoffice7.0-startcenter │ │ │ ├── libreoffice7.0-startcenter.svg │ │ │ ├── libreoffice7.0-writer.svg │ │ │ ├── libreoffice7.0.svg │ │ │ ├── libreoffice7.1-base.svg │ │ │ ├── libreoffice7.1-calc.svg │ │ │ ├── libreoffice7.1-chart.svg │ │ │ ├── libreoffice7.1-draw.svg │ │ │ ├── libreoffice7.1-impress.svg │ │ │ ├── libreoffice7.1-main.svg │ │ │ ├── libreoffice7.1-math.svg │ │ │ ├── libreoffice7.1-startcenter.svg │ │ │ ├── libreoffice7.1-writer.svg │ │ │ ├── libreoffice7.2-base.svg │ │ │ ├── libreoffice7.2-calc.svg │ │ │ ├── libreoffice7.2-chart.svg │ │ │ ├── libreoffice7.2-draw.svg │ │ │ ├── libreoffice7.2-impress.svg │ │ │ ├── libreoffice7.2-main.svg │ │ │ ├── libreoffice7.2-math.svg │ │ │ ├── libreoffice7.2-startcenter.svg │ │ │ ├── libreoffice7.2-template.svg │ │ │ ├── libreoffice7.2-writer.svg │ │ │ ├── libreoffice7.3-base.svg │ │ │ ├── libreoffice7.3-calc.svg │ │ │ ├── libreoffice7.3-chart.svg │ │ │ ├── libreoffice7.3-draw.svg │ │ │ ├── libreoffice7.3-impress.svg │ │ │ ├── libreoffice7.3-main.svg │ │ │ ├── libreoffice7.3-math.svg │ │ │ ├── libreoffice7.3-startcenter.svg │ │ │ ├── libreoffice7.3-writer.svg │ │ │ ├── libreoffice7.4-base.svg │ │ │ ├── libreoffice7.4-calc.svg │ │ │ ├── libreoffice7.4-chart.svg │ │ │ ├── libreoffice7.4-draw.svg │ │ │ ├── libreoffice7.4-impress.svg │ │ │ ├── libreoffice7.4-main.svg │ │ │ ├── libreoffice7.4-math.svg │ │ │ ├── libreoffice7.4-startcenter.svg │ │ │ ├── libreoffice7.4-writer.svg │ │ │ ├── libreofficedev6.0-base.svg │ │ │ ├── libreofficedev6.0-calc.svg │ │ │ ├── libreofficedev6.0-chart.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-chart.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 │ │ │ ├── librewolf.svg │ │ │ ├── licensequick.svg │ │ │ ├── liferea-unread.svg │ │ │ ├── liferea.svg │ │ │ ├── light-software-center.svg │ │ │ ├── lightbeat.svg │ │ │ ├── lightdm-gtk-greeter-settings.svg │ │ │ ├── lightdm-gtk-greeter.svg │ │ │ ├── lightdm-settings.svg │ │ │ ├── lightpad.svg │ │ │ ├── lightread.svg │ │ │ ├── lightsoff.svg │ │ │ ├── linconnect-server.svg │ │ │ ├── linconnect.svg │ │ │ ├── linguist-qt4.svg │ │ │ ├── linguist-qt5.svg │ │ │ ├── linguist-qt6.svg │ │ │ ├── linguist.svg │ │ │ ├── linguist5.svg │ │ │ ├── linguistic.svg │ │ │ ├── links.svg │ │ │ ├── links_32x32.xpm.svg │ │ │ ├── linssid.svg │ │ │ ├── liteautologin.svg │ │ │ ├── liteinfo.svg │ │ │ ├── litemanual.svg │ │ │ ├── litenetworkshares.svg │ │ │ ├── litesoftware.svg │ │ │ ├── litesoundsglob.svg │ │ │ ├── litesoundsloc.svg │ │ │ ├── litesources.svg │ │ │ ├── litesystemreport.svg │ │ │ ├── liteupdates.svg │ │ │ ├── liteupdatesnotify.svg │ │ │ ├── liteusermanager.svg │ │ │ ├── live.svg │ │ │ ├── liveinst.svg │ │ │ ├── livepatch.svg │ │ │ ├── liveusb-creator.svg │ │ │ ├── livewallpaper-config.svg │ │ │ ├── livewallpaper-indicator.svg │ │ │ ├── livewallpaper.svg │ │ │ ├── lmms.svg │ │ │ ├── locale.svg │ │ │ ├── localedrake.svg │ │ │ ├── location-services-active.svg │ │ │ ├── lock-keys-applet.svg │ │ │ ├── lock-ok.svg │ │ │ ├── lock-screen.svg │ │ │ ├── lock.svg │ │ │ ├── logfactor5.svg │ │ │ ├── login-photo.svg │ │ │ ├── login.svg │ │ │ ├── logjam.svg │ │ │ ├── logo_sagemath.svg │ │ │ ├── logview.svg │ │ │ ├── logviewer.svg │ │ │ ├── lokalize.svg │ │ │ ├── lollypop.svg │ │ │ ├── lombard.svg │ │ │ ├── lookswitcher.svg │ │ │ ├── lpi-bug.svg │ │ │ ├── lpi-bus.svg │ │ │ ├── lpi-translate.svg │ │ │ ├── lprof.svg │ │ │ ├── lpub.svg │ │ │ ├── lrfviewer.svg │ │ │ ├── lshw-gui.svg │ │ │ ├── lshw.svg │ │ │ ├── lskat.svg │ │ │ ├── lstopo.svg │ │ │ ├── lubuntu-software-center.svg │ │ │ ├── lucidchart.svg │ │ │ ├── luckyBackup.svg │ │ │ ├── luckybackup.svg │ │ │ ├── luminance-hdr.svg │ │ │ ├── lutris-panel.svg │ │ │ ├── lutris.svg │ │ │ ├── lutris_atari-vault.svg │ │ │ ├── lutris_blender.svg │ │ │ ├── lutris_borderlands-the-pre-sequel.svg │ │ │ ├── lutris_colortone.svg │ │ │ ├── lutris_cuphead.svg │ │ │ ├── lutris_epic-games-store.svg │ │ │ ├── lutris_godot-engine.svg │ │ │ ├── lutris_kpatience.svg │ │ │ ├── lutris_krita-gemini.svg │ │ │ ├── lutris_melvor-idle.svg │ │ │ ├── lutris_minecraft.svg │ │ │ ├── lutris_minetest.svg │ │ │ ├── lutris_tabletop-simulator.svg │ │ │ ├── lutris_worms-reloaded.svg │ │ │ ├── lutris_x-plane-11.svg │ │ │ ├── lutris_x-rebirth.svg │ │ │ ├── lutris_ziggurat.svg │ │ │ ├── lx-music-desktop.svg │ │ │ ├── lxfind.svg │ │ │ ├── lximage-qt.svg │ │ │ ├── lximage.svg │ │ │ ├── lxinput.svg │ │ │ ├── lxmusic.svg │ │ │ ├── lxqt-admin-user.svg │ │ │ ├── lxqt-archiver.svg │ │ │ ├── lxqt.svg │ │ │ ├── lxtask.svg │ │ │ ├── lxterminal.svg │ │ │ ├── lynx.svg │ │ │ ├── lyrebird.svg │ │ │ ├── lyricfier-tray.svg │ │ │ ├── lyricfier.svg │ │ │ ├── lyydownloader.svg │ │ │ ├── macchanger.svg │ │ │ ├── magnatune.svg │ │ │ ├── mahjong.svg │ │ │ ├── mahjongg.svg │ │ │ ├── maia.svg │ │ │ ├── mail-client.svg │ │ │ ├── mail-generic.svg │ │ │ ├── mail-mailbox-symbolic.svg │ │ │ ├── mail-notification.svg │ │ │ ├── mail.svg │ │ │ ├── mail_generic.svg │ │ │ ├── mailer.svg │ │ │ ├── mailnag.svg │ │ │ ├── mailru-mail.ru.svg │ │ │ ├── mailspring.svg │ │ │ ├── mainline.svg │ │ │ ├── makemkv.svg │ │ │ ├── mandriva-update.svg │ │ │ ├── mandrivaupdate.svg │ │ │ ├── manjaro-logo-icon.svg │ │ │ ├── manjaro-settings-manager-panel.svg │ │ │ ├── manjaro-settings-manager.svg │ │ │ ├── manjaro-welcome.svg │ │ │ ├── manjaro.svg │ │ │ ├── manjarolinux.svg │ │ │ ├── manrdivaupdate.svg │ │ │ ├── manuskript.svg │ │ │ ├── map-globe.svg │ │ │ ├── maps.svg │ │ │ ├── marble.svg │ │ │ ├── marco.svg │ │ │ ├── mark-location-symbolic.svg │ │ │ ├── marktext.svg │ │ │ ├── martchus.syncthingplasmoid.svg │ │ │ ├── master-pdf-editor.svg │ │ │ ├── master-pdf-editor3.svg │ │ │ ├── masterPDFEditor-free.svg │ │ │ ├── masterPDFEditor.svg │ │ │ ├── masterpassword-gui.svg │ │ │ ├── masterpdfeditor.svg │ │ │ ├── masterpdfeditor3.svg │ │ │ ├── masterpdfeditor4.svg │ │ │ ├── masterpdfeditor5.svg │ │ │ ├── mate-ax-applet.svg │ │ │ ├── mate-brightness-applet.svg │ │ │ ├── mate-color-manager.svg │ │ │ ├── mate-cpu-frequency-applet.svg │ │ │ ├── mate-desktop-item-edit.svg │ │ │ ├── mate-desktop.svg │ │ │ ├── mate-disk-usage-analyzer.svg │ │ │ ├── mate-eiciel.svg │ │ │ ├── mate-eyes-applet.svg │ │ │ ├── mate-indicator-applet.svg │ │ │ ├── mate-invest-applet.svg │ │ │ ├── mate-logo.svg │ │ │ ├── mate-netspeed-applet.svg │ │ │ ├── mate-netspeed-loopback.svg │ │ │ ├── mate-netspeed-plip.svg │ │ │ ├── mate-netspeed-ppp.svg │ │ │ ├── mate-netspeed_applet.svg │ │ │ ├── mate-nettool.svg │ │ │ ├── mate-network-properties.svg │ │ │ ├── mate-notification-properties.svg │ │ │ ├── mate-panel-clock.svg │ │ │ ├── mate-panel-drawer.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-amenu.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-gpu.svg │ │ │ ├── mate-sensors-applet.svg │ │ │ ├── mate-sensors.svg │ │ │ ├── mate-session-properties.svg │ │ │ ├── mate-sticky-notes-applet.svg │ │ │ ├── mate-system-log.svg │ │ │ ├── mate-time-admin.svg │ │ │ ├── mate.svg │ │ │ ├── mateconf-editor.svg │ │ │ ├── matepalimpsest.svg │ │ │ ├── mathematica.svg │ │ │ ├── matlab-desktop.svg │ │ │ ├── matlab-icon.svg │ │ │ ├── matlab-logo.svg │ │ │ ├── matlab.svg │ │ │ ├── matray.svg │ │ │ ├── mattermost-desktop-bin.svg │ │ │ ├── mattermost-desktop.svg │ │ │ ├── mattermost-mention.svg │ │ │ ├── mattermost-tray.svg │ │ │ ├── mattermost.svg │ │ │ ├── maui-shelf.svg │ │ │ ├── maxima-icon.svg │ │ │ ├── maxima.svg │ │ │ ├── maxthon-browser-stable.svg │ │ │ ├── maxthon-browser.svg │ │ │ ├── maxthon.svg │ │ │ ├── maya.svg │ │ │ ├── mc.svg │ │ │ ├── mcomix.svg │ │ │ ├── mcomix3.svg │ │ │ ├── mcpelauncher-ui-qt.svg │ │ │ ├── mcpelauncher-ui.svg │ │ │ ├── md.obsidian.Obsidian.svg │ │ │ ├── mdmflexiserver.svg │ │ │ ├── mdmsetup.svg │ │ │ ├── me-tv.svg │ │ │ ├── me.dusansimic.DynamicWallpaper.svg │ │ │ ├── me.kozec.syncthingtk.svg │ │ │ ├── me.orszulak.keyring.svg │ │ │ ├── me.ppvan.psequel.svg │ │ │ ├── media-cdrom.svg │ │ │ ├── media-eq-symbolic.svg │ │ │ ├── media-eq.svg │ │ │ ├── media-optical-copy.svg │ │ │ ├── media-player-48.svg │ │ │ ├── media-player-banshee.svg │ │ │ ├── media-player.svg │ │ │ ├── media-removable.svg │ │ │ ├── media.emby.EmbyServer.svg │ │ │ ├── media.emby.EmbyTheater.svg │ │ │ ├── mediacontrol.svg │ │ │ ├── mediainfo.svg │ │ │ ├── mediawriter.svg │ │ │ ├── medit.svg │ │ │ ├── mednafen.svg │ │ │ ├── mednaffe.svg │ │ │ ├── mega.svg │ │ │ ├── meld.svg │ │ │ ├── mellowplayer-panel.svg │ │ │ ├── mellowplayer.svg │ │ │ ├── melvor-idle.svg │ │ │ ├── mendeley-desktop.svg │ │ │ ├── mendeleydesktop.svg │ │ │ ├── menu-editor.svg │ │ │ ├── menu-misc.svg │ │ │ ├── menuk-mdk.svg │ │ │ ├── menulibre.svg │ │ │ ├── mercury.svg │ │ │ ├── mess.svg │ │ │ ├── message-x-gnu-rmail.svg │ │ │ ├── message.svg │ │ │ ├── messagebox_critical.svg │ │ │ ├── messagebox_info.svg │ │ │ ├── messenger.svg │ │ │ ├── messengerfordesktop.svg │ │ │ ├── metacity.svg │ │ │ ├── meteo-qt.svg │ │ │ ├── meterbridge.svg │ │ │ ├── meterbridge32x32.svg │ │ │ ├── metronome.svg │ │ │ ├── micro.svg │ │ │ ├── microphone-sensitivity-low.svg │ │ │ ├── microscope.svg │ │ │ ├── microsoft-edge-dev.svg │ │ │ ├── microsoft-edge.svg │ │ │ ├── microsoft-office-online.svg │ │ │ ├── microsoft.svg │ │ │ ├── midiconn.svg │ │ │ ├── midnight-commander.svg │ │ │ ├── midori.svg │ │ │ ├── midterm.svg │ │ │ ├── mine.svg │ │ │ ├── minecraft-launcher.svg │ │ │ ├── minecraft-pi.svg │ │ │ ├── minecraft.svg │ │ │ ├── mines.svg │ │ │ ├── minesweeper.svg │ │ │ ├── minetest-icon.svg │ │ │ ├── minetest.svg │ │ │ ├── mini-calendar.svg │ │ │ ├── mini.xterm.svg │ │ │ ├── mini.xterm_32x32.svg │ │ │ ├── mini.xterm_48x48.svg │ │ │ ├── minimizeall.svg │ │ │ ├── minitext.svg │ │ │ ├── minitube-ubuntu.svg │ │ │ ├── minitube.svg │ │ │ ├── minitunes.svg │ │ │ ├── mint-dev-settings.svg │ │ │ ├── mintBackup.svg │ │ │ ├── mintNanny.svg │ │ │ ├── mintUpdate.svg │ │ │ ├── mintWelcome.svg │ │ │ ├── mintbackup-icon.svg │ │ │ ├── mintbackup.svg │ │ │ ├── mintdrivers.svg │ │ │ ├── mintinstall.svg │ │ │ ├── mintlocale-im.svg │ │ │ ├── mintlocale.svg │ │ │ ├── mintnanny.svg │ │ │ ├── mintreport.svg │ │ │ ├── mintsources-additional.svg │ │ │ ├── mintsources-keys.svg │ │ │ ├── mintsources-maintenance.svg │ │ │ ├── mintsources-mint.svg │ │ │ ├── mintsources.svg │ │ │ ├── mintstick.svg │ │ │ ├── mintupdate-release-upgrade.svg │ │ │ ├── mintupdate.svg │ │ │ ├── mintwelcome.svg │ │ │ ├── mirage.svg │ │ │ ├── mitter.svg │ │ │ ├── mixcloud.svg │ │ │ ├── mixxx-icon.svg │ │ │ ├── mixxx.svg │ │ │ ├── mixxx_icon.svg │ │ │ ├── mkv-extractor-gui.svg │ │ │ ├── mkv-gui.svg │ │ │ ├── mkvinfo.svg │ │ │ ├── mkvmerge.svg │ │ │ ├── mkvmergeGUI.svg │ │ │ ├── mkvmergegui.svg │ │ │ ├── mkvpropedit.svg │ │ │ ├── mkvtoolnix-gui.svg │ │ │ ├── mlcad.svg │ │ │ ├── mlterm-icon-24colors-1.svg │ │ │ ├── mlterm.svg │ │ │ ├── mm.svg │ │ │ ├── mmex.svg │ │ │ ├── modem-manager-gui.svg │ │ │ ├── modules-files.svg │ │ │ ├── money-manager-ex.svg │ │ │ ├── monitor.svg │ │ │ ├── monodevelop.svg │ │ │ ├── mousai.svg │ │ │ ├── mouse-touchpad-pointing.svg │ │ │ ├── mouse.svg │ │ │ ├── mousepad.svg │ │ │ ├── movie-editor.svg │ │ │ ├── mozilla-firefox.svg │ │ │ ├── mozilla-thunderbird.svg │ │ │ ├── mozilla_thunderbird.svg │ │ │ ├── mozo.svg │ │ │ ├── mp3splt-gtk.svg │ │ │ ├── mpd.svg │ │ │ ├── mpi-symbolic.svg │ │ │ ├── mpi.svg │ │ │ ├── mplayer.svg │ │ │ ├── mpv-icon-8bit-64x64.svg │ │ │ ├── mpv.svg │ │ │ ├── ms-calendar.svg │ │ │ ├── ms-excel.svg │ │ │ ├── ms-office.svg │ │ │ ├── ms-onedrive.svg │ │ │ ├── ms-onenote.svg │ │ │ ├── ms-outlook.svg │ │ │ ├── ms-powerpoint.svg │ │ │ ├── ms-skype.svg │ │ │ ├── ms-word.svg │ │ │ ├── mscore-portable.svg │ │ │ ├── mscore.svg │ │ │ ├── mscore3.svg │ │ │ ├── msd-xrandr.svg │ │ │ ├── msedge-agimnkijcaahngcdmfeangaknmldooml-Default.svg │ │ │ ├── msedge-ejhkdoiecgkmdpomoahkdihbcldkgjci-Default.svg │ │ │ ├── msexcel-2007.svg │ │ │ ├── msiexec.svg │ │ │ ├── msm_kde_notifier_settings.svg │ │ │ ├── msn.svg │ │ │ ├── mstdn-panel.svg │ │ │ ├── msword-2007.svg │ │ │ ├── mtpaint.svg │ │ │ ├── mucommander.svg │ │ │ ├── mugshot.svg │ │ │ ├── mullvad-browser.svg │ │ │ ├── multibootusb.svg │ │ │ ├── multilingual-terminal.svg │ │ │ ├── multimc.svg │ │ │ ├── multimedia-audio-player.svg │ │ │ ├── multimedia-equalizer-symbolic.svg │ │ │ ├── multimedia-equalizer.svg │ │ │ ├── multimedia-mpv.svg │ │ │ ├── multimedia-photo-manager.svg │ │ │ ├── multimedia-photo-viewer.svg │ │ │ ├── multimedia-player-symbolic.svg │ │ │ ├── multimedia-player.svg │ │ │ ├── multimedia-radio.svg │ │ │ ├── multimedia-section.svg │ │ │ ├── multimedia-video-editor.svg │ │ │ ├── multimedia-video-player-symbolic.svg │ │ │ ├── multimedia-video-player.svg │ │ │ ├── multimedia-vlc.svg │ │ │ ├── multimedia-volume-control-symbolic.svg │ │ │ ├── multimedia-volume-control-symbolic.symbolic.svg │ │ │ ├── multimedia-volume-control.svg │ │ │ ├── multimedia-volume.control.svg │ │ │ ├── multimedia.svg │ │ │ ├── multimedia_section.svg │ │ │ ├── multisystem-liveusb.svg │ │ │ ├── multisystem-test-iso.svg │ │ │ ├── multisystem-vbox.svg │ │ │ ├── multisystem.svg │ │ │ ├── multitasking-view.svg │ │ │ ├── mumble-indicator.svg │ │ │ ├── mumble.svg │ │ │ ├── muon-discover.svg │ │ │ ├── muon-installer.svg │ │ │ ├── muon.svg │ │ │ ├── muondis-cover.svg │ │ │ ├── muondiscover.svg │ │ │ ├── muonnotifier.svg │ │ │ ├── mupdf.svg │ │ │ ├── mupen64plus-qt.svg │ │ │ ├── mupen64plus.svg │ │ │ ├── museeks-tray.svg │ │ │ ├── museeks.svg │ │ │ ├── musescore.svg │ │ │ ├── music.svg │ │ │ ├── music_icon-24.svg │ │ │ ├── musicbrainz.svg │ │ │ ├── musique.svg │ │ │ ├── mx-alerts.svg │ │ │ ├── mx-boot-options.svg │ │ │ ├── mx-boot-repair.svg │ │ │ ├── mx-broadcom-manager.svg │ │ │ ├── mx-clocky.svg │ │ │ ├── mx-codecs.svg │ │ │ ├── mx-conky.svg │ │ │ ├── mx-datetime.svg │ │ │ ├── mx-findshares.svg │ │ │ ├── mx-menu-editor.svg │ │ │ ├── mx-network-assistant.svg │ │ │ ├── mx-packageinstaller.svg │ │ │ ├── mx-qsi.svg │ │ │ ├── mx-repo-manager.svg │ │ │ ├── mx-select-sound.svg │ │ │ ├── mx-snapshot.svg │ │ │ ├── mx-sound.svg │ │ │ ├── mx-system-sounds.svg │ │ │ ├── mx-timeset-gui-icon.svg │ │ │ ├── mx-tools.svg │ │ │ ├── mx-tweak.svg │ │ │ ├── mx-update.svg │ │ │ ├── mx-updater.svg │ │ │ ├── mx-usb-unmounter.svg │ │ │ ├── mx-user.svg │ │ │ ├── mx-viewer.svg │ │ │ ├── mx-welcome.svg │ │ │ ├── my-weather-indicator.svg │ │ │ ├── mygpo.svg │ │ │ ├── myltimedia-audio-player.svg │ │ │ ├── mypaint.svg │ │ │ ├── myspace.svg │ │ │ ├── n1.svg │ │ │ ├── nautilus-actions-config-tool.svg │ │ │ ├── nautilus-actions.svg │ │ │ ├── nautilus-burn.svg │ │ │ ├── nautilus-cd-burner.svg │ │ │ ├── nautilus-dropbox.svg │ │ │ ├── nautilus.svg │ │ │ ├── ndisgtk.svg │ │ │ ├── ndiswrapper-utils-1.9.svg │ │ │ ├── ndiswrapper.svg │ │ │ ├── neat-control.svg │ │ │ ├── negibox.svg │ │ │ ├── nemo.svg │ │ │ ├── nepomuk.svg │ │ │ ├── nero-linux-express.svg │ │ │ ├── nero-linux.svg │ │ │ ├── nero.svg │ │ │ ├── nerolinux.svg │ │ │ ├── nestopia.svg │ │ │ ├── net.ankiweb.Anki.svg │ │ │ ├── net.bartkessels.advancedmetronome.svg │ │ │ ├── net.baseart.Glide.svg │ │ │ ├── net.blix.BlueMail.svg │ │ │ ├── net.blockbench.Blockbench.svg │ │ │ ├── net.codeindustry.MasterPDFEditor.svg │ │ │ ├── net.cozic.joplin_desktop.svg │ │ │ ├── net.danigm.loop.svg │ │ │ ├── net.davidotek.pupgui2.svg │ │ │ ├── net.devolutions.RDM.svg │ │ │ ├── net.devolutions.RDMFree.svg │ │ │ ├── net.drawpile.drawpile.svg │ │ │ ├── net.epson.epsonscan2.svg │ │ │ ├── net.fasterland.converseen.svg │ │ │ ├── net.giuspen.cherrytree.svg │ │ │ ├── net.jami.Jami.svg │ │ │ ├── net.kuribo64.melonDS.svg │ │ │ ├── net.lutris.Lutris.svg │ │ │ ├── net.mediaarea.BWFMetaEdit.svg │ │ │ ├── net.mediaarea.MediaInfo.svg │ │ │ ├── net.minetest.Minetest.svg │ │ │ ├── net.mullvad.MullvadBrowser.svg │ │ │ ├── net.pcsx2.PCSX2.svg │ │ │ ├── net.poedit.Poedit.svg │ │ │ ├── net.puddletag.puddletag.svg │ │ │ ├── net.rpcs3.RPCS3.svg │ │ │ ├── net.scribus.Scribus.svg │ │ │ ├── net.sourceforge.Hugin.svg │ │ │ ├── net.sourceforge.electrip.Electrip.svg │ │ │ ├── net.sourceforge.liferea.svg │ │ │ ├── net.sourceforge.maxima.svg │ │ │ ├── net.sourceforge.mcomix.svg │ │ │ ├── net.sourceforge.osmo.svg │ │ │ ├── net.sourceforge.pdfchain.svg │ │ │ ├── net.sourceforge.projectM.svg │ │ │ ├── net.sourceforge.qtpfsgui.LuminanceHDR.svg │ │ │ ├── net.sourceforge.xournal.svg │ │ │ ├── net.studio08.xbplay.svg │ │ │ ├── net.supertuxkart.SuperTuxKart.svg │ │ │ ├── net.waterfox.waterfox.svg │ │ │ ├── net.xm1math.Texmaker.svg │ │ │ ├── net.xmind.XMind.svg │ │ │ ├── net.xmind.XMind8.svg │ │ │ ├── net.xmind.ZEN.svg │ │ │ ├── netbeans-beta.svg │ │ │ ├── netbeans-ide.svg │ │ │ ├── netbeans.svg │ │ │ ├── netease-cloud-music-gtk.svg │ │ │ ├── netease-cloud-music.svg │ │ │ ├── netpkg.svg │ │ │ ├── network-bluetooth-activated.svg │ │ │ ├── network-bluetooth.svg │ │ │ ├── network-chrome.svg │ │ │ ├── network-chromium.svg │ │ │ ├── network-defaultroute.svg │ │ │ ├── network-firewall.svg │ │ │ ├── network-idle.svg │ │ │ ├── network-mail-reader.svg │ │ │ ├── network-mail.svg │ │ │ ├── network-manager.svg │ │ │ ├── network-opera.svg │ │ │ ├── network-preference.svg │ │ │ ├── network-preferences.svg │ │ │ ├── network-wired.svg │ │ │ ├── network-workgroup.svg │ │ │ ├── network.cycles.wdisplays │ │ │ ├── network.svg │ │ │ ├── networkmanager.svg │ │ │ ├── news-feed.svg │ │ │ ├── newsflash.svg │ │ │ ├── nextcloud-icon-128.svg │ │ │ ├── nextcloud-icon-16.svg │ │ │ ├── nextcloud-icon-22.svg │ │ │ ├── nextcloud-icon-256.svg │ │ │ ├── nextcloud-icon-32.svg │ │ │ ├── nextcloud-icon-48.svg │ │ │ ├── nextcloud-icon-512.svg │ │ │ ├── nextcloud-icon-64.svg │ │ │ ├── nextcloud-icon-96.svg │ │ │ ├── nextcloud-icon.svg │ │ │ ├── nextcloud.svg │ │ │ ├── nfoview.svg │ │ │ ├── nicotine-plus.svg │ │ │ ├── nimbus.svg │ │ │ ├── nitro.svg │ │ │ ├── nitrotasks.svg │ │ │ ├── nixnote.svg │ │ │ ├── nixos.png │ │ │ ├── nl.brixit.powersupply.svg │ │ │ ├── nl.hjdskes.Gcolor3.svg │ │ │ ├── nl.hjdskes.gcolor3.svg │ │ │ ├── nl.openoffice.bluefish.svg │ │ │ ├── nl.sarine.gpx-viewer.svg │ │ │ ├── nm-device-wireless.svg │ │ │ ├── nmap.svg │ │ │ ├── nmap_icon.svg │ │ │ ├── nmm_qt_client.svg │ │ │ ├── noblenote.svg │ │ │ ├── nocover.svg │ │ │ ├── nocturn-linux.svg │ │ │ ├── nocturn.svg │ │ │ ├── noise.svg │ │ │ ├── nomacs.svg │ │ │ ├── normcap.svg │ │ │ ├── nos-tv.svg │ │ │ ├── note.svg │ │ │ ├── notecase.svg │ │ │ ├── notepad-48.svg │ │ │ ├── notepad.svg │ │ │ ├── notepadqq.svg │ │ │ ├── notes-app.svg │ │ │ ├── notes.svg │ │ │ ├── notification-network-proxy-disabled.svg │ │ │ ├── notification-network-proxy-enabled.svg │ │ │ ├── notification-network-proxy.svg │ │ │ ├── notification-symbolic.svg │ │ │ ├── notification.svg │ │ │ ├── notifications-applet-symbolic.svg │ │ │ ├── notifications-applet.svg │ │ │ ├── notifications.svg │ │ │ ├── notifyconf.svg │ │ │ ├── ntfs-config.svg │ │ │ ├── nut-monitor.svg │ │ │ ├── nutty.svg │ │ │ ├── nuvalaplayer.svg │ │ │ ├── nuvalaplayer3.svg │ │ │ ├── nuvolaplayer.svg │ │ │ ├── nuvolaplayer3.svg │ │ │ ├── nuvolaplayer3_google_play_music.svg │ │ │ ├── nuvolaplayer3_groove.svg │ │ │ ├── nuvolaplayer3_mixcloud.svg │ │ │ ├── nuvolaplayer3_plex.svg │ │ │ ├── nuvolaplayer3_soundcloud.svg │ │ │ ├── nuvolaplayer3_spotify.svg │ │ │ ├── nuvolaplayer3_yandex_music.svg │ │ │ ├── nuvolaplayer3_youtube.svg │ │ │ ├── nvclock-gtk.svg │ │ │ ├── nvclock.svg │ │ │ ├── nvdock.svg │ │ │ ├── nvidia-304-settings.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 │ │ │ ├── nvmax.svg │ │ │ ├── nx-software-center.svg │ │ │ ├── nx-software-updater.svg │ │ │ ├── nxclient-wizard.svg │ │ │ ├── nxterm.svg │ │ │ ├── nylas-N1.svg │ │ │ ├── nylas-mail.svg │ │ │ ├── nylas-n1.svg │ │ │ ├── nylas.svg │ │ │ ├── nz.mega.MEGAsync.svg │ │ │ ├── obconf-qt.svg │ │ │ ├── obconf.svg │ │ │ ├── obs-tray.svg │ │ │ ├── obs.svg │ │ │ ├── obsidian.svg │ │ │ ├── ocsstore.svg │ │ │ ├── octave-icon.svg │ │ │ ├── octave-logo.svg │ │ │ ├── octave.svg │ │ │ ├── octopi-indicator.svg │ │ │ ├── octopi-info.svg │ │ │ ├── octopi-ok.svg │ │ │ ├── octopi-repoeditor.svg │ │ │ ├── octopi.svg │ │ │ ├── odio.svg │ │ │ ├── odrive.svg │ │ │ ├── office-address-book.svg │ │ │ ├── office-addressbook.svg │ │ │ ├── office-calendar-symbolic.svg │ │ │ ├── office-calendar.svg │ │ │ ├── office-date.svg │ │ │ ├── office-printer.svg │ │ │ ├── office_address_book.svg │ │ │ ├── office_addressbook.svg │ │ │ ├── ogle.svg │ │ │ ├── ogmrip.svg │ │ │ ├── okteta.svg │ │ │ ├── okular.svg │ │ │ ├── omgrip.svg │ │ │ ├── onboard-mono.svg │ │ │ ├── onboard-settings.svg │ │ │ ├── onboard.svg │ │ │ ├── onenote.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-calc.svg │ │ │ ├── ooo-calc2.svg │ │ │ ├── ooo-calc24.svg │ │ │ ├── ooo-calc3.0.svg │ │ │ ├── ooo-draw.svg │ │ │ ├── ooo-draw24.svg │ │ │ ├── ooo-draw3.0.svg │ │ │ ├── ooo-impress.svg │ │ │ ├── ooo-impress2.svg │ │ │ ├── ooo-impress24.svg │ │ │ ├── ooo-impress3.0.svg │ │ │ ├── ooo-math.svg │ │ │ ├── ooo-math2.svg │ │ │ ├── ooo-math24.svg │ │ │ ├── ooo-math3.0.svg │ │ │ ├── ooo-printeradmin.svg │ │ │ ├── ooo-template-default.svg │ │ │ ├── ooo-template.svg │ │ │ ├── ooo-template3.0.svg │ │ │ ├── ooo-web.svg │ │ │ ├── ooo-web2.svg │ │ │ ├── ooo-web24.svg │ │ │ ├── ooo-writer.svg │ │ │ ├── ooo-writer2.svg │ │ │ ├── ooo-writer24.svg │ │ │ ├── ooo-writer3.0.svg │ │ │ ├── open-raw.svg │ │ │ ├── openbox.svg │ │ │ ├── opencubicplayer.svg │ │ │ ├── openerp-client.svg │ │ │ ├── openjdk-10.svg │ │ │ ├── openjdk-11.svg │ │ │ ├── openjdk-12.svg │ │ │ ├── openjdk-13.svg │ │ │ ├── openjdk-14.svg │ │ │ ├── openjdk-15.svg │ │ │ ├── openjdk-16.svg │ │ │ ├── openjdk-17.svg │ │ │ ├── openjdk-6.svg │ │ │ ├── openjdk-7.svg │ │ │ ├── openjdk-8.svg │ │ │ ├── openjdk-9.svg │ │ │ ├── openoffice4-calc.svg │ │ │ ├── openoffice4-draw.svg │ │ │ ├── openoffice4-math.svg │ │ │ ├── openoffice4-printeradmin.svg │ │ │ ├── openofficeorg-20-math.svg │ │ │ ├── openofficeorg-calc.svg │ │ │ ├── openofficeorg-draw.svg │ │ │ ├── openofficeorg-impress.svg │ │ │ ├── openofficeorg-math.svg │ │ │ ├── openofficeorg-printeradmin.svg │ │ │ ├── openofficeorg-template.svg │ │ │ ├── openofficeorg-web.svg │ │ │ ├── openofficeorg-writer.svg │ │ │ ├── openofficeorg24-calc.svg │ │ │ ├── openofficeorg24-draw.svg │ │ │ ├── openofficeorg24-impress.svg │ │ │ ├── openofficeorg24-math.svg │ │ │ ├── openofficeorg24-web.svg │ │ │ ├── openofficeorg24-writer.svg │ │ │ ├── openofficeorg3-calc.svg │ │ │ ├── openofficeorg3-draw.svg │ │ │ ├── openofficeorg3-impress.svg │ │ │ ├── openofficeorg3-math.svg │ │ │ ├── openofficeorg3-printeradmin.svg │ │ │ ├── openofficeorg3-template.svg │ │ │ ├── openofficeorg3-web.svg │ │ │ ├── openofficeorg3-writer.svg │ │ │ ├── openofficeorg3.0-calc.svg │ │ │ ├── openofficeorg3.0-draw.svg │ │ │ ├── openofficeorg3.0-impress.svg │ │ │ ├── openofficeorg3.0-math.svg │ │ │ ├── openofficeorg3.0-printeradmin.svg │ │ │ ├── openofficeorg3.0-template.svg │ │ │ ├── openofficeorg3.0-writer.svg │ │ │ ├── openrgb.svg │ │ │ ├── openshot-logo.svg │ │ │ ├── openshot-qt.svg │ │ │ ├── openshot.svg │ │ │ ├── openshot_logo.svg │ │ │ ├── openterm.svg │ │ │ ├── opentodolist.svg │ │ │ ├── openvpn.svg │ │ │ ├── openwmail.svg │ │ │ ├── opera-beta.svg │ │ │ ├── opera-browser-.svg │ │ │ ├── opera-browser-developer.svg │ │ │ ├── opera-browser-icon.svg │ │ │ ├── opera-browser-icons.svg │ │ │ ├── opera-browser.svg │ │ │ ├── opera-developer.svg │ │ │ ├── opera-icon.svg │ │ │ ├── opera-next-browser.svg │ │ │ ├── opera-next.svg │ │ │ ├── opera-widget-manager.svg │ │ │ ├── opera-widget.svg │ │ │ ├── opera.svg │ │ │ ├── oracle-javaws.svg │ │ │ ├── oracle-sqldeveloper.svg │ │ │ ├── oracle_java10.svg │ │ │ ├── oracle_java11.svg │ │ │ ├── oracle_java12.svg │ │ │ ├── oracle_java13.svg │ │ │ ├── oracle_java14.svg │ │ │ ├── oracle_java15.svg │ │ │ ├── oracle_java16.svg │ │ │ ├── oracle_java17.svg │ │ │ ├── oracle_java6.svg │ │ │ ├── oracle_java7.svg │ │ │ ├── oracle_java8.svg │ │ │ ├── oracle_java9.svg │ │ │ ├── orage.svg │ │ │ ├── orage_globaltime.svg │ │ │ ├── orancle-java.svg │ │ │ ├── orancle_java.svg │ │ │ ├── orancle_java6.svg │ │ │ ├── orancle_java7.svg │ │ │ ├── orancle_java8.svg │ │ │ ├── orancle_java9.svg │ │ │ ├── orancle_javaws.svg │ │ │ ├── orca.svg │ │ │ ├── org,gnome.Games.svg │ │ │ ├── org.20.notes.svg │ │ │ ├── org.DolphinEmu.dolphin-emu.svg │ │ │ ├── org.apache.netbeans-beta.svg │ │ │ ├── org.apache.netbeans.svg │ │ │ ├── org.ardour.Ardour.svg │ │ │ ├── org.ardour.Ardour5.svg │ │ │ ├── org.ardour.Ardour6.svg │ │ │ ├── org.atheme.audacious.svg │ │ │ ├── org.audacious_media_player.Audacious.svg │ │ │ ├── org.audacityteam.Audacity.svg │ │ │ ├── org.avidemux.Avidemux.svg │ │ │ ├── org.baedert.corebird.svg │ │ │ ├── org.bitbucket.mystery_keeper.VapourSynthEditor.svg │ │ │ ├── org.bitcoincore.bitcoin-qt.svg │ │ │ ├── org.blackcoin.blackcoin-more.svg │ │ │ ├── org.blender.Blender.svg │ │ │ ├── org.bluesabre.MenuLibre.svg │ │ │ ├── org.buddiesofbudgie.Settings-accessibility.svg │ │ │ ├── org.buddiesofbudgie.Settings-appearance-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-applications-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-bluetooth-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-color-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-default-apps-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-display-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-file-history-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-location-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-mobile-network-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-multitasking-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-notifications-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-online-accounts-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-power-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-region-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-sharing-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-sound-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-thunderbolt-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-time-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-users-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings.svg │ │ │ ├── org.buddiesofbudgie.budgie-desktop-view.svg │ │ │ ├── org.bunkus.mkvtoolnix-gui.svg │ │ │ ├── org.chromium.Chromium.svg │ │ │ ├── org.citra_emu.citra.svg │ │ │ ├── org.claws_mail.Claws-Mail.svg │ │ │ ├── org.clawsmail.Claws.svg │ │ │ ├── org.clementine_player.Clementine.svg │ │ │ ├── org.codeberg.dimkard.glossaico.svg │ │ │ ├── org.codeblocks.codeblocks.svg │ │ │ ├── org.communia.ttrssPocket.svg │ │ │ ├── org.cryptomator.Cryptomator.svg │ │ │ ├── org.cubocore.CoreKeyboard.svg │ │ │ ├── org.cubocore.CorePDF.svg │ │ │ ├── org.cubocore.CorePad.svg │ │ │ ├── org.cunidev.gestures.svg │ │ │ ├── org.darktable.Darktable.svg │ │ │ ├── org.debian.galternatives.svg │ │ │ ├── org.deepin.browser.svg │ │ │ ├── org.deepin.contacts.svg │ │ │ ├── org.deepin.flatdeb.deepin-calculator.svg │ │ │ ├── org.deepin.flatdeb.deepin-calendar.svg │ │ │ ├── org.deepin.flatdeb.deepin-image-viewer.svg │ │ │ ├── org.deepin.flatdeb.deepin-movie.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.deluge_torrent.deluge.svg │ │ │ ├── org.delugetorrent.Deluge.svg │ │ │ ├── org.desmume.DeSmuME.svg │ │ │ ├── org.dharkael.Flameshot.svg │ │ │ ├── org.duckstation.DuckStation.svg │ │ │ ├── org.eclipse.Committers.svg │ │ │ ├── org.eclipse.Eclipse.svg │ │ │ ├── org.eclipse.Java.svg │ │ │ ├── org.eclipse.Javascript.svg │ │ │ ├── org.electronjs.Electron.BaseApp.svg │ │ │ ├── org.electronjs.Electron12.BaseApp.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.electronjs.Electron7.BaseApp.svg │ │ │ ├── org.electronjs.Electron8.BaseApp.svg │ │ │ ├── org.electronjs.Electron9.BaseApp.svg │ │ │ ├── org.emilien.Password.svg │ │ │ ├── org.emilien.SpaceLaunch.svg │ │ │ ├── org.equeim.Tremotesf.svg │ │ │ ├── org.eu.encom.matrique.svg │ │ │ ├── org.fcitx.Fcitx5.svg │ │ │ ├── org.fedoraproject.MediaWriter.svg │ │ │ ├── org.ferdium.Ferdium.svg │ │ │ ├── org.filezillaproject.Filezilla.svg │ │ │ ├── org.filmulator.Filmulator.svg │ │ │ ├── org.flameshot.Flameshot.svg │ │ │ ├── org.flarerpg.Flare.svg │ │ │ ├── org.flightgear.FlightGear.svg │ │ │ ├── org.fontforge.FontForge.svg │ │ │ ├── org.freac.freac.svg │ │ │ ├── org.freecadweb.FreeCAD.svg │ │ │ ├── org.freedesktop.GlxInfo.svg │ │ │ ├── org.freedesktop.GnomeAbrt.svg │ │ │ ├── org.freedesktop.IBus.Panel.Extension.Gtk3.svg │ │ │ ├── org.freedesktop.IBus.Setup.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.openjdk12.svg │ │ │ ├── org.freedesktop.Sdk.Extension.openjdk13.svg │ │ │ ├── org.freedesktop.Sdk.Extension.openjdk14.svg │ │ │ ├── org.freedesktop.Sdk.Extension.openjdk15.svg │ │ │ ├── org.freedesktop.Sdk.Extension.openjdk16.svg │ │ │ ├── org.freedesktop.Sdk.Extension.openjdk17.svg │ │ │ ├── org.freedesktop.Sdk.Extension.openjdk8.svg │ │ │ ├── org.freedesktop.Sdk.Extension.openjdk9.svg │ │ │ ├── org.freedesktop.fwupd.svg │ │ │ ├── org.freedesktop.problems.applet.svg │ │ │ ├── org.freedownloadmanager.Manager.svg │ │ │ ├── org.freefilesync.FreeFileSync.svg │ │ │ ├── org.gabmus.gfeeds.svg │ │ │ ├── org.gabmus.gnome-feeds.svg │ │ │ ├── org.gabmus.whatip.svg │ │ │ ├── org.gajim.Gajim.svg │ │ │ ├── org.geany.Geany.svg │ │ │ ├── org.geeqie.Geeqie.svg │ │ │ ├── org.geogebra.GeoGebra.svg │ │ │ ├── org.gimp.GIMP.svg │ │ │ ├── org.gmusicbrowser.gmusicbrowser.svg │ │ │ ├── org.gnome-Boxes.svg │ │ │ ├── org.gnome.2048.svg │ │ │ ├── org.gnome.Aisleriot.svg │ │ │ ├── org.gnome.ArchiveManager-symbolic.svg │ │ │ ├── org.gnome.ArchiveManager-symbolic.symbolic.svg │ │ │ ├── org.gnome.ArchiveManager.svg │ │ │ ├── org.gnome.Atomix.svg │ │ │ ├── org.gnome.Baobab.svg │ │ │ ├── org.gnome.BatteryBench.svg │ │ │ ├── org.gnome.Bijiben.svg │ │ │ ├── org.gnome.Books.svg │ │ │ ├── org.gnome.Boxes-symbolic.svg │ │ │ ├── org.gnome.Boxes.svg │ │ │ ├── org.gnome.BreakTimer.svg │ │ │ ├── org.gnome.BrowserConnector.svg │ │ │ ├── org.gnome.Builder.svg │ │ │ ├── org.gnome.Calculator.svg │ │ │ ├── org.gnome.Calendar-symbolic.svg │ │ │ ├── org.gnome.Calendar.svg │ │ │ ├── org.gnome.Camara.svg │ │ │ ├── org.gnome.CharacterMap.svg │ │ │ ├── org.gnome.Characters-symbolic.svg │ │ │ ├── org.gnome.Characters.svg │ │ │ ├── org.gnome.Chatty.svg │ │ │ ├── org.gnome.Cheese-symbolic.svg │ │ │ ├── org.gnome.Cheese.svg │ │ │ ├── org.gnome.ChromeGnomeShell.svg │ │ │ ├── org.gnome.Clocks.svg │ │ │ ├── org.gnome.ColorProfileViewer.svg │ │ │ ├── org.gnome.ColorViewer.svg │ │ │ ├── org.gnome.Connections.svg │ │ │ ├── org.gnome.Console.svg │ │ │ ├── org.gnome.Contacts-symbolic.svg │ │ │ ├── org.gnome.Contacts.svg │ │ │ ├── org.gnome.DejaDup.svg │ │ │ ├── org.gnome.Devhelp.svg │ │ │ ├── org.gnome.Dictionary.svg │ │ │ ├── org.gnome.DiskUtility-symbolic.svg │ │ │ ├── org.gnome.DiskUtility.svg │ │ │ ├── org.gnome.Disks.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.FontManager.svg │ │ │ ├── org.gnome.FontViewer.svg │ │ │ ├── org.gnome.Fonts.svg │ │ │ ├── org.gnome.Fragments.svg │ │ │ ├── org.gnome.GHex.svg │ │ │ ├── org.gnome.GSmartControl.svg │ │ │ ├── org.gnome.GTG.svg │ │ │ ├── org.gnome.Games.svg │ │ │ ├── org.gnome.Geany.svg │ │ │ ├── org.gnome.Geary.svg │ │ │ ├── org.gnome.Gedit.svg │ │ │ ├── org.gnome.Genius.svg │ │ │ ├── org.gnome.Glade.svg │ │ │ ├── org.gnome.Gnote.svg │ │ │ ├── org.gnome.IconPreview.svg │ │ │ ├── org.gnome.LightsOff.svg │ │ │ ├── org.gnome.Logs.svg │ │ │ ├── org.gnome.Lollypop-symbolic.svg │ │ │ ├── org.gnome.Lollypop.svg │ │ │ ├── org.gnome.Loupe.svg │ │ │ ├── org.gnome.Mahjongg.svg │ │ │ ├── org.gnome.Maps.svg │ │ │ ├── org.gnome.Meld.svg │ │ │ ├── org.gnome.Mines.svg │ │ │ ├── org.gnome.Mpv.svg │ │ │ ├── org.gnome.MultiWriter.svg │ │ │ ├── org.gnome.Music.svg │ │ │ ├── org.gnome.Nautilus.svg │ │ │ ├── org.gnome.NetworkDisplays.svg │ │ │ ├── org.gnome.News.svg │ │ │ ├── org.gnome.Notes.svg │ │ │ ├── org.gnome.PackageUpdater.svg │ │ │ ├── org.gnome.Packages.svg │ │ │ ├── org.gnome.Passbook.svg │ │ │ ├── org.gnome.PasswordSafe.svg │ │ │ ├── org.gnome.Photos.svg │ │ │ ├── org.gnome.Pitivi.svg │ │ │ ├── org.gnome.Podcasts.svg │ │ │ ├── org.gnome.Polari.svg │ │ │ ├── org.gnome.Pomodoro.svg │ │ │ ├── org.gnome.PowerStats-symbolic.svg │ │ │ ├── org.gnome.PowerStats.svg │ │ │ ├── org.gnome.Radio.svg │ │ │ ├── org.gnome.Rhythmbox.svg │ │ │ ├── org.gnome.Rhythmbox3.svg │ │ │ ├── org.gnome.Screenshot.svg │ │ │ ├── org.gnome.Seahorse.svg │ │ │ ├── org.gnome.Settings-about-symbolic.svg │ │ │ ├── org.gnome.Settings-about-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-about.svg │ │ │ ├── org.gnome.Settings-accessibility-symbolic.svg │ │ │ ├── org.gnome.Settings-accessibility-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-accessibility.svg │ │ │ ├── org.gnome.Settings-appearance-symbolic.svg │ │ │ ├── org.gnome.Settings-applications-symbolic.svg │ │ │ ├── org.gnome.Settings-applications-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-applications.svg │ │ │ ├── org.gnome.Settings-bluetooth-symbolic.svg │ │ │ ├── org.gnome.Settings-bluetooth-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-bluetooth.svg │ │ │ ├── org.gnome.Settings-camera-symbolic.svg │ │ │ ├── org.gnome.Settings-camera-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-camera.svg │ │ │ ├── org.gnome.Settings-color-symbolic.svg │ │ │ ├── org.gnome.Settings-color-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-color.svg │ │ │ ├── org.gnome.Settings-default-apps-symbolic.svg │ │ │ ├── org.gnome.Settings-default-apps-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-default-apps.svg │ │ │ ├── org.gnome.Settings-diagnostics-symbolic.svg │ │ │ ├── org.gnome.Settings-diagnostics.svg │ │ │ ├── org.gnome.Settings-display-symbolic.svg │ │ │ ├── org.gnome.Settings-display-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-display.svg │ │ │ ├── org.gnome.Settings-file-history-symbolic.svg │ │ │ ├── org.gnome.Settings-keyboard-symbolic.svg │ │ │ ├── org.gnome.Settings-keyboard-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-keyboard.svg │ │ │ ├── org.gnome.Settings-location-symbolic.svg │ │ │ ├── org.gnome.Settings-location-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-location.svg │ │ │ ├── org.gnome.Settings-microphone-symbolic.svg │ │ │ ├── org.gnome.Settings-microphone-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-microphone.svg │ │ │ ├── org.gnome.Settings-mouse-symbolic.svg │ │ │ ├── org.gnome.Settings-mouse-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-mouse.svg │ │ │ ├── org.gnome.Settings-multitasking-symbolic.svg │ │ │ ├── org.gnome.Settings-network-symbolic.svg │ │ │ ├── org.gnome.Settings-notifications-symbolic.svg │ │ │ ├── org.gnome.Settings-notifications-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-notifications.svg │ │ │ ├── org.gnome.Settings-online-accounts-symbolic.svg │ │ │ ├── org.gnome.Settings-online-accounts-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-online-accounts.svg │ │ │ ├── org.gnome.Settings-power-symbolic.svg │ │ │ ├── org.gnome.Settings-power-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-power.svg │ │ │ ├── org.gnome.Settings-printers-symbolic.svg │ │ │ ├── org.gnome.Settings-printers-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-printers.svg │ │ │ ├── org.gnome.Settings-region-symbolic.svg │ │ │ ├── org.gnome.Settings-region-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-region.svg │ │ │ ├── org.gnome.Settings-screen-lock-symbolic.svg │ │ │ ├── org.gnome.Settings-screen-lock-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-screen-lock.svg │ │ │ ├── org.gnome.Settings-screen-symbolic.svg │ │ │ ├── org.gnome.Settings-screen-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-screen.svg │ │ │ ├── org.gnome.Settings-search-symbolic.svg │ │ │ ├── org.gnome.Settings-search-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-search.svg │ │ │ ├── org.gnome.Settings-sharing-symbolic.svg │ │ │ ├── org.gnome.Settings-sharing-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-sharing.svg │ │ │ ├── org.gnome.Settings-sound-symbolic.svg │ │ │ ├── org.gnome.Settings-symbolic.svg │ │ │ ├── org.gnome.Settings-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-thunderbolt-symbolic.svg │ │ │ ├── org.gnome.Settings-time-symbolic.svg │ │ │ ├── org.gnome.Settings-users-symbolic.svg │ │ │ ├── org.gnome.Settings-users-symbolic.symbolic.svg │ │ │ ├── org.gnome.Settings-users.svg │ │ │ ├── org.gnome.Settings.svg │ │ │ ├── org.gnome.Shell.Extensions.GSConnect.svg │ │ │ ├── org.gnome.Shell.Extensions.svg │ │ │ ├── org.gnome.Shortwave.svg │ │ │ ├── org.gnome.Shotwell.svg │ │ │ ├── org.gnome.SimpleScan.svg │ │ │ ├── org.gnome.Snapshot.svg │ │ │ ├── org.gnome.Software-symbolic.svg │ │ │ ├── org.gnome.Software-symbolic.symbolic.svg │ │ │ ├── org.gnome.Software.Editor.svg │ │ │ ├── org.gnome.Software.svg │ │ │ ├── org.gnome.SoundJuicer.svg │ │ │ ├── org.gnome.SoundRecorder.svg │ │ │ ├── org.gnome.Sysprof.svg │ │ │ ├── org.gnome.Sysprof2.svg │ │ │ ├── org.gnome.Sysprof3.svg │ │ │ ├── org.gnome.SystemMonitor.svg │ │ │ ├── org.gnome.Tali.svg │ │ │ ├── org.gnome.Tau.svg │ │ │ ├── org.gnome.Terminal-symbolic.svg │ │ │ ├── org.gnome.Terminal-symbolic.symbolic.svg │ │ │ ├── org.gnome.Terminal.svg │ │ │ ├── org.gnome.TextEditor.svg │ │ │ ├── org.gnome.Todo.svg │ │ │ ├── org.gnome.Tomboy.svg │ │ │ ├── org.gnome.Totem.svg │ │ │ ├── org.gnome.Tour.svg │ │ │ ├── org.gnome.Tweaks.svg │ │ │ ├── org.gnome.TwentyFortyEight.svg │ │ │ ├── org.gnome.Usage.svg │ │ │ ├── org.gnome.Video.svg │ │ │ ├── org.gnome.Videos.svg │ │ │ ├── org.gnome.Weather.Application.svg │ │ │ ├── org.gnome.Weather.Application.svg} │ │ │ ├── org.gnome.Weather.svg │ │ │ ├── org.gnome.World.Highscore.svg │ │ │ ├── org.gnome.World.PikaBackup.svg │ │ │ ├── org.gnome.World.Secrets.svg │ │ │ ├── org.gnome.Yelp-symbolic.svg │ │ │ ├── org.gnome.Yelp.svg │ │ │ ├── org.gnome.almanah.svg │ │ │ ├── org.gnome.atomix.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.chromegnomeshell.svg │ │ │ ├── org.gnome.clocks-symbolic.svg │ │ │ ├── org.gnome.clocks-symbolic.symbolic.svg │ │ │ ├── org.gnome.clocks.svg │ │ │ ├── org.gnome.contacts.svg │ │ │ ├── org.gnome.dconf-editor.svg │ │ │ ├── org.gnome.dejadup.svg │ │ │ ├── org.gnome.design.AppIconPreview.svg │ │ │ ├── org.gnome.design.Palette.svg │ │ │ ├── org.gnome.dfeet.svg │ │ │ ├── org.gnome.documents.svg │ │ │ ├── org.gnome.eog-symbolic.svg │ │ │ ├── org.gnome.eog.svg │ │ │ ├── org.gnome.epiphany.svg │ │ │ ├── org.gnome.evince.svg │ │ │ ├── org.gnome.feedreader.svg │ │ │ ├── org.gnome.files.svg │ │ │ ├── org.gnome.font-viewer.svg │ │ │ ├── org.gnome.gThumb.svg │ │ │ ├── org.gnome.games.svg │ │ │ ├── org.gnome.gbrainy.svg │ │ │ ├── org.gnome.gedit-symbolic.svg │ │ │ ├── org.gnome.gedit.svg │ │ │ ├── org.gnome.ghex.svg │ │ │ ├── org.gnome.gitg.svg │ │ │ ├── org.gnome.gitlab.somas.Apostrophe.svg │ │ │ ├── org.gnome.gnome-2048.svg │ │ │ ├── org.gnome.gnome-latex.svg │ │ │ ├── org.gnome.gnome-mahjongg.svg │ │ │ ├── org.gnome.gtk-lshw.svg │ │ │ ├── org.gnome.lollypop.svg │ │ │ ├── org.gnome.mahjongg.svg │ │ │ ├── org.gnome.maps.svg │ │ │ ├── org.gnome.meld.svg │ │ │ ├── org.gnome.mines.svg │ │ │ ├── org.gnome.music.svg │ │ │ ├── org.gnome.nautilus.svg │ │ │ ├── org.gnome.photos-symbolic.svg │ │ │ ├── org.gnome.photos-symbolic.symbolic.svg │ │ │ ├── org.gnome.photos.svg │ │ │ ├── org.gnome.polari.svg │ │ │ ├── org.gnome.powerstats.svg │ │ │ ├── org.gnome.seahorse.Application.svg │ │ │ ├── org.gnome.software.svg │ │ │ ├── org.gnome.todo.svg │ │ │ ├── org.gnome.totem.svg │ │ │ ├── org.gnome.tweak.svg │ │ │ ├── org.gnome.tweaks-symbolic.svg │ │ │ ├── org.gnome.tweaks.desktop.svg │ │ │ ├── org.gnome.tweaks.svg │ │ │ ├── org.gnome.usage.svg │ │ │ ├── org.gnome.weather.application.svg │ │ │ ├── org.gnome.weather.svg │ │ │ ├── org.gnome.web.svg │ │ │ ├── org.gnome.zbrown.KingsCross.svg │ │ │ ├── org.gnome.zbrown.Palette.svg │ │ │ ├── org.gnu.emacs.svg │ │ │ ├── org.gnu.pspp.svg │ │ │ ├── org.gnucash.GnuCash.svg │ │ │ ├── org.gnumeric.Gnumeric.svg │ │ │ ├── org.godotengine.Godot.svg │ │ │ ├── org.godotengine.Godot3.svg │ │ │ ├── org.goldendict.GoldenDict.svg │ │ │ ├── org.goldendict.desktop.svg │ │ │ ├── org.google.chrome.svg │ │ │ ├── org.gottcode.FocusWriter.svg │ │ │ ├── org.gottcode.Kapow.svg │ │ │ ├── org.gpodder.gpodder.svg │ │ │ ├── org.greenfoot.Greenfoot.svg │ │ │ ├── org.gtk.Demo3.svg │ │ │ ├── org.gtk.Demo4.svg │ │ │ ├── org.gtk.IconBrowser3.svg │ │ │ ├── org.gtk.IconBrowser4.svg │ │ │ ├── org.gtk.PrintEditor4.svg │ │ │ ├── org.gtk.WidgetFactory3.svg │ │ │ ├── org.gtk.WidgetFactory4.svg │ │ │ ├── org.gtkhash.gtkhash.svg │ │ │ ├── org.gustavoperedo.VideoDownloader.svg │ │ │ ├── org.homelinuxserver.vance.biblereader.svg │ │ │ ├── org.hydrogenmusic.Hydrogen.svg │ │ │ ├── org.hydrogenmusic.hydrogen.svg │ │ │ ├── org.inkscape.Inkscape.svg │ │ │ ├── org.jdownloader.JDownloader.svg │ │ │ ├── org.jellyfin.JellyfinServer.svg │ │ │ ├── org.jitsi.jitsi-meet.svg │ │ │ ├── org.joplinapp.joplin.svg │ │ │ ├── org.kde.ConfigurePrinter.svg │ │ │ ├── org.kde.Gwenview.svg │ │ │ ├── org.kde.Help.svg │ │ │ ├── org.kde.Ikona.svg │ │ │ ├── org.kde.akregator.svg │ │ │ ├── org.kde.alligator.svg │ │ │ ├── org.kde.amarok.svg │ │ │ ├── org.kde.archUpdate.svg │ │ │ ├── org.kde.ark.svg │ │ │ ├── org.kde.audiotube.svg │ │ │ ├── org.kde.babe.svg │ │ │ ├── org.kde.basket.svg │ │ │ ├── org.kde.blinken.svg │ │ │ ├── org.kde.blogilo.svg │ │ │ ├── org.kde.calindori.svg │ │ │ ├── org.kde.calligraauthor.svg │ │ │ ├── org.kde.calligraplan.svg │ │ │ ├── org.kde.calligrasheets.svg │ │ │ ├── org.kde.calligrastage.svg │ │ │ ├── org.kde.calligrawords.svg │ │ │ ├── org.kde.cantor.svg │ │ │ ├── org.kde.contrib.dayofmonth.svg │ │ │ ├── org.kde.contrib.dayofweek.svg │ │ │ ├── org.kde.digikam.svg │ │ │ ├── org.kde.discover.svg │ │ │ ├── org.kde.discovernotifier.svg │ │ │ ├── org.kde.distrowatcher.svg │ │ │ ├── org.kde.dolphin.svg │ │ │ ├── org.kde.dragon.svg │ │ │ ├── org.kde.dragonplayer.svg │ │ │ ├── org.kde.drkonqi.svg │ │ │ ├── org.kde.elisa.svg │ │ │ ├── org.kde.falkon.svg │ │ │ ├── org.kde.filelight.svg │ │ │ ├── org.kde.granatier.svg │ │ │ ├── org.kde.gwenview.svg │ │ │ ├── org.kde.haruna.svg │ │ │ ├── org.kde.ikona.svg │ │ │ ├── org.kde.index.svg │ │ │ ├── org.kde.isoimagewriter.svg │ │ │ ├── org.kde.juk.svg │ │ │ ├── org.kde.k3b.svg │ │ │ ├── org.kde.kaddressbook.svg │ │ │ ├── org.kde.kaffeine.svg │ │ │ ├── org.kde.kalarm.svg │ │ │ ├── org.kde.kalgebra.svg │ │ │ ├── org.kde.kalk.svg │ │ │ ├── org.kde.kamoso.svg │ │ │ ├── org.kde.kasts.svg │ │ │ ├── org.kde.kate.svg │ │ │ ├── org.kde.katomic.svg │ │ │ ├── org.kde.kbackup.svg │ │ │ ├── org.kde.kbibtex.svg │ │ │ ├── org.kde.kcachegrind.svg │ │ │ ├── org.kde.kcalc.svg │ │ │ ├── org.kde.kcharselect.svg │ │ │ ├── org.kde.kclock.svg │ │ │ ├── org.kde.kcolorchooser.svg │ │ │ ├── org.kde.kdeconnect-app.svg │ │ │ ├── org.kde.kdeconnect-sms.svg │ │ │ ├── org.kde.kdeconnect.kcm.svg │ │ │ ├── org.kde.kdeconnect.svg │ │ │ ├── org.kde.kdenlive.svg │ │ │ ├── org.kde.kdesearch.svg │ │ │ ├── org.kde.kdevelop.svg │ │ │ ├── org.kde.kdf.svg │ │ │ ├── org.kde.kdiff3.svg │ │ │ ├── org.kde.keysmith.svg │ │ │ ├── org.kde.kfind.svg │ │ │ ├── org.kde.kgeography.svg │ │ │ ├── org.kde.kget.svg │ │ │ ├── org.kde.kgpg.svg │ │ │ ├── org.kde.kgraphviewer.svg │ │ │ ├── org.kde.kid3.svg │ │ │ ├── org.kde.kile.svg │ │ │ ├── org.kde.kimtoy.svg │ │ │ ├── org.kde.kinfocenter.svg │ │ │ ├── org.kde.kjots.svg │ │ │ ├── org.kde.kjumpingcube.svg │ │ │ ├── org.kde.kleopatra.svg │ │ │ ├── org.kde.klettres.svg │ │ │ ├── org.kde.kmag.svg │ │ │ ├── org.kde.kmahjongg.svg │ │ │ ├── org.kde.kmail.svg │ │ │ ├── org.kde.kmail2.svg │ │ │ ├── org.kde.kmenuedit.svg │ │ │ ├── org.kde.kmines.svg │ │ │ ├── org.kde.kmix.svg │ │ │ ├── org.kde.kmplayer.svg │ │ │ ├── org.kde.knetattach.svg │ │ │ ├── org.kde.knetwalk.svg │ │ │ ├── org.kde.knights.svg │ │ │ ├── org.kde.knotes.svg │ │ │ ├── org.kde.kolourpaint.svg │ │ │ ├── org.kde.kompare.svg │ │ │ ├── org.kde.konqueror.svg │ │ │ ├── org.kde.konquest.svg │ │ │ ├── org.kde.konsole.svg │ │ │ ├── org.kde.kontact.svg │ │ │ ├── org.kde.konversation.svg │ │ │ ├── org.kde.kopete.svg │ │ │ ├── org.kde.korganizer.svg │ │ │ ├── org.kde.kpat.svg │ │ │ ├── org.kde.kphotoalbum.svg │ │ │ ├── org.kde.krdc.svg │ │ │ ├── org.kde.krecorder.svg │ │ │ ├── org.kde.krename.svg │ │ │ ├── org.kde.krfb.svg │ │ │ ├── org.kde.krita.svg │ │ │ ├── org.kde.kronometer.svg │ │ │ ├── org.kde.kruler.svg │ │ │ ├── org.kde.krusader.svg │ │ │ ├── org.kde.kstars.svg │ │ │ ├── org.kde.ksysguard.svg │ │ │ ├── org.kde.ksystemlog.svg │ │ │ ├── org.kde.kteatime.svg │ │ │ ├── org.kde.ktimer.svg │ │ │ ├── org.kde.ktimetracker.svg │ │ │ ├── org.kde.ktorrent.svg │ │ │ ├── org.kde.ktouch.svg │ │ │ ├── org.kde.ktpcontactlist.svg │ │ │ ├── org.kde.ktuberling.svg │ │ │ ├── org.kde.kwalletmanager5.svg │ │ │ ├── org.kde.kweather.svg │ │ │ ├── org.kde.kwordquiz.svg │ │ │ ├── org.kde.kwrite.svg │ │ │ ├── org.kde.labplot2.svg │ │ │ ├── org.kde.latte.plasmoid.svg │ │ │ ├── org.kde.latte.separator.svg │ │ │ ├── org.kde.lokalize.svg │ │ │ ├── org.kde.lskat.svg │ │ │ ├── org.kde.marble.svg │ │ │ ├── org.kde.milou.svg │ │ │ ├── org.kde.mobile.angelfish.svg │ │ │ ├── org.kde.mobile.calindori.svg │ │ │ ├── org.kde.neochat.svg │ │ │ ├── org.kde.networkMonitor.svg │ │ │ ├── org.kde.okteta.svg │ │ │ ├── org.kde.okular.svg │ │ │ ├── org.kde.pacman.updatenotifier.svg │ │ │ ├── org.kde.palapeli.svg │ │ │ ├── org.kde.partitionmanager.svg │ │ │ ├── org.kde.phone.calindori.svg │ │ │ ├── org.kde.pix.svg │ │ │ ├── org.kde.plasma.activitybar.svg │ │ │ ├── org.kde.plasma.activitypager.svg │ │ │ ├── org.kde.plasma.advancedradio.svg │ │ │ ├── org.kde.plasma.analogclock.svg │ │ │ ├── org.kde.plasma.audiodeviceswitcher.svg │ │ │ ├── org.kde.plasma.awesomewidget.svg │ │ │ ├── org.kde.plasma.battery.svg │ │ │ ├── org.kde.plasma.bluetooth.svg │ │ │ ├── org.kde.plasma.caffeine-plus.svg │ │ │ ├── org.kde.plasma.calculator.svg │ │ │ ├── org.kde.plasma.calendar.svg │ │ │ ├── org.kde.plasma.camera.svg │ │ │ ├── org.kde.plasma.clipboard.svg │ │ │ ├── org.kde.plasma.colorpicker.svg │ │ │ ├── org.kde.plasma.comic.svg │ │ │ ├── org.kde.plasma.date.svg │ │ │ ├── org.kde.plasma.device.svg │ │ │ ├── org.kde.plasma.diskquota.svg │ │ │ ├── org.kde.plasma.disks.svg │ │ │ ├── org.kde.plasma.eventcalendar.svg │ │ │ ├── org.kde.plasma.excalibur.svg │ │ │ ├── org.kde.plasma.folder.svg │ │ │ ├── org.kde.plasma.frame.svg │ │ │ ├── org.kde.plasma.gmailfeed.svg │ │ │ ├── org.kde.plasma.icontasks.svg │ │ │ ├── org.kde.plasma.katesessions.svg │ │ │ ├── org.kde.plasma.keyboardindicator.svg │ │ │ ├── org.kde.plasma.kickerdash.svg │ │ │ ├── org.kde.plasma.kickoff.svg │ │ │ ├── org.kde.plasma.kickofflegacy.svg │ │ │ ├── org.kde.plasma.konsoleprofiles.svg │ │ │ ├── org.kde.plasma.lock_logout.svg │ │ │ ├── org.kde.plasma.manage-inputmethod.svg │ │ │ ├── org.kde.plasma.mediacontroller.svg │ │ │ ├── org.kde.plasma.mediacontrollercompact.svg │ │ │ ├── org.kde.plasma.mediaframe.svg │ │ │ ├── org.kde.plasma.multimediacontrols.svg │ │ │ ├── org.kde.plasma.networkmanagement.svg │ │ │ ├── org.kde.plasma.notes.svg │ │ │ ├── org.kde.plasma.notifications.svg │ │ │ ├── org.kde.plasma.pager.svg │ │ │ ├── org.kde.plasma.printmanager.svg │ │ │ ├── org.kde.plasma.qalculate.svg │ │ │ ├── org.kde.plasma.quicklaunch.svg │ │ │ ├── org.kde.plasma.quickshare.svg │ │ │ ├── org.kde.plasma.showActivityManager.svg │ │ │ ├── org.kde.plasma.showactivitymanager.svg │ │ │ ├── org.kde.plasma.showdesktop.svg │ │ │ ├── org.kde.plasma.simplemenu.svg │ │ │ ├── org.kde.plasma.systemloadviewer.svg │ │ │ ├── org.kde.plasma.systemmonitor.cpu.svg │ │ │ ├── org.kde.plasma.systemmonitor.diskactivity.svg │ │ │ ├── org.kde.plasma.systemmonitor.diskusage.svg │ │ │ ├── org.kde.plasma.systemmonitor.memory.svg │ │ │ ├── org.kde.plasma.systemmonitor.net.svg │ │ │ ├── org.kde.plasma.systemtray.svg │ │ │ ├── org.kde.plasma.taskmanager.svg │ │ │ ├── org.kde.plasma.timer.svg │ │ │ ├── org.kde.plasma.userswitch.svg │ │ │ ├── org.kde.plasma.userswitcher.svg │ │ │ ├── org.kde.plasma.uswitcher.svg │ │ │ ├── org.kde.plasma.vault.svg │ │ │ ├── org.kde.plasma.volume.svg │ │ │ ├── org.kde.plasma.volumewin7mixer.svg │ │ │ ├── org.kde.plasma.weather.svg │ │ │ ├── org.kde.plasma.webbrowser.svg │ │ │ ├── org.kde.plasma.win7showdesktop.svg │ │ │ ├── org.kde.plasma.windowlist.svg │ │ │ ├── org.kde.plasmatube.svg │ │ │ ├── org.kde.popupLauncher.svg │ │ │ ├── org.kde.qmlkonsole.svg │ │ │ ├── org.kde.redshiftControl.svg │ │ │ ├── org.kde.resourcesMonitor.svg │ │ │ ├── org.kde.ring-kde.svg │ │ │ ├── org.kde.showfoto.svg │ │ │ ├── org.kde.shutdownOrSwitch.svg │ │ │ ├── org.kde.skanlite.svg │ │ │ ├── org.kde.skrooge.svg │ │ │ ├── org.kde.spectacle.svg │ │ │ ├── org.kde.store.nowdock.panel.svg │ │ │ ├── org.kde.subtitlecomposer.svg │ │ │ ├── org.kde.sweeper.svg │ │ │ ├── org.kde.thermalMonitor.svg │ │ │ ├── org.kde.trojita.svg │ │ │ ├── org.kde.uptimeWidget.svg │ │ │ ├── org.kde.vvave.svg │ │ │ ├── org.kde.weatherWidget.svg │ │ │ ├── org.kde.yakuake.svg │ │ │ ├── org.kdelook.nowdock.svg │ │ │ ├── org.keepassxc.KeePassXC-locked.svg │ │ │ ├── org.keepassxc.KeePassXC-monochrome-dark-locked.svg │ │ │ ├── org.keepassxc.KeePassXC-monochrome-dark.svg │ │ │ ├── org.keepassxc.KeePassXC-monochrome-light-locked.svg │ │ │ ├── org.keepassxc.KeePassXC-monochrome-light.svg │ │ │ ├── org.keepassxc.KeePassXC-unlocked.svg │ │ │ ├── org.keepassxc.KeePassXC.svg │ │ │ ├── org.kicad.KiCad.pcbcalculator.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.chart.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.libretro.RetroArch.svg │ │ │ ├── org.linux_hardware.hw-probe.svg │ │ │ ├── org.maui.booth.svg │ │ │ ├── org.maui.shelf.svg │ │ │ ├── org.midori_browser.Midori.svg │ │ │ ├── org.mixxx.Mixxx.svg │ │ │ ├── org.moson.matray.svg │ │ │ ├── org.mozilla.Firefox.svg │ │ │ ├── org.mozilla.FirefoxBeta.svg │ │ │ ├── org.mozilla.FirefoxNightly.svg │ │ │ ├── org.mozilla.FirefoxNightlyWayland.svg │ │ │ ├── org.mozilla.Thunderbird.svg │ │ │ ├── org.mozilla.firefox.svg │ │ │ ├── org.multimc.MultiMC.svg │ │ │ ├── org.musescore.MuseScore.svg │ │ │ ├── org.musicbrainz.Picard.svg │ │ │ ├── org.mypaint.MyPaint.svg │ │ │ ├── org.nextcloud.Nextcloud.svg │ │ │ ├── org.nicotine_plus.Nicotine.svg │ │ │ ├── org.nmap.Zenmap.svg │ │ │ ├── org.nxos.softwarecenter.svg │ │ │ ├── org.o20.openpoint.svg │ │ │ ├── org.o20.svg │ │ │ ├── org.o20.word.svg │ │ │ ├── org.octave.Octave.svg │ │ │ ├── org.onlyoffice.desktopeditors.svg │ │ │ ├── org.openrgb.OpenRGB.svg │ │ │ ├── org.openshot.OpenShot.svg │ │ │ ├── org.openstreetmap.josm.svg │ │ │ ├── org.opensuse.YaST.svg │ │ │ ├── org.pantheon.noise.svg │ │ │ ├── org.phoenicis.playonlinux.svg │ │ │ ├── org.photoqt.PhotoQt.svg │ │ │ ├── org.pitivi.Pitivi.svg │ │ │ ├── org.polymc.PolyMC.svg │ │ │ ├── org.postmarketos.Megapixels.svg │ │ │ ├── org.ppsspp.PPSSPP.svg │ │ │ ├── org.prismlauncher.PrismLauncher.svg │ │ │ ├── org.processing.processingide.svg │ │ │ ├── org.pulseaudio.pavucontrol.svg │ │ │ ├── org.purei.Play.svg │ │ │ ├── org.pwmt.zathura.svg │ │ │ ├── org.qbittorrent.qBittorrent.svg │ │ │ ├── org.qgis.qgis.svg │ │ │ ├── org.qt-project.qtcreator.svg │ │ │ ├── org.qxmledit.QXmlEdit.svg │ │ │ ├── org.remmina.Remmina.svg │ │ │ ├── org.rncbc.qjackctl.svg │ │ │ ├── org.rncbc.qsynth.svg │ │ │ ├── org.rnd2.cpupower_gui-panel.svg │ │ │ ├── org.rnd2.cpupower_gui.svg │ │ │ ├── org.scilab.Scilab.svg │ │ │ ├── org.scintilla.SciTE.svg │ │ │ ├── org.scummvm.ScummVM.svg │ │ │ ├── org.shadowsocks.qt5client.svg │ │ │ ├── org.shotcut.Shotcut.svg │ │ │ ├── org.signal.Signal.svg │ │ │ ├── org.solarus_games.solarus.Launcher.svg │ │ │ ├── org.soundconverter.SoundConverter.svg │ │ │ ├── org.speedcrunch.SpeedCrunch.svg │ │ │ ├── org.sqlitebrowser.sqlitebrowser.svg │ │ │ ├── org.standardnotes.standardnotes.svg │ │ │ ├── org.stellarium.Stellarium.svg │ │ │ ├── org.strawberrymusicplayer.strawberry.svg │ │ │ ├── org.supertux.SuperTux-Milestone1.svg │ │ │ ├── org.supertuxproject.SuperTux.svg │ │ │ ├── org.synfig.SynfigStudio.svg │ │ │ ├── org.syphon.Syphon.svg │ │ │ ├── org.tabos.maxcontrol.svg │ │ │ ├── org.telegram.desktop.svg │ │ │ ├── org.texstudio.TeXstudio.svg │ │ │ ├── org.thonny.Thonny.svg │ │ │ ├── org.tlauncher.TLauncher.svg │ │ │ ├── org.tordini.flavio.Minitube.svg │ │ │ ├── org.torproject.torbrowser.svg │ │ │ ├── org.tug.texworks.svg │ │ │ ├── org.tuxpaint.Tuxpaint.svg │ │ │ ├── org.ubuntubudgie.budgie-extras.hotcorners.svg │ │ │ ├── org.ubuntubudgie.previewscontrols.svg │ │ │ ├── org.ubuntubudgie.quickchar.svg │ │ │ ├── org.ubuntubudgie.wallstreet-control.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.x.Warpinator.svg │ │ │ ├── org.xfce.Dictionary.svg │ │ │ ├── org.xfce.Gigolo.svg │ │ │ ├── org.xfce.PanelProfiles.svg │ │ │ ├── org.xfce.Parole.svg │ │ │ ├── org.xfce.ScreenSaver.svg │ │ │ ├── org.xfce.about.svg │ │ │ ├── org.xfce.appfinder.svg │ │ │ ├── org.xfce.catfish.svg │ │ │ ├── org.xfce.filemanager.svg │ │ │ ├── org.xfce.garcon.svg │ │ │ ├── org.xfce.genmon.svg │ │ │ ├── org.xfce.gigolo.svg │ │ │ ├── org.xfce.mailreader.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.cpugraph.svg │ │ │ ├── org.xfce.panel.directorymenu.svg │ │ │ ├── org.xfce.panel.launcher.svg │ │ │ ├── org.xfce.panel.netload.svg │ │ │ ├── org.xfce.panel.pager.svg │ │ │ ├── org.xfce.panel.separator.svg │ │ │ ├── org.xfce.panel.showdesktop.svg │ │ │ ├── org.xfce.panel.statustray.svg │ │ │ ├── org.xfce.panel.svg │ │ │ ├── org.xfce.panel.tasklist.svg │ │ │ ├── org.xfce.panel.weather.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.default-applications.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.terminale-mulator.svg │ │ │ ├── org.xfce.terminalemulator.svg │ │ │ ├── org.xfce.thunar.svg │ │ │ ├── org.xfce.volman.svg │ │ │ ├── org.xfce.webbrowser.svg │ │ │ ├── org.xfce.workspace.svg │ │ │ ├── org.xfce.workspaces.svg │ │ │ ├── org.xfce.xfburn.svg │ │ │ ├── org.xfce.xfdashboard.svg │ │ │ ├── org.xfce.xfdesktop.svg │ │ │ ├── org.xfce.xfmp.svg │ │ │ ├── org.xfce.xfwm.svg │ │ │ ├── org.xfce.xfwm4-tweaks.svg │ │ │ ├── org.xfce.xfwm4.svg │ │ │ ├── org.yorba.geary.svg │ │ │ ├── org.yuzu_emu.yuzu.svg │ │ │ ├── org.zaproxy.ZAP.svg │ │ │ ├── org.zim_wiki.Zim.svg │ │ │ ├── org.zimwiki.Zim.svg │ │ │ ├── org.zotero.Zotero.svg │ │ │ ├── org.zulip.Zulip.svg │ │ │ ├── osmo.svg │ │ │ ├── overexposure.svg │ │ │ ├── overgrive.svg │ │ │ ├── owncloud.svg │ │ │ ├── oxygen.svg │ │ │ ├── p7z.svg │ │ │ ├── p7zip-gui.svg │ │ │ ├── p7zip.svg │ │ │ ├── package-manager-icon.svg │ │ │ ├── package.svg │ │ │ ├── package_applications.svg │ │ │ ├── package_development.svg │ │ │ ├── package_development_debugger.svg │ │ │ ├── package_development_tools.svg │ │ │ ├── package_editor.svg │ │ │ ├── package_editors.svg │ │ │ ├── package_edutainment.svg │ │ │ ├── package_edutainment_music.svg │ │ │ ├── package_favorite.svg │ │ │ ├── package_favourite.svg │ │ │ ├── package_games.svg │ │ │ ├── package_games_arcade.svg │ │ │ ├── package_games_board.svg │ │ │ ├── package_games_card.svg │ │ │ ├── package_games_platformgame.svg │ │ │ ├── package_graphics.svg │ │ │ ├── package_graphics_photography.svg │ │ │ ├── package_graphics_scanning.svg │ │ │ ├── package_internet.svg │ │ │ ├── package_internet_email.svg │ │ │ ├── package_internet_news-feed-reader.svg │ │ │ ├── package_internet_newsreader.svg │ │ │ ├── package_internet_remoteaccess.svg │ │ │ ├── package_multimedia.svg │ │ │ ├── package_multimedia_audiomixer.svg │ │ │ ├── package_multimedia_audioplayer.svg │ │ │ ├── package_multimedia_burning.svg │ │ │ ├── package_multimedia_jukebox.svg │ │ │ ├── package_multimedia_sequencer.svg │ │ │ ├── package_network.svg │ │ │ ├── package_office.svg │ │ │ ├── package_office_addressbook.svg │ │ │ ├── package_settings.svg │ │ │ ├── package_settings_network.svg │ │ │ ├── package_settings_power.svg │ │ │ ├── package_settings_sound.svg │ │ │ ├── package_settings_webbrowsing.svg │ │ │ ├── package_system.svg │ │ │ ├── package_system_network.svg │ │ │ ├── package_toys.svg │ │ │ ├── package_utilities.svg │ │ │ ├── package_utilities_web.svg │ │ │ ├── package_utility_archiving.svg │ │ │ ├── package_wordprocessing.svg │ │ │ ├── package_yast_apparmor.svg │ │ │ ├── package_yast_security.svg │ │ │ ├── page.codeberg.JakobDev.jdAnimatedImageEditor.svg │ │ │ ├── page.codeberg.JakobDev.jdAppStreamEdit.svg │ │ │ ├── page.codeberg.JakobDev.jdDesktopEntryEdit.svg │ │ │ ├── page.codeberg.JakobDev.jdFlatpakSnapshot.svg │ │ │ ├── page.codeberg.JakobDev.jdSimpleAutostart.svg │ │ │ ├── page.codeberg.libre_menu_editor.LibreMenuEditor.svg │ │ │ ├── paint-x.svg │ │ │ ├── paint.svg │ │ │ ├── palapeli.svg │ │ │ ├── palaura.svg │ │ │ ├── palemoon.svg │ │ │ ├── palette.svg │ │ │ ├── palette_color.svg │ │ │ ├── palimpsest.svg │ │ │ ├── pamac-manager-install.svg │ │ │ ├── pamac-manager.svg │ │ │ ├── pamac-updater.svg │ │ │ ├── pamac.svg │ │ │ ├── pan.svg │ │ │ ├── panel-applets.svg │ │ │ ├── panel-drawer.svg │ │ │ ├── panel-searchtool.svg │ │ │ ├── panel.svg │ │ │ ├── panini.svg │ │ │ ├── paperclip.svg │ │ │ ├── paperwork.svg │ │ │ ├── paprefs.svg │ │ │ ├── parcellite.svg │ │ │ ├── parole-extension.svg │ │ │ ├── parole.svg │ │ │ ├── paromplayer.svg │ │ │ ├── partimage.svg │ │ │ ├── partition-manager.svg │ │ │ ├── partitionmanager.svg │ │ │ ├── partitions.svg │ │ │ ├── partner.svg │ │ │ ├── pass.svg │ │ │ ├── pass2.svg │ │ │ ├── password-generate.svg │ │ │ ├── password-manager.svg │ │ │ ├── password.svg │ │ │ ├── passwordmanager.svg │ │ │ ├── passwords-app.svg │ │ │ ├── passwords.svg │ │ │ ├── passwordsafe.svg │ │ │ ├── pasystray.svg │ │ │ ├── pattern-apparmor.svg │ │ │ ├── pattern-basis-addon.svg │ │ │ ├── pattern-basis-devel.svg │ │ │ ├── pattern-basis.svg │ │ │ ├── pattern-c-devel.svg │ │ │ ├── pattern-documentation.svg │ │ │ ├── pattern-e17.svg │ │ │ ├── pattern-enlightenment.svg │ │ │ ├── pattern-games.svg │ │ │ ├── pattern-generic.svg │ │ │ ├── pattern-gnome-devel.svg │ │ │ ├── pattern-java-devel.svg │ │ │ ├── pattern-java.svg │ │ │ ├── pattern-kde-addon.svg │ │ │ ├── pattern-kde-devel.svg │ │ │ ├── pattern-kde.svg │ │ │ ├── pattern-kde4.svg │ │ │ ├── pattern-kubic.svg │ │ │ ├── pattern-lxqt.svg │ │ │ ├── pattern-mate.svg │ │ │ ├── pattern-qt-devel.svg │ │ │ ├── pattern-ruby-devel.svg │ │ │ ├── pattern-ruby.svg │ │ │ ├── pattern-x11.svg │ │ │ ├── pattern-xfce-devel.svg │ │ │ ├── pattern-xfce.svg │ │ │ ├── pattern-yast-devel.svg │ │ │ ├── pavucontrol.svg │ │ │ ├── pavumeter.svg │ │ │ ├── pcb.svg │ │ │ ├── pcbcalculator.svg │ │ │ ├── pcloud-ok.svg │ │ │ ├── pcloud.svg │ │ │ ├── pcmanfm-mod.svg │ │ │ ├── pcmanfm-qt.svg │ │ │ ├── pcmanfm.svg │ │ │ ├── pcsx-icon.svg │ │ │ ├── pcsx2.svg │ │ │ ├── pcsxr-icon.svg │ │ │ ├── pcsxr.svg │ │ │ ├── pdf-editor.svg │ │ │ ├── pdf-mix-tool.svg │ │ │ ├── pdf-presenter-console.svg │ │ │ ├── pdf-utility.svg │ │ │ ├── pdf-viewer.svg │ │ │ ├── pdf.svg │ │ │ ├── pdfarranger.svg │ │ │ ├── pdfchain.svg │ │ │ ├── pdfeditor.svg │ │ │ ├── pdfmixtool.svg │ │ │ ├── pdfmod.svg │ │ │ ├── pdfshuffler.svg │ │ │ ├── pdfslicer.svg │ │ │ ├── pdftag.svg │ │ │ ├── peazip.svg │ │ │ ├── peek.svg │ │ │ ├── pencil.svg │ │ │ ├── permid.svg │ │ │ ├── persepolis-tray.svg │ │ │ ├── persepolis.svg │ │ │ ├── phoenicis.svg │ │ │ ├── phonon-gstreamer.svg │ │ │ ├── phonon-vlc.scg │ │ │ ├── phonon-vlc.svg │ │ │ ├── photo-gstreamer.svg │ │ │ ├── photo-multimedia.viewer.svg │ │ │ ├── photo.svg │ │ │ ├── photocollage.svg │ │ │ ├── photoflare.svg │ │ │ ├── photolayoutseditor.svg │ │ │ ├── photoqt.svg │ │ │ ├── photos.svg │ │ │ ├── phototonic.svg │ │ │ ├── phpstorm.svg │ │ │ ├── picard.svg │ │ │ ├── pick-colour-picker.svg │ │ │ ├── picmi.svg │ │ │ ├── picom.svg │ │ │ ├── pidgin-menu.svg │ │ │ ├── pidgin-tray-email.svg │ │ │ ├── pidgin.svg │ │ │ ├── pimsettingexporter.svg │ │ │ ├── pinot.svg │ │ │ ├── pinta.svg │ │ │ ├── pirut.svg │ │ │ ├── pithos.svg │ │ │ ├── pitivi.svg │ │ │ ├── piwigo.svg │ │ │ ├── pix.svg │ │ │ ├── pixelitor.svg │ │ │ ├── pk-package-sources.svg │ │ │ ├── pk-packge-sources.svg │ │ │ ├── pkgbrowser.svg │ │ │ ├── pkgtool.svg │ │ │ ├── plan.svg │ │ │ ├── planetkde.svg │ │ │ ├── plank.svg │ │ │ ├── planner.svg │ │ │ ├── planwork.svg │ │ │ ├── plasma-media-center.svg │ │ │ ├── plasma-search.svg │ │ │ ├── plasma.svg │ │ │ ├── plasmadiscover.svg │ │ │ ├── plasmagik.svg │ │ │ ├── plasmashell.svg │ │ │ ├── plasmatube.svg │ │ │ ├── plasmavault.svg │ │ │ ├── play.svg │ │ │ ├── play_2048.svg │ │ │ ├── playlist-generator.svg │ │ │ ├── playmymusic.svg │ │ │ ├── playonlinux.svg │ │ │ ├── playonlinux32.svg │ │ │ ├── playonlinux4.svg │ │ │ ├── plex-desktop.svg │ │ │ ├── plex-home-theater.svg │ │ │ ├── plex-htpc.svg │ │ │ ├── plex-media-player.svg │ │ │ ├── plex-server.svg │ │ │ ├── plex.svg │ │ │ ├── plexamp.svg │ │ │ ├── plexhometheater.svg │ │ │ ├── plexmediamanager.svg │ │ │ ├── plexmediaplayer.svg │ │ │ ├── plexmediaserver.svg │ │ │ ├── plg.svg │ │ │ ├── pling-store.svg │ │ │ ├── plot2d.svg │ │ │ ├── plugin-colorfilter.svg │ │ │ ├── plugin-kdecompat.svg │ │ │ ├── plugin-notification.svg │ │ │ ├── plugin-screenshot.svg │ │ │ ├── plugin-wallpaper.svg │ │ │ ├── plugin.svg │ │ │ ├── plugins-accessibility.svg │ │ │ ├── plugins-general.svg │ │ │ ├── plugins-window_management.svg │ │ │ ├── plugins.svg │ │ │ ├── plv.svg │ │ │ ├── plymouth.svg │ │ │ ├── pnmixer.svg │ │ │ ├── pocket-casts-linux.svg │ │ │ ├── pocket-casts-tray.svg │ │ │ ├── pocket-casts.svg │ │ │ ├── pocket.svg │ │ │ ├── pocketcasts.svg │ │ │ ├── podcast-amarok.svg │ │ │ ├── podcast.svg │ │ │ ├── poddr.svg │ │ │ ├── polari.svg │ │ │ ├── pomidor.svg │ │ │ ├── pomodoro-indicator.svg │ │ │ ├── pop-os-logo-icon.svg │ │ │ ├── pop-os.svg │ │ │ ├── pop-shop.svg │ │ │ ├── pop3.svg │ │ │ ├── pop_os.svg │ │ │ ├── popsicle.svg │ │ │ ├── portfolio-performance-bin.svg │ │ │ ├── portfolio.svg │ │ │ ├── porthole-icon.svg │ │ │ ├── porthole.svg │ │ │ ├── portproton.svg │ │ │ ├── postman.svg │ │ │ ├── postscript-viewer.svg │ │ │ ├── power-management.svg │ │ │ ├── power.svg │ │ │ ├── poweriso-gui.svg │ │ │ ├── ppsspp-qt.svg │ │ │ ├── ppsspp.svg │ │ │ ├── pragha-panel.svg │ │ │ ├── pragha.svg │ │ │ ├── preferences-accessibility.svg │ │ │ ├── preferences-accessibility1.svg │ │ │ ├── preferences-activities.svg │ │ │ ├── preferences-applications.svg │ │ │ ├── preferences-assistive-technology.svg │ │ │ ├── preferences-autocompletion.svg │ │ │ ├── preferences-bluetooth.svg │ │ │ ├── preferences-calendar-and-tasks.svg │ │ │ ├── preferences-certificates.svg │ │ │ ├── preferences-color-symbolic.svg │ │ │ ├── preferences-color-symbolic.symbolic.svg │ │ │ ├── preferences-color.svg │ │ │ ├── preferences-composer.svg │ │ │ ├── preferences-contact-list.svg │ │ │ ├── preferences-contacts.svg │ │ │ ├── preferences-desktop-accessibility-panel.svg │ │ │ ├── preferences-desktop-accessibility-pointing.svg │ │ │ ├── preferences-desktop-accessibility-symbolic.svg │ │ │ ├── preferences-desktop-accessibility-symbolic.symbolic.svg │ │ │ ├── preferences-desktop-accessibility-zoom.svg │ │ │ ├── preferences-desktop-accessibility.svg │ │ │ ├── preferences-desktop-activities.svg │ │ │ ├── preferences-desktop-applications.svg │ │ │ ├── preferences-desktop-apps-symbolic.svg │ │ │ ├── preferences-desktop-apps-symbolic.symbolic.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-symbolic.svg │ │ │ ├── preferences-desktop-default-applications-symbolic.symbolic.svg │ │ │ ├── preferences-desktop-default-applications.svg │ │ │ ├── preferences-desktop-desktop-wallpaper.svg │ │ │ ├── preferences-desktop-display-color.svg │ │ │ ├── preferences-desktop-display-symbolic.svg │ │ │ ├── preferences-desktop-display-symbolic.symbolic.svg │ │ │ ├── preferences-desktop-display.svg │ │ │ ├── preferences-desktop-effects.svg │ │ │ ├── preferences-desktop-emoticons.svg │ │ │ ├── preferences-desktop-feedback.svg │ │ │ ├── preferences-desktop-filetype-association-symbolic.svg │ │ │ ├── preferences-desktop-filetype-association.svg │ │ │ ├── preferences-desktop-filter.svg │ │ │ ├── preferences-desktop-font-installer.svg │ │ │ ├── preferences-desktop-font.svg │ │ │ ├── preferences-desktop-fonts.svg │ │ │ ├── preferences-desktop-gaming.svg │ │ │ ├── preferences-desktop-gestures-screenedges.svg │ │ │ ├── preferences-desktop-hotcorners.svg │ │ │ ├── preferences-desktop-icons.svg │ │ │ ├── preferences-desktop-keyboard-shortcuts-symbolic.svg │ │ │ ├── preferences-desktop-keyboard-shortcuts-symbolic.symbolic.svg │ │ │ ├── preferences-desktop-keyboard-shortcuts.svg │ │ │ ├── preferences-desktop-keyboard-symbolic.svg │ │ │ ├── preferences-desktop-keyboard-symbolic.symbolic.svg │ │ │ ├── preferences-desktop-keyboard.svg │ │ │ ├── preferences-desktop-launch-feedback.svg │ │ │ ├── preferences-desktop-locale-symbolic.svg │ │ │ ├── preferences-desktop-locale-symbolic.symbolic.svg │ │ │ ├── preferences-desktop-locale.svg │ │ │ ├── preferences-desktop-menu-edit.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-symbolic.svg │ │ │ ├── preferences-desktop-online-accounts.svg │ │ │ ├── preferences-desktop-other.svg │ │ │ ├── preferences-desktop-peripherals.svg │ │ │ ├── preferences-desktop-personal.svg │ │ │ ├── preferences-desktop-plasma-theme.svg │ │ │ ├── preferences-desktop-plasma.svg │ │ │ ├── preferences-desktop-printer.svg │ │ │ ├── preferences-desktop-privacy.svg │ │ │ ├── preferences-desktop-remote-desktop-symbolic.svg │ │ │ ├── preferences-desktop-remote-desktop-symbolic.symbolic.svg │ │ │ ├── preferences-desktop-remote-desktop.svg │ │ │ ├── preferences-desktop-screensaver │ │ │ ├── preferences-desktop-screensaver.svg │ │ │ ├── preferences-desktop-search.svg │ │ │ ├── preferences-desktop-sharing-symbolic.svg │ │ │ ├── preferences-desktop-sharing.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-touchscreen.svg │ │ │ ├── preferences-desktop-tweaks.svg │ │ │ ├── preferences-desktop-user-password.svg │ │ │ ├── preferences-desktop-user.svg │ │ │ ├── preferences-desktop-virtual.svg │ │ │ ├── preferences-desktop-wallpaper-symbolic.svg │ │ │ ├── preferences-desktop-wallpaper-symbolic.symbolic.svg │ │ │ ├── preferences-desktop-wallpaper.svg │ │ │ ├── preferences-desktop-workspaces.svg │ │ │ ├── preferences-desktop.svg │ │ │ ├── preferences-desktop_locale.svg │ │ │ ├── preferences-devices-cpu.svg │ │ │ ├── preferences-devices-printer.svg │ │ │ ├── preferences-devices-scanner.svg │ │ │ ├── preferences-devices-tree.svg │ │ │ ├── preferences-display-color.svg │ │ │ ├── preferences-document.svg │ │ │ ├── preferences-gtk-config.svg │ │ │ ├── preferences-indicator-amarok.svg │ │ │ ├── preferences-kde-connect.svg │ │ │ ├── preferences-mail-accounts.svg │ │ │ ├── preferences-mail.svg │ │ │ ├── preferences-management-service.svg │ │ │ ├── preferences-online-accounts.svg │ │ │ ├── preferences-plugin.svg │ │ │ ├── preferences-power.svg │ │ │ ├── preferences-remote-desktop.svg │ │ │ ├── preferences-security-apparmor.svg │ │ │ ├── preferences-security-firewall.svg │ │ │ ├── preferences-security-kerberos.svg │ │ │ ├── preferences-security.svg │ │ │ ├── preferences-smart-status.svg │ │ │ ├── preferences-sound.svg │ │ │ ├── preferences-system-backup.svg │ │ │ ├── preferences-system-bluetooth.svg │ │ │ ├── preferences-system-brightness-lock.svg │ │ │ ├── preferences-system-brightness.svg │ │ │ ├── preferences-system-cron.svg │ │ │ ├── preferences-system-details-symbolic.svg │ │ │ ├── preferences-system-details-symbolic.symbolic.svg │ │ │ ├── preferences-system-details.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-iscsi.svg │ │ │ ├── preferences-system-network-ldap.svg │ │ │ ├── preferences-system-network-nis.svg │ │ │ ├── preferences-system-network-ntp.svg │ │ │ ├── preferences-system-network-proxy-symbolic.svg │ │ │ ├── preferences-system-network-proxy-symbolic.symbolic.svg │ │ │ ├── preferences-system-network-proxy.svg │ │ │ ├── preferences-system-network-server-boot.svg │ │ │ ├── preferences-system-network-server-installation.svg │ │ │ ├── preferences-system-network-server-iscsi.svg │ │ │ ├── preferences-system-network-server-share.svg │ │ │ ├── preferences-system-network-server-slp.svg │ │ │ ├── preferences-system-network-server-web.svg │ │ │ ├── preferences-system-network-share-windows.svg │ │ │ ├── preferences-system-network-share.svg │ │ │ ├── preferences-system-network-sharing.svg │ │ │ ├── preferences-system-network-symbolic.svg │ │ │ ├── preferences-system-network-vpn.svg │ │ │ ├── preferences-system-network-wakeonlan.svg │ │ │ ├── preferences-system-network.svg │ │ │ ├── preferences-system-notifications-rtl.svg │ │ │ ├── preferences-system-notifications-symbolic.svg │ │ │ ├── preferences-system-notifications-symbolic.symbolic.svg │ │ │ ├── preferences-system-notifications.svg │ │ │ ├── preferences-system-performance.svg │ │ │ ├── preferences-system-power-management.svg │ │ │ ├── preferences-system-power-symbolic.svg │ │ │ ├── preferences-system-power.svg │ │ │ ├── preferences-system-privacy-housekeeping.svg │ │ │ ├── preferences-system-privacy-symbolic.svg │ │ │ ├── preferences-system-privacy.svg │ │ │ ├── preferences-system-search-symbolic.svg │ │ │ ├── preferences-system-search-symbolic.symbolic.svg │ │ │ ├── preferences-system-search.svg │ │ │ ├── preferences-system-services.svg │ │ │ ├── preferences-system-session-services.svg │ │ │ ├── preferences-system-session.svg │ │ │ ├── preferences-system-sharing-symbolic.svg │ │ │ ├── preferences-system-sharing-symbolic.symbolic.svg │ │ │ ├── preferences-system-sharing.svg │ │ │ ├── preferences-system-sound-alt.svg │ │ │ ├── preferences-system-sound.svg │ │ │ ├── preferences-system-splash.svg │ │ │ ├── preferences-system-startup.svg │ │ │ ├── preferences-system-symbolic.svg │ │ │ ├── preferences-system-tabbox.svg │ │ │ ├── preferences-system-time-symbolic.svg │ │ │ ├── preferences-system-time-symbolic.symbolic.svg │ │ │ ├── preferences-system-time.svg │ │ │ ├── preferences-system-user-sudo.svg │ │ │ ├── preferences-system-users.svg │ │ │ ├── preferences-system-windows-actions.svg │ │ │ ├── preferences-system-windows-behavior.svg │ │ │ ├── preferences-system-windows-effect-cubeslide.svg │ │ │ ├── preferences-system-windows-effect-desktopgrid.svg │ │ │ ├── preferences-system-windows-effect-dialog-parent.svg │ │ │ ├── preferences-system-windows-effect-diminactive.svg │ │ │ ├── preferences-system-windows-effect-dimscreen.svg │ │ │ ├── preferences-system-windows-effect-flipswitch.svg │ │ │ ├── preferences-system-windows-effect-invert.svg │ │ │ ├── preferences-system-windows-effect-kscreen.svg │ │ │ ├── preferences-system-windows-effect-login.svg │ │ │ ├── preferences-system-windows-effect-logout.svg │ │ │ ├── preferences-system-windows-effect-magnifier.svg │ │ │ ├── preferences-system-windows-effect-maximize.svg │ │ │ ├── preferences-system-windows-effect-mouseclick.svg │ │ │ ├── preferences-system-windows-effect-mousemark.svg │ │ │ ├── preferences-system-windows-effect-presentwindows.svg │ │ │ ├── preferences-system-windows-effect-startupfeedback.svg │ │ │ ├── preferences-system-windows-effect-trackmouse.svg │ │ │ ├── preferences-system-windows-move.svg │ │ │ ├── preferences-system-windows-movement.svg │ │ │ ├── preferences-system-windows.svg │ │ │ ├── preferences-system.svg │ │ │ ├── preferences-tabs.svg │ │ │ ├── preferences-theme.svg │ │ │ ├── preferences-time.svg │ │ │ ├── preferences-tweaks-anim.svg │ │ │ ├── preferences-tweaks-animation.svg │ │ │ ├── preferences-tweaks-cerbere.svg │ │ │ ├── preferences-tweaks-shadows.svg │ │ │ ├── preferences-tweaks-slingshot.svg │ │ │ ├── preferences-ubuntu-panel.svg │ │ │ ├── preferences-user-information.svg │ │ │ ├── preferences-virtualization-container.svg │ │ │ ├── preferences-virtualization-vm-migrate.svg │ │ │ ├── preferences-virtualization-vm-new.svg │ │ │ ├── preferences-wallpaper.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-windows-actions.svg │ │ │ ├── preferences-windows-move.svg │ │ │ ├── preferences-windows-movement.svg │ │ │ ├── preferences.svg │ │ │ ├── preferences_contact_list.svg │ │ │ ├── preferences_desktop_accessibility.svg │ │ │ ├── preferences_desktop_accessibility1.svg │ │ │ ├── preferences_desktop_color.svg │ │ │ ├── preferences_desktop_font.svg │ │ │ ├── preferences_desktop_font_installer.svg │ │ │ ├── preferences_desktop_gaming.svg │ │ │ ├── preferences_desktop_icons.svg │ │ │ ├── preferences_desktop_locale.svg │ │ │ ├── preferences_desktop_sound.svg │ │ │ ├── preferences_desktop_theme.svg │ │ │ ├── preferences_desktop_user.svg │ │ │ ├── preferences_desktop_wallpaper.svg │ │ │ ├── preferences_system.svg │ │ │ ├── preferences_system_bluetooth.svg │ │ │ ├── preferences_system_time.svg │ │ │ ├── preferences_system_windows.svg │ │ │ ├── premid-tray.svg │ │ │ ├── premid.svg │ │ │ ├── previewer.svg │ │ │ ├── printer-driver-deepin-cloud-print.svg │ │ │ ├── printer-symbolic.svg │ │ │ ├── printer.svg │ │ │ ├── printer1.svg │ │ │ ├── printersandfax_q4os_startmenu.svg │ │ │ ├── printmgr.svg │ │ │ ├── prismlauncher-git.svg │ │ │ ├── prismlauncher-qt5.svg │ │ │ ├── prismlauncher.svg │ │ │ ├── privacy.svg │ │ │ ├── prjm16-transparent.svg │ │ │ ├── proc-symbolic.svg │ │ │ ├── process-error-symbolic.svg │ │ │ ├── process-error.svg │ │ │ ├── product_icon_32bpp-128.svg │ │ │ ├── product_logo_128.svg │ │ │ ├── projectM.svg │ │ │ ├── protonmail-bridge.svg │ │ │ ├── protonmail-desktop-unofficial.svg │ │ │ ├── protonmail-desktop.svg │ │ │ ├── protonmail-import-export-app.svg │ │ │ ├── protonmail-indicator.svg │ │ │ ├── protonup-qt.svg │ │ │ ├── protonvpn-gui.svg │ │ │ ├── protonvpn-logo.svg │ │ │ ├── protonvpn-tray.svg │ │ │ ├── protonvpngui-connected.svg │ │ │ ├── protonvpngui-disconnected.svg │ │ │ ├── protonvpngui-no-network.svg │ │ │ ├── protonvpngui.svg │ │ │ ├── proxy.svg │ │ │ ├── prusa-slicer.svg │ │ │ ├── prusaslicer.svg │ │ │ ├── psensor.svg │ │ │ ├── pspp.svg │ │ │ ├── ptask.svg │ │ │ ├── ptbatcher.svg │ │ │ ├── puddletag.svg │ │ │ ├── pulse-sms.svg │ │ │ ├── pulseeffects.svg │ │ │ ├── pup.svg │ │ │ ├── purism-chatty.svg │ │ │ ├── pycad.svg │ │ │ ├── pycharm-community.svg │ │ │ ├── pycharm-education.svg │ │ │ ├── pycharm-professional.svg │ │ │ ├── pycharm.svg │ │ │ ├── pycharmedu.svg │ │ │ ├── pyneighborhood_48x48.svg │ │ │ ├── python-2.3.svg │ │ │ ├── python-2.3svg │ │ │ ├── python-2.4.svg │ │ │ ├── python-2.5.svg │ │ │ ├── python-2.6.svg │ │ │ ├── python-2.7.svg │ │ │ ├── python-2.svg │ │ │ ├── python-3.0.svg │ │ │ ├── python-3.0svg │ │ │ ├── python-3.1.svg │ │ │ ├── python-3.1svg │ │ │ ├── python-3.2.svg │ │ │ ├── python-3.2svg │ │ │ ├── python-3.3.svg │ │ │ ├── python-3.3svg │ │ │ ├── python-3.4.svg │ │ │ ├── python-3.5.svg │ │ │ ├── python-3.6.svg │ │ │ ├── python-3.svg │ │ │ ├── python-all.svg │ │ │ ├── python-idle.svg │ │ │ ├── python.svg │ │ │ ├── python2.0.svg │ │ │ ├── python2.1.svg │ │ │ ├── python2.2.svg │ │ │ ├── python2.3.svg │ │ │ ├── python2.4.svg │ │ │ ├── python2.5.svg │ │ │ ├── python2.6.svg │ │ │ ├── python2.7.svg │ │ │ ├── python2.svg │ │ │ ├── python3.0.svg │ │ │ ├── python3.1.svg │ │ │ ├── python3.2.svg │ │ │ ├── python3.3.svg │ │ │ ├── python3.4.svg │ │ │ ├── python3.5.svg │ │ │ ├── python3.6.svg │ │ │ ├── python3.svg │ │ │ ├── pythonbackend.svg │ │ │ ├── q4_findmenu.svg │ │ │ ├── q4_findweb.svg │ │ │ ├── q4_netcon.svg │ │ │ ├── q4os-swprofiler.svg │ │ │ ├── q4os-updatemgr.svg │ │ │ ├── q4wine.svg │ │ │ ├── qBittorrent.svg │ │ │ ├── qalculate-applet.svg │ │ │ ├── qalculate-gtk.svg │ │ │ ├── qalculate-kde.svg │ │ │ ├── qalculate.svg │ │ │ ├── qalculator.svg │ │ │ ├── qasmixer.svg │ │ │ ├── qbittorrent-panel.svg │ │ │ ├── qbittorrent-tray-dark.svg │ │ │ ├── qbittorrent-tray-light.svg │ │ │ ├── qbittorrent-tray.svg │ │ │ ├── qbittorrent.svg │ │ │ ├── qcalculator.svg │ │ │ ├── qcma.svg │ │ │ ├── qcomicbook.svg │ │ │ ├── qdbusviewer-qt4.svg │ │ │ ├── qdbusviewer-qt5.svg │ │ │ ├── qdbusviewer-qt6.svg │ │ │ ├── qdbusviewer.svg │ │ │ ├── qdbusviewer5.svg │ │ │ ├── qdbusviewer6.svg │ │ │ ├── qdirstat.svg │ │ │ ├── qedit.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 │ │ │ ├── qgis-icon.svg │ │ │ ├── qgis-qgs.svg │ │ │ ├── qgis-qpt.svg │ │ │ ├── qgis.svg │ │ │ ├── qgit.svg │ │ │ ├── qjack.svg │ │ │ ├── qjackctl.svg │ │ │ ├── qjournalctl.svg │ │ │ ├── qjoypad-tray.svg │ │ │ ├── qjoypad.svg │ │ │ ├── qlandkartegt.svg │ │ │ ├── qlipper.svg │ │ │ ├── qmapshack.svg │ │ │ ├── qmlscene.svg │ │ │ ├── qmmp.svg │ │ │ ├── qmplayer.svg │ │ │ ├── qnapi-48.svg │ │ │ ├── qnapi-panel.svg │ │ │ ├── qnapi.svg │ │ │ ├── qomp-play-panel.svg │ │ │ ├── qomp.svg │ │ │ ├── qopenvpn.svg │ │ │ ├── qpdfview.svg │ │ │ ├── qpm.svg │ │ │ ├── qps.svg │ │ │ ├── qq-music.svg │ │ │ ├── qq.svg │ │ │ ├── qqmusic.svg │ │ │ ├── qr-creator.svg │ │ │ ├── qreator.svg │ │ │ ├── qrqt.svg │ │ │ ├── qstardict.svg │ │ │ ├── qsynth.svg │ │ │ ├── qt-creator.svg │ │ │ ├── qt-desingner.svg │ │ │ ├── qt-logo.svg │ │ │ ├── qt.svg │ │ │ ├── qt4-designer.svg │ │ │ ├── qt4-logo.svg │ │ │ ├── qt4logo.svg │ │ │ ├── qt5-logo.svg │ │ │ ├── qt5ct.svg │ │ │ ├── qtassistant.svg │ │ │ ├── qtconfig-qt4.svg │ │ │ ├── qtconfig-qt5.svg │ │ │ ├── qtconfig-qt6.svg │ │ │ ├── qtconfig.svg │ │ │ ├── qtcreator-qt4.svg │ │ │ ├── qtcreator.svg │ │ │ ├── qtcreator_logo_32.svg │ │ │ ├── qtcreatorubuntu.svg │ │ │ ├── qtdbusviewer.svg │ │ │ ├── qtemu.svg │ │ │ ├── qterminal.svg │ │ │ ├── qtfm.svg │ │ │ ├── qtgain.svg │ │ │ ├── qtlinguist.svg │ │ │ ├── qtlinguistic.svg │ │ │ ├── qtlogo.svg │ │ │ ├── qtoctave.svg │ │ │ ├── qtox-online.svg │ │ │ ├── qtox.svg │ │ │ ├── qtpartimage.svg │ │ │ ├── qtpass-icon.svg │ │ │ ├── qtpass-tray.svg │ │ │ ├── qtqr.svg │ │ │ ├── qtransmission.svg │ │ │ ├── qtscrcpy.svg │ │ │ ├── quassel.svg │ │ │ ├── quaternion.svg │ │ │ ├── qubzilla.svg │ │ │ ├── quick-launch-applet.svg │ │ │ ├── quick-lounge-applet.svg │ │ │ ├── quickhash.svg │ │ │ ├── quicktime.svg │ │ │ ├── quickusbformatter.svg │ │ │ ├── quiterss.svg │ │ │ ├── quota.svg │ │ │ ├── qupzilla.svg │ │ │ ├── qv4l2.svg │ │ │ ├── qvidcap.svg │ │ │ ├── qview.svg │ │ │ ├── qwinff.svg │ │ │ ├── r.svg │ │ │ ├── rabbitvcs-help.svg │ │ │ ├── radeon-profile.svg │ │ │ ├── radio.svg │ │ │ ├── radiotray-ng-on.svg │ │ │ ├── radiotray.svg │ │ │ ├── radiotunes.svg │ │ │ ├── rage.svg │ │ │ ├── ramme.svg │ │ │ ├── randr.svg │ │ │ ├── rapid.svg │ │ │ ├── rbackend.svg │ │ │ ├── rclock.svg │ │ │ ├── re-volt.svg │ │ │ ├── re.sonny.Commit.svg │ │ │ ├── realtimesync.svg │ │ │ ├── reco.svg │ │ │ ├── recoll.svg │ │ │ ├── record-desktop-indicator-recording.svg │ │ │ ├── record-desktop-indicator.svg │ │ │ ├── record-desktop.svg │ │ │ ├── recordmydesktop.svg │ │ │ ├── red_glasses.svg │ │ │ ├── reddit-is-a-dead-bird.svg │ │ │ ├── reddit.svg │ │ │ ├── redhat-accessories.svg │ │ │ ├── redhat-config-date.svg │ │ │ ├── redhat-documentation.svg │ │ │ ├── redhat-email.svg │ │ │ ├── redhat-filemanager.svg │ │ │ ├── redhat-games.svg │ │ │ ├── redhat-graphics.svg │ │ │ ├── redhat-internet.svg │ │ │ ├── redhat-linux.svg │ │ │ ├── redhat-logo-icon.svg │ │ │ ├── redhat-office.svg │ │ │ ├── redhat-preferences.svg │ │ │ ├── redhat-programming.svg │ │ │ ├── redhat-release-notes.svg │ │ │ ├── redhat-server_settings.svg │ │ │ ├── redhat-sound_video.svg │ │ │ ├── redhat-system_settings.svg │ │ │ ├── redhat-system_tools.svg │ │ │ ├── redhat-tools.svg │ │ │ ├── redhat-utils.svg │ │ │ ├── redhat-web-browser.svg │ │ │ ├── redhat.svg │ │ │ ├── redhatutils.svg │ │ │ ├── rednotebook.svg │ │ │ ├── redshift-gtk.svg │ │ │ ├── redshift-icon-256.svg │ │ │ ├── redshift-status-on.svg │ │ │ ├── redshift.svg │ │ │ ├── redshiftgui.svg │ │ │ ├── reflector-simple.svg │ │ │ ├── regedit.svg │ │ │ ├── regexxer.svg │ │ │ ├── rekonq.svg │ │ │ ├── relay.svg │ │ │ ├── reload.svg │ │ │ ├── remarkable.svg │ │ │ ├── remmina-panel.svg │ │ │ ├── remmina.svg │ │ │ ├── remote-desktop.svg │ │ │ ├── remote.svg │ │ │ ├── repoman.svg │ │ │ ├── repository.svg │ │ │ ├── resaapplet.svg │ │ │ ├── resapplet.svg │ │ │ ├── rest.getinsomnia.Insomnia.svg │ │ │ ├── rest.insomnia.Insomnia.svg │ │ │ ├── retext.svg │ │ │ ├── retroarch.svg │ │ │ ├── retropie.svg │ │ │ ├── retroshare.svg │ │ │ ├── revelation.svg │ │ │ ├── rexloader.svg │ │ │ ├── rg.gnome.Boxes.svg │ │ │ ├── rhel-documentation.svg │ │ │ ├── rhel-logo-icon.svg │ │ │ ├── rhel-release-notes.svg │ │ │ ├── rhel-utils.svg │ │ │ ├── rhel.svg │ │ │ ├── rhelutils.svg │ │ │ ├── rhythmbox-playing.svg │ │ │ ├── rhythmbox-playing.symbolic.svg │ │ │ ├── rhythmbox-symbolic.svg │ │ │ ├── rhythmbox.svg │ │ │ ├── ricin.svg │ │ │ ├── rider.svg │ │ │ ├── rime-im.svg │ │ │ ├── ring-jami.svg │ │ │ ├── ring-kde.svg │ │ │ ├── ring.svg │ │ │ ├── rip.svg │ │ │ ├── ripperx.svg │ │ │ ├── ristretto.svg │ │ │ ├── rnote.svg │ │ │ ├── robomongo.svg │ │ │ ├── rodent.svg │ │ │ ├── rofi.svg │ │ │ ├── root-file-manager.svg │ │ │ ├── root-terminal-app-symbolic.svg │ │ │ ├── rosa-imagewriter.svg │ │ │ ├── rosamp.svg │ │ │ ├── rox.svg │ │ │ ├── roxterm-gtk3.svg │ │ │ ├── roxterm.svg │ │ │ ├── rpcs3.svg │ │ │ ├── rpmdrake.svg │ │ │ ├── rrip_gui.svg │ │ │ ├── rss.svg │ │ │ ├── rss_indicator.svg │ │ │ ├── rssguard.svg │ │ │ ├── rssnow.svg │ │ │ ├── rssowl.svg │ │ │ ├── rssreader-app.svg │ │ │ ├── rstudio.svg │ │ │ ├── rtt-rstudio.svg │ │ │ ├── ru.yandex.Browser.svg │ │ │ ├── rubymine.svg │ │ │ ├── rubyripper.svg │ │ │ ├── rustdesk.svg │ │ │ ├── rvgl.svg │ │ │ ├── rygel.svg │ │ │ ├── sa.sy.bluerecorder.svg │ │ │ ├── sageicon.svg │ │ │ ├── sagelogo.svg │ │ │ ├── salix-update-notifier.svg │ │ │ ├── samba.svg │ │ │ ├── samsung-driver.svg │ │ │ ├── sanata-.svg │ │ │ ├── sc-apps-haruna.svg │ │ │ ├── sc-controller.svg │ │ │ ├── scanner-symbolic.svg │ │ │ ├── scanner.svg │ │ │ ├── scans2pdf.svg │ │ │ ├── schedule-tasks.svg │ │ │ ├── schildichat-desktop.svg │ │ │ ├── schildichat-web.svg │ │ │ ├── schildichat.svg │ │ │ ├── scilab.svg │ │ │ ├── scratch-desktop.svg │ │ │ ├── scratch-text-editor.svg │ │ │ ├── scratch.svg │ │ │ ├── scratch2.svg │ │ │ ├── screen-recorder.svg │ │ │ ├── screengrab.svg │ │ │ ├── screenie-qt.svg │ │ │ ├── screenie.svg │ │ │ ├── screenlets.svg │ │ │ ├── screenrecorder.svg │ │ │ ├── screenruler-icon-32x32.svg │ │ │ ├── screenruler-icon.svg │ │ │ ├── screenruler.svg │ │ │ ├── screensaver.svg │ │ │ ├── screenshot.svg │ │ │ ├── scribus-ng.svg │ │ │ ├── scribus-trunk.svg │ │ │ ├── scribus.svg │ │ │ ├── script-error.svg │ │ │ ├── scudcloud.svg │ │ │ ├── scummvm.svg │ │ │ ├── seafile-client-qt5.svg │ │ │ ├── seafile-client.svg │ │ │ ├── seafile.svg │ │ │ ├── seahorse-applet.svg │ │ │ ├── seahorse-preferences.svg │ │ │ ├── seahorse.svg │ │ │ ├── search.svg │ │ │ ├── searchmonkey.svg │ │ │ ├── securecrt.svg │ │ │ ├── securecrt_64.svg │ │ │ ├── security-high-symbolic.svg │ │ │ ├── security-high.svg │ │ │ ├── security-low.svg │ │ │ ├── security-medium.svg │ │ │ ├── security.svg │ │ │ ├── selene.svg │ │ │ ├── selinux.svg │ │ │ ├── semn.svg │ │ │ ├── sendemail.svg │ │ │ ├── serpentine.svg │ │ │ ├── session-properties.svg │ │ │ ├── setroubleshoot_red_icon.svg │ │ │ ├── setting-24.svg │ │ │ ├── settings-accessibility.svg │ │ │ ├── settings-time.svg │ │ │ ├── settings-window-manager.svg │ │ │ ├── sgt-mines.svg │ │ │ ├── sh.cider.Cider.svg │ │ │ ├── shadowsocks-qt5.svg │ │ │ ├── shaman.svg │ │ │ ├── share.svg │ │ │ ├── shares.svg │ │ │ ├── sheets.svg │ │ │ ├── shelf.svg │ │ │ ├── shellnoob.svg │ │ │ ├── shortcuts.svg │ │ │ ├── shotcut.svg │ │ │ ├── shotwell-symbolic.svg │ │ │ ├── shotwell.svg │ │ │ ├── show-background.svg │ │ │ ├── show-desktop.svg │ │ │ ├── show-photo.svg │ │ │ ├── showerthoughts2.svg │ │ │ ├── showfoto.svg │ │ │ ├── showimage.svg │ │ │ ├── showmypictures.svg │ │ │ ├── showphoto.svg │ │ │ ├── showtime.svg │ │ │ ├── shredder.svg │ │ │ ├── shutter-panel.svg │ │ │ ├── shutter.svg │ │ │ ├── signal-desktop-beta.svg │ │ │ ├── signal-desktop.svg │ │ │ ├── signal-tray.svg │ │ │ ├── signal.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 │ │ │ ├── simplescan.svg │ │ │ ├── simplescreenrecorder-panel.svg │ │ │ ├── simplescreenrecorder-recording.svg │ │ │ ├── simplescreenrecorder.svg │ │ │ ├── sk1-color-picker.svg │ │ │ ├── skanlite.svg │ │ │ ├── skanpage.svg │ │ │ ├── skrooge.svg │ │ │ ├── skype.svg │ │ │ ├── skype_protocol.svg │ │ │ ├── skypeforlinux.svg │ │ │ ├── slack.svg │ │ │ ├── sleep.svg │ │ │ ├── slic3r-prusa.svg │ │ │ ├── slic3r-prusa3d.svg │ │ │ ├── slidewall.svg │ │ │ ├── slimbookamdcontroller.svg │ │ │ ├── slimbookbattery.svg │ │ │ ├── slingcold.svg │ │ │ ├── slingscold.svg │ │ │ ├── sm.puri.Chatty.svg │ │ │ ├── sm64ex.svg │ │ │ ├── sm64plus.svg │ │ │ ├── smart.svg │ │ │ ├── smartcode-stremio.svg │ │ │ ├── smartgit.svg │ │ │ ├── smartgithg.svg │ │ │ ├── smartsim.svg │ │ │ ├── smartsvn.svg │ │ │ ├── smartsynchronize.svg │ │ │ ├── smb4k.svg │ │ │ ├── smplayer-panel.svg │ │ │ ├── smplayer.svg │ │ │ ├── smtube.svg │ │ │ ├── smuxi-frontend-gnome.svg │ │ │ ├── smuxi.svg │ │ │ ├── smw.svg │ │ │ ├── snap-photobooth.svg │ │ │ ├── snap.svg │ │ │ ├── software-center.svg │ │ │ ├── software-manager.svg │ │ │ ├── software-properties-mint.svg │ │ │ ├── software-properties.svg │ │ │ ├── software-sources.svg │ │ │ ├── software-store.svg │ │ │ ├── software-update-available-symbolic.svg │ │ │ ├── software-update-available.svg │ │ │ ├── software-update-urgent.svg │ │ │ ├── software.svg │ │ │ ├── softwarecenter-debian.svg │ │ │ ├── softwarecenter-ubuntu.svg │ │ │ ├── softwarecenter.svg │ │ │ ├── softwarecentre.svg │ │ │ ├── softwarestore.svg │ │ │ ├── sogou_notify.svg │ │ │ ├── sogoupinyin.svg │ │ │ ├── solaar-attention.svg │ │ │ ├── solaar-indicator.svg │ │ │ ├── solaar.svg │ │ │ ├── solarus-launcher.svg │ │ │ ├── solstice-discord-discord.svg │ │ │ ├── solstice-google-maps.svg │ │ │ ├── solstice-google-photos.svg │ │ │ ├── solstice-google-youtube-music.svg │ │ │ ├── solstice-google-youtube.svg │ │ │ ├── solstice-metoffice-weather.svg │ │ │ ├── solstice-microsoft-365-excel.svg │ │ │ ├── solstice-microsoft-365-onenote.svg │ │ │ ├── solstice-microsoft-365-powerpoint.svg │ │ │ ├── solstice-microsoft-365-teams.svg │ │ │ ├── solstice-microsoft-365-word.svg │ │ │ ├── solstice-microsoft-365.svg │ │ │ ├── solstice-microsoft-outlook-calendar.svg │ │ │ ├── solstice-microsoft-outlook.svg │ │ │ ├── solstice-nhk-nhk-weather.svg │ │ │ ├── solstice-skype-web.svg │ │ │ ├── solstice-soundcloud-soundcloud.svg │ │ │ ├── solstice-spotify-spotify.svg │ │ │ ├── solstice-twitter-twitter.svg │ │ │ ├── solstice-weathernews-japan.svg │ │ │ ├── sonata.svg │ │ │ ├── sound-juicer.svg │ │ │ ├── sound-recorder.svg │ │ │ ├── sound_mixers_section.svg │ │ │ ├── soundcloud.svg │ │ │ ├── soundconverter.svg │ │ │ ├── soundkonverter.svg │ │ │ ├── sourcery.svg │ │ │ ├── space-usage.svg │ │ │ ├── spacefm-find.svg │ │ │ ├── spacefm.svg │ │ │ ├── spaceview.svg │ │ │ ├── sparkleshare-16.svg │ │ │ ├── sparkleshare-22.svg │ │ │ ├── sparkleshare-24.svg │ │ │ ├── sparkleshare-256.svg │ │ │ ├── sparkleshare-32.svg │ │ │ ├── sparkleshare-48.svg │ │ │ ├── sparkleshare-symbolic.svg │ │ │ ├── sparkleshare.svg │ │ │ ├── sparrow-wallet.svg │ │ │ ├── speakers.svg │ │ │ ├── spectacle.svg │ │ │ ├── speedcrunch.svg │ │ │ ├── spotify-client.svg │ │ │ ├── spotify-indicator.svg │ │ │ ├── spotify-linux-48x48.svg │ │ │ ├── spotify-linux-512x512.svg │ │ │ ├── spotify-qt.svg │ │ │ ├── spotify-web-player.svg │ │ │ ├── spotify.svg │ │ │ ├── spotify_A.svg │ │ │ ├── spotifywebplayer.svg │ │ │ ├── sqldeveloper.svg │ │ │ ├── sqlitebrowser.svg │ │ │ ├── sqliteman.svg │ │ │ ├── ssdeep.svg │ │ │ ├── ssh-askpass-gnome.svg │ │ │ ├── stacer.svg │ │ │ ├── stage.svg │ │ │ ├── standard-notes.svg │ │ │ ├── starcal2.svg │ │ │ ├── stardict.svg │ │ │ ├── stardict_16x16.svg │ │ │ ├── stardict_32x32.svg │ │ │ ├── starred.svg │ │ │ ├── start-here-arch.svg │ │ │ ├── start-here-archlinux.svg │ │ │ ├── start-here-arcolinux.svg │ │ │ ├── start-here-debian.svg │ │ │ ├── start-here-fedora.svg │ │ │ ├── start-here-gentoo.svg │ │ │ ├── start-here-kde.svg │ │ │ ├── start-here-linux-mint.svg │ │ │ ├── start-here-manjaro.svg │ │ │ ├── start-here-nixos.png │ │ │ ├── start-here-opensuse.svg │ │ │ ├── start-here-peppermint.svg │ │ │ ├── start-here-pop-os.svg │ │ │ ├── start-here-ubuntu.svg │ │ │ ├── start-here-xfce.svg │ │ │ ├── start-here.svg │ │ │ ├── start.svg │ │ │ ├── startup-manager.svg │ │ │ ├── startupmanager.svg │ │ │ ├── state-download.svg │ │ │ ├── state-error.svg │ │ │ ├── steadyflow.svg │ │ │ ├── steam-icon.svg │ │ │ ├── steam-launcher.svg │ │ │ ├── steam-metadata-editor.svg │ │ │ ├── steam-native.svg │ │ │ ├── steam-tray.svg │ │ │ ├── steam.svg │ │ │ ├── steam_icon_22600.svg │ │ │ ├── steam_icon_22690.svg │ │ │ ├── steam_icon_233840.svg │ │ │ ├── steam_icon_26900.svg │ │ │ ├── steam_icon_280680.svg │ │ │ ├── steam_icon_286160.svg │ │ │ ├── steam_icon_2870.svg │ │ │ ├── steam_icon_327030.svg │ │ │ ├── steam_icon_365670.svg │ │ │ ├── steam_icon_375320.svg │ │ │ ├── steam_icon_400020.svg │ │ │ ├── steam_icon_404790.svg │ │ │ ├── steam_tray.svg │ │ │ ├── steam_tray_mono.svg │ │ │ ├── steamos-logo-icon.svg │ │ │ ├── steampowered.svg │ │ │ ├── steamskinmanager.svg │ │ │ ├── sticky-notes.svg │ │ │ ├── stock-addressbook.svg │ │ │ ├── stock-preferences-desktop-remote-desktop.svg │ │ │ ├── stock_about.svg │ │ │ ├── stock_addressbook.svg │ │ │ ├── stock_alarm.svg │ │ │ ├── stock_bell.svg │ │ │ ├── stock_bluetooh.svg │ │ │ ├── stock_bluetooth.svg │ │ │ ├── stock_calendar-and-tasks.svg │ │ │ ├── stock_calendar.svg │ │ │ ├── stock_dialog-info.svg │ │ │ ├── stock_file-manager.svg │ │ │ ├── stock_help-agent.svg │ │ │ ├── stock_help.svg │ │ │ ├── stock_insert_note.svg │ │ │ ├── stock_internet.svg │ │ │ ├── stock_keyring.svg │ │ │ ├── stock_mail-compose.svg │ │ │ ├── stock_mail.svg │ │ │ ├── stock_new-meeting.svg │ │ │ ├── stock_new-spreadsheet.svg │ │ │ ├── stock_news.svg │ │ │ ├── stock_notes.svg │ │ │ ├── stock_people.svg │ │ │ ├── stock_task.svg │ │ │ ├── stock_tasks.svg │ │ │ ├── stock_unknown.svg │ │ │ ├── stock_view-details.svg │ │ │ ├── stock_weather-storm.svg │ │ │ ├── stock_xfburn-audio-cd.svg │ │ │ ├── stock_xfburn-burn-cd.svg │ │ │ ├── stock_xfburn-data-copy.svg │ │ │ ├── stock_xfburn.svg │ │ │ ├── strawberry-panel.svg │ │ │ ├── strawberry.svg │ │ │ ├── stremio.svg │ │ │ ├── strigi.svg │ │ │ ├── studio.kx.carla.svg │ │ │ ├── studio.svg │ │ │ ├── style.svg │ │ │ ├── subdownloader.svg │ │ │ ├── sublime-merge.svg │ │ │ ├── sublime-text-2.svg │ │ │ ├── sublime-text-3.svg │ │ │ ├── sublime-text.svg │ │ │ ├── sublime-text2.svg │ │ │ ├── sublime.svg │ │ │ ├── sublime3-text.svg │ │ │ ├── sublime_text.svg │ │ │ ├── sublime_text2.svg │ │ │ ├── sublimetext.svg │ │ │ ├── subsystem.svg │ │ │ ├── subtitlecomposer.svg │ │ │ ├── subtitleeditor.svg │ │ │ ├── sun-control.svg │ │ │ ├── sun-java-7.svg │ │ │ ├── sun-java-jdk10.svg │ │ │ ├── sun-java-jdk5.svg │ │ │ ├── sun-java-jdk6 │ │ │ ├── sun-java-jdk6.svg │ │ │ ├── sun-java-jdk7 │ │ │ ├── sun-java-jdk7.svg │ │ │ ├── sun-java-jdk8 │ │ │ ├── sun-java-jdk8.svg │ │ │ ├── sun-java-jdk9.svg │ │ │ ├── sun-java-jre10.svg │ │ │ ├── sun-java-jre8.svg │ │ │ ├── sun-java-sdk6.svg │ │ │ ├── sun-java-sdk7.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 │ │ │ ├── sun-javaws-jdk6.svg │ │ │ ├── sun-javaws-jdk7 │ │ │ ├── sun-javaws-jdk7.svg │ │ │ ├── sun-javaws-jdk8 │ │ │ ├── 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 │ │ │ ├── sun-jcontrol-jdk6.svg │ │ │ ├── sun-jcontrol-jdk7 │ │ │ ├── sun-jcontrol-jdk7.svg │ │ │ ├── sun-jcontrol-jdk8 │ │ │ ├── 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-6.svg │ │ │ ├── sun_java-7.svg │ │ │ ├── sun_java.svg │ │ │ ├── sun_java6.svg │ │ │ ├── sun_java7.svg │ │ │ ├── superpaper.svg │ │ │ ├── supertux.svg │ │ │ ├── supertux2.svg │ │ │ ├── supertuxkart.svg │ │ │ ├── susehelpcenter.svg │ │ │ ├── susers.svg │ │ │ ├── swatchbooker.svg │ │ │ ├── swcentre.svg │ │ │ ├── sweeper.svg │ │ │ ├── switchuser.svg │ │ │ ├── sylpheed.svg │ │ │ ├── synaptic.svg │ │ │ ├── syncthing-gtk.svg │ │ │ ├── syncthing.svg │ │ │ ├── syncthingtray.svg │ │ │ ├── synfig.svg │ │ │ ├── synfig_icon.svg │ │ │ ├── synfigstudio.svg │ │ │ ├── synology-cloud-station-backup.svg │ │ │ ├── syntevo-smartgit.svg │ │ │ ├── syphon.svg │ │ │ ├── sysprof-icon.svg │ │ │ ├── sysprof.svg │ │ │ ├── systach.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-samba.svg │ │ │ ├── system-config-selinux.svg │ │ │ ├── system-config-services.svg │ │ │ ├── system-config-users.svg │ │ │ ├── system-error.svg │ │ │ ├── system-file-manager-panel.svg │ │ │ ├── system-file-manager-symbolic.svg │ │ │ ├── system-file-manager.svg │ │ │ ├── system-help-symbolic.svg │ │ │ ├── system-help.svg │ │ │ ├── system-hibernate.svg │ │ │ ├── system-installer.svg │ │ │ ├── system-istaller.svg │ │ │ ├── system-keyboard-mx.svg │ │ │ ├── system-lock-screen-symbolic.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-panel.svg │ │ │ ├── system-restart.svg │ │ │ ├── system-run.svg │ │ │ ├── system-search.svg │ │ │ ├── system-section.svg │ │ │ ├── system-settings.svg │ │ │ ├── system-shut-down.svg │ │ │ ├── system-shutdown-panel-restart.svg │ │ │ ├── system-shutdown.svg │ │ │ ├── system-software-install.svg │ │ │ ├── system-software-installer.svg │ │ │ ├── system-software-update-panel.svg │ │ │ ├── system-software-update-symbolic.svg │ │ │ ├── system-software-update.svg │ │ │ ├── system-software-update_ubuntu.svg │ │ │ ├── system-suspend-hibernate.svg │ │ │ ├── system-suspend.svg │ │ │ ├── system-switch-java.svg │ │ │ ├── system-switch-user.svg │ │ │ ├── system-upgrade.svg │ │ │ ├── system-users-symbolic.svg │ │ │ ├── system-users-symbolic.symbolic.svg │ │ │ ├── system-users.svg │ │ │ ├── system-utilities-logviewer.svg │ │ │ ├── system-virtualbox.svg │ │ │ ├── system.svg │ │ │ ├── system76-driver.svg │ │ │ ├── system_file_manager.svg │ │ │ ├── system_help.svg │ │ │ ├── system_section.svg │ │ │ ├── system_users.svg │ │ │ ├── systemback.svg │ │ │ ├── systempreferences.svg │ │ │ ├── systemsettings.svg │ │ │ ├── systemtray.svg │ │ │ ├── szyszka.svg │ │ │ ├── tabby.svg │ │ │ ├── tabletop-simulator.svg │ │ │ ├── tali.svg │ │ │ ├── tartube.svg │ │ │ ├── task-reminder.svg │ │ │ ├── taskbar.svg │ │ │ ├── tau.svg │ │ │ ├── tauonmb-symbolic.svg │ │ │ ├── tauonmb.svg │ │ │ ├── tdenetworkmanager.svg │ │ │ ├── tdescreensaver.svg │ │ │ ├── tdesvn.svg │ │ │ ├── tdevelop.svg │ │ │ ├── tdewalletmanager.svg │ │ │ ├── tdmconfig.svg │ │ │ ├── teams-for-linux.svg │ │ │ ├── teams.svg │ │ │ ├── teamspeak.svg │ │ │ ├── teamspeak3.svg │ │ │ ├── teamviewer.svg │ │ │ ├── tech.feliciano.pocket-casts.svg │ │ │ ├── telegram-classic.svg │ │ │ ├── telegram-desktop-bin.svg │ │ │ ├── telegram-desktop.svg │ │ │ ├── telegram-panel.svg │ │ │ ├── telegram.svg │ │ │ ├── telepathy-kde.svg │ │ │ ├── telepathy.svg │ │ │ ├── terasology.svg │ │ │ ├── terminal-app-symbolic.svg │ │ │ ├── terminal-symbolic.svg │ │ │ ├── terminal-tango.svg │ │ │ ├── terminal.svg │ │ │ ├── terminator-128.svg │ │ │ ├── terminator.svg │ │ │ ├── terminix.svg │ │ │ ├── terminology.svg │ │ │ ├── terminus.svg │ │ │ ├── termius-app.svg │ │ │ ├── termius.svg │ │ │ ├── terra.svg │ │ │ ├── tespeak-gui.svg │ │ │ ├── texmacs.svg │ │ │ ├── texmaker.svg │ │ │ ├── texmaker128x128.svg │ │ │ ├── texstudio.svg │ │ │ ├── text-editor-symbolic.svg │ │ │ ├── text-editor.svg │ │ │ ├── text.svg │ │ │ ├── textadept.svg │ │ │ ├── texworks.svg │ │ │ ├── theme-config.svg │ │ │ ├── thememgr.svg │ │ │ ├── thermal-monitor.svg │ │ │ ├── thinderbird-icon.svg │ │ │ ├── thonny.svg │ │ │ ├── thorium.svg │ │ │ ├── thunar-dropbox.svg │ │ │ ├── thunar-filemanager.svg │ │ │ ├── thunar-settings.svg │ │ │ ├── thunar.svg │ │ │ ├── thunderbird-3.0.svg │ │ │ ├── thunderbird-beta-bin.svg │ │ │ ├── thunderbird-beta.svg │ │ │ ├── thunderbird-bin.svg │ │ │ ├── thunderbird-branded.svg │ │ │ ├── thunderbird-early-bird.svg │ │ │ ├── thunderbird-icon-unbranded.svg │ │ │ ├── thunderbird-icon.svg │ │ │ ├── thunderbird-mozilla-build.svg │ │ │ ├── thunderbird-nightly.svg │ │ │ ├── thunderbird-panel.svg │ │ │ ├── thunderbird-trunk.svg │ │ │ ├── thunderbird.svg │ │ │ ├── tigervnc.svg │ │ │ ├── tild.svg │ │ │ ├── tilda.svg │ │ │ ├── tilix.svg │ │ │ ├── time-admin.svg │ │ │ ├── time-shift.svg │ │ │ ├── time.svg │ │ │ ├── timekpr.svg │ │ │ ├── timer-applet.svg │ │ │ ├── timeset-gui-icon.svg │ │ │ ├── timeset.svg │ │ │ ├── timeshift.svg │ │ │ ├── timevault.svg │ │ │ ├── tint2.svg │ │ │ ├── tint2conf.svg │ │ │ ├── tizen-studio-dynamicanalyzer.svg │ │ │ ├── tizen-studio-em.svg │ │ │ ├── tkonversation.svg │ │ │ ├── tkonversation16x16.svg │ │ │ ├── tkpacman-icon.svg │ │ │ ├── tkpacman.svg │ │ │ ├── tlauncher.svg │ │ │ ├── to-do-app.svg │ │ │ ├── todo.svg │ │ │ ├── todoist.svg │ │ │ ├── toggldesktop.svg │ │ │ ├── tomboy-16.svg │ │ │ ├── tomboy-32.svg │ │ │ ├── tomboy-ng.svg │ │ │ ├── tomboy-note.svg │ │ │ ├── tomboy-panel.svg │ │ │ ├── tomboy.svg │ │ │ ├── tools-check-spelling-symbolic.svg │ │ │ ├── tools-check-spelling.svg │ │ │ ├── tools-report-bug.svg │ │ │ ├── tools-wizard.svg │ │ │ ├── tootle.svg │ │ │ ├── topmenu-applet.svg │ │ │ ├── tor-browser-en.svg │ │ │ ├── tor-browser-ru.svg │ │ │ ├── tor-browser.svg │ │ │ ├── tor.svg │ │ │ ├── torbrowser.svg │ │ │ ├── torbrowser.svg.svg │ │ │ ├── torbrowser80.svg │ │ │ ├── totem.svg │ │ │ ├── toxygen.svg │ │ │ ├── tracker.svg │ │ │ ├── tracktion-download-manager.svg │ │ │ ├── transgui-2.svg │ │ │ ├── transgui.svg │ │ │ ├── translator.svg │ │ │ ├── transmageddon.svg │ │ │ ├── transmission-gtk.svg │ │ │ ├── transmission-qt.svg │ │ │ ├── transmission-remote-gtk.svg │ │ │ ├── transmission-remote-qt.svg │ │ │ ├── transmission-symbolic.svg │ │ │ ├── transmission-tray-icon.svg │ │ │ ├── transmission.svg │ │ │ ├── trello.svg │ │ │ ├── tremotesf.svg │ │ │ ├── trojita.svg │ │ │ ├── truecrypt.svg │ │ │ ├── tsclient-applet.svg │ │ │ ├── tsclient.svg │ │ │ ├── tunesview.svg │ │ │ ├── turpial.svg │ │ │ ├── tuxboot.svg │ │ │ ├── tuxpaint.svg │ │ │ ├── tv.kodi.Kodi.svg │ │ │ ├── tv.plex.PlexDesktop.svg │ │ │ ├── tv.plex.PlexHTPC.svg │ │ │ ├── tvm-burn-cd.svg │ │ │ ├── tvmaxe.svg │ │ │ ├── tvtime.svg │ │ │ ├── tweaks-app.svg │ │ │ ├── tweet-tray-panel.svg │ │ │ ├── tweet-tray.svg │ │ │ ├── tweetdeck.svg │ │ │ ├── twin.svg │ │ │ ├── twitgoo_uploader.svg │ │ │ ├── twitpic_uploader.svg │ │ │ ├── twitter-home-symbolic.svg │ │ │ ├── twitter-home.svg │ │ │ ├── twitter-logo.svg │ │ │ ├── twitter-mentions-symbolic.svg │ │ │ ├── twitter-mentions.svg │ │ │ ├── twitter.svg │ │ │ ├── twitter_microblog.svg │ │ │ ├── twitux.svg │ │ │ ├── typecatcher.svg │ │ │ ├── typhoon.svg │ │ │ ├── typora.svg │ │ │ ├── ubinary.svg │ │ │ ├── ubiquity-kde.svg │ │ │ ├── ubiquity.svg │ │ │ ├── ubunsys.svg │ │ │ ├── ubuntu-cleaner.svg │ │ │ ├── ubuntu-first-steps.svg │ │ │ ├── ubuntu-kylin-software-center.svg │ │ │ ├── ubuntu-logo-icon.svg │ │ │ ├── ubuntu-mate.svg │ │ │ ├── ubuntu-online-tour.svg │ │ │ ├── ubuntu-qtcreator.svg │ │ │ ├── ubuntu-sdk-ide.svg │ │ │ ├── ubuntu-sdk.svg │ │ │ ├── ubuntu-software-center.svg │ │ │ ├── ubuntu-store.svg │ │ │ ├── ubuntu.svg │ │ │ ├── ubuntuone-client.svg │ │ │ ├── ubuntuone-installer.svg │ │ │ ├── ubuntuone-music.svg │ │ │ ├── ubuntuone.svg │ │ │ ├── ubuntuoneUP.svg │ │ │ ├── ubuntusoftware.svg │ │ │ ├── ubuntustudio-audio.svg │ │ │ ├── ubuntustudio-effects.svg │ │ │ ├── ubuntustudio-graphics.svg │ │ │ ├── ubuntustudio-mixers.svg │ │ │ ├── ubuntustudio-photography.svg │ │ │ ├── ubuntustudio-video.svg │ │ │ ├── ue4editor.svg │ │ │ ├── ufw-frontends.svg │ │ │ ├── uget-icon.svg │ │ │ ├── uget-tray-default.svg │ │ │ ├── uget.svg │ │ │ ├── uk.co.ibboard.cawbird.svg │ │ │ ├── ukui-power-manager.svg │ │ │ ├── ukui-power-statistics.svg │ │ │ ├── ukuu.svg │ │ │ ├── ulauncher.svg │ │ │ ├── un-reboot.svg │ │ │ ├── unetbootin.svg │ │ │ ├── ungoogled-chromium.svg │ │ │ ├── unity-color-panel.svg │ │ │ ├── unity-control-center.svg │ │ │ ├── unity-datetime-panel.svg │ │ │ ├── unity-display-panel.svg │ │ │ ├── unity-editor-beta-icon.svg │ │ │ ├── unity-editor-icon.svg │ │ │ ├── unity-lens-photos.svg │ │ │ ├── unity-mail-icon.svg │ │ │ ├── unity-mail.svg │ │ │ ├── unity-power-panel.svg │ │ │ ├── unity-scope-gdrive.svg │ │ │ ├── unity-sound-panel.svg │ │ │ ├── unity-tweak-tool-appearance.svg │ │ │ ├── unity-tweak-tool-symbolic.svg │ │ │ ├── unity-tweak-tool.svg │ │ │ ├── unity-webapps-amazoncloudreader.svg │ │ │ ├── unity-webapps-facebook.svg │ │ │ ├── unity-webapps-gmail.svg │ │ │ ├── unity-webapps-google-calendar.svg │ │ │ ├── unity-webapps-google-docs.svg │ │ │ ├── unity-webapps-hotmail.svg │ │ │ ├── unity-webapps-lastfm.svg │ │ │ ├── unity-webapps-launchpad.svg │ │ │ ├── unity-webapps-mail-ru.svg │ │ │ ├── unity-webapps-news-mail-ru.svg │ │ │ ├── unity-webapps-outlook.svg │ │ │ ├── unity-webapps-telegram.svg │ │ │ ├── unity-webapps-twitter.svg │ │ │ ├── unity-webapps-wordpress.svg │ │ │ ├── unity-webapps-youtube.svg │ │ │ ├── unity_mail.svg │ │ │ ├── unityhub.svg │ │ │ ├── uos-downloadmanager.svg │ │ │ ├── uos-installtool.svg │ │ │ ├── uos-remote-assistance.svg │ │ │ ├── uos-service-support.svg │ │ │ ├── uos-windesk.svg │ │ │ ├── uosbrowser-cn.svg │ │ │ ├── update-manager.svg │ │ │ ├── update-notifier.svg │ │ │ ├── update.svg │ │ │ ├── update_manager_icon.svg │ │ │ ├── updates-notifier.svg │ │ │ ├── updates.svg │ │ │ ├── urxvt.svg │ │ │ ├── urxvt_48x48.svg │ │ │ ├── us.zoom.Zoom.svg │ │ │ ├── usb-creator-gtk.svg │ │ │ ├── usb-creator-kde.svg │ │ │ ├── usb-creator.svg │ │ │ ├── usb.svg │ │ │ ├── usbimager.svg │ │ │ ├── usbprog-gui.svg │ │ │ ├── usbprog.svg │ │ │ ├── usbprog_icon.svg │ │ │ ├── user-admin.svg │ │ │ ├── user-file-manager.svg │ │ │ ├── user-identity.svg │ │ │ ├── user-info-symbolic.svg │ │ │ ├── user-info-symbolic.symbolic.svg │ │ │ ├── user-info.svg │ │ │ ├── user.svg │ │ │ ├── user_auth.svg │ │ │ ├── user_icon.svg │ │ │ ├── userdrake.svg │ │ │ ├── userinfo.svg │ │ │ ├── usermount.svg │ │ │ ├── users-admin.svg │ │ │ ├── users.svg │ │ │ ├── utilies-bug-reporter.svg │ │ │ ├── utilities-charactermap.svg │ │ │ ├── utilities-clock.svg │ │ │ ├── utilities-desktop-extra.svg │ │ │ ├── utilities-dictionary.svg │ │ │ ├── utilities-energy-monitor.svg │ │ │ ├── utilities-file-archiver.svg │ │ │ ├── utilities-file-manager.svg │ │ │ ├── utilities-launcher.svg │ │ │ ├── utilities-log-viewer.svg │ │ │ ├── utilities-notes.svg │ │ │ ├── utilities-root-terminal.svg │ │ │ ├── utilities-system-monitor-symbolic.svg │ │ │ ├── utilities-system-monitor.svg │ │ │ ├── utilities-terminal-root.svg │ │ │ ├── utilities-terminal-symbolic.svg │ │ │ ├── utilities-terminal-symbolic.symbolic.svg │ │ │ ├── utilities-terminal.svg │ │ │ ├── utilities-terminal_su.svg │ │ │ ├── utilities-text-editor.svg │ │ │ ├── utilities-tweak-tool-alt.svg │ │ │ ├── utilities-tweak-tool-symbolic.svg │ │ │ ├── utilities-tweak-tool.svg │ │ │ ├── utilities-x-terminal.svg │ │ │ ├── utilities_file_archiver.svg │ │ │ ├── utilities_system_monitor.svg │ │ │ ├── utilities_terminal.svg │ │ │ ├── utox.svg │ │ │ ├── uxterm.svg │ │ │ ├── vala-panel.svg │ │ │ ├── vala-terminal.svg │ │ │ ├── variety-indicator.svg │ │ │ ├── variety.svg │ │ │ ├── vbox.svg │ │ │ ├── vboxgtk.svg │ │ │ ├── vcalendar.svg │ │ │ ├── verbiste.svg │ │ │ ├── veromix.svg │ │ │ ├── veyon-configurator.svg │ │ │ ├── viber.svg │ │ │ ├── vidcutter.svg │ │ │ ├── video-display.svg │ │ │ ├── video-nvidia.svg │ │ │ ├── video-player.svg │ │ │ ├── videogames.svg │ │ │ ├── videomass.svg │ │ │ ├── videoplayer.svg │ │ │ ├── vidiot.svg │ │ │ ├── view-media-config.svg │ │ │ ├── view-media-playlist.svg │ │ │ ├── view-preview.svg │ │ │ ├── view-radiostream.svg │ │ │ ├── viewnior.svg │ │ │ ├── vim-16.svg │ │ │ ├── vim-32.svg │ │ │ ├── vim-48.svg │ │ │ ├── vim-qt.svg │ │ │ ├── vim.svg │ │ │ ├── vimlogo.svg │ │ │ ├── vinagre.svg │ │ │ ├── viper-browser.svg │ │ │ ├── virt-manager-panel.svg │ │ │ ├── virt-manager.svg │ │ │ ├── virt-viewer.svg │ │ │ ├── virtual-box.svg │ │ │ ├── virtual-desktops.svg │ │ │ ├── virtualbox-3.1.svg │ │ │ ├── virtualbox-bin.svg │ │ │ ├── virtualbox-nonfree.svg │ │ │ ├── virtualbox-ose.svg │ │ │ ├── virtualbox-vbox.svg │ │ │ ├── virtualbox.svg │ │ │ ├── virtualbox_B.svg │ │ │ ├── visual-studio-code-bin.svg │ │ │ ├── visual-studio-code-insiders.svg │ │ │ ├── visual-studio-code.svg │ │ │ ├── visualstudiocode.svg │ │ │ ├── vivado_logo.svg │ │ │ ├── vivaldi-beta.svg │ │ │ ├── vivaldi-snapshot.svg │ │ │ ├── vivaldi-stable.svg │ │ │ ├── vivaldi.svg │ │ │ ├── vlc-kb.svg │ │ │ ├── vlc-panel.svg │ │ │ ├── vlc.svg │ │ │ ├── vm-tools-install.svg │ │ │ ├── vmnetcfg.svg │ │ │ ├── vmplayer.svg │ │ │ ├── vmware-memory.svg │ │ │ ├── vmware-netcfg.svg │ │ │ ├── vmware-player.svg │ │ │ ├── vmware-workstation.svg │ │ │ ├── vmware.svg │ │ │ ├── vnc.svg │ │ │ ├── vncviewer.svg │ │ │ ├── vncviewer48x48.svg │ │ │ ├── vnote.svg │ │ │ ├── vocal.svg │ │ │ ├── vokoscreen.svg │ │ │ ├── vokoscreenNG.svg │ │ │ ├── volume-knob.svg │ │ │ ├── volume.svg │ │ │ ├── vsc.svg │ │ │ ├── vscode-exploration.svg │ │ │ ├── vscode.svg │ │ │ ├── vscodium.svg │ │ │ ├── vso.svg │ │ │ ├── vstudio.svg │ │ │ ├── vuescan.svg │ │ │ ├── vvave.svg │ │ │ ├── vym.svg │ │ │ ├── wallet-closed.svg │ │ │ ├── wallet-open.svg │ │ │ ├── wallet.svg │ │ │ ├── wallpaper.svg │ │ │ ├── warpgui.svg │ │ │ ├── warpinator.svg │ │ │ ├── waterfox-classic.svg │ │ │ ├── waterfox-current.svg │ │ │ ├── waterfox-icon.svg │ │ │ ├── waterfox.svg │ │ │ ├── waydroid.svg │ │ │ ├── wayland.svg │ │ │ ├── wazzapp.svg │ │ │ ├── weather-app.svg │ │ │ ├── weather-clear.svg │ │ │ ├── weather-none-available.svg │ │ │ ├── weather-storm.svg │ │ │ ├── weather-widget.svg │ │ │ ├── weather.svg │ │ │ ├── web-amazon.svg │ │ │ ├── web-anydo.svg │ │ │ ├── web-blogger.svg │ │ │ ├── web-browser-app.svg │ │ │ ├── web-browser-chrome.svg │ │ │ ├── web-browser-chromium.svg │ │ │ ├── web-browser-opera.svg │ │ │ ├── web-browser-symbolic.svg │ │ │ ├── web-browser-symbolic.symbolic.svg │ │ │ ├── web-browser.svg │ │ │ ├── web-discord.svg │ │ │ ├── web-dropbox.svg │ │ │ ├── web-evernote.svg │ │ │ ├── web-facebook.svg │ │ │ ├── web-fastmail.svg │ │ │ ├── web-flickr.svg │ │ │ ├── web-google-drawings.svg │ │ │ ├── web-google-drive.svg │ │ │ ├── web-google-fusion-tables.svg │ │ │ ├── web-google-gmail-offline.svg │ │ │ ├── web-google-gmail.svg │ │ │ ├── web-google-maps.svg │ │ │ ├── web-google-play-books.svg │ │ │ ├── web-google-play-music.svg │ │ │ ├── web-google-youtube.svg │ │ │ ├── web-hotmail.svg │ │ │ ├── web-kindle.svg │ │ │ ├── web-lastfm.svg │ │ │ ├── web-mailru.svg │ │ │ ├── web-microsoft.svg │ │ │ ├── web-onenote.svg │ │ │ ├── web-outlook.svg │ │ │ ├── web-spotify.svg │ │ │ ├── web-telegram.svg │ │ │ ├── web-twitter.svg │ │ │ ├── web-whatsapp.svg │ │ │ ├── web-word.svg │ │ │ ├── webapp-manager.svg │ │ │ ├── webbrowser-app.svg │ │ │ ├── webcamoid.svg │ │ │ ├── webcord.svg │ │ │ ├── webide.svg │ │ │ ├── webkit.svg │ │ │ ├── webstorm.svg │ │ │ ├── wechat.svg │ │ │ ├── weechat.svg │ │ │ ├── weixin.svg │ │ │ ├── wewechat.svg │ │ │ ├── whaawmp.svg │ │ │ ├── whatip.svg │ │ │ ├── whatsapp-desktop.svg │ │ │ ├── whatsapp-for-linux.svg │ │ │ ├── whatsapp-nativefier.svg │ │ │ ├── whatsapp-tray.svg │ │ │ ├── whatsapp-web.svg │ │ │ ├── whatsapp.svg │ │ │ ├── whatsappfordesktop.svg │ │ │ ├── whatsdesk.svg │ │ │ ├── whatsie-tray-attention.svg │ │ │ ├── whatsie-tray.svg │ │ │ ├── whatsie.svg │ │ │ ├── whiskermenu-manjaro.svg │ │ │ ├── wicd-gtk.svg │ │ │ ├── wicd.svg │ │ │ ├── wifi-radar.svg │ │ │ ├── wilber-icon.svg │ │ │ ├── wilber-icon2_0.svg │ │ │ ├── window-duplicate.svg │ │ │ ├── window-manager.svg │ │ │ ├── window_list.svg │ │ │ ├── windows.svg │ │ │ ├── windows95.svg │ │ │ ├── windscribe.svg │ │ │ ├── wine-file.0.svg │ │ │ ├── wine-help.svg │ │ │ ├── wine-java1.svg │ │ │ ├── wine-java2.svg │ │ │ ├── wine-launcher.svg │ │ │ ├── wine-mlcad.svg │ │ │ ├── wine-notepad.svg │ │ │ ├── wine-uninstaller.svg │ │ │ ├── wine-winecfg.svg │ │ │ ├── wine-winefile.svg │ │ │ ├── wine-winetricks.svg │ │ │ ├── wine.svg │ │ │ ├── wine1.2.svg │ │ │ ├── wine1.3.svg │ │ │ ├── wine1.4.svg │ │ │ ├── wine_notepad.svg │ │ │ ├── winecfg.svg │ │ │ ├── winefile.svg │ │ │ ├── winemine.svg │ │ │ ├── winetricks.svg │ │ │ ├── winff.svg │ │ │ ├── wingpanel.svg │ │ │ ├── winhelp.svg │ │ │ ├── winpdb.svg │ │ │ ├── winusb.svg │ │ │ ├── winusbgui-icon.svg │ │ │ ├── winusbgui.svg │ │ │ ├── wire-desktop.svg │ │ │ ├── wire-tray.svg │ │ │ ├── wire.svg │ │ │ ├── wireshark-gtk.svg │ │ │ ├── wireshark.svg │ │ │ ├── wiznote.svg │ │ │ ├── wmail.svg │ │ │ ├── wmtweaks.svg │ │ │ ├── woeusbgui-icon.svg │ │ │ ├── wokoscreen.svg │ │ │ ├── wolfram-mathematica.svg │ │ │ ├── wordpad.svg │ │ │ ├── wordpress.svg │ │ │ ├── words.svg │ │ │ ├── wordview.svg │ │ │ ├── wordview.xpm.svg │ │ │ ├── work.openpaper.Paperwork.svg │ │ │ ├── workflowy.svg │ │ │ ├── workspace-overview.svg │ │ │ ├── workspace-switcher-left-bottom.svg │ │ │ ├── workspace-switcher-top-left.svg │ │ │ ├── workspace-switcher.svg │ │ │ ├── worms.svg │ │ │ ├── wp.svg │ │ │ ├── wpa.svg │ │ │ ├── wpa_gui.svg │ │ │ ├── wps-calc.svg │ │ │ ├── wps-office-etmain.svg │ │ │ ├── wps-office-kingsoft.svg │ │ │ ├── wps-office-kprometheus.svg │ │ │ ├── wps-office-pdf.svg │ │ │ ├── wps-office-pdfmain.svg │ │ │ ├── wps-office-wppmain.svg │ │ │ ├── wps-office-wpsmain-appmain.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 │ │ │ ├── wunderlist.svg │ │ │ ├── www-browser.svg │ │ │ ├── wxHexEditor.svg │ │ │ ├── wxcas.svg │ │ │ ├── wxlame.svg │ │ │ ├── x-boot-repair.svg │ │ │ ├── x-office-address-book.svg │ │ │ ├── x-office-calendar.svg │ │ │ ├── x-office-mail.svg │ │ │ ├── x-office_mail.svg │ │ │ ├── x-pdf.svg │ │ │ ├── x-plane.svg │ │ │ ├── x-rebirth.svg │ │ │ ├── x-system-software-sources.svg │ │ │ ├── x-terminal-emulator.svg │ │ │ ├── x.svg │ │ │ ├── x11.svg │ │ │ ├── x2goclient.svg │ │ │ ├── xame.svg │ │ │ ├── xampp.svg │ │ │ ├── xapp.svg │ │ │ ├── xar.svg │ │ │ ├── xarchiver.svg │ │ │ ├── xcalc.svg │ │ │ ├── xcfa.svg │ │ │ ├── xchat-gnome.svg │ │ │ ├── xchat-mini.svg │ │ │ ├── xchat-panel.svg │ │ │ ├── xchat.svg │ │ │ ├── xchat_.svg │ │ │ ├── xchm-48.svg │ │ │ ├── xchm.svg │ │ │ ├── xclipboard.svg │ │ │ ├── xclock.svg │ │ │ ├── xconsole.svg │ │ │ ├── xd-man.svg │ │ │ ├── xdemineur.svg │ │ │ ├── xdg-browser-launcher.svg │ │ │ ├── xdiagnose.svg │ │ │ ├── xdm-app.svg │ │ │ ├── xdm-logo.svg │ │ │ ├── xdman.svg │ │ │ ├── xed.svg │ │ │ ├── xedit.svg │ │ │ ├── xemacs.svg │ │ │ ├── xemu.svg │ │ │ ├── xenia.svg │ │ │ ├── xeyes.svg │ │ │ ├── xfburn.svg │ │ │ ├── xfcalendar.svg │ │ │ ├── xfce-devel.svg │ │ │ ├── xfce-dict.svg │ │ │ ├── xfce-display-external.svg │ │ │ ├── xfce-display-profile.svg │ │ │ ├── xfce-edit.svg │ │ │ ├── xfce-filemanager.svg │ │ │ ├── xfce-games.svg │ │ │ ├── xfce-graphics.svg │ │ │ ├── xfce-internet.svg │ │ │ ├── xfce-mail.svg │ │ │ ├── xfce-man.svg │ │ │ ├── xfce-mount.svg │ │ │ ├── xfce-mouse.svg │ │ │ ├── xfce-multimedia.svg │ │ │ ├── xfce-newmail.svg │ │ │ ├── xfce-office.svg │ │ │ ├── xfce-printer.svg │ │ │ ├── xfce-schedule.svg │ │ │ ├── xfce-sensors.svg │ │ │ ├── xfce-settings.svg │ │ │ ├── xfce-sound.svg │ │ │ ├── xfce-system-info.svg │ │ │ ├── xfce-system-lock.svg │ │ │ ├── xfce-system-settings.svg │ │ │ ├── xfce-system.svg │ │ │ ├── xfce-terminal.svg │ │ │ ├── xfce-theme-manager.svg │ │ │ ├── xfce-ui.svg │ │ │ ├── xfce-unknown.svg │ │ │ ├── xfce.svg │ │ │ ├── xfce4-accessibility-settings.svg │ │ │ ├── xfce4-appfinder.svg │ │ │ ├── xfce4-backdrop.svg │ │ │ ├── xfce4-battery-plugin.svg │ │ │ ├── xfce4-calculator-plugin.svg │ │ │ ├── xfce4-clipman-plugin.svg │ │ │ ├── xfce4-clipman.svg │ │ │ ├── xfce4-clock.svg │ │ │ ├── xfce4-color-settings.svg │ │ │ ├── xfce4-cpufreq-plugin.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-keyboard-settings.svg │ │ │ ├── xfce4-logo.svg │ │ │ ├── xfce4-mcs-manager.svg │ │ │ ├── xfce4-menueditor.svg │ │ │ ├── xfce4-mixer-no-record.svg │ │ │ ├── xfce4-mixer-record.svg │ │ │ ├── xfce4-mixer.svg │ │ │ ├── xfce4-netload-plugin.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-sample-plugin.svg │ │ │ ├── xfce4-schedule.svg │ │ │ ├── xfce4-session-logout.svg │ │ │ ├── xfce4-session.svg │ │ │ ├── xfce4-settings.svg │ │ │ ├── xfce4-sound.svg │ │ │ ├── xfce4-splash.svg │ │ │ ├── xfce4-statusnotifier-plugin.svg │ │ │ ├── xfce4-stopwatch-plugin.svg │ │ │ ├── xfce4-system-lock.svg │ │ │ ├── xfce4-systray.svg │ │ │ ├── xfce4-taskbar.svg │ │ │ ├── xfce4-terminal.svg │ │ │ ├── xfce4-time-out-plugin.svg │ │ │ ├── xfce4-timer-plugin.svg │ │ │ ├── xfce4-timer.svg │ │ │ ├── xfce4-ui.svg │ │ │ ├── xfce4-weather.svg │ │ │ ├── xfce4-whiskermenu.svg │ │ │ ├── xfce4-workspace.svg │ │ │ ├── xfce4-workspaces.svg │ │ │ ├── xfce4_xicon.svg │ │ │ ├── xfce_unknown.svg │ │ │ ├── xfdashboard.svg │ │ │ ├── xfe.svg │ │ │ ├── xfi.svg │ │ │ ├── xfmail.svg │ │ │ ├── xfp.svg │ │ │ ├── xfpm-ac-adapter.svg │ │ │ ├── xfpm-suspend.svg │ │ │ ├── xfsm-hibernate.svg │ │ │ ├── xfsm-lock.svg │ │ │ ├── xfsm-logout.svg │ │ │ ├── xfsm-reboot.svg │ │ │ ├── xfsm-shutdown.svg │ │ │ ├── xfsm-suspend.svg │ │ │ ├── xfsm-switch-user.svg │ │ │ ├── xfsm-switch.svg │ │ │ ├── xfw.svg │ │ │ ├── xfwm4-tweaks-settings.svg │ │ │ ├── xfwm4.svg │ │ │ ├── ximian-evolution-calendar.svg │ │ │ ├── ximian-evolution-email.svg │ │ │ ├── xine.svg │ │ │ ├── xine2.svg │ │ │ ├── xinput_calibrator.svg │ │ │ ├── xmag.svg │ │ │ ├── xmind.svg │ │ │ ├── xmms.svg │ │ │ ├── xmms_mini.svg │ │ │ ├── xn-lastfm.svg │ │ │ ├── xneur.svg │ │ │ ├── xorg.svg │ │ │ ├── xournal.svg │ │ │ ├── xournalpp.svg │ │ │ ├── xpad.svg │ │ │ ├── xpdf.svg │ │ │ ├── xpdf9.svg │ │ │ ├── xplane.svg │ │ │ ├── xplay.svg │ │ │ ├── xplayer.svg │ │ │ ├── xpra.svg │ │ │ ├── xreader.svg │ │ │ ├── xsane.svg │ │ │ ├── xscreensaver.svg │ │ │ ├── xsensor.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 │ │ │ ├── xyz.diamondb.gtkcord4.svg │ │ │ ├── xyz.safeworlds.midiconn.svg │ │ │ ├── y-cutter.svg │ │ │ ├── y-ppa-manager.svg │ │ │ ├── yad.svg │ │ │ ├── yagf.svg │ │ │ ├── yakuake.svg │ │ │ ├── yandex-browser-beta.svg │ │ │ ├── yandex-browser.svg │ │ │ ├── yandex-disk.svg │ │ │ ├── yarock.svg │ │ │ ├── yast-addon-extension.svg │ │ │ ├── yast-addon.svg │ │ │ ├── yast-admin.svg │ │ │ ├── yast-apparmor.svg │ │ │ ├── yast-auth-client.svg │ │ │ ├── yast-bootloader.svg │ │ │ ├── yast-checkmedia.svg │ │ │ ├── yast-control-center.svg │ │ │ ├── yast-create-new-vm.svg │ │ │ ├── yast-device-tree.svg │ │ │ ├── yast-disk.svg │ │ │ ├── yast-dsl.svg │ │ │ ├── yast-firewall.svg │ │ │ ├── yast-fonts.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-iscsi-client.svg │ │ │ ├── yast-iscsi-server.svg │ │ │ ├── yast-kerberos.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.svg │ │ │ ├── yast-network-group.svg │ │ │ ├── yast-network-services.svg │ │ │ ├── yast-network_services.svg │ │ │ ├── yast-nfs-server.svg │ │ │ ├── yast-nfs.svg │ │ │ ├── yast-nis.svg │ │ │ ├── yast-ntp-client.svg │ │ │ ├── yast-online-update.svg │ │ │ ├── yast-online_update.svg │ │ │ ├── yast-partitioning.svg │ │ │ ├── yast-powertweak.svg │ │ │ ├── yast-printer.svg │ │ │ ├── yast-proxy.svg │ │ │ ├── yast-release-notes.svg │ │ │ ├── yast-remote.svg │ │ │ ├── yast-runlevel.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-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 │ │ │ ├── yavol-youtube.svg │ │ │ ├── yd-128.svg │ │ │ ├── your-freedom.svg │ │ │ ├── youtube-browser.svg │ │ │ ├── youtube-circle.svg │ │ │ ├── youtube-dl-gui.svg │ │ │ ├── youtube-dl-gui_48x48.svg │ │ │ ├── youtube-dl-qt-icon.svg │ │ │ ├── youtube-dl.svg │ │ │ ├── youtube-dlg.svg │ │ │ ├── youtube-indicator-downloading-light.svg │ │ │ ├── youtube-indicator-light.svg │ │ │ ├── youtube-music-desktop-app-tray-play.svg │ │ │ ├── youtube-music-desktop-app-tray.svg │ │ │ ├── youtube-music-desktop-app.svg │ │ │ ├── youtube-music-tray.svg │ │ │ ├── youtube-music.svg │ │ │ ├── youtube-pmc.svg │ │ │ ├── youtube-to-mp3.svg │ │ │ ├── youtube.svg │ │ │ ├── youtubedl-gui.svg │ │ │ ├── yt-dl-gtk.svg │ │ │ ├── yubioath.svg │ │ │ ├── yumex-dnf.svg │ │ │ ├── yumex.svg │ │ │ ├── yuzu.svg │ │ │ ├── zanshin.svg │ │ │ ├── zaproxy.svg │ │ │ ├── zart.svg │ │ │ ├── zathura.svg │ │ │ ├── zeegaree-lite.svg │ │ │ ├── zeegaree.svg │ │ │ ├── zegarek-icon.svg │ │ │ ├── zeitgeist.svg │ │ │ ├── zen-icon.svg │ │ │ ├── zenmap.svg │ │ │ ├── zeroinstall.svg │ │ │ ├── zevdocs.svg │ │ │ ├── ziggurat.svg │ │ │ ├── zim.svg │ │ │ ├── znotes.svg │ │ │ ├── zoho-mail-desktop.svg │ │ │ ├── zoom-desktop.svg │ │ │ ├── zoom-icon.svg │ │ │ ├── zoom-videocam.svg │ │ │ ├── zorin-appearance.svg │ │ │ ├── zotero.svg │ │ │ ├── zulip.svg │ │ │ └── zynaddsubfx.svg │ ├── devices │ │ └── scalable │ │ │ ├── .directory │ │ │ ├── ac-adapter-symbolic.svg │ │ │ ├── ac-adapter-symbolic.symbolic.svg │ │ │ ├── ac-adapter.svg │ │ │ ├── audio-card-symbolic.svg │ │ │ ├── audio-card-symbolic.symbolic.svg │ │ │ ├── audio-card.svg │ │ │ ├── audio-headphones-symbolic.svg │ │ │ ├── audio-headphones-symbolic.symbolic.svg │ │ │ ├── audio-headphones.svg │ │ │ ├── audio-headset-symbolic.svg │ │ │ ├── audio-headset.svg │ │ │ ├── audio-headsets.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-mute.svg │ │ │ ├── audio-input-microphone-muted.svg │ │ │ ├── audio-input-microphone-none-panel.svg │ │ │ ├── audio-input-microphone-symbolic.svg │ │ │ ├── audio-input-microphone.svg │ │ │ ├── audio-recorder-off.svg │ │ │ ├── audio-recorder-on.svg │ │ │ ├── audio-speakers-symbolic.svg │ │ │ ├── audio-speakers-symbolic.synbolic.svg │ │ │ ├── audio-speakers.svg │ │ │ ├── audio-volume-off-symbolic-dark.svg │ │ │ ├── audio-volume-off-symbolic.svg │ │ │ ├── audio.svg │ │ │ ├── audiocard.svg │ │ │ ├── bad-signal-lock.svg │ │ │ ├── bad-signal.svg │ │ │ ├── battery-000-charging.svg │ │ │ ├── battery-000-plugged-symbolic-dark.svg │ │ │ ├── battery-000-plugged-symbolic.svg │ │ │ ├── battery-000-plugged.svg │ │ │ ├── battery-000-symbolic-dark.svg │ │ │ ├── battery-000-symbolic.svg │ │ │ ├── battery-000.svg │ │ │ ├── battery-010-charging.svg │ │ │ ├── battery-010-plugged-symbolic-dark.svg │ │ │ ├── battery-010-plugged-symbolic.svg │ │ │ ├── battery-010-plugged.svg │ │ │ ├── battery-010-symbolic-dark.svg │ │ │ ├── battery-010-symbolic.svg │ │ │ ├── battery-010.svg │ │ │ ├── battery-020-charging.svg │ │ │ ├── battery-020-plugged-symbolic-dark.svg │ │ │ ├── battery-020-plugged-symbolic.svg │ │ │ ├── battery-020-symbolic-dark.svg │ │ │ ├── battery-020-symbolic.svg │ │ │ ├── battery-020.svg │ │ │ ├── battery-030-charging.svg │ │ │ ├── battery-030-plugged-symbolic-dark.svg │ │ │ ├── battery-030-plugged-symbolic.svg │ │ │ ├── battery-030-plugged.svg │ │ │ ├── battery-030-symbolic-dark.svg │ │ │ ├── battery-030-symbolic.svg │ │ │ ├── battery-030.svg │ │ │ ├── battery-040-charging-symbolic.svg │ │ │ ├── battery-040-charging.svg │ │ │ ├── battery-040-plugged-symbolic-dark.svg │ │ │ ├── battery-040-plugged-symbolic.svg │ │ │ ├── battery-040-symbolic-dark.svg │ │ │ ├── battery-040-symbolic.svg │ │ │ ├── battery-040.svg │ │ │ ├── battery-050-charging.svg │ │ │ ├── battery-050-plugged-symbolic-dark.svg │ │ │ ├── battery-050-plugged-symbolic.svg │ │ │ ├── battery-050-plugged.svg │ │ │ ├── battery-050-symbolic.svg │ │ │ ├── battery-050.svg │ │ │ ├── battery-060-charging.svg │ │ │ ├── battery-060-plugged-symbolic-dark.svg │ │ │ ├── battery-060-plugged-symbolic.svg │ │ │ ├── battery-060-plugged.svg │ │ │ ├── battery-060-symbolic-dark.svg │ │ │ ├── battery-060-symbolic.svg │ │ │ ├── battery-060.svg │ │ │ ├── battery-070-charging.svg │ │ │ ├── battery-070-plugged-symbolic-dark.svg │ │ │ ├── battery-070-plugged-symbolic.svg │ │ │ ├── battery-070-plugged.svg │ │ │ ├── battery-070-symbolic-dark.svg │ │ │ ├── battery-070-symbolic.svg │ │ │ ├── battery-070.svg │ │ │ ├── battery-080-charging.svg │ │ │ ├── battery-080-plugged-symbolic-dark.svg │ │ │ ├── battery-080-plugged-symbolic.svg │ │ │ ├── battery-080-plugged.svg │ │ │ ├── battery-080-symbolic-dark.svg │ │ │ ├── battery-080-symbolic.svg │ │ │ ├── battery-080.svg │ │ │ ├── battery-090-charging.svg │ │ │ ├── battery-090-plugged-symbolic-dark.svg │ │ │ ├── battery-090-plugged-symbolic.svg │ │ │ ├── battery-090-plugged.svg │ │ │ ├── battery-090-symbolic-dark.svg │ │ │ ├── battery-090-symbolic.svg │ │ │ ├── battery-090.svg │ │ │ ├── battery-100-charging.svg │ │ │ ├── battery-100-plugged-symbolic-dark.svg │ │ │ ├── battery-100-plugged-symbolic.svg │ │ │ ├── battery-100-plugged.svg │ │ │ ├── battery-100-symbolic-dark.svg │ │ │ ├── battery-100-symbolic.svg │ │ │ ├── battery-100.svg │ │ │ ├── battery-ac-adapter-symbolic.svg │ │ │ ├── battery-action-symbolic.svg │ │ │ ├── battery-action-symbolic.symbolic.svg │ │ │ ├── battery-action.svg │ │ │ ├── battery-caution-charging-symbolic.svg │ │ │ ├── battery-caution-charging.svg │ │ │ ├── battery-caution-symbolic.svg │ │ │ ├── battery-caution-symbolic.symbolic.svg │ │ │ ├── battery-caution.svg │ │ │ ├── battery-charged.svg │ │ │ ├── battery-empty-charging-symbolic.svg │ │ │ ├── battery-empty-charging.svg │ │ │ ├── battery-empty-symbolic.svg │ │ │ ├── battery-empty-symbolic.symbolic.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full-charged-symbolic-dark.svg │ │ │ ├── battery-full-charged-symbolic.svg │ │ │ ├── battery-full-charged-symbolic.symbolic.svg │ │ │ ├── battery-full-charged.svg │ │ │ ├── battery-full-charging-symbolic.svg │ │ │ ├── battery-full-charging-symbolic.symbolic.svg │ │ │ ├── battery-full-charging.svg │ │ │ ├── battery-full-symbolic.svg │ │ │ ├── battery-full-symbolic.symbolic.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-good-charging-symbolic.svg │ │ │ ├── battery-good-charging-symbolic.symbolic.svg │ │ │ ├── battery-good-charging.svg │ │ │ ├── battery-good-symbolic.svg │ │ │ ├── battery-good-symbolic.symbolic.svg │ │ │ ├── battery-good.svg │ │ │ ├── battery-level-0-charging-symbolic.svg │ │ │ ├── battery-level-0-charging-symbolic.symbolic.svg │ │ │ ├── battery-level-0-charging.svg │ │ │ ├── battery-level-0-symbolic.svg │ │ │ ├── battery-level-0-symbolic.symbolic.svg │ │ │ ├── battery-level-0.svg │ │ │ ├── battery-level-10-symbolic.svg │ │ │ ├── battery-level-10-symbolic.symbolic.svg │ │ │ ├── battery-level-10.svg │ │ │ ├── battery-level-100-charged-symbolic.svg │ │ │ ├── battery-level-100-charged-symbolic.symbolic.svg │ │ │ ├── battery-level-100-charged.svg │ │ │ ├── battery-level-100-charging-symbolic.svg │ │ │ ├── battery-level-100-symbolic.svg │ │ │ ├── battery-level-100-symbolic.symbolic (copy 1).svg │ │ │ ├── battery-level-100-symbolic.symbolic.svg │ │ │ ├── battery-level-100.svg │ │ │ ├── battery-level-20-charging-symbolic.svg │ │ │ ├── battery-level-20-charging-symbolic.symbolic.svg │ │ │ ├── battery-level-20-charging.svg │ │ │ ├── battery-level-20-symbolic.svg │ │ │ ├── battery-level-20-symbolic.symbolic.svg │ │ │ ├── battery-level-20.svg │ │ │ ├── battery-level-30-charging-symbolic.svg │ │ │ ├── battery-level-30-charging-symbolic.symbolic.svg │ │ │ ├── battery-level-30-charging.svg │ │ │ ├── battery-level-30-symbolic.svg │ │ │ ├── battery-level-30-symbolic.symbolic.svg │ │ │ ├── battery-level-40-charging-symbolic.svg │ │ │ ├── battery-level-40-charging-symbolic.symbolic.svg │ │ │ ├── battery-level-40-charging.svg │ │ │ ├── battery-level-40-symbolic.svg │ │ │ ├── battery-level-40-symbolic.symbolic.svg │ │ │ ├── battery-level-40.svg │ │ │ ├── battery-level-50-charging-symbolic.svg │ │ │ ├── battery-level-50-charging-symbolic.symbolic.svg │ │ │ ├── battery-level-50-charging.svg │ │ │ ├── battery-level-50-symbolic.svg │ │ │ ├── battery-level-50-symbolic.symbolic.svg │ │ │ ├── battery-level-50.svg │ │ │ ├── battery-level-60-charging-symbolic.svg │ │ │ ├── battery-level-60-charging-symbolic.symbolic.svg │ │ │ ├── battery-level-60-charging.svg │ │ │ ├── battery-level-60-symbolic.svg │ │ │ ├── battery-level-60-symbolic.symbolic.svg │ │ │ ├── battery-level-60.svg │ │ │ ├── battery-level-70-charging-symbolic.svg │ │ │ ├── battery-level-70-charging-symbolic.symbolic.svg │ │ │ ├── battery-level-70-charging.svg │ │ │ ├── battery-level-70-symbolic.svg │ │ │ ├── battery-level-70-symbolic.symbolic.svg │ │ │ ├── battery-level-80-charging-symbolic.svg │ │ │ ├── battery-level-80-charging-symbolic.symbolic.svg │ │ │ ├── battery-level-80-charging.svg │ │ │ ├── battery-level-80-symbolic.svg │ │ │ ├── battery-level-80-symbolic.symbolic.svg │ │ │ ├── battery-level-90-charging-symbolic.svg │ │ │ ├── battery-level-90-charging-symbolic.symbolic.svg │ │ │ ├── battery-level-90-charging.svg │ │ │ ├── battery-level-90-symbolic.svg │ │ │ ├── battery-level-90-symbolic.symbolic.svg │ │ │ ├── battery-level-90.svg │ │ │ ├── battery-low-charging-symbolic.svg │ │ │ ├── battery-low-charging-symbolic.symbolic.svg │ │ │ ├── battery-low-charging.svg │ │ │ ├── battery-low-symbolic.svg │ │ │ ├── battery-low-symbolic.symbolic.svg │ │ │ ├── battery-low.svg │ │ │ ├── battery-medium-charging.svg │ │ │ ├── battery-medium.svg │ │ │ ├── battery-missing-symbolic.svg │ │ │ ├── battery-missing-symbolic.symbolic.svg │ │ │ ├── battery-missing.svg │ │ │ ├── battery-symbolic.svg │ │ │ ├── battery-symbolic.symbolic.svg │ │ │ ├── battery-unknow-symbolic-dark.svg │ │ │ ├── battery-unknow-symbolic.svg │ │ │ ├── battery-unknow.svg │ │ │ ├── battery.svg │ │ │ ├── battery_charged.svg │ │ │ ├── battery_full.svg │ │ │ ├── battery_plugged.svg │ │ │ ├── blueman-camera.svg │ │ │ ├── blueman-cellular.svg │ │ │ ├── blueman-desktop.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-server.svg │ │ │ ├── blueman-smart-phone.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 │ │ │ ├── call-end-symbolic.svg │ │ │ ├── call-start-symbolic.svg │ │ │ ├── call-start.svg │ │ │ ├── call-stop.svg │ │ │ ├── camera-photo-symbolic.svg │ │ │ ├── camera-photo.svg │ │ │ ├── camera-video-symbolic.svg │ │ │ ├── camera-video.svg │ │ │ ├── camera-web-symbolic.svg │ │ │ ├── camera-web.svg │ │ │ ├── camera.svg │ │ │ ├── camera_unmount.svg │ │ │ ├── cdrom_unmount.svg │ │ │ ├── cdwriter_unmount.svg │ │ │ ├── chardevice.svg │ │ │ ├── co.headsetapp.headset.svg │ │ │ ├── com.apps.headset.svg │ │ │ ├── computer-apple-ipad-symbolic.svg │ │ │ ├── computer-convertible-symbolic.svg │ │ │ ├── computer-convertible.svg │ │ │ ├── computer-laptop-symbolic.svg │ │ │ ├── computer-laptop.svg │ │ │ ├── computer-symbolic.svg │ │ │ ├── computer-symbolic.symbolic.svg │ │ │ ├── computer-symbolic2.svg │ │ │ ├── computer.svg │ │ │ ├── connect_creating.svg │ │ │ ├── connect_established.svg │ │ │ ├── connect_no.svg │ │ │ ├── cpu.svg │ │ │ ├── cs-mouse.svg │ │ │ ├── cs-printer.svg │ │ │ ├── cs-tablet.svg │ │ │ ├── csd-automount.svg │ │ │ ├── csd-wacom.svg │ │ │ ├── cups-launcher.svg │ │ │ ├── cups.svg │ │ │ ├── cupsprinter.svg │ │ │ ├── device-harddisk-usb.svg │ │ │ ├── device-notifier.svg │ │ │ ├── device_cpu.svg │ │ │ ├── device_usb.svg │ │ │ ├── dialog-xml-editor-symbolic.svg │ │ │ ├── dialog-xml-editor.svg │ │ │ ├── disabled-audio-input-plugged.svg │ │ │ ├── discord-tray-deafened.svg │ │ │ ├── discord-tray-muted.svg │ │ │ ├── disk.svg │ │ │ ├── display.svg │ │ │ ├── document-print-preview.svg │ │ │ ├── drive-cdrom.svg │ │ │ ├── drive-harddisk-deepin.svg │ │ │ ├── drive-harddisk-encrypted-symbolic.svg │ │ │ ├── drive-harddisk-encrypted.svg │ │ │ ├── drive-harddisk-ieee1394-symbolic.svg │ │ │ ├── drive-harddisk-ieee1394-symbolic.symbolic.svg │ │ │ ├── drive-harddisk-ieee1394.svg │ │ │ ├── drive-harddisk-root-symbolic.svg │ │ │ ├── drive-harddisk-root.svg │ │ │ ├── drive-harddisk-scsi.svg │ │ │ ├── drive-harddisk-solidstate-symbolic.svg │ │ │ ├── drive-harddisk-solidstate.svg │ │ │ ├── drive-harddisk-symbolic.svg │ │ │ ├── drive-harddisk-symbolic.symbolic.svg │ │ │ ├── drive-harddisk-system-symbolic.svg │ │ │ ├── drive-harddisk-system-symbolic.symbolic.svg │ │ │ ├── drive-harddisk-system.svg │ │ │ ├── drive-harddisk-usb-symbolic.svg │ │ │ ├── drive-harddisk-usb-symbolic.symbolic.svg │ │ │ ├── drive-harddisk-usb.svg │ │ │ ├── drive-harddisk.svg │ │ │ ├── drive-multidisk-alt-symbolic.svg │ │ │ ├── drive-multidisk-alt2-symbolic.svg │ │ │ ├── drive-multidisk-symbolic.svg │ │ │ ├── drive-multidisk.svg │ │ │ ├── drive-optical-symbolic.svg │ │ │ ├── drive-optical.svg │ │ │ ├── drive-removable-media-symbolic.svg │ │ │ ├── drive-removable-media-usb-panel.svg │ │ │ ├── drive-removable-media-usb-pendrive.svg │ │ │ ├── drive-removable-media-usb-symbolic.svg │ │ │ ├── drive-removable-media-usb.svg │ │ │ ├── drive-removable-media.svg │ │ │ ├── drive-removable-usb.svg │ │ │ ├── drive-virtual.svg │ │ │ ├── dvd_unmount.svg │ │ │ ├── foomatic-gui-logo.svg │ │ │ ├── gnome-cd.svg │ │ │ ├── gnome-cups-manager.svg │ │ │ ├── gnome-dev-battery.svg │ │ │ ├── gnome-dev-cdrom-audio.svg │ │ │ ├── gnome-dev-cdrom.svg │ │ │ ├── gnome-dev-computer.svg │ │ │ ├── gnome-dev-disc-audio.svg │ │ │ ├── gnome-dev-disc-cdr.svg │ │ │ ├── gnome-dev-disc-cdrom.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-alt.svg │ │ │ ├── gnome-dev-dvd.svg │ │ │ ├── gnome-dev-ethernet.svg │ │ │ ├── gnome-dev-flashdisk.svg │ │ │ ├── gnome-dev-flashkey.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-symbolic.svg │ │ │ ├── gnome-dev-media-sdmmc.svg │ │ │ ├── gnome-dev-media-sm.svg │ │ │ ├── gnome-dev-mouse-ball.svg │ │ │ ├── gnome-dev-mouse-optical.svg │ │ │ ├── gnome-dev-pci.svg │ │ │ ├── gnome-dev-printer.svg │ │ │ ├── gnome-dev-removable-1394.svg │ │ │ ├── gnome-dev-removable-usb.svg │ │ │ ├── gnome-dev-removable.svg │ │ │ ├── gnome-dev-unknown-usb.svg │ │ │ ├── gnome-dev-wavelan.svg │ │ │ ├── gnome-fs-blockdev.svg │ │ │ ├── gnome-fs-client.svg │ │ │ ├── gnome-mouse-properties.svg │ │ │ ├── gnome-mouse.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-phone-manager.svg │ │ │ ├── gnome-settings-keybindings.svg │ │ │ ├── gnome-settings-mouse.svg │ │ │ ├── gnome-stock-mic.svg │ │ │ ├── good-signal-lock.svg │ │ │ ├── good-signal.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-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 │ │ │ ├── gtk-cdrom.svg │ │ │ ├── gtklp.svg │ │ │ ├── gtklpq.svg │ │ │ ├── handset.svg │ │ │ ├── harddrive.svg │ │ │ ├── hdd_unmount.svg │ │ │ ├── headphone.svg │ │ │ ├── headphones-symbolic.svg │ │ │ ├── headset.svg │ │ │ ├── high-signal-lock.svg │ │ │ ├── high-signal.svg │ │ │ ├── hotspot.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-sensors-battery.svg │ │ │ ├── input-gamepad-symbolic.svg │ │ │ ├── input-gamepad.svg │ │ │ ├── input-gaming-symbolic.svg │ │ │ ├── input-gaming-symbolic.symbolic.svg │ │ │ ├── input-gaming.svg │ │ │ ├── input-keyboard-symbolic.svg │ │ │ ├── input-keyboard.svg │ │ │ ├── input-mouse-symbolic.svg │ │ │ ├── input-mouse.svg │ │ │ ├── input-tablet-symbolic.svg │ │ │ ├── input-tablet-symbolic.symbolic.svg │ │ │ ├── input-tablet.svg │ │ │ ├── input-touchpad-off.svg │ │ │ ├── input-touchpad-on.svg │ │ │ ├── input-touchpad-symbolic.svg │ │ │ ├── input-touchpad.svg │ │ │ ├── input_device_settings.svg │ │ │ ├── internal.svg │ │ │ ├── internet-telephony.svg │ │ │ ├── ipodtouchicon.svg │ │ │ ├── joystick.svg │ │ │ ├── kdeconnect.svg │ │ │ ├── kdeconnectindicatordark.svg │ │ │ ├── kdeprint_printer.svg │ │ │ ├── key_bindings.svg │ │ │ ├── keyboard-symbolic-dark.svg │ │ │ ├── keyboard-symbolic.svg │ │ │ ├── keyboard.svg │ │ │ ├── kjobviewer.svg │ │ │ ├── kmix.svg │ │ │ ├── kmousetool.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 │ │ │ ├── kprinter.svg │ │ │ ├── kprinter4.svg │ │ │ ├── kxkb.svg │ │ │ ├── lan-segment.svg │ │ │ ├── laptop-connected.svg │ │ │ ├── laptop-disconnected.svg │ │ │ ├── laptop-symbolic.svg │ │ │ ├── laptop-trusted.svg │ │ │ ├── laptop.svg │ │ │ ├── laptopattention.svg │ │ │ ├── laptopconnected.svg │ │ │ ├── laptopdisconnected.svg │ │ │ ├── laptoptrusted.svg │ │ │ ├── low-signal-lock.svg │ │ │ ├── low-signal.svg │ │ │ ├── mate-sensors-applet-battery.svg │ │ │ ├── media-cdr.svg │ │ │ ├── media-cdrom-audio.svg │ │ │ ├── media-cdrom.svg │ │ │ ├── media-cdrw.svg │ │ │ ├── media-dvd.svg │ │ │ ├── media-dvdrw.svg │ │ │ ├── media-flash-cf.svg │ │ │ ├── media-flash-memory-stick.svg │ │ │ ├── media-flash-ms.svg │ │ │ ├── media-flash-sd-mmc.svg │ │ │ ├── media-flash-smart-media.svg │ │ │ ├── media-flash-symbolic.svg │ │ │ ├── media-flash.svg │ │ │ ├── media-floppy-symbolic.svg │ │ │ ├── media-floppy.svg │ │ │ ├── media-memory-sd-symbolic.svg │ │ │ ├── media-memory-sd.svg │ │ │ ├── media-memory-sembolic.svg │ │ │ ├── media-memory-sm.svg │ │ │ ├── media-optical-audio.svg │ │ │ ├── media-optical-bd-symbolic.svg │ │ │ ├── media-optical-blu-ray.svg │ │ │ ├── media-optical-cd-audio-symbolic.svg │ │ │ ├── media-optical-cd-r.svg │ │ │ ├── media-optical-cd-video.svg │ │ │ ├── media-optical-cd.svg │ │ │ ├── media-optical-cdr.svg │ │ │ ├── media-optical-copy.svg │ │ │ ├── media-optical-data.svg │ │ │ ├── media-optical-dvd-ram.svg │ │ │ ├── media-optical-dvd-rom.svg │ │ │ ├── media-optical-dvd-rw.svg │ │ │ ├── media-optical-dvd-symbolic.svg │ │ │ ├── media-optical-dvd-video.svg │ │ │ ├── media-optical-dvd.svg │ │ │ ├── media-optical-mixed-cd.svg │ │ │ ├── media-optical-recordable.svg │ │ │ ├── media-optical-symbolic.svg │ │ │ ├── media-optical-video.svg │ │ │ ├── media-optical.svg │ │ │ ├── media-removable-symbolic.svg │ │ │ ├── media-removable-symbolic.symbolic.svg │ │ │ ├── media-removable.svg │ │ │ ├── media-tape-symbolic.svg │ │ │ ├── media-tape.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-medium.svg │ │ │ ├── microphone-sensitivity-muted-symbolic.svg │ │ │ ├── microphone-sensitivity-muted.svg │ │ │ ├── microphone.svg │ │ │ ├── mobile.svg │ │ │ ├── modem-symbolic.svg │ │ │ ├── modem-symbolic.symbolic.svg │ │ │ ├── modem.svg │ │ │ ├── monitor.svg │ │ │ ├── mouse.svg │ │ │ ├── multimedia-player-apple-ipod-touch-symbolic.svg │ │ │ ├── multimedia-player-apple-ipod-touch.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-ipod-touch.svg │ │ │ ├── multimedia-player-symbolic.svg │ │ │ ├── multimedia-player.svg │ │ │ ├── music-player.svg │ │ │ ├── nautilus-cd-burner.svg │ │ │ ├── net.bartkessels.getit.svg │ │ │ ├── network-card.svg │ │ │ ├── network-cellular-secure-signal-good.svg │ │ │ ├── network-cellular-secure-signal-high.svg │ │ │ ├── network-cellular-secure-signal-low.svg │ │ │ ├── network-cellular-signal-okay-symbolic.svg │ │ │ ├── network-error-symbolic.svg │ │ │ ├── network-error.svg │ │ │ ├── network-idle-symbolic.svg │ │ │ ├── network-limited.svg │ │ │ ├── network-modem.svg │ │ │ ├── network-offline.svg │ │ │ ├── network-receive.svg │ │ │ ├── network-rj11-female.svg │ │ │ ├── network-rj45-female.svg │ │ │ ├── network-server-database.svg │ │ │ ├── network-server-symbolic.svg │ │ │ ├── network-server.svg │ │ │ ├── network-transmit-receive.svg │ │ │ ├── network-transmit.svg │ │ │ ├── network-unavailable.svg │ │ │ ├── network-wired-activated.svg │ │ │ ├── network-wired-disconnected.svg │ │ │ ├── network-wired-offline.svg │ │ │ ├── network-wired-secure.svg │ │ │ ├── network-wired-symbolic.svg │ │ │ ├── network-wired-symbolic.symbolic.svg │ │ │ ├── network-wired-unavailable.svg │ │ │ ├── network-wired.svg │ │ │ ├── network-wireless-acquiring-symbolic.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-symbolic.svg │ │ │ ├── network-wireless-connected.svg │ │ │ ├── network-wireless-disabled-symbolic.svg │ │ │ ├── network-wireless-disconnected-symbolic.svg │ │ │ ├── network-wireless-disconnected.svg │ │ │ ├── network-wireless-encrypted-symbolic.svg │ │ │ ├── network-wireless-encrypted.svg │ │ │ ├── network-wireless-hotspot-symbolic.svg │ │ │ ├── network-wireless-hotspot.svg │ │ │ ├── network-wireless-no-route-symbolic.svg │ │ │ ├── network-wireless-no-route-symbolic.symbolic.svg │ │ │ ├── network-wireless-no-route.svg │ │ │ ├── network-wireless-offline-secure-symbolic.svg │ │ │ ├── network-wireless-offline-symbolic.svg │ │ │ ├── network-wireless-offline-symbolic.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-secure.svg │ │ │ ├── network-wireless-signal-excellent-symbolic.svg │ │ │ ├── network-wireless-signal-excellent-symbolic.symbolic.svg │ │ │ ├── network-wireless-signal-excellent.svg │ │ │ ├── network-wireless-signal-full-secure-symbolic-dark.svg │ │ │ ├── network-wireless-signal-full-secure-symbolic.svg │ │ │ ├── network-wireless-signal-full-symbolic-dark.svg │ │ │ ├── network-wireless-signal-full-symbolic.svg │ │ │ ├── network-wireless-signal-good-secure-symbolic.svg │ │ │ ├── network-wireless-signal-good-secure.svg │ │ │ ├── network-wireless-signal-good-symbolic.svg │ │ │ ├── network-wireless-signal-good-symbolic.symbolic.svg │ │ │ ├── network-wireless-signal-good.svg │ │ │ ├── network-wireless-signal-high-secure-symbolic-dark.svg │ │ │ ├── network-wireless-signal-high-secure-symbolic.svg │ │ │ ├── network-wireless-signal-high-symbolic-dark.svg │ │ │ ├── network-wireless-signal-high-symbolic.svg │ │ │ ├── network-wireless-signal-low-secure-symbolic-dark.svg │ │ │ ├── network-wireless-signal-low-secure-symbolic.svg │ │ │ ├── network-wireless-signal-low-symbolic-dark.svg │ │ │ ├── network-wireless-signal-low-symbolic.svg │ │ │ ├── network-wireless-signal-low.svg │ │ │ ├── network-wireless-signal-medium-secure-symbolic-dark.svg │ │ │ ├── network-wireless-signal-medium-secure-symbolic.svg │ │ │ ├── network-wireless-signal-medium-symbolic-dark.svg │ │ │ ├── network-wireless-signal-medium-symbolic.svg │ │ │ ├── network-wireless-signal-none-secure-dark.svg │ │ │ ├── network-wireless-signal-none-secure-symbolic-dark.svg │ │ │ ├── network-wireless-signal-none-secure-symbolic.svg │ │ │ ├── network-wireless-signal-none-symbolic-dark.svg │ │ │ ├── network-wireless-signal-none-symbolic.svg │ │ │ ├── network-wireless-signal-none-symbolic.symbolic.svg │ │ │ ├── network-wireless-signal-none.svg │ │ │ ├── network-wireless-signal-ok-secure-symbolic.svg │ │ │ ├── network-wireless-signal-ok-symbolic.svg │ │ │ ├── network-wireless-signal-ok-symbolic.symbolic.svg │ │ │ ├── network-wireless-signal-ok.svg │ │ │ ├── network-wireless-signal-weak-secure-symbolic.svg │ │ │ ├── network-wireless-signal-weak-symbolic.svg │ │ │ ├── network-wireless-signal-weak-symbolic.symbolic.svg │ │ │ ├── network-wireless-signal-weak.svg │ │ │ ├── network-wireless-symbolic.svg │ │ │ ├── network-wireless-symbolic.symbolic.svg │ │ │ ├── network-wireless-warning-symbolic-dark.svg │ │ │ ├── network-wireless-warning-symbolic.svg │ │ │ ├── network-wireless.svg │ │ │ ├── network-wirelss-no-route-secure-symbolic-dark.svg │ │ │ ├── network-wirelss-no-route-secure-symbolic.svg │ │ │ ├── network-wirelss-no-route-symbolic.svg │ │ │ ├── network.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-nm-signal-00.svg │ │ │ ├── nm-nm-signal-100.svg │ │ │ ├── nm-nm-signal-25.svg │ │ │ ├── nm-nm-signal-50.svg │ │ │ ├── nm-nm-signal-75.svg │ │ │ ├── nm-no-connection.svg │ │ │ ├── nm-signal-0-secure-symbolic.svg │ │ │ ├── nm-signal-0-secure.svg │ │ │ ├── nm-signal-0-symbolic.svg │ │ │ ├── nm-signal-0.svg │ │ │ ├── nm-signal-00-secure.svg │ │ │ ├── nm-signal-00.svg │ │ │ ├── nm-signal-100-secure-symbolic.svg │ │ │ ├── nm-signal-100-secure.svg │ │ │ ├── nm-signal-100-symbolic.svg │ │ │ ├── nm-signal-100.svg │ │ │ ├── nm-signal-25-secure-symbolic.svg │ │ │ ├── nm-signal-25-secure.svg │ │ │ ├── nm-signal-25-symbolic.svg │ │ │ ├── nm-signal-25.svg │ │ │ ├── nm-signal-50-secure-symbolic.svg │ │ │ ├── nm-signal-50-secure.svg │ │ │ ├── nm-signal-50-symbolic.svg │ │ │ ├── nm-signal-50.svg │ │ │ ├── nm-signal-75-secure-symbolic.svg │ │ │ ├── nm-signal-75-secure.svg │ │ │ ├── nm-signal-75-symbolic.svg │ │ │ ├── nm-signal-75.svg │ │ │ ├── no-signal.svg │ │ │ ├── notification-audio-volume-high.svg │ │ │ ├── notification-audio-volume-muted.svg │ │ │ ├── notification-audio-volume-off.svg │ │ │ ├── notification-battery-000.svg │ │ │ ├── notification-battery-020.svg │ │ │ ├── notification-battery-040.svg │ │ │ ├── notification-battery-060.svg │ │ │ ├── notification-battery-080.svg │ │ │ ├── notification-battery-100.svg │ │ │ ├── notification-battery-caution-symbolic.svg │ │ │ ├── notification-battery-empty.svg │ │ │ ├── notification-battery-full.svg │ │ │ ├── notification-battery-low.svg │ │ │ ├── notification-battery_low.svg │ │ │ ├── notification-gsm-3g-full.svg │ │ │ ├── notification-gsm-3g-high.svg │ │ │ ├── notification-gsm-3g-low.svg │ │ │ ├── notification-gsm-3g-medium.svg │ │ │ ├── notification-gsm-3g-none.svg │ │ │ ├── notification-gsm-edge-full.svg │ │ │ ├── notification-gsm-edge-high.svg │ │ │ ├── notification-gsm-edge-low.svg │ │ │ ├── notification-gsm-edge-medium.svg │ │ │ ├── notification-gsm-edge-none.svg │ │ │ ├── notification-gsm-full.svg │ │ │ ├── notification-gsm-h-full.svg │ │ │ ├── notification-gsm-h-high.svg │ │ │ ├── notification-gsm-h-low.svg │ │ │ ├── notification-gsm-h-medium.svg │ │ │ ├── notification-gsm-h-none.svg │ │ │ ├── notification-gsm-high.svg │ │ │ ├── notification-gsm-low.svg │ │ │ ├── notification-gsm-medium.svg │ │ │ ├── notification-gsm-none.svg │ │ │ ├── notification-network-disconnected.svg │ │ │ ├── notification-network-wireless-disabled.svg │ │ │ ├── notification-network-wireless-disconnected-symbolic.svg │ │ │ ├── notification-network-wireless-disconnected.svg │ │ │ ├── notification-network-wireless-full-symbolic.svg │ │ │ ├── notification-network-wireless-full.svg │ │ │ ├── notification-network-wireless-local.svg │ │ │ ├── notification-network-wireless-symbolic.svg │ │ │ ├── notification-network-wireless.svg │ │ │ ├── notification-power.svg │ │ │ ├── notification-wifi-enabled.svg │ │ │ ├── ooo-printer.svg │ │ │ ├── ooo-printeradmin.svg │ │ │ ├── ooo-printeradmin3.0.svg │ │ │ ├── openofficeorg-20-printeradmin.svg │ │ │ ├── openofficeorg-printer.svg │ │ │ ├── openofficeorg-printeradmin.svg │ │ │ ├── openofficeorg23-printeradmin.svg │ │ │ ├── openofficeorg3-printeradmin.svg │ │ │ ├── openofficeorg3.0-printeradmin.svg │ │ │ ├── org.buddiesofbudgie.Settings-keyboard-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-microphone-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-mouse-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-network-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-printers-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-removable-media-symbolic.svg │ │ │ ├── org.buddiesofbudgie.Settings-wacom-symbolic.svg │ │ │ ├── org.gnome.Settings-keyboard-symbolic.svg │ │ │ ├── org.gnome.Settings-moblie-network-symbolic.svg │ │ │ ├── org.gnome.Settings-moblie-network.svg │ │ │ ├── org.gnome.Settings-mouse-symbolic.svg │ │ │ ├── org.gnome.Settings-network-symbolic.svg │ │ │ ├── org.gnome.Settings-printers-symbolic.svg │ │ │ ├── org.gnome.Settings-removable-media-symbolic.svg │ │ │ ├── org.gnome.Settings-removable-media.svg │ │ │ ├── org.gnome.Settings-wacom-symbolic.svg │ │ │ ├── org.gnome.Settings-wacom.svg │ │ │ ├── org.kde.plasma.battery.svg │ │ │ ├── pattern-laptop.svg │ │ │ ├── pda-symbolic.svg │ │ │ ├── pda.svg │ │ │ ├── phone-apple-iphone-symbolic.svg │ │ │ ├── phone-apple-iphone-symbolic.symbolic.svg │ │ │ ├── phone-apple-iphone.svg │ │ │ ├── phone-google-nexus-one-symbolic.svg │ │ │ ├── phone-google-nexus-one.svg │ │ │ ├── phone-htc-g1-white-symbolic.svg │ │ │ ├── phone-htc-g1-white.svg │ │ │ ├── phone-motorola-droid.svg │ │ │ ├── phone-nokia-n900.svg │ │ │ ├── phone-palm-pre-symbolic.svg │ │ │ ├── phone-palm-pre.svg │ │ │ ├── phone-samsung-galaxy-s-symbolic.svg │ │ │ ├── phone-symbolic.svg │ │ │ ├── phone-symbolic.symbolic.svg │ │ │ ├── phone.svg │ │ │ ├── plasma-mobile-phone.svg │ │ │ ├── plugin-commands.svg │ │ │ ├── preferences-desktop-gestures-screenedges.svg │ │ │ ├── preferences-desktop-gestures-touch.svg │ │ │ ├── preferences-desktop-keyboard-khotkeys.svg │ │ │ ├── preferences-desktop-keyboard-shortcuts.svg │ │ │ ├── preferences-desktop-keyboard-shortcuts2.svg │ │ │ ├── preferences-desktop-keyboard.svg │ │ │ ├── preferences-desktop-mouse.svg │ │ │ ├── preferences-desktop-peripherals.svg │ │ │ ├── preferences-desktop-printer.svg │ │ │ ├── preferences-desktop-tablet.svg │ │ │ ├── preferences-desktop-touchpad.svg │ │ │ ├── preferences-devices-drive-optical-check.svg │ │ │ ├── preferences-devices-drive-optical.svg │ │ │ ├── preferences-system-devices-symbolic.svg │ │ │ ├── preferences-system-devices.svg │ │ │ ├── preferences-system-hotcorners.svg │ │ │ ├── preferences-system-network-ethernet.svg │ │ │ ├── preferences-system-splash.svg │ │ │ ├── preferences-system-startup.svg │ │ │ ├── preferences-web-browser-shortcuts-symbolic.svg │ │ │ ├── preferences-web-browser-shortcuts.svg │ │ │ ├── preferences_desktop_mouse.svg │ │ │ ├── printer-mdk.svg │ │ │ ├── printer-network-symbolic.svg │ │ │ ├── printer-network.svg │ │ │ ├── printer-printing-symbolic-dark.svg │ │ │ ├── printer-printing-symbolic.svg │ │ │ ├── printer-printing.svg │ │ │ ├── printer-remote.svg │ │ │ ├── printer-symbolic.svg │ │ │ ├── printer-symbolic.symbolic.svg │ │ │ ├── printer.svg │ │ │ ├── printer1.svg │ │ │ ├── printmgr.svg │ │ │ ├── processor.svg │ │ │ ├── psensor_hot.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 │ │ │ ├── removable-drives.svg │ │ │ ├── removable-media.svg │ │ │ ├── sensors-temperature-symbolic.svg │ │ │ ├── server-database.svg │ │ │ ├── server.svg │ │ │ ├── signal-100.svg │ │ │ ├── signal-25.svg │ │ │ ├── signal-50.svg │ │ │ ├── signal-75.svg │ │ │ ├── smartphone-connected.svg │ │ │ ├── smartphone-disconnected.svg │ │ │ ├── smartphone-symbolic.svg │ │ │ ├── smartphone-trusted.svg │ │ │ ├── smartphone.svg │ │ │ ├── smartphoneconnected.svg │ │ │ ├── smartphonedisconnected.svg │ │ │ ├── smartphonetrusted.svg │ │ │ ├── soundcard.svg │ │ │ ├── stock-cell-phone-failed.svg │ │ │ ├── stock-cell-phone-success.svg │ │ │ ├── stock_cell-phone.svg │ │ │ ├── stock_printers.svg │ │ │ ├── system-config-keyboard.svg │ │ │ ├── system-config-printer.svg │ │ │ ├── system.svg │ │ │ ├── tablet-connected.svg │ │ │ ├── tablet-disconnected.svg │ │ │ ├── tablet-symbolic.svg │ │ │ ├── tablet-trusted.svg │ │ │ ├── tablet.svg │ │ │ ├── tabletconnected.svg │ │ │ ├── tabletdisconnected.svg │ │ │ ├── temp-symbolic.svg │ │ │ ├── tools-media-optical-format.svg │ │ │ ├── touchpad-indicator.svg │ │ │ ├── touchpad.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 │ │ │ ├── tv-symbolic.svg │ │ │ ├── tv-symbolic.symbolic.svg │ │ │ ├── tv.svg │ │ │ ├── unity-fallback-mount-helper.svg │ │ │ ├── usbpendrive.svg │ │ │ ├── usbpendrive_unmount.svg │ │ │ ├── vap.svg │ │ │ ├── video-display-symbolic.svg │ │ │ ├── video-display-symbolic.symbolic.svg │ │ │ ├── video-display-tv-symbolic.svg │ │ │ ├── video-display-tv.svg │ │ │ ├── video-display.svg │ │ │ ├── video-television.svg │ │ │ ├── webcam.svg │ │ │ ├── wifi-symbolic.svg │ │ │ ├── wifi.svg │ │ │ ├── wired.svg │ │ │ ├── wireless-0-symbolic-dark.svg │ │ │ ├── wireless-0-symbolic.svg │ │ │ ├── wireless-100-symbolic-dark.svg │ │ │ ├── wireless-100-symbolic.svg │ │ │ ├── wireless-20-symbolic-dark.svg │ │ │ ├── wireless-20-symbolic.svg │ │ │ ├── wireless-40-symbolic.svg │ │ │ ├── wireless-60-symbolic-dark.svg │ │ │ ├── wireless-60-symbolic.svg │ │ │ ├── wireless-80-symbolic-dark.svg │ │ │ ├── wireless-80-symbolic.svg │ │ │ ├── wireless-disabled-symbolic.svg │ │ │ ├── wireless-disconnect-symbolic.svg │ │ │ ├── wireless-symbolic.svg │ │ │ ├── wireless.svg │ │ │ ├── xfce-mouse.svg │ │ │ ├── xfce-printer.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-keyboard.svg │ │ │ ├── xfce4-mixer-record.svg │ │ │ ├── xfce4-mouse.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-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 │ │ │ ├── xplayer-tv-symbolic.svg │ │ │ ├── yast-checkmedia.svg │ │ │ ├── yast-printer.svg │ │ │ ├── yast_HD.svg │ │ │ ├── yast_idetude.svg │ │ │ ├── yast_mouse.svg │ │ │ ├── yast_printer.svg │ │ │ └── yast_soundcard.svg │ ├── index.theme │ ├── mimetypes │ │ └── scalable │ │ │ ├── .directory │ │ │ ├── 7zip.svg │ │ │ ├── 950F_ReadMe.0.svg │ │ │ ├── android-apk.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-autocad_dwg.svg │ │ │ ├── application-certificate.svg │ │ │ ├── application-clariscad.svg │ │ │ ├── application-database.svg │ │ │ ├── application-drawing.svg │ │ │ ├── application-dwg.svg │ │ │ ├── application-dxf.svg │ │ │ ├── application-excel.svg │ │ │ ├── application-ffDiaporama.svg │ │ │ ├── application-font-woff.svg │ │ │ ├── application-geo+json.svg │ │ │ ├── application-gml+xml.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-ld+json.svg │ │ │ ├── application-m3u.svg │ │ │ ├── application-mathml+xml.svg │ │ │ ├── application-metalink+xml.svg │ │ │ ├── application-metalink4+xml.svg │ │ │ ├── application-msexcel.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-pkcs10.svg │ │ │ ├── application-pkcs12.svg │ │ │ ├── application-pkcs7-mime.svg │ │ │ ├── application-pkcs7-signature.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-ram.svg │ │ │ ├── application-rdata.svg │ │ │ ├── application-rdf+xml.svg │ │ │ ├── application-relaxng.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.comicbook+zip.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.insync.link.drive.doc.svg │ │ │ ├── application-vnd.insync.link.drive.sheet.svg │ │ │ ├── application-vnd.insync.link.drive.slides.svg │ │ │ ├── application-vnd.kde.fontspackage.svg │ │ │ ├── application-vnd.kde.kleopatra.keygroup.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-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-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-master.svgln │ │ │ ├── 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.sqlite3.svg │ │ │ ├── application-vnd.squashfs.svg │ │ │ ├── application-vnd.stardivision.cal.svg │ │ │ ├── application-vnd.stardivision.calc.svg │ │ │ ├── application-vnd.stardivision.draw.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.visio.svg │ │ │ ├── application-vnd.wap.wmlc.svg │ │ │ ├── application-vnd.wap.xhtml+xml.svg │ │ │ ├── application-vnd.wordperfect-rtl.svg │ │ │ ├── application-vnd.wordperfect.svg │ │ │ ├── application-vnd.xdgapp.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-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-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-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-blender.svg │ │ │ ├── application-x-bps-patch.svg │ │ │ ├── application-x-brasero.svg │ │ │ ├── application-x-bsdiff.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-cabri.svg │ │ │ ├── application-x-ccf-container.svg │ │ │ ├── application-x-cd-image.svg │ │ │ ├── application-x-cda.svg │ │ │ ├── application-x-class-file.svg │ │ │ ├── application-x-cmakecache.svg │ │ │ ├── application-x-compress-tar.svg │ │ │ ├── application-x-compress.svg │ │ │ ├── application-x-compressed-iso.svg │ │ │ ├── application-x-compressed-tar.svg │ │ │ ├── application-x-compressed.svg │ │ │ ├── application-x-cpio.svg │ │ │ ├── application-x-cue.svg │ │ │ ├── application-x-dbf.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-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-flash-video.svg │ │ │ ├── application-x-font-afm.svg │ │ │ ├── application-x-font-bdf.svg │ │ │ ├── application-x-font-dos.svg │ │ │ ├── application-x-font-eot.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-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-gtktalog.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-ips-patch.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-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-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-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-kword.svg │ │ │ ├── application-x-kwordquiz.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-maff.svg │ │ │ ├── application-x-marble.svg │ │ │ ├── application-x-matroska.svg │ │ │ ├── application-x-md.svg │ │ │ ├── application-x-mif.svg │ │ │ ├── application-x-mimearchive.svg │ │ │ ├── application-x-mplayer2.svg │ │ │ ├── application-x-ms-dos-executable.svg │ │ │ ├── application-x-ms-wim.svg │ │ │ ├── application-x-msdos-program.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-nintendo-ds-rom.svg │ │ │ ├── application-x-nzb.svg │ │ │ ├── application-x-ole-storage.svg │ │ │ ├── application-x-osm+xml.svg │ │ │ ├── application-x-pak.svg │ │ │ ├── application-x-patch.svg │ │ │ ├── application-x-pem-file.svg │ │ │ ├── application-x-pem-key.svg │ │ │ ├── application-x-php.svg │ │ │ ├── application-x-pkcs12.svg │ │ │ ├── application-x-pkcs7-certificates.svg │ │ │ ├── application-x-planner.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-rar.svg │ │ │ ├── application-x-raw-disk-image-xz-compressed.svg │ │ │ ├── application-x-raw-disk-image.svg │ │ │ ├── application-x-rdata.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-scribus.svg │ │ │ ├── application-x-shar.svg │ │ │ ├── application-x-shared-library-la.svg │ │ │ ├── application-x-shellscript.svg │ │ │ ├── application-x-shockwave-flash.svg │ │ │ ├── application-x-siag.svg │ │ │ ├── application-x-sif.svg │ │ │ ├── application-x-sketch.svg │ │ │ ├── application-x-smb-server.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-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-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-windows-themepack.svg │ │ │ ├── application-x-wine-extension-cpl.svg │ │ │ ├── application-x-wine-extension-inf.svg │ │ │ ├── application-x-wine-extension-its.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-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-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-m3u.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-m3u.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-rtl.svg │ │ │ ├── audio-x-mp3-playlist.svg │ │ │ ├── audio-x-mpeg.svg │ │ │ ├── audio-x-mpegurl-rtl.svg │ │ │ ├── audio-x-mpegurl.svg │ │ │ ├── audio-x-ms-wax.svg │ │ │ ├── audio-x-ms-wma.svg │ │ │ ├── audio-x-ofr.svg │ │ │ ├── audio-x-playlist-rtl.svg │ │ │ ├── audio-x-playlist.svg │ │ │ ├── audio-x-pn-realaudio.svg │ │ │ ├── audio-x-scpls-rtl.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 │ │ │ ├── binary.svg │ │ │ ├── blank-cd.svg │ │ │ ├── contents2.svg │ │ │ ├── deb.svg │ │ │ ├── divx.svg │ │ │ ├── document-excel.svg │ │ │ ├── document-illustrator.svg │ │ │ ├── document-powerpoint.svg │ │ │ ├── document-rtl.svg │ │ │ ├── document-word.svg │ │ │ ├── document.svg │ │ │ ├── drawing-dwg.svg │ │ │ ├── emblem-package.svg │ │ │ ├── encrypted.svg │ │ │ ├── exec.svg │ │ │ ├── filetypes.svg │ │ │ ├── folder_tar.svg │ │ │ ├── font-collection.svg │ │ │ ├── font-otf.svg │ │ │ ├── font-ttf.svg │ │ │ ├── font-woff.svg │ │ │ ├── font-woff2.svg │ │ │ ├── font-x-generic.svg │ │ │ ├── font.svg │ │ │ ├── font_bitmap.svg │ │ │ ├── font_truetype.svg │ │ │ ├── font_type1.svg │ │ │ ├── fonts-package.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-javascript.svg │ │ │ ├── gnome-mime-application-magicpoint.svg │ │ │ ├── gnome-mime-application-msword.svg │ │ │ ├── gnome-mime-application-pdf.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-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-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-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-php.svg │ │ │ ├── gnome-mime-application-x-python-bytecode.svg │ │ │ ├── gnome-mime-application-x-rar.svg │ │ │ ├── gnome-mime-application-x-referencer.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-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++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 │ │ │ ├── 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.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-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-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-xfig.svg │ │ │ ├── image.svg │ │ │ ├── inode-vnd.kde.service.imap.svg │ │ │ ├── inode-vnd.kde.service.kbattleship.svg │ │ │ ├── inode-vnd.kde.service.pop3.svg │ │ │ ├── inode-vnd.kde.service.unknown.svg │ │ │ ├── inode-vnd.kde.service.upnp.RAClient1.svg │ │ │ ├── inode-vnd.kde.service.upnp.Unknown.svg │ │ │ ├── javascript.svg │ │ │ ├── jd-container.svg │ │ │ ├── jpeg.svg │ │ │ ├── jpg.svg │ │ │ ├── kpresenter_kpr.svg │ │ │ ├── libreoffice-database.svg │ │ │ ├── libreoffice-drawing-template.svg │ │ │ ├── libreoffice-drawing.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 │ │ │ ├── libreoffice-web.svg │ │ │ ├── media-audio.svg │ │ │ ├── media-image.svg │ │ │ ├── media-video.svg │ │ │ ├── message-news.svg │ │ │ ├── message-partial.svg │ │ │ ├── message-x-gnu-rmail.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-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-oasis-database.svg │ │ │ ├── openofficeorg3-oasis-spreadsheet.svg │ │ │ ├── opera-widget.svg │ │ │ ├── package-gdebi.svg │ │ │ ├── package-x-generic-symbolic.svg │ │ │ ├── package-x-generic.svg │ │ │ ├── package.svg │ │ │ ├── package_editors.svg │ │ │ ├── package_wordprocessing.svg │ │ │ ├── pdf.svg │ │ │ ├── plan.svg │ │ │ ├── playlist-automatic.svg │ │ │ ├── playlist.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-qgs.svg │ │ │ ├── qgis-qlr.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-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-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-n3.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-scss.svg │ │ │ ├── text-sgml.svg │ │ │ ├── text-spreadsheet.svg │ │ │ ├── text-sqml.svg │ │ │ ├── text-tab-separated-values.svg │ │ │ ├── text-turtle.svg │ │ │ ├── text-vcalendar.svg │ │ │ ├── text-vnd-wap-wml.svg │ │ │ ├── text-vnd.abc.svg │ │ │ ├── text-vnd.rn-realtext.svg │ │ │ ├── text-vnd.trolltech.linguist.svg │ │ │ ├── text-vnd.wap.wml.svg │ │ │ ├── text-vnd.wap.wmlscript.svg │ │ │ ├── text-vtt.svg │ │ │ ├── text-x-R.svg │ │ │ ├── text-x-adasrc.svg │ │ │ ├── text-x-asm.svg │ │ │ ├── text-x-authors.svg │ │ │ ├── text-x-bak.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-changlog.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-rtl.svg │ │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ │ ├── text-x-generic.svg │ │ │ ├── text-x-install.svg │ │ │ ├── text-x-java-source.svg │ │ │ ├── text-x-java.svg │ │ │ ├── text-x-javascript.svg │ │ │ ├── text-x-katefilelist.svg │ │ │ ├── text-x-kvc.svg │ │ │ ├── text-x-ldif.svg │ │ │ ├── text-x-lilypond.svg │ │ │ ├── text-x-log.svg │ │ │ ├── text-x-lyx.svg │ │ │ ├── text-x-makefile.svg │ │ │ ├── text-x-makefish.svg │ │ │ ├── text-x-markdown.svg │ │ │ ├── text-x-md.svg │ │ │ ├── text-x-meson.svg │ │ │ ├── text-x-microdvd.svg │ │ │ ├── text-x-mpsub.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-preview.svg │ │ │ ├── text-x-python.svg │ │ │ ├── text-x-python3.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-rust.svg │ │ │ ├── text-x-script.svg │ │ │ ├── text-x-source.svg │ │ │ ├── text-x-sql.svg │ │ │ ├── text-x-ssa.svg │ │ │ ├── text-x-subviewer.svg │ │ │ ├── text-x-tcl.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 │ │ │ ├── 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-mkv.svg │ │ │ ├── video-x-mng.svg │ │ │ ├── video-x-mp4.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 │ │ │ ├── viewdvi.svg │ │ │ ├── viewhtml.svg │ │ │ ├── viewpdf.svg │ │ │ ├── vnd.microsoft.portable-executable.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-mail-distribution-list.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-pdf.svg │ │ │ ├── x-world-x-3dmf.svg │ │ │ └── zip.svg │ └── places │ │ ├── 16 │ │ ├── .directory │ │ ├── akonadi-phone-home.svg │ │ ├── application-x-gnome-saved-search.svg │ │ ├── bookmarks-symbolic.svg │ │ ├── bookmarks.svg │ │ ├── certificate-server.svg │ │ ├── default-folder-bookmark.svg │ │ ├── default-folder-documents.svg │ │ ├── default-folder-download.svg │ │ ├── default-folder-image-people.svg │ │ ├── default-folder-music.svg │ │ ├── default-folder-network.svg │ │ ├── default-folder-open.svg │ │ ├── default-folder-pictures.svg │ │ ├── default-folder-publicshare.svg │ │ ├── default-folder-saved-search.svg │ │ ├── default-folder-temp.svg │ │ ├── default-folder-templates.svg │ │ ├── default-folder-video.svg │ │ ├── default-folder.svg │ │ ├── default-user-desktop.svg │ │ ├── default-user-home.svg │ │ ├── desktop.svg │ │ ├── document-open-recent-symbolic.svg │ │ ├── document-open-recent.svg │ │ ├── edittrash.svg │ │ ├── emptytrash.svg │ │ ├── favorites-symbolic.svg │ │ ├── favorites.svg │ │ ├── folder-activities.svg │ │ ├── folder-add.svg │ │ ├── folder-black.svg │ │ ├── folder-blue.svg │ │ ├── folder-bookmark-symbolic.svg │ │ ├── folder-bookmark.svg │ │ ├── folder-bookmarks.svg │ │ ├── folder-brown.svg │ │ ├── folder-camera-symbolic.svg │ │ ├── folder-camera.svg │ │ ├── folder-cloud-symbolic.svg │ │ ├── folder-cloud.svg │ │ ├── folder-cyan.svg │ │ ├── folder-decrypted.svg │ │ ├── folder-desktop-symbolic.svg │ │ ├── folder-desktop.svg │ │ ├── folder-documents-open.svg │ │ ├── folder-documents-symbolic.svg │ │ ├── folder-documents-symbolic.symbolic.svg │ │ ├── folder-documents.svg │ │ ├── folder-download-open.svg │ │ ├── folder-download-symbolic.svg │ │ ├── folder-download-symbolic.symbolic.svg │ │ ├── folder-download.svg │ │ ├── folder-downloads-symbolic.svg │ │ ├── folder-downloads.svg │ │ ├── folder-drag-accept.svg │ │ ├── folder-encrypted.svg │ │ ├── folder-favorites.svg │ │ ├── folder-game-symbolic.svg │ │ ├── folder-game.svg │ │ ├── folder-games-symbolic.svg │ │ ├── folder-games.svg │ │ ├── folder-gdrive-symbolic.svg │ │ ├── folder-gdrive.svg │ │ ├── folder-git-symbolic.svg │ │ ├── folder-git.svg │ │ ├── folder-google-drive.svg │ │ ├── folder-green.svg │ │ ├── folder-grey.svg │ │ ├── folder-home-symbolic.svg │ │ ├── folder-home.svg │ │ ├── folder-html-symbolic.svg │ │ ├── folder-html.svg │ │ ├── folder-image-people.svg │ │ ├── folder-image.svg │ │ ├── folder-images-symbolic.svg │ │ ├── folder-images-symbolic.symbolic.svg │ │ ├── folder-images.svg │ │ ├── folder-important.svg │ │ ├── folder-locked.svg │ │ ├── folder-magenta.svg │ │ ├── folder-mail-cloud.svg │ │ ├── folder-mail.svg │ │ ├── folder-music-open.svg │ │ ├── folder-music-symbolic.svg │ │ ├── folder-music-symbolic.symbolic.svg │ │ ├── folder-music.svg │ │ ├── folder-network-symbolic.svg │ │ ├── folder-network.svg │ │ ├── folder-onedrive.svg │ │ ├── folder-open-symbolic.svg │ │ ├── folder-open.svg │ │ ├── folder-orange.svg │ │ ├── folder-owncloud-symbolic.svg │ │ ├── folder-owncloud.svg │ │ ├── folder-photo-symbolic.svg │ │ ├── folder-photo.svg │ │ ├── folder-photos-symbolic.svg │ │ ├── folder-photos.svg │ │ ├── folder-picture-symbolic.svg │ │ ├── folder-picture.svg │ │ ├── folder-pictures-open.svg │ │ ├── folder-pictures-symbolic.svg │ │ ├── folder-pictures-symbolic.symbolic.svg │ │ ├── folder-pictures.svg │ │ ├── folder-print.svg │ │ ├── folder-public-symbolic.svg │ │ ├── folder-public.svg │ │ ├── folder-publicshare-open.svg │ │ ├── folder-publicshare-symbolic.svg │ │ ├── folder-publicshare-symbolic.symbolic.svg │ │ ├── folder-publicshare.svg │ │ ├── folder-recent-symbolic.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-symbolic.symbolic.svg │ │ ├── folder-remote.svg │ │ ├── folder-root.svg │ │ ├── folder-rpm-symbolic.svg │ │ ├── folder-rpm.svg │ │ ├── folder-saved-search-alt.svg │ │ ├── folder-saved-search.svg │ │ ├── folder-script.svg │ │ ├── folder-sound-symbolic.svg │ │ ├── folder-sound.svg │ │ ├── folder-symbolic.svg │ │ ├── folder-symbolic.symbolic.svg │ │ ├── folder-tar-symbolic.svg │ │ ├── folder-tar.svg │ │ ├── folder-temp-symbolic.svg │ │ ├── folder-temp.svg │ │ ├── folder-templates-open.svg │ │ ├── folder-templates-symbolic.svg │ │ ├── folder-templates.svg │ │ ├── folder-text-symbolic.svg │ │ ├── folder-text.svg │ │ ├── folder-txt.svg │ │ ├── folder-unlocked.svg │ │ ├── folder-video-symbolic.svg │ │ ├── folder-video.svg │ │ ├── folder-videocamera-symbolic.svg │ │ ├── folder-videocamera.svg │ │ ├── folder-videos-open.svg │ │ ├── folder-videos-symbolic.svg │ │ ├── folder-videos-symbolic.symbolic.svg │ │ ├── folder-videos.svg │ │ ├── folder-violet.svg │ │ ├── folder-visiting-symbolic.svg │ │ ├── folder-visiting.svg │ │ ├── folder-wine.svg │ │ ├── folder-yaru-games.svg │ │ ├── folder-yellow.svg │ │ ├── folder-zip.svg │ │ ├── folder.svg │ │ ├── folder_color_default.svg │ │ ├── folder_color_default_desktop.svg │ │ ├── folder_color_default_documents.svg │ │ ├── folder_color_default_downloads.svg │ │ ├── folder_color_default_music.svg │ │ ├── folder_color_default_pictures.svg │ │ ├── folder_color_default_public.svg │ │ ├── folder_color_default_publicshare.svg │ │ ├── folder_color_default_templates.svg │ │ ├── folder_color_default_videos.svg │ │ ├── folder_download.svg │ │ ├── folder_downloads.svg │ │ ├── folder_home.svg │ │ ├── folder_html.svg │ │ ├── folder_images.svg │ │ ├── folder_man.svg │ │ ├── folder_open.svg │ │ ├── folder_pictures.svg │ │ ├── folder_wordprocessing.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.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 │ │ ├── home-symbolic.svg │ │ ├── home.svg │ │ ├── inode-directory-symbolic.svg │ │ ├── inode-directory.svg │ │ ├── insync-folder.svg │ │ ├── kfm_home.svg │ │ ├── knetattach.svg │ │ ├── library-music.svg │ │ ├── mail-folder-inbox.svg │ │ ├── mail-folder-outbox.svg │ │ ├── mail-folder-sent.svg │ │ ├── mail-message.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 │ │ ├── org.xfce.gigolo.svg │ │ ├── other-desktop.svg │ │ ├── redhat-home.svg │ │ ├── redhat-network-server.svg │ │ ├── redhat-system-group.svg │ │ ├── repository.svg │ │ ├── samba.svg │ │ ├── server-database.svg │ │ ├── server.svg │ │ ├── start-here-kde.svg │ │ ├── stock_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 │ │ ├── tag-folder.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-symbolic.symbolic.svg │ │ ├── user-desktop.svg │ │ ├── user-documents-symbolic.svg │ │ ├── user-documents.svg │ │ ├── user-download-symbolic.svg │ │ ├── user-download.svg │ │ ├── user-home-open.svg │ │ ├── user-home-symbolic.svg │ │ ├── user-home-symbolic.symbolic.svg │ │ ├── user-home.svg │ │ ├── user-identity.svg │ │ ├── user-images-symbolic.svg │ │ ├── user-images.svg │ │ ├── user-music-symbolic.svg │ │ ├── user-music.svg │ │ ├── user-picture-symbolic.svg │ │ ├── user-picture.svg │ │ ├── user-pictures-symbolic.svg │ │ ├── user-pictures.svg │ │ ├── user-share.svg │ │ ├── user-trash-full-symbolic.svg │ │ ├── user-trash-full.svg │ │ ├── user-trash-symbolic.svg │ │ ├── user-trash-symbolic.symbolic.svg │ │ ├── user-trash.svg │ │ ├── user-videos-symbolic.svg │ │ ├── user-videos.svg │ │ ├── utilities-terminal-symbolic.svg │ │ ├── xfce-trash_empty.svg │ │ └── xfce-trash_full.svg │ │ └── 48 │ │ ├── .directory │ │ ├── application-x-gnome-saved-search.svg │ │ ├── bookmarks.svg │ │ ├── cs-desktop.svg │ │ ├── default-folder-open.svg │ │ ├── default-folder-publicshare.svg │ │ ├── default-folder-saved-search.svg │ │ ├── default-folder-templates.svg │ │ ├── default-folder-video.svg │ │ ├── default-folder.svg │ │ ├── desktop.svg │ │ ├── folder-alt.svg │ │ ├── folder-blue.svg │ │ ├── folder-dencrypted.svg │ │ ├── folder-documents-symbolic.svg │ │ ├── folder-documents.svg │ │ ├── folder-download-symbolic.svg │ │ ├── folder-download.svg │ │ ├── folder-downloads.svg │ │ ├── folder-drag-accept.svg │ │ ├── folder-encrypted.svg │ │ ├── folder-favorites.svg │ │ ├── folder-games.svg │ │ ├── folder-green.svg │ │ ├── folder-home.svg │ │ ├── folder-html.svg │ │ ├── folder-image.svg │ │ ├── folder-images.svg │ │ ├── folder-locked.svg │ │ ├── folder-magenta.svg │ │ ├── folder-movies.svg │ │ ├── folder-music-symbolic.svg │ │ ├── folder-music.svg │ │ ├── folder-network.svg │ │ ├── folder-open.svg │ │ ├── folder-orange.svg │ │ ├── folder-picture.svg │ │ ├── folder-pictures-symbolic.svg │ │ ├── folder-pictures.svg │ │ ├── folder-public-symbolic.svg │ │ ├── folder-public.svg │ │ ├── folder-publicshare-symbolic.svg │ │ ├── folder-publicshare.svg │ │ ├── folder-recent.svg │ │ ├── folder-red.svg │ │ ├── folder-remote-ftp.svg │ │ ├── folder-remote-nfs.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-sound.svg │ │ ├── folder-symbolic.svg │ │ ├── folder-temp.svg │ │ ├── folder-templates-symbolic.svg │ │ ├── folder-templates.svg │ │ ├── folder-ulocked.svg │ │ ├── folder-video.svg │ │ ├── folder-videos-symbolic.svg │ │ ├── folder-videos.svg │ │ ├── folder-violet.svg │ │ ├── folder-visiting.svg │ │ ├── folder-yellow.svg │ │ ├── folder.svg │ │ ├── folder_color_default.svg │ │ ├── folder_color_default_documents.svg │ │ ├── folder_color_default_downloads.svg │ │ ├── folder_color_default_music.svg │ │ ├── folder_color_default_pictures.svg │ │ ├── folder_color_default_public.svg │ │ ├── folder_color_default_templates.svg │ │ ├── folder_color_default_videos.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-dev-network.svg │ │ ├── gnome-folder.svg │ │ ├── gnome-fs-dav.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-share.svg │ │ ├── gnome-fs-smb.svg │ │ ├── gnome-fs-ssh.svg │ │ ├── gnome-fs-web.svg │ │ ├── gnome-home.svg │ │ ├── gnome-mime-x-directory-smb-share.svg │ │ ├── gnome-mime-x-directory-smb-workgroup.svg │ │ ├── gtk-directory.svg │ │ ├── gtk-network.svg │ │ ├── inode-directory.svg │ │ ├── library-music.svg │ │ ├── neat.svg │ │ ├── network-server-symbolic.svg │ │ ├── network-workgroup-symbolic.svg │ │ ├── network-workgroup.svg │ │ ├── network.svg │ │ ├── network_fs.svg │ │ ├── network_local.svg │ │ ├── nfs.svg │ │ ├── redhat-system-group.svg │ │ ├── samba.svg │ │ ├── stock_folder.svg │ │ ├── stock_music-library.svg │ │ ├── stock_open.svg │ │ ├── stock_shared-by-me.svg │ │ ├── stock_shared-to-me.svg │ │ ├── user-bookmarks-symbolic.svg │ │ ├── user-desktop.svg │ │ ├── user-home-symbolic.svg │ │ ├── user-home.svg │ │ ├── user-share.svg │ │ ├── user-trash-full-symbolic.svg │ │ └── user-trash-symbolic.svg ├── Bibata-Modern-Ice │ ├── cursor.theme │ ├── cursors │ │ ├── 00000000000000020006000e7e9ffc3f │ │ ├── 00008160000006810000408080010102 │ │ ├── 028006030e0e7ebffc7f7070c0600140 │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ ├── 14fef782d02440884392942c1120523 │ │ ├── 2870a09082c103050810ffdffffe0204 │ │ ├── 3085a0e285430894940527032f8b26df │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── X_cursor │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ ├── alias │ │ ├── all-scroll │ │ ├── arrow │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ ├── bd_double_arrow │ │ ├── bottom_left_corner │ │ ├── bottom_right_corner │ │ ├── bottom_side │ │ ├── bottom_tee │ │ ├── c7088f0f3e6c8088236ef8e1e3e70000 │ │ ├── cell │ │ ├── center_ptr │ │ ├── circle │ │ ├── closedhand │ │ ├── col-resize │ │ ├── color-picker │ │ ├── context-menu │ │ ├── copy │ │ ├── cross │ │ ├── cross_reverse │ │ ├── crossed_circle │ │ ├── crosshair │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ ├── default │ │ ├── diamond_cross │ │ ├── dnd-ask │ │ ├── dnd-copy │ │ ├── dnd-link │ │ ├── dnd-move │ │ ├── dnd-none │ │ ├── dnd_no_drop │ │ ├── dot_box_mask │ │ ├── dotbox │ │ ├── double_arrow │ │ ├── down-arrow │ │ ├── draft │ │ ├── draft_large │ │ ├── draft_small │ │ ├── draped_box │ │ ├── e-resize │ │ ├── e29285e634086352946a0e7090d73106 │ │ ├── ew-resize │ │ ├── fcf1c3c7cd4491d801f1e1c78f100000 │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ ├── fd_double_arrow │ │ ├── fleur │ │ ├── forbidden │ │ ├── grab │ │ ├── grabbing │ │ ├── h_double_arrow │ │ ├── hand1 │ │ ├── hand2 │ │ ├── help │ │ ├── ibeam │ │ ├── icon │ │ ├── left-arrow │ │ ├── left_ptr │ │ ├── left_ptr_help │ │ ├── left_ptr_watch │ │ ├── left_side │ │ ├── left_tee │ │ ├── link │ │ ├── ll_angle │ │ ├── lr_angle │ │ ├── move │ │ ├── n-resize │ │ ├── ne-resize │ │ ├── nesw-resize │ │ ├── no-drop │ │ ├── not-allowed │ │ ├── ns-resize │ │ ├── nw-resize │ │ ├── nwse-resize │ │ ├── openhand │ │ ├── pencil │ │ ├── pirate │ │ ├── plus │ │ ├── pointer │ │ ├── pointer-move │ │ ├── pointing_hand │ │ ├── progress │ │ ├── question_arrow │ │ ├── right-arrow │ │ ├── right_ptr │ │ ├── right_side │ │ ├── right_tee │ │ ├── row-resize │ │ ├── s-resize │ │ ├── sb_down_arrow │ │ ├── sb_h_double_arrow │ │ ├── sb_left_arrow │ │ ├── sb_right_arrow │ │ ├── sb_up_arrow │ │ ├── sb_v_double_arrow │ │ ├── se-resize │ │ ├── size-hor │ │ ├── size-ver │ │ ├── size_all │ │ ├── size_bdiag │ │ ├── size_fdiag │ │ ├── size_hor │ │ ├── size_ver │ │ ├── split_h │ │ ├── split_v │ │ ├── sw-resize │ │ ├── target │ │ ├── tcross │ │ ├── text │ │ ├── top_left_arrow │ │ ├── top_left_corner │ │ ├── top_right_corner │ │ ├── top_side │ │ ├── top_tee │ │ ├── ul_angle │ │ ├── up-arrow │ │ ├── ur_angle │ │ ├── v_double_arrow │ │ ├── vertical-text │ │ ├── w-resize │ │ ├── wait │ │ ├── watch │ │ ├── wayland-cursor │ │ ├── whats_this │ │ ├── x-cursor │ │ ├── xterm │ │ ├── zoom-in │ │ └── zoom-out │ └── index.theme └── default │ └── index.theme ├── .local └── share │ └── applications │ ├── Ncmpcpp.desktop │ ├── btop.desktop │ ├── com.mitchellh.ghostty.desktop │ ├── cursor.desktop │ ├── grok.ai.desktop │ ├── mimeinfo.cache │ ├── ventoy.desktop │ ├── vesktop.desktop │ ├── yazi.desktop │ ├── yt-music.desktop │ └── zen.desktop ├── .themes └── Catppuccin-Dark │ ├── cinnamon │ ├── assets │ │ ├── add-workspace-active.svg │ │ ├── add-workspace-hover.svg │ │ ├── add-workspace.svg │ │ ├── calendar-arrow-left.svg │ │ ├── calendar-arrow-right.svg │ │ ├── checkbox-dark.svg │ │ ├── checkbox-off.svg │ │ ├── checkbox.svg │ │ ├── close-active.svg │ │ ├── close-hover.svg │ │ ├── close.svg │ │ ├── corner-ripple.svg │ │ ├── radiobutton-dark.svg │ │ ├── radiobutton-off.svg │ │ ├── radiobutton.svg │ │ ├── toggle-off.svg │ │ ├── toggle-on-dark.svg │ │ ├── toggle-on.svg │ │ └── trash-icon.svg │ ├── cinnamon.css │ └── thumbnail.png │ ├── gnome-shell │ ├── assets │ │ ├── calendar-arrow-left.svg │ │ ├── calendar-arrow-right.svg │ │ ├── calendar-today.svg │ │ ├── checkbox-dark.svg │ │ ├── checkbox-off-active.svg │ │ ├── checkbox-off-hover.svg │ │ ├── checkbox-off.svg │ │ ├── checkbox.svg │ │ ├── dash-placeholder.svg │ │ ├── no-events.svg │ │ ├── no-notifications.svg │ │ ├── noise-texture.svg │ │ ├── process-working.svg │ │ ├── toggle-off.svg │ │ ├── toggle-on-dark.svg │ │ ├── toggle-on.svg │ │ └── view-app-grid.svg │ ├── gnome-shell.css │ ├── no-events.svg │ ├── no-notifications.svg │ ├── pad-osd.css │ └── process-working.svg │ ├── gtk-2.0 │ ├── apps.rc │ ├── assets │ │ ├── border.png │ │ ├── button-active.png │ │ ├── button-disabled.png │ │ ├── button-hover.png │ │ ├── button.png │ │ ├── checkbox-checked-active.png │ │ ├── checkbox-checked-disabled.png │ │ ├── checkbox-checked-hover.png │ │ ├── checkbox-checked.png │ │ ├── checkbox-mixed-active.png │ │ ├── checkbox-mixed-disabled.png │ │ ├── checkbox-mixed-hover.png │ │ ├── checkbox-mixed.png │ │ ├── checkbox-unchecked-active.png │ │ ├── checkbox-unchecked-disabled.png │ │ ├── checkbox-unchecked-hover.png │ │ ├── checkbox-unchecked.png │ │ ├── combo-left-entry-active.png │ │ ├── combo-left-entry-disabled.png │ │ ├── combo-left-entry-hover.png │ │ ├── combo-left-entry.png │ │ ├── combo-right-entry-active.png │ │ ├── combo-right-entry-disabled.png │ │ ├── combo-right-entry-hover.png │ │ ├── combo-right-entry.png │ │ ├── entry-active.png │ │ ├── entry-background-disabled.png │ │ ├── entry-background.png │ │ ├── entry-disabled.png │ │ ├── entry-hover.png │ │ ├── entry.png │ │ ├── flat-button-active.png │ │ ├── flat-button-disabled.png │ │ ├── flat-button-hover.png │ │ ├── flat-button.png │ │ ├── focus.png │ │ ├── frame-inline.png │ │ ├── frame-notebook.png │ │ ├── frame.png │ │ ├── handle-horz-active.png │ │ ├── handle-horz-hover.png │ │ ├── handle-horz.png │ │ ├── handle-vert-active.png │ │ ├── handle-vert-hover.png │ │ ├── handle-vert.png │ │ ├── menu-checkbox-checked-disabled.png │ │ ├── menu-checkbox-checked.png │ │ ├── menu-checkbox-mixed-disabled.png │ │ ├── menu-checkbox-mixed.png │ │ ├── menu-checkbox-unchecked-disabled.png │ │ ├── menu-checkbox-unchecked.png │ │ ├── menu-radio-checked-disabled.png │ │ ├── menu-radio-checked.png │ │ ├── menu-radio-mixed-disabled.png │ │ ├── menu-radio-mixed.png │ │ ├── menu-radio-unchecked-disabled.png │ │ ├── menu-radio-unchecked.png │ │ ├── pan-down-alt-disabled.png │ │ ├── pan-down-alt.png │ │ ├── pan-down-disabled.png │ │ ├── pan-down.png │ │ ├── pan-left-alt-disabled.png │ │ ├── pan-left-alt.png │ │ ├── pan-left-disabled.png │ │ ├── pan-left-semi.png │ │ ├── pan-left.png │ │ ├── pan-right-alt-disabled.png │ │ ├── pan-right-alt.png │ │ ├── pan-right-disabled.png │ │ ├── pan-right-semi.png │ │ ├── pan-right.png │ │ ├── pan-up-alt-disabled.png │ │ ├── pan-up-alt.png │ │ ├── pan-up-disabled.png │ │ ├── pan-up.png │ │ ├── progressbar-progress.png │ │ ├── progressbar-trough.png │ │ ├── radio-checked-active.png │ │ ├── radio-checked-disabled.png │ │ ├── radio-checked-hover.png │ │ ├── radio-checked.png │ │ ├── radio-mixed-active.png │ │ ├── radio-mixed-disabled.png │ │ ├── radio-mixed-hover.png │ │ ├── radio-mixed.png │ │ ├── radio-unchecked-active.png │ │ ├── radio-unchecked-disabled.png │ │ ├── radio-unchecked-hover.png │ │ ├── radio-unchecked.png │ │ ├── scale-horz-trough-active.png │ │ ├── scale-horz-trough-disabled.png │ │ ├── scale-horz-trough.png │ │ ├── scale-slider-active.png │ │ ├── scale-slider-disabled.png │ │ ├── scale-slider-hover.png │ │ ├── scale-slider.png │ │ ├── scale-vert-trough-active.png │ │ ├── scale-vert-trough-disabled.png │ │ ├── scale-vert-trough.png │ │ ├── scrollbar-horz-slider-active.png │ │ ├── scrollbar-horz-slider-disabled.png │ │ ├── scrollbar-horz-slider-hover.png │ │ ├── scrollbar-horz-slider.png │ │ ├── scrollbar-horz-trough.png │ │ ├── scrollbar-vert-ltr-slider-active.png │ │ ├── scrollbar-vert-ltr-slider-disabled.png │ │ ├── scrollbar-vert-ltr-slider-hover.png │ │ ├── scrollbar-vert-ltr-slider.png │ │ ├── scrollbar-vert-ltr-trough.png │ │ ├── scrollbar-vert-rtl-slider-active.png │ │ ├── scrollbar-vert-rtl-slider-disabled.png │ │ ├── scrollbar-vert-rtl-slider-hover.png │ │ ├── scrollbar-vert-rtl-slider.png │ │ ├── scrollbar-vert-rtl-trough.png │ │ ├── spin-ltr-down-active.png │ │ ├── spin-ltr-down-disabled.png │ │ ├── spin-ltr-down-hover.png │ │ ├── spin-ltr-down.png │ │ ├── spin-ltr-up-active.png │ │ ├── spin-ltr-up-disabled.png │ │ ├── spin-ltr-up-hover.png │ │ ├── spin-ltr-up.png │ │ ├── spin-rtl-down-active.png │ │ ├── spin-rtl-down-disabled.png │ │ ├── spin-rtl-down-hover.png │ │ ├── spin-rtl-down.png │ │ ├── spin-rtl-up-active.png │ │ ├── spin-rtl-up-disabled.png │ │ ├── spin-rtl-up-hover.png │ │ ├── spin-rtl-up.png │ │ ├── tab.png │ │ ├── treeview-ltr-button-active.png │ │ ├── treeview-ltr-button-hover.png │ │ ├── treeview-ltr-button.png │ │ ├── treeview-rtl-button-active.png │ │ ├── treeview-rtl-button-hover.png │ │ └── treeview-rtl-button.png │ ├── gtkrc │ ├── hacks.rc │ └── main.rc │ ├── gtk-3.0 │ ├── assets │ │ ├── scalable │ │ │ ├── checkbox-checked-symbolic.svg │ │ │ ├── checkbox-checked-symbolic@2.svg │ │ │ ├── checkbox-mixed-symbolic.svg │ │ │ ├── checkbox-mixed-symbolic@2.svg │ │ │ ├── close.svg │ │ │ ├── cursor-handle-symbolic.svg │ │ │ ├── maximize.svg │ │ │ ├── minimize.svg │ │ │ ├── radio-checked-symbolic.svg │ │ │ ├── radio-checked-symbolic@2.svg │ │ │ ├── radio-mixed-symbolic.svg │ │ │ ├── radio-mixed-symbolic@2.svg │ │ │ ├── scale-horz-marks-after-slider-symbolic.svg │ │ │ ├── scale-horz-marks-before-slider-symbolic.svg │ │ │ ├── scale-slider-hover-symbolic.svg │ │ │ ├── scale-slider-hover-symbolic@2.svg │ │ │ ├── scale-slider-symbolic.svg │ │ │ ├── scale-slider-symbolic@2.svg │ │ │ ├── scale-vert-marks-after-slider-symbolic.svg │ │ │ ├── scale-vert-marks-before-slider-symbolic.svg │ │ │ ├── small-checkbox-checked-symbolic.svg │ │ │ ├── small-checkbox-checked-symbolic@2.svg │ │ │ ├── small-checkbox-mixed-symbolic.svg │ │ │ ├── small-checkbox-mixed-symbolic@2.svg │ │ │ ├── small-radio-checked-symbolic.svg │ │ │ ├── small-radio-checked-symbolic@2.svg │ │ │ ├── small-radio-mixed-symbolic.svg │ │ │ ├── small-radio-mixed-symbolic@2.svg │ │ │ └── unmaximize.svg │ │ ├── scale-horz-marks-after-slider-dark.png │ │ ├── scale-horz-marks-after-slider-dark@2.png │ │ ├── scale-horz-marks-after-slider-disabled-dark.png │ │ ├── scale-horz-marks-after-slider-disabled-dark@2.png │ │ ├── scale-horz-marks-after-slider-disabled.png │ │ ├── scale-horz-marks-after-slider-disabled@2.png │ │ ├── scale-horz-marks-after-slider.png │ │ ├── scale-horz-marks-after-slider@2.png │ │ ├── scale-horz-marks-before-slider-dark.png │ │ ├── scale-horz-marks-before-slider-dark@2.png │ │ ├── scale-horz-marks-before-slider-disabled-dark.png │ │ ├── scale-horz-marks-before-slider-disabled-dark@2.png │ │ ├── scale-horz-marks-before-slider-disabled.png │ │ ├── scale-horz-marks-before-slider-disabled@2.png │ │ ├── scale-horz-marks-before-slider.png │ │ ├── scale-horz-marks-before-slider@2.png │ │ ├── scale-vert-marks-after-slider-dark.png │ │ ├── scale-vert-marks-after-slider-dark@2.png │ │ ├── scale-vert-marks-after-slider-disabled-dark.png │ │ ├── scale-vert-marks-after-slider-disabled-dark@2.png │ │ ├── scale-vert-marks-after-slider-disabled.png │ │ ├── scale-vert-marks-after-slider-disabled@2.png │ │ ├── scale-vert-marks-after-slider.png │ │ ├── scale-vert-marks-after-slider@2.png │ │ ├── scale-vert-marks-before-slider-dark.png │ │ ├── scale-vert-marks-before-slider-dark@2.png │ │ ├── scale-vert-marks-before-slider-disabled-dark.png │ │ ├── scale-vert-marks-before-slider-disabled-dark@2.png │ │ ├── scale-vert-marks-before-slider-disabled.png │ │ ├── scale-vert-marks-before-slider-disabled@2.png │ │ ├── scale-vert-marks-before-slider.png │ │ ├── scale-vert-marks-before-slider@2.png │ │ ├── selectionmode-checkbox-checked-dark.png │ │ ├── selectionmode-checkbox-checked-dark@2.png │ │ ├── selectionmode-checkbox-checked.png │ │ ├── selectionmode-checkbox-checked@2.png │ │ ├── selectionmode-checkbox-unchecked-dark.png │ │ ├── selectionmode-checkbox-unchecked-dark@2.png │ │ ├── selectionmode-checkbox-unchecked.png │ │ └── selectionmode-checkbox-unchecked@2.png │ ├── gtk-dark.css │ ├── gtk.css │ └── thumbnail.png │ ├── gtk-4.0 │ ├── assets │ │ ├── checkbox-checked-symbolic.svg │ │ ├── checkbox-checked-symbolic@2.svg │ │ ├── checkbox-mixed-symbolic.svg │ │ ├── checkbox-mixed-symbolic@2.svg │ │ ├── close.svg │ │ ├── cursor-handle-symbolic.svg │ │ ├── maximize.svg │ │ ├── minimize.svg │ │ ├── radio-checked-symbolic.svg │ │ ├── radio-checked-symbolic@2.svg │ │ ├── radio-mixed-symbolic.svg │ │ ├── radio-mixed-symbolic@2.svg │ │ ├── scale-horz-marks-after-slider-symbolic.svg │ │ ├── scale-horz-marks-before-slider-symbolic.svg │ │ ├── scale-slider-hover-symbolic.svg │ │ ├── scale-slider-hover-symbolic@2.svg │ │ ├── scale-slider-symbolic.svg │ │ ├── scale-slider-symbolic@2.svg │ │ ├── scale-vert-marks-after-slider-symbolic.svg │ │ ├── scale-vert-marks-before-slider-symbolic.svg │ │ ├── small-checkbox-checked-symbolic.svg │ │ ├── small-checkbox-checked-symbolic@2.svg │ │ ├── small-checkbox-mixed-symbolic.svg │ │ ├── small-checkbox-mixed-symbolic@2.svg │ │ ├── small-radio-checked-symbolic.svg │ │ ├── small-radio-checked-symbolic@2.svg │ │ ├── small-radio-mixed-symbolic.svg │ │ ├── small-radio-mixed-symbolic@2.svg │ │ └── unmaximize.svg │ ├── gtk-dark.css │ ├── gtk.css │ └── thumbnail.png │ ├── index.theme │ ├── metacity-1 │ ├── assets │ │ ├── button.svg │ │ ├── close.svg │ │ ├── maximize.svg │ │ ├── menu.svg │ │ ├── minimize.svg │ │ ├── shade.svg │ │ ├── unmaximize.svg │ │ └── unshade.svg │ ├── metacity-theme-1.xml │ ├── metacity-theme-2.xml │ ├── metacity-theme-3.xml │ └── thumbnail.png │ ├── plank │ └── dock.theme │ └── 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 │ ├── maximize-toggled-active.png │ ├── maximize-toggled-inactive.png │ ├── maximize-toggled-prelight.png │ ├── maximize-toggled-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 │ ├── shade-toggled-active.png │ ├── shade-toggled-inactive.png │ ├── shade-toggled-prelight.png │ ├── shade-toggled-pressed.png │ ├── stick-active.png │ ├── stick-inactive.png │ ├── stick-prelight.png │ ├── stick-pressed.png │ ├── stick-toggled-active.png │ ├── stick-toggled-inactive.png │ ├── stick-toggled-prelight.png │ ├── stick-toggled-pressed.png │ ├── themerc │ ├── 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.png │ ├── top-left-inactive.png │ ├── top-right-active.png │ └── top-right-inactive.png ├── .zshrc ├── Assets ├── Fonts_global │ ├── Avenir │ │ ├── AvenirLTStd-Black.otf │ │ ├── AvenirLTStd-BlackOblique.otf │ │ ├── AvenirLTStd-Book.otf │ │ ├── AvenirLTStd-BookOblique.otf │ │ ├── AvenirLTStd-Heavy.otf │ │ ├── AvenirLTStd-HeavyOblique.otf │ │ ├── AvenirLTStd-Light.otf │ │ ├── AvenirLTStd-LightOblique.otf │ │ ├── AvenirLTStd-Medium.otf │ │ ├── AvenirLTStd-MediumOblique.otf │ │ ├── AvenirLTStd-Oblique.otf │ │ └── AvenirLTStd-Roman.otf │ ├── Barrio │ │ ├── Barrio-Regular.ttf │ │ └── OFL.txt │ ├── Blogh │ │ └── Blogh.otf │ ├── Crimson_Text │ │ ├── CrimsonText-Bold.ttf │ │ ├── CrimsonText-BoldItalic.ttf │ │ ├── CrimsonText-Italic.ttf │ │ ├── CrimsonText-Regular.ttf │ │ ├── CrimsonText-SemiBold.ttf │ │ ├── CrimsonText-SemiBoldItalic.ttf │ │ └── OFL.txt │ ├── Dharma │ │ ├── DharmaGothicE_Bold_R.otf │ │ ├── DharmaGothicE_ExBold_I.otf │ │ ├── DharmaGothicE_ExBold_R.otf │ │ ├── DharmaGothicE_ExLight_I.otf │ │ ├── DharmaGothicE_ExLight_R.otf │ │ ├── DharmaGothicE_Heavy_I.otf │ │ ├── DharmaGothicE_Heavy_R.otf │ │ ├── DharmaGothicE_Light_I.otf │ │ ├── DharmaGothicE_Light_R.otf │ │ ├── DharmaGothicE_Regular_I.otf │ │ └── DharmaGothicE_Regular_R.otf │ ├── Hanseif │ │ ├── Hansief Rough.otf │ │ └── Hansief.otf │ ├── Joti │ │ └── JotiOne-Regular.ttf │ ├── Kabel │ │ ├── ITCKabelStd-Demi.otf │ │ ├── KabelLTStd-Black.otf │ │ ├── KabelLTStd-Heavy.otf │ │ └── KabelLTStd-Light.otf │ ├── Redwing │ │ ├── OFL_JeremyNelsonDesign_RedwingDuo.txt │ │ ├── Redwing-Light.otf │ │ └── Redwing-Medium.otf │ ├── Sinistre │ │ ├── OFL.txt │ │ ├── README.txt │ │ ├── desktop │ │ │ └── Sinistre-S†Caroline.otf │ │ └── web │ │ │ ├── Hosting for Web.txt │ │ │ ├── Sinistre-StCaroline.woff │ │ │ └── Sinistre-StCaroline.woff2 │ ├── Space_Grotesk │ │ ├── SpaceGrotesk-Bold.ttf │ │ ├── SpaceGrotesk-Light.ttf │ │ ├── SpaceGrotesk-Medium.ttf │ │ ├── SpaceGrotesk-Regular.ttf │ │ └── SpaceGrotesk-SemiBold.ttf │ └── Think │ │ └── Think.ttf ├── cat_grub │ ├── Jet-Brains-Mono-16.pf2 │ ├── Noto-Sans-16.pf2 │ ├── select_c.png │ ├── select_e.png │ ├── select_w.png │ ├── terminal_c.png │ ├── terminal_e.png │ ├── terminal_n.png │ ├── terminal_ne.png │ ├── terminal_nw.png │ ├── terminal_s.png │ ├── terminal_se.png │ ├── terminal_sw.png │ ├── terminal_w.png │ ├── the_saint.png │ └── theme.txt └── corners │ ├── Main.qml │ ├── backgrounds │ └── knight.png │ ├── components │ ├── DateTimePanel.qml │ ├── LoginPanel.qml │ ├── PasswordPanel.qml │ ├── PowerPanel.qml │ ├── SessionPanel.qml │ ├── UserFieldPanel.qml │ └── UserPanel.qml │ ├── fonts │ ├── SparkyStonesRegular-BW6ld.ttf │ ├── SuperDream-ax3vE.ttf │ └── SuperShiny-0v0rG.ttf │ ├── icons │ ├── power.svg │ ├── restart.svg │ ├── settings.svg │ └── sleep.svg │ └── theme.conf ├── Pictures ├── Extras │ ├── Rice │ │ ├── Hyprpanel.png │ │ ├── Ncmpcpp.png │ │ ├── Neovim.png │ │ ├── Obsidain.png │ │ ├── Terminals_1.png │ │ ├── Zen-browser.png │ │ ├── Zen-catppuccin.png │ │ ├── Zfxtop.png │ │ ├── kirby-rice.gif │ │ ├── rofi-menu.png │ │ └── rofi-wallselect.png │ └── face.png ├── Night-tab │ ├── Custom-nighttab.json │ ├── cup.gif │ ├── hand.gif │ ├── walking.gif │ └── window.gif └── Wallpapers │ ├── 3_swordsman.png │ ├── bridge.png │ ├── bunny.png │ ├── cabin.png │ ├── knight.png │ └── tai_lung.png └── README.md /.cache/Trackers/screenshotAreaTracker.txt: -------------------------------------------------------------------------------- 1 | 211 2 | -------------------------------------------------------------------------------- /.cache/Trackers/screenshotScreenTracker.txt: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /.cache/Trackers/wallTracker.txt: -------------------------------------------------------------------------------- 1 | tai_lung.png 2 | -------------------------------------------------------------------------------- /.config/mpd/pid: -------------------------------------------------------------------------------- 1 | 38881 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .stow-local-ignore 2 | -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/actor.svg: -------------------------------------------------------------------------------- 1 | im-user.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/add.svg: -------------------------------------------------------------------------------- 1 | list-add.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/all-apps.svg: -------------------------------------------------------------------------------- 1 | homerun.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/answer.svg: -------------------------------------------------------------------------------- 1 | dialog-ok.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/arrow-up.svg: -------------------------------------------------------------------------------- 1 | go-up.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/back.svg: -------------------------------------------------------------------------------- 1 | go-previous.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/bqm-add.svg: -------------------------------------------------------------------------------- 1 | list-add.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/burst.svg: -------------------------------------------------------------------------------- 1 | view-grid.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/collapse.svg: -------------------------------------------------------------------------------- 1 | ./go-up.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/config.svg: -------------------------------------------------------------------------------- 1 | configure.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/down.svg: -------------------------------------------------------------------------------- 1 | go-down.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/dvipdf.svg: -------------------------------------------------------------------------------- 1 | acrobat.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/edit-flag.svg: -------------------------------------------------------------------------------- 1 | flag.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/edit-mark.svg: -------------------------------------------------------------------------------- 1 | flag.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/edit-tag.svg: -------------------------------------------------------------------------------- 1 | tag.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/editcut.svg: -------------------------------------------------------------------------------- 1 | edit-cut.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/exception.svg: -------------------------------------------------------------------------------- 1 | cache.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/expand.svg: -------------------------------------------------------------------------------- 1 | ./go-down.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/favorite.svg: -------------------------------------------------------------------------------- 1 | rating.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/favorites.svg: -------------------------------------------------------------------------------- 1 | rating.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/filefind.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/find.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/fitmanual.svg: -------------------------------------------------------------------------------- 1 | window.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/folder-tag.svg: -------------------------------------------------------------------------------- 1 | tag.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/fork.svg: -------------------------------------------------------------------------------- 1 | cache.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/giggle-tag.svg: -------------------------------------------------------------------------------- 1 | tag.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/globe.svg: -------------------------------------------------------------------------------- 1 | atmosphere.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/go-right.svg: -------------------------------------------------------------------------------- 1 | go-next.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/go-top.svg: -------------------------------------------------------------------------------- 1 | go-up.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/go.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/gohome.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/gtg-home.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/gtg-tag.svg: -------------------------------------------------------------------------------- 1 | tag.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/gtg-work.svg: -------------------------------------------------------------------------------- 1 | rating.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/gtk-add.svg: -------------------------------------------------------------------------------- 1 | list-add.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/gtk-cut.svg: -------------------------------------------------------------------------------- 1 | edit-cut.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/gtk-find.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/gtk-go-up.svg: -------------------------------------------------------------------------------- 1 | go-up.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/gtk-home.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/gtk-new.svg: -------------------------------------------------------------------------------- 1 | list-add.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/hb-edit.svg: -------------------------------------------------------------------------------- 1 | edit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/hint.svg: -------------------------------------------------------------------------------- 1 | view-hidden.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/icon_tag.svg: -------------------------------------------------------------------------------- 1 | tag.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/im-irc.svg: -------------------------------------------------------------------------------- 1 | list-add.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/info.svg: -------------------------------------------------------------------------------- 1 | help-about.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/install.svg: -------------------------------------------------------------------------------- 1 | vcs-pull.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/kfm_home.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/label-amarok.svg: -------------------------------------------------------------------------------- 1 | tag.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/label.svg: -------------------------------------------------------------------------------- 1 | tag.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/lastfm-tag.svg: -------------------------------------------------------------------------------- 1 | tag.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/lens.svg: -------------------------------------------------------------------------------- 1 | edit-find.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/links.svg: -------------------------------------------------------------------------------- 1 | link.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/liteinfo.svg: -------------------------------------------------------------------------------- 1 | hwinfo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/love.svg: -------------------------------------------------------------------------------- 1 | love-amarok.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/loved_radio.svg: -------------------------------------------------------------------------------- 1 | love.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/mail-flag.svg: -------------------------------------------------------------------------------- 1 | flag.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/mail-inbox.svg: -------------------------------------------------------------------------------- 1 | inbox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/mail-task.svg: -------------------------------------------------------------------------------- 1 | edit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/math9.svg: -------------------------------------------------------------------------------- 1 | im-user.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/milestone.svg: -------------------------------------------------------------------------------- 1 | rating.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/mpost.svg: -------------------------------------------------------------------------------- 1 | draw-path.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/next.svg: -------------------------------------------------------------------------------- 1 | go-next.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/no.svg: -------------------------------------------------------------------------------- 1 | window-close.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/off.svg: -------------------------------------------------------------------------------- 1 | window-close.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/ok.svg: -------------------------------------------------------------------------------- 1 | object-select.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/on.svg: -------------------------------------------------------------------------------- 1 | object-select.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/package.svg: -------------------------------------------------------------------------------- 1 | archive.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/pdflatex.svg: -------------------------------------------------------------------------------- 1 | acrobat.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/pin.svg: -------------------------------------------------------------------------------- 1 | window-pin.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/ps2pdf.svg: -------------------------------------------------------------------------------- 1 | acrobat.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/quickopen.svg: -------------------------------------------------------------------------------- 1 | cache.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/reply.svg: -------------------------------------------------------------------------------- 1 | edit-undo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/search.svg: -------------------------------------------------------------------------------- 1 | edit-find.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/social.svg: -------------------------------------------------------------------------------- 1 | im-user.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/star-on.svg: -------------------------------------------------------------------------------- 1 | rating.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/starred.svg: -------------------------------------------------------------------------------- 1 | rating.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/start.svg: -------------------------------------------------------------------------------- 1 | go-first.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/stock_edit.svg: -------------------------------------------------------------------------------- 1 | edit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/stock_top.svg: -------------------------------------------------------------------------------- 1 | go-up.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/stock_up.svg: -------------------------------------------------------------------------------- 1 | go-up.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/tab.svg: -------------------------------------------------------------------------------- 1 | tab-new.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/tab_new.svg: -------------------------------------------------------------------------------- 1 | tab-new.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/tag-places.svg: -------------------------------------------------------------------------------- 1 | globe.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/tag-symbolic.svg: -------------------------------------------------------------------------------- 1 | tag.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/tool-pencil.svg: -------------------------------------------------------------------------------- 1 | edit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/top.svg: -------------------------------------------------------------------------------- 1 | go-top.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/undo.svg: -------------------------------------------------------------------------------- 1 | edit-undo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/up.svg: -------------------------------------------------------------------------------- 1 | go-up.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/user.svg: -------------------------------------------------------------------------------- 1 | im-user.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/view.svg: -------------------------------------------------------------------------------- 1 | edit-copy.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/viewmag+.svg: -------------------------------------------------------------------------------- 1 | zoom-in.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/viewpdf.svg: -------------------------------------------------------------------------------- 1 | acrobat.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/vm-upload.svg: -------------------------------------------------------------------------------- 1 | upload.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/vm_new.svg: -------------------------------------------------------------------------------- 1 | entry-new.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/actions/scalable/zoom.svg: -------------------------------------------------------------------------------- 1 | edit-find.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/10B4_steam.0.svg: -------------------------------------------------------------------------------- 1 | steam.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/1cv8.svg: -------------------------------------------------------------------------------- 1 | 1cestart.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/1cv8c.svg: -------------------------------------------------------------------------------- 1 | 1cestart.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/2048-qt.svg: -------------------------------------------------------------------------------- 1 | 2048.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/2905_wscript.0.svg: -------------------------------------------------------------------------------- 1 | wine.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/2gis.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/2xclient.svg: -------------------------------------------------------------------------------- 1 | 2xsession.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/446B_docu.0.svg: -------------------------------------------------------------------------------- 1 | wine.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/7-zip.svg: -------------------------------------------------------------------------------- 1 | 7zip.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/7-zipa.svg: -------------------------------------------------------------------------------- 1 | 7z.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/7z.svg: -------------------------------------------------------------------------------- 1 | 7zip.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/7za.svg: -------------------------------------------------------------------------------- 1 | 7z.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Acetino2.svg: -------------------------------------------------------------------------------- 1 | acetoneiso.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/AdobeFlash.svg: -------------------------------------------------------------------------------- 1 | flash.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Anatine.svg: -------------------------------------------------------------------------------- 1 | anatine.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Anydesk.svg: -------------------------------------------------------------------------------- 1 | anydesk.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Ardour.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/B13E_wscript.0.svg: -------------------------------------------------------------------------------- 1 | wine.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/B46B_javaws.0.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Babe.svg: -------------------------------------------------------------------------------- 1 | babe.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Blender.svg: -------------------------------------------------------------------------------- 1 | blender.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/BlueMail.svg: -------------------------------------------------------------------------------- 1 | evolution.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Calibre.svg: -------------------------------------------------------------------------------- 1 | calibre.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Caprine.svg: -------------------------------------------------------------------------------- 1 | fbmessenger.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Charm.svg: -------------------------------------------------------------------------------- 1 | clock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Darktable.svg: -------------------------------------------------------------------------------- 1 | darktable.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/DeSmuME.svg: -------------------------------------------------------------------------------- 1 | desmume.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Dropbox.svg: -------------------------------------------------------------------------------- 1 | dropbox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/EE7D_change.0.svg: -------------------------------------------------------------------------------- 1 | wine.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Evernote.svg: -------------------------------------------------------------------------------- 1 | evernote.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Firefox2.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Firefox3.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Font-Manager.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/FreeTube.svg: -------------------------------------------------------------------------------- 1 | freetube.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/GPG-Key4.svg: -------------------------------------------------------------------------------- 1 | lock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Geogebra.svg: -------------------------------------------------------------------------------- 1 | geogebra.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/GitKraken.svg: -------------------------------------------------------------------------------- 1 | gitkraken.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Gitkraken.svg: -------------------------------------------------------------------------------- 1 | gitkraken.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Gitter.svg: -------------------------------------------------------------------------------- 1 | gitter.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Gnome-Notes.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Gnome-notes.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Grsync.SVG: -------------------------------------------------------------------------------- 1 | grsync.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Grsync.svg: -------------------------------------------------------------------------------- 1 | grsync.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/HexChat.svg: -------------------------------------------------------------------------------- 1 | hexchat.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/HexChat1.svg: -------------------------------------------------------------------------------- 1 | hexchat.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/HexChat14.svg: -------------------------------------------------------------------------------- 1 | hexchat.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ImageJ.svg: -------------------------------------------------------------------------------- 1 | xdiagnose.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Imagemagick.svg: -------------------------------------------------------------------------------- 1 | effects.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Ipub.svg: -------------------------------------------------------------------------------- 1 | gnome-books.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/J7Z.svg: -------------------------------------------------------------------------------- 1 | 7zip.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Jellyamp.svg: -------------------------------------------------------------------------------- 1 | jellyfin.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Kazam.svg: -------------------------------------------------------------------------------- 1 | kazam.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/LabPlot2.svg: -------------------------------------------------------------------------------- 1 | labplot.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Last.fm-icon.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/LinSSID.svg: -------------------------------------------------------------------------------- 1 | linssid.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/MidnightCommand.svg: -------------------------------------------------------------------------------- 1 | mc.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Musescore.svg: -------------------------------------------------------------------------------- 1 | musescore.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/MvGather.svg: -------------------------------------------------------------------------------- 1 | totem.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Nautilus.svg: -------------------------------------------------------------------------------- 1 | nautilus.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Nextcloud: -------------------------------------------------------------------------------- 1 | nextcloud.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Nextcloud.svg: -------------------------------------------------------------------------------- 1 | nextcloud.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/NoMachine.svg: -------------------------------------------------------------------------------- 1 | 2xsession.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Nocturn.svg: -------------------------------------------------------------------------------- 1 | twitter.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Nvidiux.svg: -------------------------------------------------------------------------------- 1 | gtick.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Nylas-N1.svg: -------------------------------------------------------------------------------- 1 | n1.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/OpenRGB.svg: -------------------------------------------------------------------------------- 1 | openrgb.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Pinta_icon.svg: -------------------------------------------------------------------------------- 1 | paint.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Pithos.svg: -------------------------------------------------------------------------------- 1 | cantata.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Play.svg: -------------------------------------------------------------------------------- 1 | system-error.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/QMapShack.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/QtAV.svg: -------------------------------------------------------------------------------- 1 | QMPlay2.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/QtIcon.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/RSS_feeds.svg: -------------------------------------------------------------------------------- 1 | akregator.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/SM64nightly.svg: -------------------------------------------------------------------------------- 1 | smw.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/SPEEDTEST.svg: -------------------------------------------------------------------------------- 1 | gtick.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/SciTE.svg: -------------------------------------------------------------------------------- 1 | Sci48M.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ScudCloud.svg: -------------------------------------------------------------------------------- 1 | slack.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Skanlite.svg: -------------------------------------------------------------------------------- 1 | scanner.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Stacer.svg: -------------------------------------------------------------------------------- 1 | stacer.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/SuperMario64.svg: -------------------------------------------------------------------------------- 1 | smw.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/TeXmacs.svg: -------------------------------------------------------------------------------- 1 | texstudio.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Temps.svg: -------------------------------------------------------------------------------- 1 | weather.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Terminal.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Termius.svg: -------------------------------------------------------------------------------- 1 | termius.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Todoist.svg: -------------------------------------------------------------------------------- 1 | todoist.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Tweetdeck.svg: -------------------------------------------------------------------------------- 1 | tweetdeck.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/VBox.svg: -------------------------------------------------------------------------------- 1 | virtualbox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Vbox.svg: -------------------------------------------------------------------------------- 1 | virtualbox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Veromix.svg: -------------------------------------------------------------------------------- 1 | arts.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/WMail.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/Wireshark.svg: -------------------------------------------------------------------------------- 1 | wireshark.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/XMind.svg: -------------------------------------------------------------------------------- 1 | xmind.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/abiword_48.svg: -------------------------------------------------------------------------------- 1 | abiword.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/about.svg: -------------------------------------------------------------------------------- 1 | gnome-info.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/abrt-gui.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/abrt.svg: -------------------------------------------------------------------------------- 1 | system-error.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/acidrip.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/agenda.svg: -------------------------------------------------------------------------------- 1 | korganizer.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ailurus.svg: -------------------------------------------------------------------------------- 1 | deja-dup.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/akonadi.svg: -------------------------------------------------------------------------------- 1 | akonaditray.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/alacarte.svg: -------------------------------------------------------------------------------- 1 | kmenuedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/alarm-timer.svg: -------------------------------------------------------------------------------- 1 | ktimer.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/alarm.svg: -------------------------------------------------------------------------------- 1 | clock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/allen-b1.news.svg: -------------------------------------------------------------------------------- 1 | rss.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/alleyoop.svg: -------------------------------------------------------------------------------- 1 | abrt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/alligator.svg: -------------------------------------------------------------------------------- 1 | quiterss.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/alltray.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/alsamixergui.svg: -------------------------------------------------------------------------------- 1 | kmix.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/altyo.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/amarok-icon.svg: -------------------------------------------------------------------------------- 1 | amarok.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/amarok2.svg: -------------------------------------------------------------------------------- 1 | amarok.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/amazon.svg: -------------------------------------------------------------------------------- 1 | amazon-store.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/amd-ati.svg: -------------------------------------------------------------------------------- 1 | amd.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/amd-catalyst.svg: -------------------------------------------------------------------------------- 1 | amd.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/amd-ddm-mx.svg: -------------------------------------------------------------------------------- 1 | amd.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/anjuta6.svg: -------------------------------------------------------------------------------- 1 | anjuta.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/anjuta_icon.svg: -------------------------------------------------------------------------------- 1 | anjuta.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/anydo.svg: -------------------------------------------------------------------------------- 1 | stock_tasks.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/app.svg: -------------------------------------------------------------------------------- 1 | gitkraken.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/app.xemu.xemu.svg: -------------------------------------------------------------------------------- 1 | xemu.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/apple-music.svg: -------------------------------------------------------------------------------- 1 | musique.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/apport-gtk.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/apport.svg: -------------------------------------------------------------------------------- 1 | system-error.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/apps.com.2048.svg: -------------------------------------------------------------------------------- 1 | 2048.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/appset.svg: -------------------------------------------------------------------------------- 1 | ./synaptic.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/aptanastudio.svg: -------------------------------------------------------------------------------- 1 | cog.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/aptdaemon-add.svg: -------------------------------------------------------------------------------- 1 | kget.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/aptik-gtk.svg: -------------------------------------------------------------------------------- 1 | shaman.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/aptitude.svg: -------------------------------------------------------------------------------- 1 | shaman.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/archive-mounter.svg: -------------------------------------------------------------------------------- 1 | ark.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/archivemanager.svg: -------------------------------------------------------------------------------- 1 | ark.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/archivermanager.svg: -------------------------------------------------------------------------------- 1 | ark.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ardour2.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ardour3.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ardour4.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ardour5.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ardour6.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ardour7.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/arduino-ide.svg: -------------------------------------------------------------------------------- 1 | arduino.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/arora.svg: -------------------------------------------------------------------------------- 1 | browser.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/as-icon.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/as-powered.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/assistant.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/assistant5.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/asunder.svg: -------------------------------------------------------------------------------- 1 | disk-burner.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/at-support.svg: -------------------------------------------------------------------------------- 1 | access.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/aterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ati.svg: -------------------------------------------------------------------------------- 1 | amd.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/atlas.svg: -------------------------------------------------------------------------------- 1 | gnome-maps.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/atomic-icon: -------------------------------------------------------------------------------- 1 | atomix.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/atomix-icon.svg: -------------------------------------------------------------------------------- 1 | katomic.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/atunes125.svg: -------------------------------------------------------------------------------- 1 | rhythmbox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/audacity16.svg: -------------------------------------------------------------------------------- 1 | audacity.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/audacity32.svg: -------------------------------------------------------------------------------- 1 | audacity.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/audex.svg: -------------------------------------------------------------------------------- 1 | disk-burner.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/audio-player.svg: -------------------------------------------------------------------------------- 1 | juk.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/avatar-default.svg: -------------------------------------------------------------------------------- 1 | user.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/avernote.svg: -------------------------------------------------------------------------------- 1 | evernote.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/awn-applet.svg: -------------------------------------------------------------------------------- 1 | dock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ax-applet.svg: -------------------------------------------------------------------------------- 1 | access.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/backintime.svg: -------------------------------------------------------------------------------- 1 | deja-dup.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/backlite.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/badge.svg: -------------------------------------------------------------------------------- 1 | enpass.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/banji.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/banshee-01.svg: -------------------------------------------------------------------------------- 1 | banshee.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/banshee-1.svg: -------------------------------------------------------------------------------- 1 | banshee.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/bash.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/bauh.svg: -------------------------------------------------------------------------------- 1 | yast-software.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/beagled.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/beryl-manager.svg: -------------------------------------------------------------------------------- 1 | beryl.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/bingwall.svg: -------------------------------------------------------------------------------- 1 | lximage.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/bitcoin-qt.svg: -------------------------------------------------------------------------------- 1 | bitcoin.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/bitcoin128.svg: -------------------------------------------------------------------------------- 1 | bitcoin.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/blogger.svg: -------------------------------------------------------------------------------- 1 | blogilo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/blueberry.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/bluedun.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/bluegriffon.svg: -------------------------------------------------------------------------------- 1 | lynx.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/bluejeans.svg: -------------------------------------------------------------------------------- 1 | Zoom.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/boinc-manager.svg: -------------------------------------------------------------------------------- 1 | boinc.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/bombono-dvd.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/bottles_wine.svg: -------------------------------------------------------------------------------- 1 | wine.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/braindump.svg: -------------------------------------------------------------------------------- 1 | keep.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/brasero.svg: -------------------------------------------------------------------------------- 1 | disk-burner.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/brave-bin.svg: -------------------------------------------------------------------------------- 1 | brave.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/brave-browser.svg: -------------------------------------------------------------------------------- 1 | brave.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/brave-desktop.svg: -------------------------------------------------------------------------------- 1 | brave.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/briss.svg: -------------------------------------------------------------------------------- 1 | pdfmod.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/broom.svg: -------------------------------------------------------------------------------- 1 | bleachbit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/browser-tor.svg: -------------------------------------------------------------------------------- 1 | tor.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/browser.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/btsync-user.svg: -------------------------------------------------------------------------------- 1 | reload.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/bug.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/bum.svg: -------------------------------------------------------------------------------- 1 | grub-customizer.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/bumblebee.svg: -------------------------------------------------------------------------------- 1 | nvidia.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/burner.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/bwfmetaedit.svg: -------------------------------------------------------------------------------- 1 | okteta.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cacao-oj6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cacao-oj7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cacao-oj8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cacao-oj9.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cacher.svg: -------------------------------------------------------------------------------- 1 | kcachegrind.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/caffeine.svg: -------------------------------------------------------------------------------- 1 | kaffeine.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cairo-dock.svg: -------------------------------------------------------------------------------- 1 | dock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/calibre-.svg: -------------------------------------------------------------------------------- 1 | calibre.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/calibre-GUI.SVG: -------------------------------------------------------------------------------- 1 | calibre.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/calibre2.svg: -------------------------------------------------------------------------------- 1 | calibre.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/calibre_A.svg: -------------------------------------------------------------------------------- 1 | calibre.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/calibre_B.svg: -------------------------------------------------------------------------------- 1 | calibre.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/caligraplan.svg: -------------------------------------------------------------------------------- 1 | planner.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/calligrakexi.svg: -------------------------------------------------------------------------------- 1 | kexi.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/calligrakrita.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/calligrastage.svg: -------------------------------------------------------------------------------- 1 | stage.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/calligrawords.svg: -------------------------------------------------------------------------------- 1 | words.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/camera-web.svg: -------------------------------------------------------------------------------- 1 | camera.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/camorama.svg: -------------------------------------------------------------------------------- 1 | cheese.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/caprine.svg: -------------------------------------------------------------------------------- 1 | fbmessenger.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ccc-large.svg: -------------------------------------------------------------------------------- 1 | amd.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ccc_large.svg: -------------------------------------------------------------------------------- 1 | amd.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/chainsaw.svg: -------------------------------------------------------------------------------- 1 | logview.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/charm.svg: -------------------------------------------------------------------------------- 1 | clock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/checkgmail.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/chipsybug.svg: -------------------------------------------------------------------------------- 1 | abrt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/chmsee.svg: -------------------------------------------------------------------------------- 1 | chmsee-icon.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ciano.svg: -------------------------------------------------------------------------------- 1 | yast-snapper.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cin.svg: -------------------------------------------------------------------------------- 1 | cinelerra.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cisco-pt.svg: -------------------------------------------------------------------------------- 1 | yast-host.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/clamtk.svg: -------------------------------------------------------------------------------- 1 | clamav.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/clawsker.svg: -------------------------------------------------------------------------------- 1 | claws-mail.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/clip.svg: -------------------------------------------------------------------------------- 1 | gnome-mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/clock-applet.svg: -------------------------------------------------------------------------------- 1 | clock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/clock_B.svg: -------------------------------------------------------------------------------- 1 | clock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/clock_C.svg: -------------------------------------------------------------------------------- 1 | clock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cmake.svg: -------------------------------------------------------------------------------- 1 | CMakeSetup.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cmakesetup.svg: -------------------------------------------------------------------------------- 1 | cmake.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cmplayer.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/code-oss.svg: -------------------------------------------------------------------------------- 1 | code.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/codium: -------------------------------------------------------------------------------- 1 | vscodium.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/color-pick.svg: -------------------------------------------------------------------------------- 1 | gpick.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/colorpicker.svg: -------------------------------------------------------------------------------- 1 | gcolor2.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/colour.svg: -------------------------------------------------------------------------------- 1 | color.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/com.qq.QQ.svg: -------------------------------------------------------------------------------- 1 | qq.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/config-users.svg: -------------------------------------------------------------------------------- 1 | users.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/conky.svg: -------------------------------------------------------------------------------- 1 | conky-manager.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/contact.svg: -------------------------------------------------------------------------------- 1 | addressbook.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/corebird.svg: -------------------------------------------------------------------------------- 1 | cawbird.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/corepdf.svg: -------------------------------------------------------------------------------- 1 | x-pdf.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cs-desktop.svg: -------------------------------------------------------------------------------- 1 | desktop.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cs-firewall.svg: -------------------------------------------------------------------------------- 1 | gufw.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cs-fonts.svg: -------------------------------------------------------------------------------- 1 | kfontview.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cs-network.svg: -------------------------------------------------------------------------------- 1 | knemo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cs-panel.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cs-printer.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cs-sound.svg: -------------------------------------------------------------------------------- 1 | yast-sound.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cs-theme.svg: -------------------------------------------------------------------------------- 1 | cs-themes.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/csd-printer.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/csd-wacom.svg: -------------------------------------------------------------------------------- 1 | cs-tablet.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cumulus.svg: -------------------------------------------------------------------------------- 1 | weather.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cups-launcher.svg: -------------------------------------------------------------------------------- 1 | cups.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cupsprinter.svg: -------------------------------------------------------------------------------- 1 | cups.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cutemarked.svg: -------------------------------------------------------------------------------- 1 | TeXworks.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/cxmenu.svg: -------------------------------------------------------------------------------- 1 | menulibre.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/d-feet.svg: -------------------------------------------------------------------------------- 1 | dconf-editor.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/dayjournal.svg: -------------------------------------------------------------------------------- 1 | wallet.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/dbeaver-ee.svg: -------------------------------------------------------------------------------- 1 | dbeaver.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/dde-printer.svg: -------------------------------------------------------------------------------- 1 | cups.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ddm.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/deepin-emacs.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/deepin.com.qq.im.svg: -------------------------------------------------------------------------------- 1 | qq.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/deepinwine-qq.svg: -------------------------------------------------------------------------------- 1 | qq.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/deluge-panel.svg: -------------------------------------------------------------------------------- 1 | deluge.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/designer5.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/deskbar.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/desktop-effect.svg: -------------------------------------------------------------------------------- 1 | ccsm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/devede.svg: -------------------------------------------------------------------------------- 1 | dvd95.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/devhelp.svg: -------------------------------------------------------------------------------- 1 | help.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/dhcpcd.svg: -------------------------------------------------------------------------------- 1 | knemo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/dict.svg: -------------------------------------------------------------------------------- 1 | dictionary.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/dillo.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/dino-symbolic.svg: -------------------------------------------------------------------------------- 1 | dino.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/dippi.svg: -------------------------------------------------------------------------------- 1 | display.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/discord-bin.svg: -------------------------------------------------------------------------------- 1 | discord.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/discord-ptb.svg: -------------------------------------------------------------------------------- 1 | discord.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/disks.svg: -------------------------------------------------------------------------------- 1 | disk-check.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/dnfdragora.svg: -------------------------------------------------------------------------------- 1 | synaptic.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/dockx.svg: -------------------------------------------------------------------------------- 1 | dockbarx.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/docky.svg: -------------------------------------------------------------------------------- 1 | dock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/draksec-mdk.svg: -------------------------------------------------------------------------------- 1 | gufw.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/draw-io.svg: -------------------------------------------------------------------------------- 1 | draw.io.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/drawpile.svg: -------------------------------------------------------------------------------- 1 | lynx.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/drkonqi.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/dvd95.svg: -------------------------------------------------------------------------------- 1 | k9-copy.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/dvd9548.svg: -------------------------------------------------------------------------------- 1 | k9-copy.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/eTube.svg: -------------------------------------------------------------------------------- 1 | minitube.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/earth.svg: -------------------------------------------------------------------------------- 1 | google-earth.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/easy-tag.svg: -------------------------------------------------------------------------------- 1 | easytag.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/easytags.svg: -------------------------------------------------------------------------------- 1 | easytag.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ebook.svg: -------------------------------------------------------------------------------- 1 | bookworm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ecrire.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/effects.svg: -------------------------------------------------------------------------------- 1 | ccsm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron12.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron13.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron14.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron15.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron16.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron17.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron18.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron19.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron2.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron20.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron3.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron4.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron5.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron6.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron7.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron8.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/electron9.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/emacs-24.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/emacs-25.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/emacs-nox.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/emacs22.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/emacs23.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/emacs24.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/emacs25.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/email.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/emby-server.svg: -------------------------------------------------------------------------------- 1 | QMPlay2.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/emesene.svg: -------------------------------------------------------------------------------- 1 | wechat.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/empass.svg: -------------------------------------------------------------------------------- 1 | password.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/encryptpad.svg: -------------------------------------------------------------------------------- 1 | password.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/engrampa.svg: -------------------------------------------------------------------------------- 1 | ark.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/enjoy.svg: -------------------------------------------------------------------------------- 1 | QMPlay2.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/epdfview.svg: -------------------------------------------------------------------------------- 1 | qpdfview.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ephoto.svg: -------------------------------------------------------------------------------- 1 | kphotoalbum.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/epsonscan2.svg: -------------------------------------------------------------------------------- 1 | skanlite.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/epulse.svg: -------------------------------------------------------------------------------- 1 | kmix.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/eradio.svg: -------------------------------------------------------------------------------- 1 | radiotray.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ericWeb6.svg: -------------------------------------------------------------------------------- 1 | ericWeb.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/error.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/etube.svg: -------------------------------------------------------------------------------- 1 | minitube.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/everpad.svg: -------------------------------------------------------------------------------- 1 | evernote.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ex-applet.svg: -------------------------------------------------------------------------------- 1 | access.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/exfalso.svg: -------------------------------------------------------------------------------- 1 | kid3.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/eyedropper.svg: -------------------------------------------------------------------------------- 1 | gcolor2.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ezame.svg: -------------------------------------------------------------------------------- 1 | menu-editor.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/f-spot.svg: -------------------------------------------------------------------------------- 1 | screenie.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/fastmail.svg: -------------------------------------------------------------------------------- 1 | geary.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/fceu.svg: -------------------------------------------------------------------------------- 1 | fceux.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ferdium.svg: -------------------------------------------------------------------------------- 1 | ferdi.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ffado-mixer.svg: -------------------------------------------------------------------------------- 1 | arts.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/fgfs.svg: -------------------------------------------------------------------------------- 1 | x-plane.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/fgrun.svg: -------------------------------------------------------------------------------- 1 | x-plane.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/file-archiver.svg: -------------------------------------------------------------------------------- 1 | ark.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/file-compressor.svg: -------------------------------------------------------------------------------- 1 | 7z.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/final-term.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/fingerprint.svg: -------------------------------------------------------------------------------- 1 | authy.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/firefox-2.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/firefox-3.0.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/firefox-3.5.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/firefox-4.0.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/firefox-bin.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/firefox-esr.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/firefox-old.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/firefox3.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/firewall.svg: -------------------------------------------------------------------------------- 1 | gufw.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/fish.svg: -------------------------------------------------------------------------------- 1 | bluefish.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/fjt.svg: -------------------------------------------------------------------------------- 1 | qwinff.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/flare.svg: -------------------------------------------------------------------------------- 1 | flameshot.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/flashplayer.svg: -------------------------------------------------------------------------------- 1 | flash.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/flickr64.svg: -------------------------------------------------------------------------------- 1 | flickr.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/flowblade.svg: -------------------------------------------------------------------------------- 1 | openshot.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/flpsed.svg: -------------------------------------------------------------------------------- 1 | pdfmod.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/focuswriter.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/folder-mega.svg: -------------------------------------------------------------------------------- 1 | mega.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/font-manager.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/fonts.svg: -------------------------------------------------------------------------------- 1 | kfontview.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/foto.svg: -------------------------------------------------------------------------------- 1 | mirage.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/fprint-demo.svg: -------------------------------------------------------------------------------- 1 | fprint.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/fprint.svg: -------------------------------------------------------------------------------- 1 | authy.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/fprint_demo: -------------------------------------------------------------------------------- 1 | fprint.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/freealchemist.svg: -------------------------------------------------------------------------------- 1 | fluid.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/freefilesync.svg: -------------------------------------------------------------------------------- 1 | reload.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/freeminer.svg: -------------------------------------------------------------------------------- 1 | minecraft.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/freetuxtv.svg: -------------------------------------------------------------------------------- 1 | tvtime.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/freon-voltage.svg: -------------------------------------------------------------------------------- 1 | rvgl.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/fusion-icon.svg: -------------------------------------------------------------------------------- 1 | ccsm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/fwbuilder.svg: -------------------------------------------------------------------------------- 1 | firewall.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/fwupd.svg: -------------------------------------------------------------------------------- 1 | system-reboot.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/g.svg: -------------------------------------------------------------------------------- 1 | rhythmbox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/galeon.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gallery.svg: -------------------------------------------------------------------------------- 1 | photo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/game-pcsx.svg: -------------------------------------------------------------------------------- 1 | pcsxr.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/game-pcsx2.svg: -------------------------------------------------------------------------------- 1 | pcsxr.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gamecards.svg: -------------------------------------------------------------------------------- 1 | aisleriot.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/games.svg: -------------------------------------------------------------------------------- 1 | antimicro.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gcalc.svg: -------------------------------------------------------------------------------- 1 | calculator.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gcalculator.svg: -------------------------------------------------------------------------------- 1 | calc.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gcdmaster.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gcolor.svg: -------------------------------------------------------------------------------- 1 | color-picker.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gcr-gnupg.svg: -------------------------------------------------------------------------------- 1 | gnupg.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gcr-key.svg: -------------------------------------------------------------------------------- 1 | seahorse.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gdeb.svg: -------------------------------------------------------------------------------- 1 | gdebi.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gdesklets.svg: -------------------------------------------------------------------------------- 1 | conky.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gdm-setup.svg: -------------------------------------------------------------------------------- 1 | gdm-xnest.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gdm.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gdm2setup.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gdmap.svg: -------------------------------------------------------------------------------- 1 | palimpsest.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gdmsetup.svg: -------------------------------------------------------------------------------- 1 | gdm-xnest.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gedbi.svg: -------------------------------------------------------------------------------- 1 | gdebi.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gedit-icon.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gedit-logo.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gedit1.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gedit2.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/geforcenow.svg: -------------------------------------------------------------------------------- 1 | nvidia.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gfeedline.svg: -------------------------------------------------------------------------------- 1 | empathy.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gfpm-mcs.svg: -------------------------------------------------------------------------------- 1 | cupt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gfpm.svg: -------------------------------------------------------------------------------- 1 | cupt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ghetto-skype.svg: -------------------------------------------------------------------------------- 1 | skype.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gimp-2.10.svg: -------------------------------------------------------------------------------- 1 | gimp.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/girl.svg: -------------------------------------------------------------------------------- 1 | radiotray.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gis-weather.svg: -------------------------------------------------------------------------------- 1 | weather.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/git-annex.svg: -------------------------------------------------------------------------------- 1 | smartgit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/git-cola.svg: -------------------------------------------------------------------------------- 1 | git.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/git-dag.svg: -------------------------------------------------------------------------------- 1 | git.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/git-eye.svg: -------------------------------------------------------------------------------- 1 | git.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/git-gui.svg: -------------------------------------------------------------------------------- 1 | git.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gitk.svg: -------------------------------------------------------------------------------- 1 | gitg.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gksu-icon.svg: -------------------------------------------------------------------------------- 1 | gksu.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/glade-3.svg: -------------------------------------------------------------------------------- 1 | glade.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/glide.svg: -------------------------------------------------------------------------------- 1 | gnome-mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/glipper.svg: -------------------------------------------------------------------------------- 1 | diodon.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/glippy.svg: -------------------------------------------------------------------------------- 1 | diodon.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/glrp.svg: -------------------------------------------------------------------------------- 1 | radiotray.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/glxinfo.svg: -------------------------------------------------------------------------------- 1 | hwinfo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gmail-desktop.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gmailwatcher.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gmpc.svg: -------------------------------------------------------------------------------- 1 | musique.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gmplayer-dvb.svg: -------------------------------------------------------------------------------- 1 | tvmaxe.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gmusicbrowser.svg: -------------------------------------------------------------------------------- 1 | juk.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnac.svg: -------------------------------------------------------------------------------- 1 | gnome-music.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnochm.svg: -------------------------------------------------------------------------------- 1 | help-browser.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnoduino.svg: -------------------------------------------------------------------------------- 1 | arduino.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnome-2048.svg: -------------------------------------------------------------------------------- 1 | 2048.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnome-audio.svg: -------------------------------------------------------------------------------- 1 | juk.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnome-devel.svg: -------------------------------------------------------------------------------- 1 | builder.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnome-emacs.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnome-gimp.svg: -------------------------------------------------------------------------------- 1 | gimp.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnome-gmail.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnome-ldraw.svg: -------------------------------------------------------------------------------- 1 | ldview.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnome-mines.svg: -------------------------------------------------------------------------------- 1 | kmines.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnome-mixer.svg: -------------------------------------------------------------------------------- 1 | kmix.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnome-panel.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnome-status.svg: -------------------------------------------------------------------------------- 1 | hwinfo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnotes.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gnunet-fs-gtk.svg: -------------------------------------------------------------------------------- 1 | lynx.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/godot-mono.svg: -------------------------------------------------------------------------------- 1 | godot.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gogoland.svg: -------------------------------------------------------------------------------- 1 | goland.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/google-keep.svg: -------------------------------------------------------------------------------- 1 | keep.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/google-mail.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/google-maps.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gopchop.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gp.svg: -------------------------------------------------------------------------------- 1 | gnome-paint.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gpa.svg: -------------------------------------------------------------------------------- 1 | keyring-manager.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gpaste.svg: -------------------------------------------------------------------------------- 1 | diodon.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gpcview.svg: -------------------------------------------------------------------------------- 1 | shotwell.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gpdtext.svg: -------------------------------------------------------------------------------- 1 | pdfeditor.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gpick.svg: -------------------------------------------------------------------------------- 1 | color-picker.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gpmdp.svg: -------------------------------------------------------------------------------- 1 | google-music.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gpodder.svg: -------------------------------------------------------------------------------- 1 | mumble.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gpsdrive.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gpsicon.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gpxsee.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gpxviewer.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gradio.svg: -------------------------------------------------------------------------------- 1 | radiotray.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/granatier.svg: -------------------------------------------------------------------------------- 1 | kmines.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/grive.svg: -------------------------------------------------------------------------------- 1 | google-drive.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/group-edit.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/grsync.svg: -------------------------------------------------------------------------------- 1 | reload.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gscan2pdf.svg: -------------------------------------------------------------------------------- 1 | skanlite.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gsearchtool.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gstreamer.svg: -------------------------------------------------------------------------------- 1 | arts.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gsynaptics.svg: -------------------------------------------------------------------------------- 1 | mouse.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtg.svg: -------------------------------------------------------------------------------- 1 | kmenuedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtk-about.svg: -------------------------------------------------------------------------------- 1 | info.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtk-find.svg: -------------------------------------------------------------------------------- 1 | lxfind.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtk-font.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtk-help.svg: -------------------------------------------------------------------------------- 1 | help.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtk-info.svg: -------------------------------------------------------------------------------- 1 | info.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtk4-demo.svg: -------------------------------------------------------------------------------- 1 | gtk3-demo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtk_about.svg: -------------------------------------------------------------------------------- 1 | about.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtk_info.svg: -------------------------------------------------------------------------------- 1 | gtk-info.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtkclocksetup.svg: -------------------------------------------------------------------------------- 1 | clock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtkdiskfree.svg: -------------------------------------------------------------------------------- 1 | gparted.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtklick.svg: -------------------------------------------------------------------------------- 1 | gtick.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtklp.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtklpq.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtkpycad.svg: -------------------------------------------------------------------------------- 1 | pycad.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gtkterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/guayadeque.svg: -------------------------------------------------------------------------------- 1 | juk.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gufw_menu.svg: -------------------------------------------------------------------------------- 1 | firewall.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gvim.svg: -------------------------------------------------------------------------------- 1 | vim.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gwallpapers.svg: -------------------------------------------------------------------------------- 1 | variety.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gwenrename.svg: -------------------------------------------------------------------------------- 1 | rapid.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gwibber.svg: -------------------------------------------------------------------------------- 1 | twitter.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gxine.svg: -------------------------------------------------------------------------------- 1 | xine.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gxneur.svg: -------------------------------------------------------------------------------- 1 | xneur.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/gydl.svg: -------------------------------------------------------------------------------- 1 | youtube-dl.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/h2-icon.svg: -------------------------------------------------------------------------------- 1 | hydrogen.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/handbrake.svg: -------------------------------------------------------------------------------- 1 | hwbrowser.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/harddrake2.svg: -------------------------------------------------------------------------------- 1 | hardinfo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/hb-icon.svg: -------------------------------------------------------------------------------- 1 | avidemux.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/help-about.svg: -------------------------------------------------------------------------------- 1 | userinfo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/help-contents: -------------------------------------------------------------------------------- 1 | help.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/help-contents.svg: -------------------------------------------------------------------------------- 1 | help.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/help-info.svg: -------------------------------------------------------------------------------- 1 | hwinfo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/help.svg: -------------------------------------------------------------------------------- 1 | help-browser.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/heroic-tray.svg: -------------------------------------------------------------------------------- 1 | heroic.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/hex-editor.svg: -------------------------------------------------------------------------------- 1 | okteta.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/hexchat.svg: -------------------------------------------------------------------------------- 1 | xchat.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/hexedit.svg: -------------------------------------------------------------------------------- 1 | hex-editor.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/higan.svg: -------------------------------------------------------------------------------- 1 | fceux.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/hotot.svg: -------------------------------------------------------------------------------- 1 | twitter.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/hp-toolbox.svg: -------------------------------------------------------------------------------- 1 | hp-logo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/hp_logo.svg: -------------------------------------------------------------------------------- 1 | hp-logo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/hplip.svg: -------------------------------------------------------------------------------- 1 | hp_logo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/hterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/hugin.svg: -------------------------------------------------------------------------------- 1 | kipi-panorama.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/hwbrowser.svg: -------------------------------------------------------------------------------- 1 | hwinfo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ibus-engine.svg: -------------------------------------------------------------------------------- 1 | ibus.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/icedove.svg: -------------------------------------------------------------------------------- 1 | thunderbird.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/iconthemes.svg: -------------------------------------------------------------------------------- 1 | icons.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/idea.svg: -------------------------------------------------------------------------------- 1 | intellij.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/idle.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/idle3.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/im-config.svg: -------------------------------------------------------------------------------- 1 | gucharmap.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/im-jabber.svg: -------------------------------------------------------------------------------- 1 | jabber-im.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/im-msn.svg: -------------------------------------------------------------------------------- 1 | windows.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/im-qq.svg: -------------------------------------------------------------------------------- 1 | qq.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/im-skype.svg: -------------------------------------------------------------------------------- 1 | skype.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/im-twitter.svg: -------------------------------------------------------------------------------- 1 | twitter.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/im.dino.Dino.svg: -------------------------------------------------------------------------------- 1 | dino.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/imagej.svg: -------------------------------------------------------------------------------- 1 | xdiagnose.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/imagej1.svg: -------------------------------------------------------------------------------- 1 | microscope.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/imagemagick.svg: -------------------------------------------------------------------------------- 1 | effects.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/imaginario.svg: -------------------------------------------------------------------------------- 1 | f-spot.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/imap.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/info.svg: -------------------------------------------------------------------------------- 1 | userinfo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/insight.svg: -------------------------------------------------------------------------------- 1 | kfm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/io.atom.Atom.svg: -------------------------------------------------------------------------------- 1 | atom.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/io.mpv.Mpv.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/iok.svg: -------------------------------------------------------------------------------- 1 | onboard.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ipub.svg: -------------------------------------------------------------------------------- 1 | gnome-books.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/irix.svg: -------------------------------------------------------------------------------- 1 | kuickshow.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/itunes.svg: -------------------------------------------------------------------------------- 1 | musique.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/jabber-im.svg: -------------------------------------------------------------------------------- 1 | message.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/jack-mixer.svg: -------------------------------------------------------------------------------- 1 | arts.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/jack.svg: -------------------------------------------------------------------------------- 1 | qjackctl.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/jackeq.svg: -------------------------------------------------------------------------------- 1 | jack.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/jami-gnome.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/jami.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java-1.6.0.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java-1.7.0.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java-1.8.0.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java-1.9.0.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java-jdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java10-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java11-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java12-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java13-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java14-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java15-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java16-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java17-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java18-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java19-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java20-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java8-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/java9-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/javaws.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/jclicauthor.svg: -------------------------------------------------------------------------------- 1 | kruler.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/jd-gui.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/jedit.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/jeex.svg: -------------------------------------------------------------------------------- 1 | okteta.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/jitsi-meet.svg: -------------------------------------------------------------------------------- 1 | jitsi.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/jockey-gtk.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/jockey-kde.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/joplin-tray.svg: -------------------------------------------------------------------------------- 1 | joplin.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/josm-32.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/josm.svg: -------------------------------------------------------------------------------- 1 | gnome-maps.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/jotasync.svg: -------------------------------------------------------------------------------- 1 | reload.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/journal.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/k3b.svg: -------------------------------------------------------------------------------- 1 | disk-burner.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/k9-copy.svg: -------------------------------------------------------------------------------- 1 | tauonmb.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/k9copy.svg: -------------------------------------------------------------------------------- 1 | k9-copy.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kalarm.svg: -------------------------------------------------------------------------------- 1 | alarm-clock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kali-docs.svg: -------------------------------------------------------------------------------- 1 | devhelp.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kali-gqrx.svg: -------------------------------------------------------------------------------- 1 | gqrx.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kali-jd-gui.svg: -------------------------------------------------------------------------------- 1 | jd-gui.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kali-nmap.svg: -------------------------------------------------------------------------------- 1 | nmap.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kali-ssdeep.svg: -------------------------------------------------------------------------------- 1 | ssdeep.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kalk.svg: -------------------------------------------------------------------------------- 1 | calc.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kamerka.svg: -------------------------------------------------------------------------------- 1 | cheese.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kamoso.svg: -------------------------------------------------------------------------------- 1 | cheese.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kapow.svg: -------------------------------------------------------------------------------- 1 | ktimetracker.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kasts.svg: -------------------------------------------------------------------------------- 1 | vocal.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kate2.svg: -------------------------------------------------------------------------------- 1 | kate.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/katimon.svg: -------------------------------------------------------------------------------- 1 | amd.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kbibtex.svg: -------------------------------------------------------------------------------- 1 | bibletime.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kblocks.svg: -------------------------------------------------------------------------------- 1 | codeblocks.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kblogger.svg: -------------------------------------------------------------------------------- 1 | blogilo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kbruch.svg: -------------------------------------------------------------------------------- 1 | calculator.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kbugster.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kchart.svg: -------------------------------------------------------------------------------- 1 | sheets.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kcmkicker.svg: -------------------------------------------------------------------------------- 1 | cs-panel.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kcmpci.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kcmx.svg: -------------------------------------------------------------------------------- 1 | xorg.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kconsole.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kdcraw.svg: -------------------------------------------------------------------------------- 1 | cheese.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kdeneur.svg: -------------------------------------------------------------------------------- 1 | xneur.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kdesvn.svg: -------------------------------------------------------------------------------- 1 | git-gui.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kdoubanfm.svg: -------------------------------------------------------------------------------- 1 | radiotray.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/keepass2.svg: -------------------------------------------------------------------------------- 1 | keepass.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/key-mon.svg: -------------------------------------------------------------------------------- 1 | keymon.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/keyman.svg: -------------------------------------------------------------------------------- 1 | gucharmap.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/keyring.svg: -------------------------------------------------------------------------------- 1 | seahorse.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/keysync.svg: -------------------------------------------------------------------------------- 1 | kgpg.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kfilebox.svg: -------------------------------------------------------------------------------- 1 | dropbox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kfindb.svg: -------------------------------------------------------------------------------- 1 | lxfind.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kfindc.svg: -------------------------------------------------------------------------------- 1 | lxfind.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kflickr.svg: -------------------------------------------------------------------------------- 1 | flickr.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kfm_home.svg: -------------------------------------------------------------------------------- 1 | kfm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kget_dock.svg: -------------------------------------------------------------------------------- 1 | kget.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kid3-qt.svg: -------------------------------------------------------------------------------- 1 | kid3.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kid3-v2.svg: -------------------------------------------------------------------------------- 1 | kid3.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kindle.svg: -------------------------------------------------------------------------------- 1 | gnome-books.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kipi.svg: -------------------------------------------------------------------------------- 1 | kipi-logo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kjobviewer.svg: -------------------------------------------------------------------------------- 1 | cups.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kjots.svg: -------------------------------------------------------------------------------- 1 | knotes.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/klipper.svg: -------------------------------------------------------------------------------- 1 | diodon.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/klock.svg: -------------------------------------------------------------------------------- 1 | gnome-clocks.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/klogg.svg: -------------------------------------------------------------------------------- 1 | gpk-log.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kmail.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kmail2.svg: -------------------------------------------------------------------------------- 1 | kmail.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kmailcvt.svg: -------------------------------------------------------------------------------- 1 | kmail.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kmetronome.svg: -------------------------------------------------------------------------------- 1 | gtick.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/knetwalk.svg: -------------------------------------------------------------------------------- 1 | knemo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/knights.svg: -------------------------------------------------------------------------------- 1 | anjuta.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/knowte.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kopete2-svg: -------------------------------------------------------------------------------- 1 | kopete.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kopete2.svg: -------------------------------------------------------------------------------- 1 | kopete.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/korgac.svg: -------------------------------------------------------------------------------- 1 | gnome-clocks.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kpackagekit.svg: -------------------------------------------------------------------------------- 1 | shaman.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kparted.svg: -------------------------------------------------------------------------------- 1 | baobab.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kpat.svg: -------------------------------------------------------------------------------- 1 | kpatience.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kphoto.svg: -------------------------------------------------------------------------------- 1 | photo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kplato.svg: -------------------------------------------------------------------------------- 1 | calligraplan.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kplayer.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kpresenter.svg: -------------------------------------------------------------------------------- 1 | stage.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kradio.svg: -------------------------------------------------------------------------------- 1 | radiotray.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kradio4.svg: -------------------------------------------------------------------------------- 1 | radiotray.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/krec.svg: -------------------------------------------------------------------------------- 1 | sound-recorder.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kritagemini.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kritasketch.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/krudio.svg: -------------------------------------------------------------------------------- 1 | radiotray.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ksensors.svg: -------------------------------------------------------------------------------- 1 | psensor.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kspread.svg: -------------------------------------------------------------------------------- 1 | sheets.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kteatime.svg: -------------------------------------------------------------------------------- 1 | kaffeine.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ktip.svg: -------------------------------------------------------------------------------- 1 | hwinfo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ktneft.svg: -------------------------------------------------------------------------------- 1 | file-roller.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kuro-tray.svg: -------------------------------------------------------------------------------- 1 | shaman.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kuroo.svg: -------------------------------------------------------------------------------- 1 | shaman.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kuser.svg: -------------------------------------------------------------------------------- 1 | users.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kvpm.svg: -------------------------------------------------------------------------------- 1 | gnome-disks.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kweather.svg: -------------------------------------------------------------------------------- 1 | nimbus.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kword.svg: -------------------------------------------------------------------------------- 1 | words.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kxsldbg.svg: -------------------------------------------------------------------------------- 1 | abrt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kylin-video.svg: -------------------------------------------------------------------------------- 1 | mplayer.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kyman.svg: -------------------------------------------------------------------------------- 1 | gucharmap.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kynapatic.svg: -------------------------------------------------------------------------------- 1 | kynaptic.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/kynaptic.svg: -------------------------------------------------------------------------------- 1 | synaptic.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/l3afpad.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/labplot2.svg: -------------------------------------------------------------------------------- 1 | labplot.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ladi-player.svg: -------------------------------------------------------------------------------- 1 | QMPlay2.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/last-fm.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/lastfm-valut.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/leftpad.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/liferea.svg: -------------------------------------------------------------------------------- 1 | akregator.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/lightpad.svg: -------------------------------------------------------------------------------- 1 | launch.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/linguist.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/linguist5.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/links.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/linssid.svg: -------------------------------------------------------------------------------- 1 | wicd.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/liteinfo.svg: -------------------------------------------------------------------------------- 1 | hwinfo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/live.svg: -------------------------------------------------------------------------------- 1 | web-outlook.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/liveinst.svg: -------------------------------------------------------------------------------- 1 | shaman.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/login-photo.svg: -------------------------------------------------------------------------------- 1 | mugshot.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/login.svg: -------------------------------------------------------------------------------- 1 | cs-login.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/logjam.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/lombard.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/lpi-bug.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/lpi-bus.svg: -------------------------------------------------------------------------------- 1 | abrt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/lpub.svg: -------------------------------------------------------------------------------- 1 | gnome-books.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/lutris-panel.svg: -------------------------------------------------------------------------------- 1 | lutris.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/lximage-qt.svg: -------------------------------------------------------------------------------- 1 | lximage.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/lxinput.svg: -------------------------------------------------------------------------------- 1 | gucharmap.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/lxqt-archiver.svg: -------------------------------------------------------------------------------- 1 | ark.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/lyydownloader.svg: -------------------------------------------------------------------------------- 1 | kget.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/macchanger.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mail.svg: -------------------------------------------------------------------------------- 1 | mail_generic.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mailspring.svg: -------------------------------------------------------------------------------- 1 | email.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/maps.svg: -------------------------------------------------------------------------------- 1 | gnome-maps.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/marco.svg: -------------------------------------------------------------------------------- 1 | cs-windows.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mate-desktop.svg: -------------------------------------------------------------------------------- 1 | mate.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mate-eiciel.svg: -------------------------------------------------------------------------------- 1 | eiciel.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mate-logo.svg: -------------------------------------------------------------------------------- 1 | mate.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mate-panel.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/matlab-icon.svg: -------------------------------------------------------------------------------- 1 | matlab.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/matlab-logo.svg: -------------------------------------------------------------------------------- 1 | matlab.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/maxima-icon.svg: -------------------------------------------------------------------------------- 1 | maxima.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/maxima.svg: -------------------------------------------------------------------------------- 1 | smw.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mcomix.svg: -------------------------------------------------------------------------------- 1 | comix.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mcomix3.svg: -------------------------------------------------------------------------------- 1 | mcomix.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mdmsetup.svg: -------------------------------------------------------------------------------- 1 | cs-login.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/me-tv.svg: -------------------------------------------------------------------------------- 1 | tvtime.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/media-cdrom.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/media-player.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mediainfo.svg: -------------------------------------------------------------------------------- 1 | mkvinfo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mednafen.svg: -------------------------------------------------------------------------------- 1 | mednaffe.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/melvor-idle.svg: -------------------------------------------------------------------------------- 1 | mega.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/menu-misc.svg: -------------------------------------------------------------------------------- 1 | menulibre.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/menuk-mdk.svg: -------------------------------------------------------------------------------- 1 | menulibre.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/menulibre.svg: -------------------------------------------------------------------------------- 1 | kmenuedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mercury.svg: -------------------------------------------------------------------------------- 1 | windows.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mess.svg: -------------------------------------------------------------------------------- 1 | fceux.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/meteo-qt.svg: -------------------------------------------------------------------------------- 1 | weather.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/metronome.svg: -------------------------------------------------------------------------------- 1 | gtick.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/microsoft.svg: -------------------------------------------------------------------------------- 1 | windows.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mine.svg: -------------------------------------------------------------------------------- 1 | kmines.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mines.svg: -------------------------------------------------------------------------------- 1 | mine.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/minesweeper.svg: -------------------------------------------------------------------------------- 1 | kmines.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/minetest.svg: -------------------------------------------------------------------------------- 1 | minecraft.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/minimizeall.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/minitunes.svg: -------------------------------------------------------------------------------- 1 | music.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mintBackup.svg: -------------------------------------------------------------------------------- 1 | deja-dup.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mintdrivers.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mirage.svg: -------------------------------------------------------------------------------- 1 | shotwell.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mitter.svg: -------------------------------------------------------------------------------- 1 | web-twitter.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mixxx-icon.svg: -------------------------------------------------------------------------------- 1 | mixxx.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mkv-gui.svg: -------------------------------------------------------------------------------- 1 | mkvmerge.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mlcad.svg: -------------------------------------------------------------------------------- 1 | extensions.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mlterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mm.svg: -------------------------------------------------------------------------------- 1 | usermount.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/modules-files.svg: -------------------------------------------------------------------------------- 1 | kfm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mouse.svg: -------------------------------------------------------------------------------- 1 | input-mouse.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mozo.svg: -------------------------------------------------------------------------------- 1 | kmenuedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mpi.svg: -------------------------------------------------------------------------------- 1 | gnome-music.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mplayer.svg: -------------------------------------------------------------------------------- 1 | gnome-mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ms-skype.svg: -------------------------------------------------------------------------------- 1 | skype.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mscore.svg: -------------------------------------------------------------------------------- 1 | musescore.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mscore3.svg: -------------------------------------------------------------------------------- 1 | musescore.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/msd-xrandr.svg: -------------------------------------------------------------------------------- 1 | desktop.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/msn.svg: -------------------------------------------------------------------------------- 1 | windows.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/msword-2007.svg: -------------------------------------------------------------------------------- 1 | ms-word.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mtpaint.svg: -------------------------------------------------------------------------------- 1 | gnome-paint.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mugshot.svg: -------------------------------------------------------------------------------- 1 | kontact.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/multimedia-vlc.svg: -------------------------------------------------------------------------------- 1 | vlc.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/muon-installer.svg: -------------------------------------------------------------------------------- 1 | muon.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mupen64plus-qt.svg: -------------------------------------------------------------------------------- 1 | smw.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/music.svg: -------------------------------------------------------------------------------- 1 | musique.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mx-alerts.svg: -------------------------------------------------------------------------------- 1 | keep.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mx-clocky.svg: -------------------------------------------------------------------------------- 1 | clock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mx-codecs.svg: -------------------------------------------------------------------------------- 1 | exaile.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mx-sound.svg: -------------------------------------------------------------------------------- 1 | kmix.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mx-welcome.svg: -------------------------------------------------------------------------------- 1 | access.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mygpo.svg: -------------------------------------------------------------------------------- 1 | gpodder.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/mypaint.svg: -------------------------------------------------------------------------------- 1 | mtpaint.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/myspace.svg: -------------------------------------------------------------------------------- 1 | kuser.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/n1.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ndisgtk.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/nerolinux.svg: -------------------------------------------------------------------------------- 1 | nero.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/netpkg.svg: -------------------------------------------------------------------------------- 1 | shaman.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/nocover.svg: -------------------------------------------------------------------------------- 1 | mixxx.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/nos-tv.svg: -------------------------------------------------------------------------------- 1 | tvtime.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/note.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/notes.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/nvclock.svg: -------------------------------------------------------------------------------- 1 | nvidia.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/nvmax.svg: -------------------------------------------------------------------------------- 1 | nvidia.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/nylas-N1.svg: -------------------------------------------------------------------------------- 1 | n1.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/nylas-n1.svg: -------------------------------------------------------------------------------- 1 | n1.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/obs-tray.svg: -------------------------------------------------------------------------------- 1 | obs.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ogle.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/openjdk-6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/openjdk-7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/openjdk-8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/openjdk-9.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/orca.svg: -------------------------------------------------------------------------------- 1 | access.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/p7z.svg: -------------------------------------------------------------------------------- 1 | 7z.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/p7zip-gui.svg: -------------------------------------------------------------------------------- 1 | 7zip.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/p7zip.svg: -------------------------------------------------------------------------------- 1 | ark.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/paint-x.svg: -------------------------------------------------------------------------------- 1 | paint.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/paint.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/pan.svg: -------------------------------------------------------------------------------- 1 | akregator.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/panel.svg: -------------------------------------------------------------------------------- 1 | dock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/pasystray.svg: -------------------------------------------------------------------------------- 1 | kmix.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/pavumeter.svg: -------------------------------------------------------------------------------- 1 | arts.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/pcb.svg: -------------------------------------------------------------------------------- 1 | cpuinfo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/pdf.svg: -------------------------------------------------------------------------------- 1 | x-pdf.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/pdftag.svg: -------------------------------------------------------------------------------- 1 | mupdf.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/permid.svg: -------------------------------------------------------------------------------- 1 | totem.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/phonon-vlc.scg: -------------------------------------------------------------------------------- 1 | vlc.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/phonon-vlc.svg: -------------------------------------------------------------------------------- 1 | vlc.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/photo.svg: -------------------------------------------------------------------------------- 1 | photos.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/pinta.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/pithos.svg: -------------------------------------------------------------------------------- 1 | cantata.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/play.svg: -------------------------------------------------------------------------------- 1 | Play.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/play_2048.svg: -------------------------------------------------------------------------------- 1 | 2048.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/plot2d.svg: -------------------------------------------------------------------------------- 1 | wxcas.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/poddr.svg: -------------------------------------------------------------------------------- 1 | vocal.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/premid.svg: -------------------------------------------------------------------------------- 1 | totem.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/printer1.svg: -------------------------------------------------------------------------------- 1 | cups.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/printmgr.svg: -------------------------------------------------------------------------------- 1 | cups.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/pycad.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/python2.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/python3.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qcma.svg: -------------------------------------------------------------------------------- 1 | pcsx-icon.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qdbusviewer.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qedit.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qgis-icon.svg: -------------------------------------------------------------------------------- 1 | qgis.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qgis-qgs.svg: -------------------------------------------------------------------------------- 1 | qgis.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qgis-qpt.svg: -------------------------------------------------------------------------------- 1 | qgis.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qgit.svg: -------------------------------------------------------------------------------- 1 | git.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qjack.svg: -------------------------------------------------------------------------------- 1 | jack.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qlipper.svg: -------------------------------------------------------------------------------- 1 | diodon.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qmapshack.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qmlscene.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qmmp.svg: -------------------------------------------------------------------------------- 1 | fceux.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qmplayer.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qnapi-48.svg: -------------------------------------------------------------------------------- 1 | qnapi.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qpm.svg: -------------------------------------------------------------------------------- 1 | shaman.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qt-logo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qt4-logo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qt4logo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qt5-logo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qt5ct.svg: -------------------------------------------------------------------------------- 1 | qtconfig.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qtconfig.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qtfm.svg: -------------------------------------------------------------------------------- 1 | kfm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qtgain.svg: -------------------------------------------------------------------------------- 1 | arts.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qtlogo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/qtox.svg: -------------------------------------------------------------------------------- 1 | utox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/quicktime.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/rage.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/rapid.svg: -------------------------------------------------------------------------------- 1 | shotwell.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/re-volt.svg: -------------------------------------------------------------------------------- 1 | rvgl.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/recoll.svg: -------------------------------------------------------------------------------- 1 | lxfind.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/relay.svg: -------------------------------------------------------------------------------- 1 | irc-chat.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ricin.svg: -------------------------------------------------------------------------------- 1 | utox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ring-jami.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/ring-kde.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/rip.svg: -------------------------------------------------------------------------------- 1 | ubiquity.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/rox.svg: -------------------------------------------------------------------------------- 1 | kfm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/rygel.svg: -------------------------------------------------------------------------------- 1 | rosamp.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/semn.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/shotcut.svg: -------------------------------------------------------------------------------- 1 | pitivi.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/sm64ex.svg: -------------------------------------------------------------------------------- 1 | smw.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/sm64plus.svg: -------------------------------------------------------------------------------- 1 | smw.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/smart.svg: -------------------------------------------------------------------------------- 1 | cupt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/smartgit.svg: -------------------------------------------------------------------------------- 1 | git.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/smtube.svg: -------------------------------------------------------------------------------- 1 | youtube.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/sonata.svg: -------------------------------------------------------------------------------- 1 | cantata.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/speakers.svg: -------------------------------------------------------------------------------- 1 | arts.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/strigi.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/sun-java-jdk6: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/sun-java-jdk7: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/sun-java-jdk8: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/sun-java.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/sun-java6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/sun-java7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/sun-java8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/sun_java.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/sun_java6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/sun_java7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/sysprof.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/tdesvn.svg: -------------------------------------------------------------------------------- 1 | kdesvn.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/terminix.svg: -------------------------------------------------------------------------------- 1 | tilix.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/terra.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/text.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/tild.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/timeset.svg: -------------------------------------------------------------------------------- 1 | clock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/tint2.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/tkpacman.svg: -------------------------------------------------------------------------------- 1 | gdebi.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/tomboy-16.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/tomboy-32.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/torbrowser.svg: -------------------------------------------------------------------------------- 1 | tor.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/toxygen.svg: -------------------------------------------------------------------------------- 1 | utox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/truecrypt.svg: -------------------------------------------------------------------------------- 1 | lock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/tsclient.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/tvmaxe.svg: -------------------------------------------------------------------------------- 1 | tvtime.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/twin.svg: -------------------------------------------------------------------------------- 1 | gnome-wm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/uget-icon.svg: -------------------------------------------------------------------------------- 1 | uget.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/user.svg: -------------------------------------------------------------------------------- 1 | users.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/vboxgtk.svg: -------------------------------------------------------------------------------- 1 | vbox.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/vim-16.svg: -------------------------------------------------------------------------------- 1 | vim.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/vim-32.svg: -------------------------------------------------------------------------------- 1 | vim.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/vim-48.svg: -------------------------------------------------------------------------------- 1 | vim.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/vim-qt.svg: -------------------------------------------------------------------------------- 1 | vim.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/vimlogo.svg: -------------------------------------------------------------------------------- 1 | vim.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/vlc-kb.svg: -------------------------------------------------------------------------------- 1 | vlc.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/vlc-panel.svg: -------------------------------------------------------------------------------- 1 | vlc.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/vvave.svg: -------------------------------------------------------------------------------- 1 | babe.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/wicd-gtk.svg: -------------------------------------------------------------------------------- 1 | wicd.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/winff.svg: -------------------------------------------------------------------------------- 1 | qwinff.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/winpdb.svg: -------------------------------------------------------------------------------- 1 | abrt.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/wire-tray.svg: -------------------------------------------------------------------------------- 1 | wire.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/wmail.svg: -------------------------------------------------------------------------------- 1 | WMail.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/wpa.svg: -------------------------------------------------------------------------------- 1 | wicd.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/wpa_gui.svg: -------------------------------------------------------------------------------- 1 | wicd.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/wxlame.svg: -------------------------------------------------------------------------------- 1 | kmix.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/x.svg: -------------------------------------------------------------------------------- 1 | xorg.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/x11.svg: -------------------------------------------------------------------------------- 1 | xorg.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xame.svg: -------------------------------------------------------------------------------- 1 | kmenuedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xapp.svg: -------------------------------------------------------------------------------- 1 | xorg.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xar.svg: -------------------------------------------------------------------------------- 1 | ark.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xarchiver.svg: -------------------------------------------------------------------------------- 1 | ark.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xchat_.svg: -------------------------------------------------------------------------------- 1 | xchat.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xemacs.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xfe.svg: -------------------------------------------------------------------------------- 1 | kfm.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xfi.svg: -------------------------------------------------------------------------------- 1 | phototonic.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xfp.svg: -------------------------------------------------------------------------------- 1 | ark.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xfw.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xine.svg: -------------------------------------------------------------------------------- 1 | totem.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xine2.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xmms_mini.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xplane.svg: -------------------------------------------------------------------------------- 1 | x-plane.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xplay.svg: -------------------------------------------------------------------------------- 1 | xemu.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/xsane.svg: -------------------------------------------------------------------------------- 1 | skanlite.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/yast-nis.svg: -------------------------------------------------------------------------------- 1 | knemo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/yast-x11.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/yubioath.svg: -------------------------------------------------------------------------------- 1 | lock.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/zanshin.svg: -------------------------------------------------------------------------------- 1 | todo.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/zart.svg: -------------------------------------------------------------------------------- 1 | webcamoid.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/zenmap.svg: -------------------------------------------------------------------------------- 1 | nmap.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/zim.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/znotes.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/apps/scalable/zoom-icon.svg: -------------------------------------------------------------------------------- 1 | Zoom.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/devices/scalable/pda.svg: -------------------------------------------------------------------------------- 1 | tablet.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/devices/scalable/vap.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/16/go-home.svg: -------------------------------------------------------------------------------- 1 | user-home.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/16/gohome.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/16/gtg-home.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/16/gtk-home.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/16/home.svg: -------------------------------------------------------------------------------- 1 | user-home.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/16/kfm_home.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/16/network_fs.svg: -------------------------------------------------------------------------------- 1 | network.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/16/nfs.svg: -------------------------------------------------------------------------------- 1 | network.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/16/samba.svg: -------------------------------------------------------------------------------- 1 | network.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/16/stock_home.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/16/user-share.svg: -------------------------------------------------------------------------------- 1 | network.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/48/folder-blue.svg: -------------------------------------------------------------------------------- 1 | folder.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/48/network_fs.svg: -------------------------------------------------------------------------------- 1 | network.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/48/nfs.svg: -------------------------------------------------------------------------------- 1 | network.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/48/samba.svg: -------------------------------------------------------------------------------- 1 | network.svg -------------------------------------------------------------------------------- /.icons/BeautyLine/places/48/user-share.svg: -------------------------------------------------------------------------------- 1 | network.svg -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/alias: -------------------------------------------------------------------------------- 1 | dnd-link -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/all-scroll: -------------------------------------------------------------------------------- 1 | move -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/arrow: -------------------------------------------------------------------------------- 1 | left_ptr -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/cell: -------------------------------------------------------------------------------- 1 | plus -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/closedhand: -------------------------------------------------------------------------------- 1 | grabbing -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/color-picker: -------------------------------------------------------------------------------- 1 | tcross -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/cross_reverse: -------------------------------------------------------------------------------- 1 | cross -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/default: -------------------------------------------------------------------------------- 1 | left_ptr -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/diamond_cross: -------------------------------------------------------------------------------- 1 | cross -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/dnd-move: -------------------------------------------------------------------------------- 1 | grabbing -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/dnd-none: -------------------------------------------------------------------------------- 1 | grabbing -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/dot_box_mask: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/draft: -------------------------------------------------------------------------------- 1 | pencil -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/draft_large: -------------------------------------------------------------------------------- 1 | right_ptr -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/draft_small: -------------------------------------------------------------------------------- 1 | right_ptr -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/draped_box: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/e-resize: -------------------------------------------------------------------------------- 1 | right_side -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/fleur: -------------------------------------------------------------------------------- 1 | move -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/forbidden: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/grab: -------------------------------------------------------------------------------- 1 | hand1 -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/help: -------------------------------------------------------------------------------- 1 | question_arrow -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/ibeam: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/icon: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/n-resize: -------------------------------------------------------------------------------- 1 | top_side -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/no-drop: -------------------------------------------------------------------------------- 1 | dnd_no_drop -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/openhand: -------------------------------------------------------------------------------- 1 | hand1 -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/pirate: -------------------------------------------------------------------------------- 1 | X_cursor -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/pointer: -------------------------------------------------------------------------------- 1 | hand2 -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/pointing_hand: -------------------------------------------------------------------------------- 1 | hand2 -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/s-resize: -------------------------------------------------------------------------------- 1 | bottom_side -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/size_all: -------------------------------------------------------------------------------- 1 | move -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/target: -------------------------------------------------------------------------------- 1 | dotbox -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/up-arrow: -------------------------------------------------------------------------------- 1 | sb_up_arrow -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/w-resize: -------------------------------------------------------------------------------- 1 | left_side -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice/cursors/x-cursor: -------------------------------------------------------------------------------- 1 | X_cursor --------------------------------------------------------------------------------