├── .deepsource.toml ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── esdoc.yml │ └── publish-packages.yml ├── .gitignore ├── .nvmrc ├── .vscode ├── extensions.json └── settings.json ├── AGENTS.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── apps ├── cyberchef │ ├── LICENSE │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── icon.svg │ ├── index.js │ ├── metadata.json │ ├── package.json │ └── webpack.config.js ├── filemanager │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── icon.png │ ├── index.js │ ├── index.scss │ ├── metadata.json │ ├── package.json │ ├── src │ │ ├── factories.js │ │ └── utils.js │ └── webpack.config.js ├── games │ ├── LICENSE │ ├── config │ │ └── rush-project.json │ ├── dos-files │ │ ├── bomberman.jsdos │ │ ├── bureaucracy.jsdos │ │ ├── doom.jsdos │ │ ├── grand-theft-auto.jsdos │ │ ├── mortal-kombat.jsdos │ │ └── oregon-trail.jsdos │ ├── eslint.config.mjs │ ├── icon.png │ ├── images │ │ ├── bomberman.gif │ │ ├── bureaucracy.png │ │ ├── doom.png │ │ ├── gta.png │ │ ├── mortal-kombat.png │ │ └── oregon-trail.jpeg │ ├── index.js │ ├── index.scss │ ├── metadata.json │ ├── package.json │ ├── src │ │ ├── app.js │ │ ├── dos-player.js │ │ ├── games.json │ │ └── games.scss │ └── webpack.config.js ├── image-to-8bit │ ├── LICENSE │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── game_controller.png │ ├── index.js │ ├── metadata.json │ ├── package.json │ └── webpack.config.js ├── old-site │ ├── .env.template │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── index.scss │ ├── lettercrap.js │ ├── metadata.json │ ├── package.json │ ├── server.js │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── components │ │ │ ├── Footer.jsx │ │ │ ├── Navbar.jsx │ │ │ └── home │ │ │ │ ├── AboutMe.jsx │ │ │ │ ├── ArticleCard.jsx │ │ │ │ ├── Articles.jsx │ │ │ │ ├── MainBody.jsx │ │ │ │ ├── NavItem.jsx │ │ │ │ ├── Project.jsx │ │ │ │ └── ProjectCard.jsx │ │ ├── editable-stuff │ │ │ ├── configurations.json │ │ │ └── resume.pdf │ │ ├── index.css │ │ └── index.js │ └── webpack.config.js ├── preview │ ├── LICENSE │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── icon.png │ ├── index.js │ ├── metadata.json │ ├── package.json │ └── webpack.config.js ├── settings │ ├── LICENSE │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── index.scss │ ├── metadata.json │ ├── package.json │ ├── src │ │ ├── cursorEffects.js │ │ ├── dynamicBackgrounds.js │ │ ├── staticBackgrounds.js │ │ ├── tabs.js │ │ └── utils.js │ └── webpack.config.js ├── terminal │ ├── LICENSE │ ├── README.md │ ├── _xterm.scss │ ├── attach.js │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── index.scss │ ├── logo.svg │ ├── metadata.json │ ├── package.json │ ├── screenshot.png │ ├── scripts │ │ ├── .bashrc │ │ ├── .env.template │ │ ├── clean-slate.sh │ │ ├── configure-jail.sh │ │ ├── create-jail.sh │ │ ├── create-user.sh │ │ ├── install-nerdfont.sh │ │ ├── install-zork.sh │ │ ├── oh-my-posh.sh │ │ └── setup.sh │ ├── server.js │ ├── webpack.config.js │ └── welcome.txt ├── textpad │ ├── LICENSE │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── icon.png │ ├── index.js │ ├── metadata.json │ ├── package.json │ └── webpack.config.js └── uptime-monitor │ ├── LICENSE │ ├── config │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── metadata.json │ ├── package.json │ └── webpack.config.js ├── backend ├── common │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── src │ │ ├── core.js │ │ ├── esdoc.js │ │ ├── service-provider.js │ │ └── utils.js │ └── webpack.config.js ├── event-emitter │ ├── LICENSE │ ├── README.md │ ├── __test__ │ │ └── index.test.js │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.d.ts │ ├── index.js │ ├── package.json │ └── webpack.config.js ├── server │ ├── .editorconfig │ ├── .github │ │ └── workflows │ │ │ └── codeql-analysis.yml │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── __mocks__ │ │ ├── core.js │ │ ├── dist │ │ │ └── metadata.json │ │ ├── homeDirFolder │ │ │ ├── exampleEmptyFile.xml │ │ │ └── exampleFileWithContents.txt │ │ ├── packages.json │ │ └── packages │ │ │ └── JestTest │ │ │ ├── metadata.json │ │ │ └── server.js │ ├── __tests__ │ │ ├── adapters │ │ │ ├── auth │ │ │ │ └── null.js │ │ │ ├── settings │ │ │ │ ├── fs.js │ │ │ │ └── null.js │ │ │ └── vfs │ │ │ │ └── system.js │ │ ├── auth.js │ │ ├── core.js │ │ ├── filesystem.js │ │ ├── package.js │ │ ├── packages.js │ │ ├── settings.js │ │ └── utils │ │ │ ├── core.js │ │ │ └── vfs.js │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── package.json │ └── src │ │ ├── adapters │ │ ├── auth │ │ │ └── null.js │ │ ├── settings │ │ │ ├── fs.js │ │ │ └── null.js │ │ └── vfs │ │ │ └── system.js │ │ ├── auth.js │ │ ├── config.js │ │ ├── core.js │ │ ├── filesystem.js │ │ ├── package.js │ │ ├── packages.js │ │ ├── providers │ │ ├── auth.js │ │ ├── core.js │ │ ├── packages.js │ │ ├── settings.js │ │ ├── token-factory.js │ │ ├── token-storage.js │ │ └── vfs.js │ │ ├── settings.js │ │ ├── utils │ │ ├── core.js │ │ ├── token-factory.js │ │ ├── token-storage.js │ │ └── vfs.js │ │ └── vfs.js └── wireless-tools-provider │ ├── LICENSE │ ├── README.md │ ├── config │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── package.json │ ├── src │ ├── client.js │ └── server.js │ └── webpack.config.js ├── common ├── config │ └── rush │ │ ├── .npmrc │ │ ├── .npmrc-publish │ │ ├── .pnpmfile.cjs │ │ ├── artifactory.json │ │ ├── build-cache.json │ │ ├── command-line.json │ │ ├── common-versions.json │ │ ├── experiments.json │ │ ├── pnpm-config.json │ │ ├── pnpm-lock.yaml │ │ ├── repo-state.json │ │ ├── rush-plugins.json │ │ └── version-policies.json ├── git-hooks │ └── commit-msg.sample └── scripts │ ├── install-run-rush-pnpm.js │ ├── install-run-rush.js │ ├── install-run-rushx.js │ └── install-run.js ├── development ├── cli │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── __mocks__ │ │ ├── packages │ │ │ ├── Application │ │ │ │ ├── dist │ │ │ │ │ └── main.js │ │ │ │ ├── metadata.json │ │ │ │ └── package.json │ │ │ ├── Failed │ │ │ │ ├── metadata.json │ │ │ │ └── package.json │ │ │ └── Theme │ │ │ │ ├── dist │ │ │ │ └── main.js │ │ │ │ ├── metadata.json │ │ │ │ └── package.json │ │ └── setup.js │ ├── __tests__ │ │ ├── cli.js │ │ ├── tasks │ │ │ ├── discover.js │ │ │ └── scaffold.js │ │ └── utils.js │ ├── bin │ │ └── cli.js │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── package.json │ └── src │ │ ├── cli.js │ │ ├── createPath.js │ │ ├── tasks │ │ ├── discover.js │ │ ├── info.js │ │ ├── scaffold.js │ │ └── watch.js │ │ ├── templates │ │ ├── application │ │ │ ├── icon.png │ │ │ ├── index.js │ │ │ ├── index.scss │ │ │ ├── metadata.json │ │ │ ├── package.json │ │ │ ├── server.js │ │ │ └── webpack.config.js │ │ ├── auth │ │ │ ├── client.js │ │ │ └── server.js │ │ ├── iframe-application │ │ │ ├── data │ │ │ │ └── index.html │ │ │ ├── icon.png │ │ │ ├── index.js │ │ │ ├── metadata.json │ │ │ ├── package.json │ │ │ └── webpack.config.js │ │ ├── provider │ │ │ ├── client.js │ │ │ └── server.js │ │ ├── settings │ │ │ ├── client.js │ │ │ └── server.js │ │ └── vfs │ │ │ ├── client.js │ │ │ └── server.js │ │ └── utils.js ├── eslint │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rush-project.json │ ├── index.js │ └── package.json ├── iconThemePlugin.js └── stylelint │ ├── LICENSE │ ├── README.md │ ├── config │ └── rush-project.json │ ├── index.js │ └── package.json ├── ecosystem.config.js ├── frontend ├── client │ ├── .codeclimate.yml │ ├── LICENSE │ ├── README.md │ ├── __mocks__ │ │ ├── core.js │ │ ├── null-module.js │ │ └── setup.js │ ├── __tests__ │ │ ├── adapters │ │ │ ├── auth │ │ │ │ ├── localstorage.js │ │ │ │ └── server.js │ │ │ ├── settings │ │ │ │ ├── localstorage.js │ │ │ │ └── server.js │ │ │ └── vfs │ │ │ │ ├── apps.js │ │ │ │ ├── null.js │ │ │ │ └── system.js │ │ ├── application.js │ │ ├── auth.js │ │ ├── basic-application.js │ │ ├── clipboard.js │ │ ├── core.js │ │ ├── eslint.config.mjs │ │ ├── filesystem.js │ │ ├── logger.js │ │ ├── middleware.js │ │ ├── notification.js │ │ ├── notifications.js │ │ ├── packages.js │ │ ├── search.js │ │ ├── session.js │ │ ├── settings.js │ │ ├── splash.js │ │ ├── tray.js │ │ ├── utils │ │ │ ├── colors.js │ │ │ ├── desktop.js │ │ │ ├── dnd.js │ │ │ ├── dom.js │ │ │ ├── input.js │ │ │ ├── preloader.js │ │ │ ├── url.js │ │ │ ├── vfs.js │ │ │ └── windows.js │ │ ├── vfs.js │ │ ├── websocket.js │ │ └── window.js │ ├── babel.config.js │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.d.ts │ ├── index.js │ ├── index.scss │ ├── package.json │ ├── src │ │ ├── adapters │ │ │ ├── auth │ │ │ │ ├── localstorage.js │ │ │ │ └── server.js │ │ │ ├── search │ │ │ │ └── vfs.js │ │ │ ├── settings │ │ │ │ ├── localstorage.js │ │ │ │ └── server.js │ │ │ ├── ui │ │ │ │ ├── iconview.js │ │ │ │ ├── login.js │ │ │ │ └── search.js │ │ │ └── vfs │ │ │ │ ├── apps.js │ │ │ │ ├── null.js │ │ │ │ └── system.js │ │ ├── application.js │ │ ├── auth.js │ │ ├── basic-application.js │ │ ├── clipboard.js │ │ ├── config.js │ │ ├── core.js │ │ ├── desktop.js │ │ ├── filesystem.js │ │ ├── fonts │ │ │ └── _terminal.ttf │ │ ├── loading-screen │ │ │ ├── lettercrap.js │ │ │ └── loading.html │ │ ├── logger.js │ │ ├── login.js │ │ ├── middleware.js │ │ ├── monkey-animation.js │ │ ├── notification.js │ │ ├── notifications.js │ │ ├── packages.js │ │ ├── providers │ │ │ ├── auth.js │ │ │ ├── core.js │ │ │ ├── desktop.js │ │ │ ├── notifications.js │ │ │ ├── settings.js │ │ │ └── vfs.js │ │ ├── search.js │ │ ├── session.js │ │ ├── settings.js │ │ ├── splash.js │ │ ├── styles │ │ │ ├── _core.scss │ │ │ ├── _iconview.scss │ │ │ ├── _loading.scss │ │ │ ├── _login.scss │ │ │ ├── _notifications.scss │ │ │ ├── _search.scss │ │ │ ├── _variables.scss │ │ │ ├── _window.scss │ │ │ └── icon.png │ │ ├── tray.js │ │ ├── utils │ │ │ ├── colors.js │ │ │ ├── desktop.js │ │ │ ├── dnd.js │ │ │ ├── dom-animator.js │ │ │ ├── dom.js │ │ │ ├── fetch.js │ │ │ ├── input.js │ │ │ ├── packages.js │ │ │ ├── preloader.js │ │ │ ├── url.js │ │ │ ├── vfs.js │ │ │ └── windows.js │ │ ├── vfs.js │ │ ├── websocket.js │ │ ├── window-behavior.js │ │ └── window.js │ └── webpack.config.js ├── cursor-effects │ ├── LICENSE │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── metadata.json │ ├── package.json │ ├── src │ │ ├── ghost.js │ │ ├── none.js │ │ ├── rainbow.js │ │ └── trailing.js │ └── webpack.config.js ├── dialogs │ ├── LICENSE │ ├── babel.config.js │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── index.scss │ ├── package.json │ ├── src │ │ ├── color-utils.js │ │ ├── dialog.js │ │ ├── dialogs │ │ │ ├── alert.js │ │ │ ├── choice.js │ │ │ ├── color.js │ │ │ ├── confirm.js │ │ │ ├── custom.js │ │ │ ├── default-application.js │ │ │ ├── file.js │ │ │ ├── font.js │ │ │ ├── multiple-colors.js │ │ │ ├── progress.js │ │ │ └── prompt.js │ │ └── provider.js │ └── webpack.config.js ├── dynamic-wallpapers │ ├── LICENSE │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── index.scss │ ├── metadata.json │ ├── package.json │ ├── src │ │ ├── effects │ │ │ ├── hexells.js │ │ │ ├── matrix.js │ │ │ └── vanta-waves.js │ │ └── provider.js │ └── webpack.config.js ├── gnome-icons │ ├── .stylelintignore │ ├── LICENSE │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── index.scss │ ├── metadata.json │ ├── package.json │ ├── src │ │ ├── _icons.scss │ │ └── icons │ │ │ ├── AUTHORS │ │ │ ├── COPYING_CCBYSA3 │ │ │ ├── COPYING_LGPL │ │ │ ├── README │ │ │ ├── actions │ │ │ ├── address-book-new.png │ │ │ ├── application-exit.png │ │ │ ├── appointment-new.png │ │ │ ├── bookmark-new.png │ │ │ ├── call-start.png │ │ │ ├── call-stop.png │ │ │ ├── contact-new.png │ │ │ ├── document-new.png │ │ │ ├── document-open-recent.png │ │ │ ├── document-open.png │ │ │ ├── document-page-setup.png │ │ │ ├── document-print-preview.png │ │ │ ├── document-print.png │ │ │ ├── document-properties.png │ │ │ ├── document-revert-rtl.png │ │ │ ├── document-revert.png │ │ │ ├── document-save-as.png │ │ │ ├── document-save.png │ │ │ ├── document-send.png │ │ │ ├── edit-clear-all.png │ │ │ ├── edit-clear-rtl.png │ │ │ ├── edit-clear.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-delete.png │ │ │ ├── edit-find-replace.png │ │ │ ├── edit-find.png │ │ │ ├── edit-paste.png │ │ │ ├── edit-redo-rtl.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-select-all.png │ │ │ ├── edit-undo-rtl.png │ │ │ ├── edit-undo.png │ │ │ ├── folder-new.png │ │ │ ├── format-indent-less-rtl.png │ │ │ ├── format-indent-less.png │ │ │ ├── format-indent-more-rtl.png │ │ │ ├── format-indent-more.png │ │ │ ├── format-justify-center.png │ │ │ ├── format-justify-fill.png │ │ │ ├── format-justify-left.png │ │ │ ├── format-justify-right.png │ │ │ ├── format-text-bold.png │ │ │ ├── format-text-direction-ltr.png │ │ │ ├── format-text-direction-rtl.png │ │ │ ├── format-text-italic.png │ │ │ ├── format-text-strikethrough.png │ │ │ ├── format-text-underline.png │ │ │ ├── go-bottom.png │ │ │ ├── go-down.png │ │ │ ├── go-first-rtl.png │ │ │ ├── go-first.png │ │ │ ├── go-home.png │ │ │ ├── go-jump.png │ │ │ ├── go-last-rtl.png │ │ │ ├── go-last.png │ │ │ ├── go-next-rtl.png │ │ │ ├── go-next.png │ │ │ ├── go-previous-rtl.png │ │ │ ├── go-previous.png │ │ │ ├── go-top.png │ │ │ ├── go-up.png │ │ │ ├── help-about.png │ │ │ ├── help-contents.png │ │ │ ├── help-faq.png │ │ │ ├── insert-image.png │ │ │ ├── insert-link.png │ │ │ ├── insert-object.png │ │ │ ├── insert-text.png │ │ │ ├── list-add.png │ │ │ ├── list-remove.png │ │ │ ├── mail-forward.png │ │ │ ├── mail-mark-important.png │ │ │ ├── mail-mark-junk.png │ │ │ ├── mail-mark-notjunk.png │ │ │ ├── mail-mark-read.png │ │ │ ├── mail-mark-unread.png │ │ │ ├── mail-message-new.png │ │ │ ├── mail-reply-all.png │ │ │ ├── mail-reply-sender.png │ │ │ ├── mail-send-receive.png │ │ │ ├── mail-send.png │ │ │ ├── mark-location.png │ │ │ ├── media-eject.png │ │ │ ├── media-playback-pause.png │ │ │ ├── media-playback-start-rtl.png │ │ │ ├── media-playback-start.png │ │ │ ├── media-playback-stop.png │ │ │ ├── media-record.png │ │ │ ├── media-seek-backward-rtl.png │ │ │ ├── media-seek-backward.png │ │ │ ├── media-seek-forward-rtl.png │ │ │ ├── media-seek-forward.png │ │ │ ├── media-skip-backward-rtl.png │ │ │ ├── media-skip-backward.png │ │ │ ├── media-skip-forward-rtl.png │ │ │ ├── media-skip-forward.png │ │ │ ├── object-flip-horizontal.png │ │ │ ├── object-flip-vertical.png │ │ │ ├── object-rotate-left.png │ │ │ ├── object-rotate-right.png │ │ │ ├── process-stop.png │ │ │ ├── system-lock-screen.png │ │ │ ├── system-log-out.png │ │ │ ├── system-run.png │ │ │ ├── system-search.png │ │ │ ├── system-shutdown.png │ │ │ ├── tools-check-spelling.png │ │ │ ├── view-fullscreen.png │ │ │ ├── view-refresh.png │ │ │ ├── view-restore.png │ │ │ ├── view-sort-ascending.png │ │ │ ├── view-sort-descending.png │ │ │ ├── window-close.png │ │ │ ├── window-new.png │ │ │ ├── zoom-fit-best.png │ │ │ ├── zoom-in.png │ │ │ ├── zoom-original.png │ │ │ └── zoom-out.png │ │ │ ├── apps │ │ │ ├── accessories-calculator.png │ │ │ ├── accessories-character-map.png │ │ │ ├── accessories-dictionary.png │ │ │ ├── accessories-text-editor.png │ │ │ ├── applets-screenshooter.png │ │ │ ├── help-browser.png │ │ │ ├── multimedia-volume-control.png │ │ │ ├── preferences-desktop-accessibility.png │ │ │ ├── preferences-desktop-display.png │ │ │ ├── preferences-desktop-font.png │ │ │ ├── preferences-desktop-keyboard-shortcuts.png │ │ │ ├── preferences-desktop-keyboard.png │ │ │ ├── preferences-desktop-locale.png │ │ │ ├── preferences-desktop-remote-desktop.png │ │ │ ├── preferences-desktop-screensaver.png │ │ │ ├── preferences-desktop-theme.png │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ ├── preferences-system-notifications.png │ │ │ ├── preferences-system-privacy.png │ │ │ ├── preferences-system-search.png │ │ │ ├── preferences-system-sharing.png │ │ │ ├── preferences-system-windows.png │ │ │ ├── system-file-manager.png │ │ │ ├── system-software-install.png │ │ │ ├── system-software-update.png │ │ │ ├── system-users.png │ │ │ ├── user-info.png │ │ │ ├── utilities-system-monitor.png │ │ │ ├── utilities-terminal.png │ │ │ └── web-browser.png │ │ │ ├── categories │ │ │ ├── applications-accessories.png │ │ │ ├── applications-development.png │ │ │ ├── applications-engineering.png │ │ │ ├── applications-games.png │ │ │ ├── applications-graphics.png │ │ │ ├── applications-internet.png │ │ │ ├── applications-multimedia.png │ │ │ ├── applications-office.png │ │ │ ├── applications-other.png │ │ │ ├── applications-science.png │ │ │ ├── applications-system.png │ │ │ ├── applications-utilities.png │ │ │ ├── preferences-desktop-peripherals.png │ │ │ ├── preferences-desktop-personal.png │ │ │ ├── preferences-desktop.png │ │ │ ├── preferences-other.png │ │ │ ├── preferences-system-network.png │ │ │ ├── preferences-system.png │ │ │ └── system-help.png │ │ │ ├── devices │ │ │ ├── ac-adapter.png │ │ │ ├── audio-card.png │ │ │ ├── audio-headphones.png │ │ │ ├── audio-headset.png │ │ │ ├── audio-input-microphone.png │ │ │ ├── audio-speakers.png │ │ │ ├── battery.png │ │ │ ├── camera-photo.png │ │ │ ├── camera-video.png │ │ │ ├── camera-web.png │ │ │ ├── computer.png │ │ │ ├── drive-harddisk.png │ │ │ ├── drive-multidisk.png │ │ │ ├── drive-optical.png │ │ │ ├── drive-removable-media.png │ │ │ ├── ebook-reader.png │ │ │ ├── input-dialpad.png │ │ │ ├── input-gaming.png │ │ │ ├── input-keyboard.png │ │ │ ├── input-mouse.png │ │ │ ├── input-tablet.png │ │ │ ├── input-touchpad.png │ │ │ ├── media-flash.png │ │ │ ├── media-floppy.png │ │ │ ├── media-optical.png │ │ │ ├── media-removable.png │ │ │ ├── media-tape.png │ │ │ ├── modem.png │ │ │ ├── multimedia-player.png │ │ │ ├── network-vpn.png │ │ │ ├── network-wired.png │ │ │ ├── network-wireless.png │ │ │ ├── pda.png │ │ │ ├── phone.png │ │ │ ├── printer-network.png │ │ │ ├── printer.png │ │ │ ├── scanner.png │ │ │ ├── uninterruptible-power-supply.png │ │ │ └── video-display.png │ │ │ ├── emblems │ │ │ ├── emblem-default.png │ │ │ ├── emblem-desktop.png │ │ │ ├── emblem-documents.png │ │ │ ├── emblem-downloads.png │ │ │ ├── emblem-favorite.png │ │ │ ├── emblem-generic.png │ │ │ ├── emblem-important.png │ │ │ ├── emblem-mail.png │ │ │ ├── emblem-new.png │ │ │ ├── emblem-package.png │ │ │ ├── emblem-photos.png │ │ │ ├── emblem-readonly.png │ │ │ ├── emblem-shared.png │ │ │ ├── emblem-symbolic-link.png │ │ │ ├── emblem-synchronizing.png │ │ │ ├── emblem-system.png │ │ │ ├── emblem-unreadable.png │ │ │ ├── emblem-urgent.png │ │ │ └── emblem-web.png │ │ │ ├── emotes │ │ │ ├── emote-love.png │ │ │ ├── face-angel.png │ │ │ ├── face-angry.png │ │ │ ├── face-cool.png │ │ │ ├── face-crying.png │ │ │ ├── face-devilish.png │ │ │ ├── face-embarrassed.png │ │ │ ├── face-glasses.png │ │ │ ├── face-kiss.png │ │ │ ├── face-laugh.png │ │ │ ├── face-monkey.png │ │ │ ├── face-plain.png │ │ │ ├── face-raspberry.png │ │ │ ├── face-sad.png │ │ │ ├── face-sick.png │ │ │ ├── face-smile-big.png │ │ │ ├── face-smile.png │ │ │ ├── face-smirk.png │ │ │ ├── face-surprise.png │ │ │ ├── face-tired.png │ │ │ ├── face-uncertain.png │ │ │ ├── face-wink.png │ │ │ └── face-worried.png │ │ │ ├── mimetypes │ │ │ ├── application-certificate.png │ │ │ ├── application-x-addon.png │ │ │ ├── application-x-executable.png │ │ │ ├── application-x-firmware.png │ │ │ ├── audio-x-generic.png │ │ │ ├── font-x-generic.png │ │ │ ├── image-x-generic.png │ │ │ ├── package-x-generic.png │ │ │ ├── text-html.png │ │ │ ├── text-x-generic-template.png │ │ │ ├── text-x-generic.png │ │ │ ├── text-x-preview.png │ │ │ ├── text-x-script.png │ │ │ ├── video-x-generic.png │ │ │ ├── x-office-address-book.png │ │ │ ├── x-office-calendar.png │ │ │ ├── x-office-document-template.png │ │ │ ├── x-office-document.png │ │ │ ├── x-office-drawing-template.png │ │ │ ├── x-office-drawing.png │ │ │ ├── x-office-presentation-template.png │ │ │ ├── x-office-presentation.png │ │ │ ├── x-office-spreadsheet-template.png │ │ │ ├── x-office-spreadsheet.png │ │ │ └── x-package-repository.png │ │ │ ├── places │ │ │ ├── folder-documents.png │ │ │ ├── folder-download.png │ │ │ ├── folder-music.png │ │ │ ├── folder-pictures.png │ │ │ ├── folder-publicshare.png │ │ │ ├── folder-remote.png │ │ │ ├── folder-saved-search.png │ │ │ ├── folder-templates.png │ │ │ ├── folder-videos.png │ │ │ ├── folder.png │ │ │ ├── network-server.png │ │ │ ├── network-workgroup.png │ │ │ ├── start-here.png │ │ │ ├── user-bookmarks.png │ │ │ ├── user-desktop.png │ │ │ ├── user-home.png │ │ │ └── user-trash.png │ │ │ └── status │ │ │ ├── appointment-missed.png │ │ │ ├── appointment-soon.png │ │ │ ├── audio-volume-high.png │ │ │ ├── audio-volume-low.png │ │ │ ├── audio-volume-medium.png │ │ │ ├── audio-volume-muted.png │ │ │ ├── avatar-default.png │ │ │ ├── battery-caution-charging.png │ │ │ ├── battery-caution.png │ │ │ ├── battery-empty.png │ │ │ ├── battery-full-charged.png │ │ │ ├── battery-full-charging.png │ │ │ ├── battery-full.png │ │ │ ├── battery-good-charging.png │ │ │ ├── battery-good.png │ │ │ ├── battery-low-charging.png │ │ │ ├── battery-low.png │ │ │ ├── battery-missing.png │ │ │ ├── changes-allow.png │ │ │ ├── changes-prevent.png │ │ │ ├── computer-fail.png │ │ │ ├── dialog-error.png │ │ │ ├── dialog-information.png │ │ │ ├── dialog-password.png │ │ │ ├── dialog-question.png │ │ │ ├── dialog-warning.png │ │ │ ├── folder-drag-accept.png │ │ │ ├── folder-open.png │ │ │ ├── folder-visiting.png │ │ │ ├── image-loading.png │ │ │ ├── image-missing.png │ │ │ ├── mail-attachment.png │ │ │ ├── mail-read.png │ │ │ ├── mail-replied.png │ │ │ ├── mail-unread.png │ │ │ ├── media-playlist-repeat.png │ │ │ ├── media-playlist-shuffle.png │ │ │ ├── microphone-sensitivity-high.png │ │ │ ├── microphone-sensitivity-low.png │ │ │ ├── microphone-sensitivity-medium.png │ │ │ ├── microphone-sensitivity-muted.png │ │ │ ├── network-cellular-connected.png │ │ │ ├── network-error.png │ │ │ ├── network-idle.png │ │ │ ├── network-offline.png │ │ │ ├── network-receive.png │ │ │ ├── network-transmit-receive.png │ │ │ ├── network-transmit.png │ │ │ ├── network-wired-disconnected.png │ │ │ ├── non-starred.png │ │ │ ├── printer-error.png │ │ │ ├── printer-printing.png │ │ │ ├── security-high.png │ │ │ ├── security-low.png │ │ │ ├── security-medium.png │ │ │ ├── semi-starred-rtl.png │ │ │ ├── semi-starred.png │ │ │ ├── software-update-available.png │ │ │ ├── software-update-urgent.png │ │ │ ├── starred.png │ │ │ ├── task-due.png │ │ │ ├── task-past-due.png │ │ │ ├── trophy-bronze.png │ │ │ ├── trophy-gold.png │ │ │ ├── trophy-silver.png │ │ │ ├── user-available.png │ │ │ ├── user-away.png │ │ │ ├── user-busy.png │ │ │ ├── user-idle.png │ │ │ ├── user-invisible.png │ │ │ ├── user-offline.png │ │ │ ├── user-trash-full.png │ │ │ ├── weather-clear-night.png │ │ │ ├── weather-clear.png │ │ │ ├── weather-few-clouds-night.png │ │ │ ├── weather-few-clouds.png │ │ │ ├── weather-fog.png │ │ │ ├── weather-overcast.png │ │ │ ├── weather-severe-alert.png │ │ │ ├── weather-showers-scattered.png │ │ │ ├── weather-showers.png │ │ │ ├── weather-snow.png │ │ │ └── weather-storm.png │ └── webpack.config.js ├── google-api-provider │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── icons │ │ └── gis-logo.svg │ ├── index.js │ ├── package.json │ └── webpack.config.js ├── gui │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── index.scss │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── components │ │ │ ├── Box.js │ │ │ ├── BoxContainer.js │ │ │ ├── BoxStyled.js │ │ │ ├── Button.js │ │ │ ├── Element.js │ │ │ ├── Expander.js │ │ │ ├── Icon.js │ │ │ ├── IconView.js │ │ │ ├── Iframe.js │ │ │ ├── Image.js │ │ │ ├── Label.js │ │ │ ├── ListView.js │ │ │ ├── Menu.js │ │ │ ├── Menubar.js │ │ │ ├── Panes.js │ │ │ ├── Progressbar.js │ │ │ ├── RangeField.js │ │ │ ├── SelectField.js │ │ │ ├── Statusbar.js │ │ │ ├── Tabs.js │ │ │ ├── TextField.js │ │ │ ├── TextareaField.js │ │ │ ├── ToggleField.js │ │ │ ├── Toolbar.js │ │ │ └── Video.js │ │ ├── contextmenu.js │ │ ├── element.js │ │ ├── provider.js │ │ ├── styles │ │ │ ├── _box.scss │ │ │ ├── _button.scss │ │ │ ├── _common.scss │ │ │ ├── _expander.scss │ │ │ ├── _iconview.scss │ │ │ ├── _iframe.scss │ │ │ ├── _input.scss │ │ │ ├── _listview.scss │ │ │ ├── _media.scss │ │ │ ├── _menu.scss │ │ │ ├── _panes.scss │ │ │ ├── _progressbar.scss │ │ │ ├── _statusbar.scss │ │ │ ├── _tabs.scss │ │ │ └── _toolbar.scss │ │ ├── umd.js │ │ └── utils.js │ └── webpack.config.js ├── panels │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── index.scss │ ├── package.json │ ├── src │ │ ├── _panel.scss │ │ ├── icon.png │ │ ├── items │ │ │ ├── _clock.scss │ │ │ ├── _menu.scss │ │ │ ├── _tray.scss │ │ │ ├── _windows.scss │ │ │ ├── clock.js │ │ │ ├── menu.js │ │ │ ├── tray.js │ │ │ └── windows.js │ │ ├── panel-item.js │ │ ├── panel.js │ │ └── provider.js │ └── webpack.config.js ├── sounds │ ├── LICENSE │ ├── LICENSE.thirdparty │ ├── README.md │ ├── config │ │ └── rush-project.json │ ├── index.js │ ├── metadata.json │ ├── package.json │ ├── src │ │ ├── alarm-clock-elapsed.mp3 │ │ ├── alarm-clock-elapsed.oga │ │ ├── audio-volume-change.mp3 │ │ ├── audio-volume-change.oga │ │ ├── bell.mp3 │ │ ├── bell.oga │ │ ├── camera-shutter.mp3 │ │ ├── camera-shutter.oga │ │ ├── complete.mp3 │ │ ├── complete.oga │ │ ├── device-added.mp3 │ │ ├── device-added.oga │ │ ├── device-removed.mp3 │ │ ├── device-removed.oga │ │ ├── dial-up-modem.mp3 │ │ ├── dialog-information.mp3 │ │ ├── dialog-information.oga │ │ ├── dialog-warning.mp3 │ │ ├── dialog-warning.oga │ │ ├── message-new-instant.mp3 │ │ ├── message-new-instant.oga │ │ ├── message.mp3 │ │ ├── message.oga │ │ ├── network-connectivity-established.mp3 │ │ ├── network-connectivity-established.oga │ │ ├── network-connectivity-lost.mp3 │ │ ├── network-connectivity-lost.oga │ │ ├── phone-incoming-call.mp3 │ │ ├── phone-incoming-call.oga │ │ ├── phone-outgoing-busy.mp3 │ │ ├── phone-outgoing-busy.oga │ │ ├── phone-outgoing-calling.mp3 │ │ ├── phone-outgoing-calling.oga │ │ ├── power-plug.mp3 │ │ ├── power-plug.oga │ │ ├── power-unplug.mp3 │ │ ├── power-unplug.oga │ │ ├── screen-capture.mp3 │ │ ├── screen-capture.oga │ │ ├── service-login.mp3 │ │ ├── service-login.oga │ │ ├── service-logout.mp3 │ │ ├── service-logout.oga │ │ ├── suspend-error.mp3 │ │ ├── suspend-error.oga │ │ ├── trash-empty.mp3 │ │ └── trash-empty.oga │ └── webpack.config.js ├── standard-dark-theme │ ├── LICENSE │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── index.scss │ ├── metadata.json │ ├── package.json │ ├── src │ │ ├── _variables.scss │ │ └── theme.js │ └── webpack.config.js ├── standard-theme │ ├── .stylelintignore │ ├── LICENSE │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── index.scss │ ├── metadata.json │ ├── package.json │ ├── src │ │ ├── _animations.scss │ │ ├── _core.scss │ │ ├── _desktop.scss │ │ ├── _gui.scss │ │ ├── _mixins.scss │ │ ├── _variables.scss │ │ ├── _windows.scss │ │ └── theme.js │ └── webpack.config.js ├── static-wallpapers │ ├── LICENSE │ ├── config │ │ └── rush-project.json │ ├── index.js │ ├── metadata.json │ ├── package.json │ ├── src │ │ └── plain.png │ └── webpack.config.js ├── we10x-icons │ ├── .stylelintignore │ ├── LICENSE │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── index.scss │ ├── metadata.json │ ├── package.json │ ├── src │ │ ├── _icons.scss │ │ └── icons │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── actions │ │ │ ├── mail-reply-all.svg │ │ │ ├── mail-reply-custom-all.svg │ │ │ ├── mail-reply-custom.svg │ │ │ ├── mail-reply-list.svg │ │ │ ├── mail-reply-sender.svg │ │ │ ├── mail-send.svg │ │ │ ├── mail-sent.svg │ │ │ ├── mail-signature-unknown.svg │ │ │ ├── mail-signed-full.svg │ │ │ ├── mail-signed-fully.svg │ │ │ ├── mail-signed-part.svg │ │ │ ├── mail-signed-verified.svg │ │ │ ├── mail-signed.svg │ │ │ ├── mail-tagged.svg │ │ │ ├── mail-thread-watch.svg │ │ │ ├── mail-unread.svg │ │ │ ├── media-eject.svg │ │ │ ├── media-playback-pause.svg │ │ │ ├── media-playback-start.svg │ │ │ ├── media-playback-stop.svg │ │ │ ├── media-playlist-normal.svg │ │ │ ├── media-playlist-repeat-song.svg │ │ │ ├── media-playlist-repeat.svg │ │ │ ├── media-playlist-shuffle.svg │ │ │ ├── media-record.svg │ │ │ ├── media-repeat-all.svg │ │ │ ├── media-repeat-none.svg │ │ │ ├── media-repeat-single.svg │ │ │ ├── media-seek-backward.svg │ │ │ ├── media-seek-forward.svg │ │ │ ├── media-skip-backward.svg │ │ │ ├── media-skip-forward.svg │ │ │ ├── multiple.svg │ │ │ ├── object-order-back.svg │ │ │ ├── object-order-front.svg │ │ │ ├── object-order-lower.svg │ │ │ ├── object-order-raise.svg │ │ │ ├── output_win.svg │ │ │ ├── overflow-menu.svg │ │ │ ├── page-zoom.svg │ │ │ ├── percent.svg │ │ │ ├── preview.svg │ │ │ ├── qa.svg │ │ │ ├── select.svg │ │ │ ├── settings-configure.svg │ │ │ ├── step_object_Controller.svg │ │ │ ├── symbolic │ │ │ │ ├── action-unavailable.svg │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ ├── address-book-new.svg │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ ├── align-vertical-center.svg │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ ├── align-vertical-top.svg │ │ │ │ ├── application-add.svg │ │ │ │ ├── application-exit.svg │ │ │ │ ├── application-menu.svg │ │ │ │ ├── appointment-new.svg │ │ │ │ ├── appointment.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── bookmark-add.svg │ │ │ │ ├── bookmark-new.svg │ │ │ │ ├── brisk_system-log-out.svg │ │ │ │ ├── browser-download.svg │ │ │ │ ├── ca.desrt.dconf-editor.big-rows.svg │ │ │ │ ├── ca.desrt.dconf-editor.small-rows.svg │ │ │ │ ├── calendar-go-today.svg │ │ │ │ ├── call-end.svg │ │ │ │ ├── call-start.svg │ │ │ │ ├── call-stop.svg │ │ │ │ ├── call-voicemail.svg │ │ │ │ ├── camera-switch.svg │ │ │ │ ├── caps-lock-off.svg │ │ │ │ ├── caps-lock.svg │ │ │ │ ├── category-search.svg │ │ │ │ ├── change-date.svg │ │ │ │ ├── chat-message-new.svg │ │ │ │ ├── close.svg │ │ │ │ ├── collapse-all.svg │ │ │ │ ├── color-profile.svg │ │ │ │ ├── color-select.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── contact-new.svg │ │ │ │ ├── content-loading.svg │ │ │ │ ├── detach.svg │ │ │ │ ├── dino-double-tick.svg │ │ │ │ ├── dino-tick.svg │ │ │ │ ├── display.svg │ │ │ │ ├── document-edit.svg │ │ │ │ ├── document-export.svg │ │ │ │ ├── document-import-symbolic-rtl.svg │ │ │ │ ├── document-import.svg │ │ │ │ ├── document-new.svg │ │ │ │ ├── document-open-recent.svg │ │ │ │ ├── document-open.svg │ │ │ │ ├── document-page-setup.svg │ │ │ │ ├── document-print-preview.svg │ │ │ │ ├── document-print.svg │ │ │ │ ├── document-properties.svg │ │ │ │ ├── document-revert-rtl.svg │ │ │ │ ├── document-revert-symbolic-rtl.svg │ │ │ │ ├── document-revert.svg │ │ │ │ ├── document-save-as.svg │ │ │ │ ├── document-save.svg │ │ │ │ ├── document-send.svg │ │ │ │ ├── edit-clear-all.svg │ │ │ │ ├── edit-clear-rtl.svg │ │ │ │ ├── edit-clear-symbolic-rtl.svg │ │ │ │ ├── edit-clear.svg │ │ │ │ ├── edit-copy.svg │ │ │ │ ├── edit-cut.svg │ │ │ │ ├── edit-delete.svg │ │ │ │ ├── edit-find-replace.svg │ │ │ │ ├── edit-find.svg │ │ │ │ ├── edit-flag.svg │ │ │ │ ├── edit-paste.svg │ │ │ │ ├── edit-redo-rtl.svg │ │ │ │ ├── edit-redo-symbolic-rtl.svg │ │ │ │ ├── edit-redo.svg │ │ │ │ ├── edit-select-all.svg │ │ │ │ ├── edit-select.svg │ │ │ │ ├── edit-tag.svg │ │ │ │ ├── edit-undo-rtl.svg │ │ │ │ ├── edit-undo-symbolic-rtl.svg │ │ │ │ ├── edit-undo.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── ephy-bookmark-tag.svg │ │ │ │ ├── ephy-bookmarks.svg │ │ │ │ ├── ephy-reader-mode.svg │ │ │ │ ├── error-correct.svg │ │ │ │ ├── expand-all.svg │ │ │ │ ├── export.svg │ │ │ │ ├── extension.svg │ │ │ │ ├── extract-archive.svg │ │ │ │ ├── eye-not-looking.svg │ │ │ │ ├── eye-open-negative-filled.svg │ │ │ │ ├── fcitx-fullwidth-active.svg │ │ │ │ ├── fcitx-fullwidth-inactive.svg │ │ │ │ ├── fcitx-kbd.svg │ │ │ │ ├── fcitx-punc-active.svg │ │ │ │ ├── fcitx-punc-inactive.svg │ │ │ │ ├── fcitx-vk-active.svg │ │ │ │ ├── fcitx-vk-inactive.svg │ │ │ │ ├── file-catalog.svg │ │ │ │ ├── file-library.svg │ │ │ │ ├── file-search.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── focus-legacy-systray.svg │ │ │ │ ├── focus-top-bar.svg │ │ │ │ ├── focus-windows.svg │ │ │ │ ├── font-color.svg │ │ │ │ ├── font-select.svg │ │ │ │ ├── font-size.svg │ │ │ │ ├── format-indent-less-rtl.svg │ │ │ │ ├── format-indent-less-symbolic-rtl.svg │ │ │ │ ├── format-indent-less.svg │ │ │ │ ├── format-indent-more-rtl.svg │ │ │ │ ├── format-indent-more-symbolic-rtl.svg │ │ │ │ ├── format-indent-more.svg │ │ │ │ ├── format-justify-center.svg │ │ │ │ ├── format-justify-fill.svg │ │ │ │ ├── format-justify-left.svg │ │ │ │ ├── format-justify-right.svg │ │ │ │ ├── format-ordered-list-symbolic-rtl.svg │ │ │ │ ├── format-ordered-list.svg │ │ │ │ ├── format-text-bold-es.svg │ │ │ │ ├── format-text-bold-fr.svg │ │ │ │ ├── format-text-bold.svg │ │ │ │ ├── format-text-clear-formatting.svg │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ ├── format-text-direction-symbolic-rtl.svg │ │ │ │ ├── format-text-direction.svg │ │ │ │ ├── format-text-italic-es.svg │ │ │ │ ├── format-text-italic.svg │ │ │ │ ├── format-text-larger.svg │ │ │ │ ├── format-text-remove-formatting.svg │ │ │ │ ├── format-text-remove.svg │ │ │ │ ├── format-text-smaller.svg │ │ │ │ ├── format-text-strikethrough-fr.svg │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ ├── format-text-underline-fr.svg │ │ │ │ ├── format-text-underline.svg │ │ │ │ ├── format-toolbar-toggle.svg │ │ │ │ ├── format-unordered-list-symbolic-rtl.svg │ │ │ │ ├── format-unordered-list.svg │ │ │ │ ├── forward-rtl.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── go-bottom.svg │ │ │ │ ├── go-down.svg │ │ │ │ ├── go-first-rtl.svg │ │ │ │ ├── go-first-symbolic-rtl.svg │ │ │ │ ├── go-first.svg │ │ │ │ ├── go-home.svg │ │ │ │ ├── go-jump-rtl.svg │ │ │ │ ├── go-jump-symbolic-rtl.svg │ │ │ │ ├── go-jump.svg │ │ │ │ ├── go-last-rtl.svg │ │ │ │ ├── go-last-symbolic-rtl.svg │ │ │ │ ├── go-last.svg │ │ │ │ ├── go-next-rtl.svg │ │ │ │ ├── go-next-symbolic-rtl.svg │ │ │ │ ├── go-next.svg │ │ │ │ ├── go-previous-context.svg │ │ │ │ ├── go-previous-rtl.svg │ │ │ │ ├── go-previous-symbolic-rtl.svg │ │ │ │ ├── go-previous.svg │ │ │ │ ├── go-top.svg │ │ │ │ ├── go-up.svg │ │ │ │ ├── gtk-about.svg │ │ │ │ ├── help-about.svg │ │ │ │ ├── help-contents.svg │ │ │ │ ├── help-info.svg │ │ │ │ ├── histogram.svg │ │ │ │ ├── image-crop.svg │ │ │ │ ├── image-denoise.svg │ │ │ │ ├── image-filter.svg │ │ │ │ ├── image-flip-horizontal.svg │ │ │ │ ├── image-flip-vertical.svg │ │ │ │ ├── image-invert.svg │ │ │ │ ├── image-navigator.svg │ │ │ │ ├── image-red-eye.svg │ │ │ │ ├── image-resize.svg │ │ │ │ ├── image-rotate-left.svg │ │ │ │ ├── image-rotate-right.svg │ │ │ │ ├── image-rotate.svg │ │ │ │ ├── image-sharpen.svg │ │ │ │ ├── image-straighten.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── insert-emoticon.svg │ │ │ │ ├── insert-image.svg │ │ │ │ ├── insert-link.svg │ │ │ │ ├── insert-object.svg │ │ │ │ ├── insert-text.svg │ │ │ │ ├── keyboard-caps-lock-filled.svg │ │ │ │ ├── keyboard-enter.svg │ │ │ │ ├── keyboard-hide.svg │ │ │ │ ├── keyboard-layout-filled.svg │ │ │ │ ├── keyboard-shift-filled.svg │ │ │ │ ├── link.svg │ │ │ │ ├── list-add.svg │ │ │ │ ├── list-edit.svg │ │ │ │ ├── list-remove-all.svg │ │ │ │ ├── list-remove.svg │ │ │ │ ├── location.svg │ │ │ │ ├── mail-archive.svg │ │ │ │ ├── mail-attachment.svg │ │ │ │ ├── mail-drafts-symbolic-rtl.svg │ │ │ │ ├── mail-drafts.svg │ │ │ │ ├── mail-flag.svg │ │ │ │ ├── mail-forward-rtl.svg │ │ │ │ ├── mail-forward-symbolic-rtl.svg │ │ │ │ ├── mail-forward.svg │ │ │ │ ├── mail-inbox.svg │ │ │ │ ├── mail-mark-important.svg │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ ├── mail-mark-read.svg │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ ├── mail-message-new.svg │ │ │ │ ├── mail-move.svg │ │ │ │ ├── mail-outbox.svg │ │ │ │ ├── mail-reply-all-symbolic-rtl.svg │ │ │ │ ├── mail-reply-all.svg │ │ │ │ ├── mail-reply-rtl.svg │ │ │ │ ├── mail-reply-sender-rtl.svg │ │ │ │ ├── mail-reply-sender-symbolic-rtl.svg │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ ├── mail-reply.svg │ │ │ │ ├── mail-send-receive.svg │ │ │ │ ├── mail-send-symbolic-rtl.svg │ │ │ │ ├── mail-send.svg │ │ │ │ ├── mail-sent-symbolic-rtl.svg │ │ │ │ ├── mail-sent.svg │ │ │ │ ├── mail-spam.svg │ │ │ │ ├── map.svg │ │ │ │ ├── mark-location.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── media-eject.svg │ │ │ │ ├── media-eq.svg │ │ │ │ ├── media-mount.svg │ │ │ │ ├── media-playback-pause.svg │ │ │ │ ├── media-playback-play-pause.svg │ │ │ │ ├── media-playback-start-rtl.svg │ │ │ │ ├── media-playback-start-symbolic-rtl.svg │ │ │ │ ├── media-playback-start.svg │ │ │ │ ├── media-playback-stop.svg │ │ │ │ ├── media-playlist-no-repeat.svg │ │ │ │ ├── media-playlist-repeat-once.svg │ │ │ │ ├── media-playlist-repeat-one.svg │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ ├── media-record.svg │ │ │ │ ├── media-seek-backward-rtl.svg │ │ │ │ ├── media-seek-backward-symbolic-rtl.svg │ │ │ │ ├── media-seek-backward.svg │ │ │ │ ├── media-seek-forward-rtl.svg │ │ │ │ ├── media-seek-forward-symbolic-rtl.svg │ │ │ │ ├── media-seek-forward.svg │ │ │ │ ├── media-skip-backward-rtl.svg │ │ │ │ ├── media-skip-backward-symbolic-rtl.svg │ │ │ │ ├── media-skip-backward.svg │ │ │ │ ├── media-skip-forward-rtl.svg │ │ │ │ ├── media-skip-forward-symbolic-rtl.svg │ │ │ │ ├── media-skip-forward.svg │ │ │ │ ├── media-view-subtitles.svg │ │ │ │ ├── message-indicator.svg │ │ │ │ ├── mount-archive.svg │ │ │ │ ├── multimedia-equalizer.svg │ │ │ │ ├── nemo-auto-arrange.svg │ │ │ │ ├── nemo-desktop-scale.svg │ │ │ │ ├── nemo-horizontal-layout-wide.svg │ │ │ │ ├── nemo-horizontal-layout.svg │ │ │ │ ├── nemo-vertical-layout-wide.svg │ │ │ │ ├── nemo-vertical-layout.svg │ │ │ │ ├── non-starred.svg │ │ │ │ ├── num-lock-off.svg │ │ │ │ ├── num-lock.svg │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-inverse.svg │ │ │ │ ├── object-merge.svg │ │ │ │ ├── object-move.svg │ │ │ │ ├── object-rotate-left.svg │ │ │ │ ├── object-rotate-right.svg │ │ │ │ ├── object-select.svg │ │ │ │ ├── object-straighten.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── open-menu.svg │ │ │ │ ├── outbox.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pan-down.svg │ │ │ │ ├── pan-end-symbolic-rtl.svg │ │ │ │ ├── pan-end.svg │ │ │ │ ├── pan-start-symbolic-rtl.svg │ │ │ │ ├── pan-start.svg │ │ │ │ ├── pan-up.svg │ │ │ │ ├── pane-hide-symbolic-rtl.svg │ │ │ │ ├── pane-hide.svg │ │ │ │ ├── pane-show-symbolic-rtl.svg │ │ │ │ ├── pane-show.svg │ │ │ │ ├── path-break-apart.svg │ │ │ │ ├── path-combine.svg │ │ │ │ ├── path-difference.svg │ │ │ │ ├── path-division.svg │ │ │ │ ├── path-exclusion.svg │ │ │ │ ├── path-intersection.svg │ │ │ │ ├── path-union.svg │ │ │ │ ├── pointer-double-click.svg │ │ │ │ ├── pointer-drag.svg │ │ │ │ ├── pointer-primary-click.svg │ │ │ │ ├── pointer-secondary-click.svg │ │ │ │ ├── process-stop.svg │ │ │ │ ├── qrscanner.svg │ │ │ │ ├── reply-all-rtl.svg │ │ │ │ ├── reply-all-symbolic-rtl.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply-rtl.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── scan-type-adf.svg │ │ │ │ ├── scan-type-batch.svg │ │ │ │ ├── screen-rotate-auto-off.svg │ │ │ │ ├── screen-rotate-auto-on.svg │ │ │ │ ├── screensaver-switch-users.svg │ │ │ │ ├── screensaver-unlock.svg │ │ │ │ ├── search.svg │ │ │ │ ├── selection-bottom.svg │ │ │ │ ├── selection-end-symbolic-rtl.svg │ │ │ │ ├── selection-end.svg │ │ │ │ ├── selection-lower.svg │ │ │ │ ├── selection-raise.svg │ │ │ │ ├── selection-start-symbolic-rtl.svg │ │ │ │ ├── selection-start.svg │ │ │ │ ├── selection-top.svg │ │ │ │ ├── selection.svg │ │ │ │ ├── semi-starred-symbolic-rtl.svg │ │ │ │ ├── semi-starred.svg │ │ │ │ ├── send-to.svg │ │ │ │ ├── sidebar-hide.svg │ │ │ │ ├── sidebar-places.svg │ │ │ │ ├── sidebar-show.svg │ │ │ │ ├── sidebar-tree.svg │ │ │ │ ├── spam.svg │ │ │ │ ├── special-effects.svg │ │ │ │ ├── star-new.svg │ │ │ │ ├── starred.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── system-hibernate.svg │ │ │ │ ├── system-lock-screen.svg │ │ │ │ ├── system-log-out.svg │ │ │ │ ├── system-reboot.svg │ │ │ │ ├── system-restart.svg │ │ │ │ ├── system-run.svg │ │ │ │ ├── system-search.svg │ │ │ │ ├── system-shutdown.svg │ │ │ │ ├── system-suspend.svg │ │ │ │ ├── system-switch-user.svg │ │ │ │ ├── tab-new.svg │ │ │ │ ├── tag-new.svg │ │ │ │ ├── tag-symbolic-rtl.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── timer.svg │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ ├── tools-timer.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── twitter-dm.svg │ │ │ │ ├── twitter-home.svg │ │ │ │ ├── twitter-mentions.svg │ │ │ │ ├── twitter-profile.svg │ │ │ │ ├── value-decrease.svg │ │ │ │ ├── value-increase.svg │ │ │ │ ├── view-app-grid.svg │ │ │ │ ├── view-bottom-pane.svg │ │ │ │ ├── view-column.svg │ │ │ │ ├── view-compact.svg │ │ │ │ ├── view-conceal.svg │ │ │ │ ├── view-continuous.svg │ │ │ │ ├── view-coverflow.svg │ │ │ │ ├── view-dual.svg │ │ │ │ ├── view-filter-rtl.svg │ │ │ │ ├── view-filter-symbolic-rtl.svg │ │ │ │ ├── view-filter.svg │ │ │ │ ├── view-fullscreen.svg │ │ │ │ ├── view-grid.svg │ │ │ │ ├── view-left-pane-symbolic-rtl.svg │ │ │ │ ├── view-left-pane.svg │ │ │ │ ├── view-list-bullet.svg │ │ │ │ ├── view-list-compact.svg │ │ │ │ ├── view-list-images.svg │ │ │ │ ├── view-list-ordered.svg │ │ │ │ ├── view-list-video.svg │ │ │ │ ├── view-list.svg │ │ │ │ ├── view-mirror.svg │ │ │ │ ├── view-more-horizontal.svg │ │ │ │ ├── view-more.svg │ │ │ │ ├── view-paged.svg │ │ │ │ ├── view-pin.svg │ │ │ │ ├── view-presentation.svg │ │ │ │ ├── view-private.svg │ │ │ │ ├── view-refresh.svg │ │ │ │ ├── view-restore.svg │ │ │ │ ├── view-reveal.svg │ │ │ │ ├── view-right-pane-symbolic-rtl.svg │ │ │ │ ├── view-right-pane.svg │ │ │ │ ├── view-sidebar.svg │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ ├── view-sort-descending.svg │ │ │ │ ├── view-top-pane.svg │ │ │ │ ├── view-zoom-fit-height.svg │ │ │ │ ├── view-zoom-fit-width.svg │ │ │ │ ├── view-zoom-fit.svg │ │ │ │ ├── view-zoom-in.svg │ │ │ │ ├── view-zoom-original.svg │ │ │ │ ├── view-zoom-out.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-keep-above.svg │ │ │ │ ├── window-keep-below.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-new.svg │ │ │ │ ├── window-pin.svg │ │ │ │ ├── window-pop-out.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── window-shade.svg │ │ │ │ ├── window-unpin.svg │ │ │ │ ├── window-unshade.svg │ │ │ │ ├── window.svg │ │ │ │ ├── xapp-annotations-squiggly.svg │ │ │ │ ├── xapp-annotations-text.svg │ │ │ │ ├── xapp-diaporama.svg │ │ │ │ ├── xapp-favorite.svg │ │ │ │ ├── xapp-format-text-highlight.svg │ │ │ │ ├── xapp-go-history-next-symbolic-rtl.svg │ │ │ │ ├── xapp-go-history-next.svg │ │ │ │ ├── xapp-go-history-previous-symbolic-rtl.svg │ │ │ │ ├── xapp-go-history-previous.svg │ │ │ │ ├── xapp-pin.svg │ │ │ │ ├── xapp-search-entire-word.svg │ │ │ │ ├── xapp-search-wrap.svg │ │ │ │ ├── xapp-text-case.svg │ │ │ │ ├── xapp-unfavorite.svg │ │ │ │ ├── xapp-unpin.svg │ │ │ │ ├── xapp-use-regex.svg │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ ├── zoom-in.svg │ │ │ │ ├── zoom-original.svg │ │ │ │ └── zoom-out.svg │ │ │ ├── system-lock-screen.svg │ │ │ ├── system-log-out.svg │ │ │ ├── system-reboot.svg │ │ │ ├── system-restart.svg │ │ │ ├── system-save-session.svg │ │ │ ├── system-shutdown.svg │ │ │ ├── system-suspend-hibernate.svg │ │ │ ├── system-suspend.svg │ │ │ ├── system-switch-user.svg │ │ │ ├── system-users.svg │ │ │ ├── tag.svg │ │ │ ├── taxes-finances.svg │ │ │ ├── tool-pointer.svg │ │ │ ├── tools.svg │ │ │ ├── trim-margins.svg │ │ │ ├── trim-to-selection.svg │ │ │ ├── view-barcode-qr.svg │ │ │ ├── view-calendar-holiday.svg │ │ │ ├── view-filter.svg │ │ │ ├── view-group.svg │ │ │ ├── view-institution.svg │ │ │ ├── view-left-close.svg │ │ │ ├── view-list-details.svg │ │ │ ├── view-list-icons.svg │ │ │ ├── view-list-text.svg │ │ │ ├── view-list-tree.svg │ │ │ ├── view-preview.svg │ │ │ ├── view-refresh.svg │ │ │ ├── view-right-close.svg │ │ │ ├── view-right-new.svg │ │ │ ├── view-sort-ascending-name.svg │ │ │ ├── view-sort-ascending.svg │ │ │ ├── view-sort-descending-name.svg │ │ │ ├── view-sort-descending.svg │ │ │ ├── view-sort.svg │ │ │ ├── window-close.svg │ │ │ ├── zoom-1-to-2.svg │ │ │ ├── zoom-2-to-1.svg │ │ │ ├── zoom-draw.svg │ │ │ ├── zoom-fit-best.svg │ │ │ ├── zoom-fit-height.svg │ │ │ ├── zoom-fit-selection.svg │ │ │ ├── zoom-fit-width.svg │ │ │ ├── zoom-in-large.svg │ │ │ ├── zoom-in.svg │ │ │ ├── zoom-next.svg │ │ │ ├── zoom-original.svg │ │ │ ├── zoom-out-large.svg │ │ │ ├── zoom-out.svg │ │ │ ├── zoom-previous.svg │ │ │ ├── zoom-select-fit.svg │ │ │ ├── zoom-select-x.svg │ │ │ ├── zoom-select-y.svg │ │ │ ├── zoom-select.svg │ │ │ └── zoom.svg │ │ │ ├── apps │ │ │ ├── 0ad.svg │ │ │ ├── 10B4_steam.0.svg │ │ │ ├── 140-game.svg │ │ │ ├── 1CD8_rundll32.0.svg │ │ │ ├── 1E64_notepad.0.svg │ │ │ ├── 1cedt.svg │ │ │ ├── 1cestart.svg │ │ │ ├── 1password.svg │ │ │ ├── 2048-qt.svg │ │ │ ├── 2048.svg │ │ │ ├── 2064-read-only-memories.svg │ │ │ ├── 2402_msiexec.0.svg │ │ │ ├── 2EF4_wordpad.0.svg │ │ │ ├── 2gis.svg │ │ │ ├── 2xsession.svg │ │ │ ├── 3D-Coat.svg │ │ │ ├── 3Depict.svg │ │ │ ├── 3dchess.svg │ │ │ ├── 4137_winhlp32.0.svg │ │ │ ├── 4Pane.svg │ │ │ ├── 4chan.org.svg │ │ │ ├── 4diac-ide.svg │ │ │ ├── 4digits.svg │ │ │ ├── 4kslideshowmaker.svg │ │ │ ├── 4kstogram.svg │ │ │ ├── 4kvideodownloader.svg │ │ │ ├── 4kvideotomp3.svg │ │ │ ├── 4kyoutubetomp3.svg │ │ │ ├── 5961_Defunct_x86.0.svg │ │ │ ├── 6180-the-moon.svg │ │ │ ├── 63EE_sublime_text.0.svg │ │ │ ├── 67EF_addoninstaller.0.svg │ │ │ ├── 7-days-to-die.svg │ │ │ ├── 7596_iexplore.0.svg │ │ │ ├── 7765_winebrowser.0.svg │ │ │ ├── 7BD8_halo.0.svg │ │ │ ├── 7kaa.svg │ │ │ ├── 7z-alt.svg │ │ │ ├── 7z.svg │ │ │ ├── 7zip.svg │ │ │ ├── 8-ball-pool.svg │ │ │ ├── 8bitmmo.svg │ │ │ ├── 8tracks.svg │ │ │ ├── 97C1_wordpad.0.svg │ │ │ ├── 9gag.svg │ │ │ ├── A35F_hh.0.svg │ │ │ ├── AdobeFlash.svg │ │ │ ├── AdobeReader.svg │ │ │ ├── AdobeReader10.svg │ │ │ ├── AdobeReader11.svg │ │ │ ├── AdobeReader12.svg │ │ │ ├── AdobeReader8.svg │ │ │ ├── AdobeReader9.svg │ │ │ ├── AdvancedPhoto.svg │ │ │ ├── Amazon-www.amazon.ca.svg │ │ │ ├── Amazon-www.amazon.cn.svg │ │ │ ├── Amazon-www.amazon.co.uk.svg │ │ │ ├── Amazon-www.amazon.com.svg │ │ │ ├── Amazon-www.amazon.de.svg │ │ │ ├── Amazon-www.amazon.es.svg │ │ │ ├── Amazon-www.amazon.fr.svg │ │ │ ├── Amazon-www.amazon.it.svg │ │ │ ├── AppImage.svg │ │ │ ├── AppImageLauncher.svg │ │ │ ├── Appstore.svg │ │ │ ├── Ardour-Ardour_4.0.0.svg │ │ │ ├── Ardour-Ardour_5.12.0.svg │ │ │ ├── Ardour-Ardour_6.0.0.svg │ │ │ ├── Ardour-icon_256px.svg │ │ │ ├── BTM.svg │ │ │ ├── Basecamp.svg │ │ │ ├── BrokenSword.svg │ │ │ ├── BurpSuiteCommunity.svg │ │ │ ├── BurpSuiteProEnterprise.svg │ │ │ ├── BurpSuiteProfessional.svg │ │ │ ├── CMakeSetup.svg │ │ │ ├── CMakeSetup32.svg │ │ │ ├── DBeaver.svg │ │ │ ├── Dictionary.app.svg │ │ │ ├── DictionaryReader.svg │ │ │ ├── Dropbox.svg │ │ │ ├── EasyTAG_icon.svg │ │ │ ├── Etermutilities-terminal.svg │ │ │ ├── FB4C_iexplore.0.svg │ │ │ ├── FBReader.svg │ │ │ ├── FacebookMessenger-facebook.com.svg │ │ │ ├── GDevelop.svg │ │ │ ├── GitKraken.svg │ │ │ ├── Gmail-mail.google.com.svg │ │ │ ├── Gnome-Camara.svg │ │ │ ├── Gnome-Notes.svg │ │ │ ├── Insight-FileManager.svg │ │ │ ├── J7Z.svg │ │ │ ├── JupyterConsole.svg │ │ │ ├── Last.fm-icon.svg │ │ │ ├── MultiBrowser.svg │ │ │ ├── Musescore.svg │ │ │ ├── MvGather.svg │ │ │ ├── Notion.svg │ │ │ ├── PlayOnLinux.svg │ │ │ ├── Pomodoro.svg │ │ │ ├── QtIcon.svg │ │ │ ├── QtProject-assistant.svg │ │ │ ├── QtProject-designer.svg │ │ │ ├── QtProject-linguist.svg │ │ │ ├── QtProject-qdbusviewer.svg │ │ │ ├── QtProject-qtcreator-qt5.svg │ │ │ ├── QtProject-qtcreator.svg │ │ │ ├── RSS_feeds.svg │ │ │ ├── Ripcord_Icon.svg │ │ │ ├── SUSEgreeter.svg │ │ │ ├── Sci48M.svg │ │ │ ├── TeXworks.svg │ │ │ ├── Twitter-twitter.com.svg │ │ │ ├── a-boy-and-his-blob.svg │ │ │ ├── a-story-about-my-uncle.svg │ │ │ ├── a7xpg.svg │ │ │ ├── aafm.svg │ │ │ ├── aarddict.svg │ │ │ ├── abbaye.svg │ │ │ ├── abe.svg │ │ │ ├── abiword.svg │ │ │ ├── abiword_48.svg │ │ │ ├── about_kde.svg │ │ │ ├── abricotine.svg │ │ │ ├── abrowser.svg │ │ │ ├── abrt-gui.svg │ │ │ ├── abrt.svg │ │ │ ├── accerciser.svg │ │ │ ├── access.svg │ │ │ ├── accessibility-directory.svg │ │ │ ├── accessibility.svg │ │ │ ├── accessibility_section.svg │ │ │ ├── accessories-archiver.svg │ │ │ ├── accessories-calculator.svg │ │ │ ├── accessories-camera.svg │ │ │ ├── accessories-character-map.svg │ │ │ ├── accessories-clock.svg │ │ │ ├── accessories-dictionary.svg │ │ │ ├── accessories-document-viewer.svg │ │ │ ├── accessories-ebook-reader.svg │ │ │ ├── accessories-image-viewer.svg │ │ │ ├── accessories-media-converter.svg │ │ │ ├── accessories-notes.svg │ │ │ ├── accessories-painting.svg │ │ │ ├── accessories-podcast.svg │ │ │ ├── accessories-screenshot.svg │ │ │ ├── accessories-system-cleaner.svg │ │ │ ├── accessories-text-editor.svg │ │ │ ├── accessories-thesaurus.svg │ │ │ ├── accessories_text_editor.svg │ │ │ ├── ace.svg │ │ │ ├── acestream.svg │ │ │ ├── acetoneiso.svg │ │ │ ├── acidrip.svg │ │ │ ├── acreloaded.svg │ │ │ ├── acroread.svg │ │ │ ├── actionaz.svg │ │ │ ├── activity-log-manager.svg │ │ │ ├── activitywatch.svg │ │ │ ├── addressbook.svg │ │ │ ├── adjust-colors.svg │ │ │ ├── administration.svg │ │ │ ├── adobe-flashplayer.svg │ │ │ ├── adobe-reader.svg │ │ │ ├── adobeflashplugin.svg │ │ │ ├── advanced-rest-client.svg │ │ │ ├── adventure-capitalist.svg │ │ │ ├── adventures-of-shuggy.svg │ │ │ ├── aegisub.svg │ │ │ ├── aeskulap.svg │ │ │ ├── agave.svg │ │ │ ├── agenda.svg │ │ │ ├── agentdesktop.svg │ │ │ ├── air.svg │ │ │ ├── aircrack-ng.svg │ │ │ ├── airvpn.svg │ │ │ ├── aisleriot.svg │ │ │ ├── akonadi.svg │ │ │ ├── akonadiconsole.svg │ │ │ ├── akonaditray.svg │ │ │ ├── akregator.svg │ │ │ ├── akregator_empty.svg │ │ │ ├── aks.svg │ │ │ ├── alacarte.svg │ │ │ ├── alacritty-simple.svg │ │ │ ├── alacritty.svg │ │ │ ├── alarm-clock.svg │ │ │ ├── albert.svg │ │ │ ├── albion-online.svg │ │ │ ├── alc.svg │ │ │ ├── alevt.svg │ │ │ ├── alexandra.svg │ │ │ ├── alien-arena.svg │ │ │ ├── alienarena.svg │ │ │ ├── alienblaster.svg │ │ │ ├── allegorithmic-Substance_Alchemist.svg │ │ │ ├── allegorithmic-Substance_B2M.svg │ │ │ ├── allegorithmic-Substance_Designer.svg │ │ │ ├── allegorithmic-Substance_Painter.svg │ │ │ ├── alleyoop.svg │ │ │ ├── almanah.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-ati.svg │ │ │ ├── amd.svg │ │ │ ├── amor.svg │ │ │ ├── amsn.svg │ │ │ ├── amule.svg │ │ │ ├── amulegui.svg │ │ │ ├── anaconda.svg │ │ │ ├── anatine.svg │ │ │ ├── anbox.svg │ │ │ ├── android-file-transfer.svg │ │ │ ├── android-sdk.svg │ │ │ ├── android-studio-beta.svg │ │ │ ├── android-studio.svg │ │ │ ├── androidstudio.svg │ │ │ ├── anjuta.svg │ │ │ ├── anjuta6.svg │ │ │ ├── anjuta_icon.svg │ │ │ ├── ankama-launcher.svg │ │ │ ├── anki.svg │ │ │ ├── another-redis-desktop-manager.svg │ │ │ ├── antimicro.svg │ │ │ ├── anydesk.svg │ │ │ ├── anydo.svg │ │ │ ├── ao-app.svg │ │ │ ├── apachedirectorystudio.svg │ │ │ ├── apk-editor-studio.svg │ │ │ ├── apk-icon-editor.svg │ │ │ ├── apktool.svg │ │ │ ├── app-outlet.svg │ │ │ ├── app.svg │ │ │ ├── apparmor_view_profile.svg │ │ │ ├── appcode.svg │ │ │ ├── apper.svg │ │ │ ├── appgrid.svg │ │ │ ├── appimagekit-1password.svg │ │ │ ├── appimagekit-AppImage.svg │ │ │ ├── appimagekit-azpainter.svg │ │ │ ├── appimagekit-balena-etcher-electron.svg │ │ │ ├── appimagekit-bitwarden.svg │ │ │ ├── appimagekit-brackets-electron.svg │ │ │ ├── appimagekit-caprine.svg │ │ │ ├── appimagekit-colorpicker.svg │ │ │ ├── appimagekit-diffuse.svg │ │ │ ├── appimagekit-emacs.svg │ │ │ ├── appimagekit-ferdi.svg │ │ │ ├── appimagekit-franz.svg │ │ │ ├── appimagekit-github-desktop.svg │ │ │ ├── appimagekit-gravit-designer.svg │ │ │ ├── appimagekit-joplin.svg │ │ │ ├── appimagekit-kitty.svg │ │ │ ├── appimagekit-ksnip.svg │ │ │ ├── appimagekit-leocad.svg │ │ │ ├── appimagekit-mscore-portable.svg │ │ │ ├── appimagekit-org.keepassxc.KeePassXC.svg │ │ │ ├── appimagekit-paymo-widget.svg │ │ │ ├── appimagekit-rambox.svg │ │ │ ├── appimagekit-stacer.svg │ │ │ ├── appimagekit-supertux2.svg │ │ │ ├── appimagekit-synfigstudio.svg │ │ │ ├── appimagekit-teams-for-linux.svg │ │ │ ├── appimagekit-wewechat.svg │ │ │ ├── appimagekit_irix.svg │ │ │ ├── applet_lockkeys.svg │ │ │ ├── applets-screenshooter-symbolic.svg │ │ │ ├── applets-screenshooter.svg │ │ │ ├── application-community.svg │ │ │ ├── application-default-icon.svg │ │ │ ├── application-vidiot.svg │ │ │ ├── application-vnd.iccprofile.svg │ │ │ ├── application-x-chemtool.svg │ │ │ ├── application-x-clementine.svg │ │ │ ├── application-x-pml18.svg │ │ │ ├── application-x-pml18free.svg │ │ │ ├── application-x-prl18.svg │ │ │ ├── application-x-prl18free.svg │ │ │ ├── application-x-tml18.svg │ │ │ ├── application-x-tml18free.svg │ │ │ ├── application-x-yarock.svg │ │ │ ├── applications-accessories.svg │ │ │ ├── applications-all.svg │ │ │ ├── applications-chat.svg │ │ │ ├── applications-development-translation.svg │ │ │ ├── applications-development-web.svg │ │ │ ├── applications-development.svg │ │ │ ├── applications-education-language.svg │ │ │ ├── applications-education-mathematics.svg │ │ │ ├── applications-education.svg │ │ │ ├── applications-engineering.svg │ │ │ ├── applications-featured.svg │ │ │ ├── applications-fonts.svg │ │ │ ├── applications-games.svg │ │ │ ├── applications-graphics.svg │ │ │ ├── applications-haskell.svg │ │ │ ├── applications-interfacedesign.svg │ │ │ ├── applications-internet.svg │ │ │ ├── applications-java.svg │ │ │ ├── applications-languages.svg │ │ │ ├── applications-multimedia.svg │ │ │ ├── applications-office.svg │ │ │ ├── applications-other.svg │ │ │ ├── applications-php.svg │ │ │ ├── applications-python.svg │ │ │ ├── applications-science.svg │ │ │ ├── applications-system-orange.svg │ │ │ ├── applications-system-symbolic.svg │ │ │ ├── applications-system.svg │ │ │ ├── applications-utilities.svg │ │ │ ├── applications-webbrowsers.svg │ │ │ ├── applixware.svg │ │ │ ├── appointment-soon.svg │ │ │ ├── appointment.svg │ │ │ ├── apport-gtk.svg │ │ │ ├── apport-gtk2.svg │ │ │ ├── apport.svg │ │ │ ├── apps.com.wechat.web.svg │ │ │ ├── appset.svg │ │ │ ├── aptana-studio.svg │ │ │ ├── aptana.svg │ │ │ ├── aptdaemon-download.svg │ │ │ ├── aptdaemon-update-cache.svg │ │ │ ├── aptdaemon-upgrade.svg │ │ │ ├── aptdaemon-working.svg │ │ │ ├── aptik-battery-monitor.svg │ │ │ ├── aqemu.svg │ │ │ ├── aranym.svg │ │ │ ├── archipelago.svg │ │ │ ├── archive-manager.svg │ │ │ ├── archivemanager.svg │ │ │ ├── archlinux.svg │ │ │ ├── arcolinux-hello.svg │ │ │ ├── ardour.svg │ │ │ ├── ardour2.svg │ │ │ ├── ardour3.svg │ │ │ ├── ardour4.svg │ │ │ ├── ardour5.svg │ │ │ ├── ardour6.svg │ │ │ ├── arduino-arduinoide.svg │ │ │ ├── arduino-icon-small.svg │ │ │ ├── arduino-ide.svg │ │ │ ├── arduino.svg │ │ │ ├── argouml.svg │ │ │ ├── ario.svg │ │ │ ├── ark-game.svg │ │ │ ├── ark.svg │ │ │ ├── armagetronad.svg │ │ │ ├── arora.svg │ │ │ ├── arronax.svg │ │ │ ├── artemanufrij.imageburner.svg │ │ │ ├── artemanufrij.playmymusic.svg │ │ │ ├── artha.svg │ │ │ ├── artikulate.svg │ │ │ ├── arts.svg │ │ │ ├── artsbuilder.svg │ │ │ ├── artscontrol.svg │ │ │ ├── as-icon.svg │ │ │ ├── as-powered.svg │ │ │ ├── asbru-cm.svg │ │ │ ├── asc-de.svg │ │ │ ├── asciidocfx.svg │ │ │ ├── asounder.svg │ │ │ ├── assaultcube.svg │ │ │ ├── assistant-qt4.svg │ │ │ ├── assistant-qt5.svg │ │ │ ├── assistant.svg │ │ │ ├── assistant5.svg │ │ │ ├── astah_uml.svg │ │ │ ├── astahc.svg │ │ │ ├── asunder.svg │ │ │ ├── at-startup.svg │ │ │ ├── aterm.svg │ │ │ ├── athena.svg │ │ │ ├── atlas.svg │ │ │ ├── atom-beta.svg │ │ │ ├── atom.svg │ │ │ ├── atomic.svg │ │ │ ├── atomix-icon.svg │ │ │ ├── atomix.svg │ │ │ ├── atril.svg │ │ │ ├── atunes.svg │ │ │ ├── au.edu.uq.esys.escript.svg │ │ │ ├── audacious-16.svg │ │ │ ├── audacious-32.svg │ │ │ ├── audacious.svg │ │ │ ├── audacity.svg │ │ │ ├── audacity16.svg │ │ │ ├── audacity32.svg │ │ │ ├── audex.svg │ │ │ ├── audience.svg │ │ │ ├── audio-card.svg │ │ │ ├── audio-player.svg │ │ │ ├── audio-recorder.svg │ │ │ ├── audio-tag-tool.svg │ │ │ ├── audiobook.svg │ │ │ ├── audiobook2.svg │ │ │ ├── audoban.applet.playbar.svg │ │ │ ├── augur.svg │ │ │ ├── aurees.svg │ │ │ ├── auryo.svg │ │ │ ├── authy.svg │ │ │ ├── autokey.svg │ │ │ ├── autopackage-installer.svg │ │ │ ├── autoplus.svg │ │ │ ├── avant-window-navigator.svg │ │ │ ├── avastgui.svg │ │ │ ├── avernote.svg │ │ │ ├── avidemux.svg │ │ │ ├── avidemux_icon.svg │ │ │ ├── avimetaedit.svg │ │ │ ├── avocode.svg │ │ │ ├── avogadro-icon.svg │ │ │ ├── awf.svg │ │ │ ├── awgg.svg │ │ │ ├── awn-applet.svg │ │ │ ├── awn-manager.svg │ │ │ ├── awn-plugins.svg │ │ │ ├── awn-settings.svg │ │ │ ├── ax-applet.svg │ │ │ ├── azardi.svg │ │ │ ├── azpainter.svg │ │ │ ├── baba-is-you.svg │ │ │ ├── babe.svg │ │ │ ├── backdoor-factory.svg │ │ │ ├── background.svg │ │ │ ├── backlite.svg │ │ │ ├── badge-small.svg │ │ │ ├── badge.svg │ │ │ ├── badland.svg │ │ │ ├── baidunetdisk.svg │ │ │ ├── baiji-manga-viewer.svg │ │ │ ├── balena-etcher-electron.svg │ │ │ ├── baloo.svg │ │ │ ├── bandcamp.svg │ │ │ ├── banji.svg │ │ │ ├── banshee.svg │ │ │ ├── baobab.svg │ │ │ ├── bareftp.svg │ │ │ ├── barrier.svg │ │ │ ├── bash.svg │ │ │ ├── basket.svg │ │ │ ├── battery.svg │ │ │ ├── bauh.svg │ │ │ ├── beagled.svg │ │ │ ├── beatbox.svg │ │ │ ├── beekeeper-studio.svg │ │ │ ├── bell.svg │ │ │ ├── beryl-settings.svg │ │ │ ├── bijiben.svg │ │ │ ├── birdie.svg │ │ │ ├── bitcoin128.svg │ │ │ ├── bittorrent-sync.svg │ │ │ ├── bitwarden.svg │ │ │ ├── bitwig-studio.svg │ │ │ ├── blender.svg │ │ │ ├── bless.svg │ │ │ ├── blivet-gui.svg │ │ │ ├── blocks.svg │ │ │ ├── blueclock.svg │ │ │ ├── blueclock32.svg │ │ │ ├── bluedun.svg │ │ │ ├── bluefish-icon.svg │ │ │ ├── bluej.svg │ │ │ ├── blueman-active.svg │ │ │ ├── blueman-disabled.svg │ │ │ ├── blueman.svg │ │ │ ├── blueradio-48.svg │ │ │ ├── blueradio.svg │ │ │ ├── bluetooth-48.svg │ │ │ ├── bluetooth-active.svg │ │ │ ├── bluetooth-inactive.svg │ │ │ ├── bluetooth-radio.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bluetoothradio.svg │ │ │ ├── bombono-dvd.svg │ │ │ ├── bookmarks-organize.svg │ │ │ ├── bookreader.svg │ │ │ ├── boomaga.svg │ │ │ ├── boot.svg │ │ │ ├── bottles_notepad.svg │ │ │ ├── bottles_wine-uninstaller.svg │ │ │ ├── bottles_wine-winecfg.svg │ │ │ ├── bottles_wine-winefile.svg │ │ │ ├── bottles_wine-winetricks.svg │ │ │ ├── bottles_wine.svg │ │ │ ├── bottles_winetricks.svg │ │ │ ├── boxes.svg │ │ │ ├── brackets-electron.svg │ │ │ ├── brackets.svg │ │ │ ├── braindump.svg │ │ │ ├── brasero.svg │ │ │ ├── brave-beta.svg │ │ │ ├── brave-browser-beta.svg │ │ │ ├── brave-browser.svg │ │ │ ├── brave-dev.svg │ │ │ ├── brave-nightly.svg │ │ │ ├── brave.svg │ │ │ ├── breeze-settings.svg │ │ │ ├── brightside.svg │ │ │ ├── browser-help.svg │ │ │ ├── browser-tor.svg │ │ │ ├── browser.svg │ │ │ ├── bt-logo.svg │ │ │ ├── btsync-gui-gtk.svg │ │ │ ├── btsync-gui.svg │ │ │ ├── btsync-user.svg │ │ │ ├── budgiewprviews.svg │ │ │ ├── bug-buddy.svg │ │ │ ├── bug.svg │ │ │ ├── builder.svg │ │ │ ├── bulky.svg │ │ │ ├── bum.svg │ │ │ ├── bumblebee.svg │ │ │ ├── burner.svg │ │ │ ├── burp.svg │ │ │ ├── byzanz.svg │ │ │ ├── ca.desrt.dconf-editor.svg │ │ │ ├── ca.littlesvr.asunder.svg │ │ │ ├── cacao-oj6.svg │ │ │ ├── cacao-oj7.svg │ │ │ ├── cacao-oj8.svg │ │ │ ├── cacao-oj9.svg │ │ │ ├── cacher.svg │ │ │ ├── cadence.svg │ │ │ ├── caffeine.svg │ │ │ ├── cairo-clock.svg │ │ │ ├── cairo-dock-c.svg │ │ │ ├── cairo-dock-o.svg │ │ │ ├── cairo-dock.svg │ │ │ ├── caja-actions.svg │ │ │ ├── caja-dropbox.svg │ │ │ ├── calamares.svg │ │ │ ├── calc.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-blue-31.svg │ │ │ ├── calendar-purple-31.svg │ │ │ ├── calendar-red-31.svg │ │ │ ├── calendar.svg │ │ │ ├── calibre-ebook-edit.svg │ │ │ ├── calibre-gui.svg │ │ │ ├── calibre-viewer.svg │ │ │ ├── calibre.svg │ │ │ ├── california.svg │ │ │ ├── calligraauthor.svg │ │ │ ├── calligradevtools.svg │ │ │ ├── calligragemini.svg │ │ │ ├── calligrakarbon.svg │ │ │ ├── calligrakrita.svg │ │ │ ├── calligrakrita2.svg │ │ │ ├── calligrakrita3.svg │ │ │ ├── calligraplan.svg │ │ │ ├── calligraplanner.svg │ │ │ ├── calligraplanwork.svg │ │ │ ├── calligrasheets.svg │ │ │ ├── calligrastage.svg │ │ │ ├── calligrawords.svg │ │ │ ├── camera-app.svg │ │ │ ├── camera-photo.svg │ │ │ ├── camera-web.svg │ │ │ ├── camera.svg │ │ │ ├── camorama.svg │ │ │ ├── cantata.svg │ │ │ ├── caprine.svg │ │ │ ├── carla-control.svg │ │ │ ├── carla.svg │ │ │ ├── catarina.svg │ │ │ ├── catfish.svg │ │ │ ├── catia.svg │ │ │ ├── cc.arduino.arduinoide.svg │ │ │ ├── ccsm.svg │ │ │ ├── celluloid.svg │ │ │ ├── cellwriter.svg │ │ │ ├── cgoban.svg │ │ │ ├── cgoban_32x32.svg │ │ │ ├── chakra-backup.svg │ │ │ ├── checkers.svg │ │ │ ├── checkgmail.svg │ │ │ ├── cheese.svg │ │ │ ├── chemtool.svg │ │ │ ├── cherrytree.svg │ │ │ ├── chess.svg │ │ │ ├── chessx.svg │ │ │ ├── chinese.svg │ │ │ ├── chmsee-16x16.svg │ │ │ ├── chmsee-32x32.svg │ │ │ ├── chmsee-icon.svg │ │ │ ├── chrome-bgkodfmeijboinjdegggmkbkjfiagaan-Default.svg │ │ │ ├── chrome-bllmngcdibgbgjnginpehneeofhbmdjm-Default.svg │ │ │ ├── chrome-blpcfgokakmgnkcojhhkbfbldkacnbeo-Default.svg │ │ │ ├── chrome-bnbaboaihhkjoaolfnfoablhllahjnee-Default.svg │ │ │ ├── chrome-boeajhmfdjldchidhphikilcgdacljfm-Default.svg │ │ │ ├── chrome-bommmmpbplimfmebiadkflfgbgejahgm-Default.svg │ │ │ ├── chrome-calculator.svg │ │ │ ├── chrome-ciniambnphakdoflgeamacamhfllbkmo-Default.svg │ │ │ ├── chrome-clgddkicplcbgjfobecebadodeggpghp-Default.svg │ │ │ ├── chrome-clhhggbfdinjmjhajaheehoeibfljjno-Default.svg │ │ │ ├── chrome-cnkjkdjlofllcpbemipjbcpfnglbgieh-Default.svg │ │ │ ├── chrome-damddgdogmdhjjbgpfpgmkdgdgjhohef-Default.svg │ │ │ ├── chrome-defekohaofmambflfpfoojkmfdpcbgko-Default.svg │ │ │ ├── chrome-eifdbcbnlahelniokpkpdlhaocgjdcje-Default.svg │ │ │ ├── chrome-ejidjjhkpiempkbhmpbfngldlkglhimk-Default.svg │ │ │ ├── chrome-ejjicmeblgpmajnghnpcppodonldlgfn-Default.svg │ │ │ ├── chrome-fahmaaghhglfmonjliepjlchgpgfmobi-Default.svg │ │ │ ├── chrome-fdmmgilgnpjigdojojpjoooidkmcomcm-Default.svg │ │ │ ├── chrome-felcaaldnbdncclmgdcncolpebgiejap-Default.svg │ │ │ ├── chrome-fhbjgbiflinjbdggehcddcbncdddomop-Default.svg │ │ │ ├── chrome-gjmanaihpgjcijokbimnamcdndkffigp-Default.svg │ │ │ ├── chrome-hadgilakbfohcfcgfbioeeehgpkopaga-Default.svg │ │ │ ├── chrome-haiffjcadagjlijoggckpgfnoeiflnem-Default.svg │ │ │ ├── chrome-hdokiejnpimakedhajhdlcegeplioahd-Default.svg │ │ │ ├── chrome-hfhhnacclhffhdffklopdkcgdhifgngh-Default.svg │ │ │ ├── chrome-hnpfjngllnobngcgfapefoaidbinmjnm-Default.svg │ │ │ ├── chrome-https___telegram.org_.svg │ │ │ ├── chrome-iabmpiboiopbgfabjmgeedhcmjenhbla-Default.svg │ │ │ ├── chrome-icdipabjmbhpdkjaihfjoikhjjeneebd-Default.svg │ │ │ ├── chrome-icppfcnhkcmnfdhfhphakoifcfokfdhg-Default.svg │ │ │ ├── chrome-ighkikkfkalojiibipjigpccggljgdff-Default.svg │ │ │ ├── chrome-ioekoebejdcmnlefjiknokhhafglcjdl-Default.svg │ │ │ ├── chrome-jcjbnkncddbeomhaacaeokhfnefibpde-Default.svg │ │ │ ├── chrome-jeogkiiogjbmhklcnbgkdcjoioegiknm-Default.svg │ │ │ ├── chrome-jknmpnbgkaekopldbncmggaejjamkemn-Default.svg │ │ │ ├── chrome-joodangkbfjnajiiifokapkpmhfnpleo-Default.svg │ │ │ ├── chrome-joodangkbfjnajiiifokapkpmhfnpleo.svg │ │ │ ├── chrome-kogcfmeennoidocadkgjhnbancebmlbf-Default.svg │ │ │ ├── chrome-lainlkmlgipednloilifbppmhdocjbda-Default.svg │ │ │ ├── chrome-lneaknkopdijkpnocmklfnjbeapigfbh-Default.svg │ │ │ ├── chrome-mijlebbfndhelmdpmllgcfadlkankhok-Default.svg │ │ │ ├── chrome-mmfbcljfglbokpmkimbfghdkjmjhdgbg-Default.svg │ │ │ ├── chrome-ncliohomlfopnmlfkepkcbnhmeijkhhf-Default.svg │ │ │ ├── chrome-oooiobdokpcfdlahlmcddobejikcmkfo-Default.svg │ │ │ ├── chrome-pdagghjnpkeagmlbilmjmclfhjeaapaa-Default.svg │ │ │ ├── chrome-pfpeapihoiogbcmdmnibeplnikfnhoge-Default.svg │ │ │ ├── chrome-pghodfjepegmciihfhdipmimghiakcjf.svg │ │ │ ├── chrome-pjkljhegncpnkpknbcohdijeoejaedia-Default.svg │ │ │ ├── chrome.svg │ │ │ ├── chromium-browser-privacy.svg │ │ │ ├── chromium-browser.svg │ │ │ ├── chromium-browser2.svg │ │ │ ├── chromium-freeworld.svg │ │ │ ├── chromium.svg │ │ │ ├── cin-multimedia-volume-control.svg │ │ │ ├── cinnamon-panel-launcher.svg │ │ │ ├── cinnamon-power-manager.svg │ │ │ ├── cinnamon-preferences-color.svg │ │ │ ├── cinnamon-preferences-desktop-display.svg │ │ │ ├── cinnamon-preferences-system-time.svg │ │ │ ├── cinnamon-session-properties.svg │ │ │ ├── clamav-gui.svg │ │ │ ├── clamav.svg │ │ │ ├── clamtk.svg │ │ │ ├── classicmenu-indicator-light.svg │ │ │ ├── classicmenu-indicator.svg │ │ │ ├── claudia.svg │ │ │ ├── claws-mail-128x128.svg │ │ │ ├── claws-mail-32x32.svg │ │ │ ├── claws-mail-64x64.svg │ │ │ ├── claws-mail.svg │ │ │ ├── clawsker.svg │ │ │ ├── clementine-player.svg │ │ │ ├── clementine.svg │ │ │ ├── clickup.svg │ │ │ ├── clion.svg │ │ │ ├── clipgrab.svg │ │ │ ├── clipit-trayicon.svg │ │ │ ├── clock.svg │ │ │ ├── clocks.svg │ │ │ ├── cmake-gui.svg │ │ │ ├── cmake.svg │ │ │ ├── code-insiders.svg │ │ │ ├── code-oss.svg │ │ │ ├── code.svg │ │ │ ├── codeblocks.svg │ │ │ ├── color-calibate.svg │ │ │ ├── color-management.svg │ │ │ ├── color-pick.svg │ │ │ ├── color.svg │ │ │ ├── colorgrab.svg │ │ │ ├── colorimeter-colorhug.svg │ │ │ ├── colorize.svg │ │ │ ├── colorman.svg │ │ │ ├── colorpicker.svg │ │ │ ├── colors.svg │ │ │ ├── colorset.svg │ │ │ ├── colour.svg │ │ │ ├── com.abisource.AbiWord.svg │ │ │ ├── com.adobe.Flash-Player-Projector.svg │ │ │ ├── com.adobe.Reader.svg │ │ │ ├── com.alacritty.Alacritty.svg │ │ │ ├── com.anydesk.Anydesk.svg │ │ │ ├── com.axosoft.GitKraken.svg │ │ │ ├── com.bitwarden.Bitwarden.svg │ │ │ ├── com.bitwarden.BitwardenDesktop.svg │ │ │ ├── com.bitwarden.desktop.svg │ │ │ ├── com.bxabi.bumblebee-indicator.svg │ │ │ ├── com.calibre_ebook.calibre.ebook_edit.svg │ │ │ ├── com.calibre_ebook.calibre.ebook_viewer.svg │ │ │ ├── com.calibre_ebook.calibre.lrfviewer.svg │ │ │ ├── com.deepin.Calculator.svg │ │ │ ├── com.deepin.Calendar.svg │ │ │ ├── com.deepin.ImageViewer.svg │ │ │ ├── com.deepin.Movies.svg │ │ │ ├── com.deepin.Music.svg │ │ │ ├── com.deepin.Picker.svg │ │ │ ├── com.deepin.ScreenRecorder.svg │ │ │ ├── com.deepin.Screenshot.svg │ │ │ ├── com.deepin.VoiceRecorder.svg │ │ │ ├── com.discordapp.Discord.svg │ │ │ ├── com.dropbox.Client.svg │ │ │ ├── com.elsevier.MendeleyDesktop.svg │ │ │ ├── com.getferdi.Ferdi.svg │ │ │ ├── com.getmailspring.Mailspring.svg │ │ │ ├── com.getpostman.Postman.svg │ │ │ ├── com.gexperts.Terminix.svg │ │ │ ├── com.gexperts.Tilix.svg │ │ │ ├── com.gigitux.gtkwhats.svg │ │ │ ├── com.github.IsmaelMartinez.teams_for_linux.svg │ │ │ ├── com.github.JannikHv.Gydl.svg │ │ │ ├── com.github.PintaProject.Pinta.svg │ │ │ ├── com.github.aimproxy.dotfonts.svg │ │ │ ├── com.github.akiraux.akira.svg │ │ │ ├── com.github.arshubham.cipher.svg │ │ │ ├── com.github.artemanufrij.hashit.svg │ │ │ ├── com.github.artemanufrij.imageburner.svg │ │ │ ├── com.github.artemanufrij.playmymusic.svg │ │ │ ├── com.github.artemanufrij.playmyvideos.svg │ │ │ ├── com.github.artemanufrij.screencast.svg │ │ │ ├── com.github.artemanufrij.showmypictures.svg │ │ │ ├── com.github.bajoja.indicator-kdeconnect.svg │ │ │ ├── com.github.bartzaalberg.php-tester.svg │ │ │ ├── com.github.bitseater.weather.svg │ │ │ ├── com.github.bleakgrey.tootle.svg │ │ │ ├── com.github.calo001.fondo.svg │ │ │ ├── com.github.christophernugent.locksmith.svg │ │ │ ├── com.github.cryptowyrm.copypastegrab.svg │ │ │ ├── com.github.dahenson.agenda.svg │ │ │ ├── com.github.danrabbit.nimbus.svg │ │ │ ├── com.github.davidmhewitt.clipped.svg │ │ │ ├── com.github.djaler.formatter.svg │ │ │ ├── com.github.donadigo.appeditor.svg │ │ │ ├── com.github.donadigo.eddy.svg │ │ │ ├── com.github.fabiocolacio.marker.svg │ │ │ ├── com.github.georgekap1an.chores.svg │ │ │ ├── com.github.gi_lom.dialect.svg │ │ │ ├── com.github.hannesschulze.optimizer.svg │ │ │ ├── com.github.jeromerobert.pdfarranger.svg │ │ │ ├── com.github.johnfactotum.Foliate.svg │ │ │ ├── com.github.juliagoda.antimicroX.svg │ │ │ ├── com.github.junrrein.PDFSlicer.svg │ │ │ ├── com.github.lainsce.notejot.svg │ │ │ ├── com.github.lainsce.palaura.svg │ │ │ ├── com.github.louis77.tuner.svg │ │ │ ├── com.github.lpereira.hardinfo.svg │ │ │ ├── com.github.maoschanz.drawing.svg │ │ │ ├── com.github.micahflee.torbrowser-launcher.svg │ │ │ ├── com.github.mohelm97.screenrecorder.svg │ │ │ ├── com.github.paolostivanin.OTPClient.svg │ │ │ ├── com.github.parnold-x.sudoku.svg │ │ │ ├── com.github.rapidfingers.translator.svg │ │ │ ├── com.github.ronnydo.colorpicker.svg │ │ │ ├── com.github.rssguard.svg │ │ │ ├── com.github.ryonakano.reco.svg │ │ │ ├── com.github.santileortiz.iconoscope.svg │ │ │ ├── com.github.stsdc.monitor.svg │ │ │ ├── com.github.thezbyg.gpick.svg │ │ │ ├── com.github.timecraft.js-test.svg │ │ │ ├── com.github.timecraft.notifier.svg │ │ │ ├── com.github.unrud.djpdf.svg │ │ │ ├── com.github.wjaguar.mtpaint.svg │ │ │ ├── com.github.wwmm.pulseeffects.svg │ │ │ ├── com.github.zren.tiledmenu.svg │ │ │ ├── com.github.zren.todolist.svg │ │ │ ├── com.gitlab.davem.ClamTk.svg │ │ │ ├── com.giuspen.cherrytree.svg │ │ │ ├── com.gnome.software.svg │ │ │ ├── com.google.AndroidStudio.svg │ │ │ ├── com.google.Chrome.svg │ │ │ ├── com.googleplaymusicdesktopplayer.GPMDP.svg │ │ │ ├── com.hamrick.VueScan.svg │ │ │ ├── com.jetbrains.CLion.svg │ │ │ ├── com.jetbrains.DataGrip.svg │ │ │ ├── com.jetbrains.IntelliJ-IDEA-Community.svg │ │ │ ├── com.jetbrains.IntelliJ-IDEA-Ultimate.svg │ │ │ ├── com.jetbrains.Intellij-Community.svg │ │ │ ├── com.jetbrains.PhpStorm.svg │ │ │ ├── com.jetbrains.PyCharm-Community.svg │ │ │ ├── com.jetbrains.PyCharm-Professional.svg │ │ │ ├── com.jetbrains.PyCharm.svg │ │ │ ├── com.jetbrains.Rider.svg │ │ │ ├── com.jetbrains.RubyMine.svg │ │ │ ├── com.jetbrains.WebStorm.svg │ │ │ ├── com.jgraph.drawio.desktop.svg │ │ │ ├── com.leinardi.gwe.svg │ │ │ ├── com.librehat.yahooweather.svg │ │ │ ├── com.meetfranz.Franz.svg │ │ │ ├── com.microsoft.Teams.svg │ │ │ ├── com.mojang.Minecraft.svg │ │ │ ├── com.netease.CloudMusic.svg │ │ │ ├── com.obsproject.Studio.svg │ │ │ ├── com.onlyoffice.DesktopEditors.svg │ │ │ ├── com.qq.weixin.work.deepin.svg │ │ │ ├── com.skype.Client.svg │ │ │ ├── com.slack.Slack.svg │ │ │ ├── com.spotify.Client.svg │ │ │ ├── com.sublimemerge.App.svg │ │ │ ├── com.sublimetext.SublimeText3.svg │ │ │ ├── com.sublimetext.three.svg │ │ │ ├── com.syntevo.SmartGit.svg │ │ │ ├── com.transmissionbt.Transmission.svg │ │ │ ├── com.ugetdm.uGet.svg │ │ │ ├── com.ulduzsoft.KchmViewer.svg │ │ │ ├── com.uploadedlobster.peek.svg │ │ │ ├── com.valvesoftware.Steam.svg │ │ │ ├── com.viber.Viber.svg │ │ │ ├── com.vinszent.GnomeTwitch.svg │ │ │ ├── com.visualstudio.code-oss.svg │ │ │ ├── com.visualstudio.code.insiders.svg │ │ │ ├── com.visualstudio.code.oss.svg │ │ │ ├── com.visualstudio.code.svg │ │ │ ├── com.vscodium.codium.svg │ │ │ ├── com.wps.Office.etmain.svg │ │ │ ├── com.wps.Office.wppmain.svg │ │ │ ├── com.wps.Office.wpsmain.svg │ │ │ ├── com.wps.Office2019.etmain.svg │ │ │ ├── com.wps.Office2019.wppmain.svg │ │ │ ├── com.wps.Office2019.wpsmain.svg │ │ │ ├── com.yubico.yubioath.svg │ │ │ ├── compton.svg │ │ │ ├── computer-log-out.svg │ │ │ ├── computerjanitor.svg │ │ │ ├── comsol.svg │ │ │ ├── confclerk.svg │ │ │ ├── config-date.svg │ │ │ ├── config-language.svg │ │ │ ├── config-users.svg │ │ │ ├── configuration_section.svg │ │ │ ├── configurator.svg │ │ │ ├── configure-debian.svg │ │ │ ├── conky-manager.svg │ │ │ ├── conky-manager2.svg │ │ │ ├── conky.svg │ │ │ ├── connectagram.svg │ │ │ ├── contact-editor.svg │ │ │ ├── contact.svg │ │ │ ├── contacts.svg │ │ │ ├── control-center2.svg │ │ │ ├── converseen.svg │ │ │ ├── cookie.svg │ │ │ ├── cozy.svg │ │ │ ├── cpu-x.svg │ │ │ ├── cpuinfo.svg │ │ │ ├── cqcb.plasma.webslice.svg │ │ │ ├── credentials-preferences.svg │ │ │ ├── crossover.svg │ │ │ ├── crow-translate.svg │ │ │ ├── cryfs-gui.svg │ │ │ ├── cryptfolder-indicator.svg │ │ │ ├── cryptkeeper.svg │ │ │ ├── crystal-picnic.svg │ │ │ ├── crystal.svg │ │ │ ├── cs-applets.svg │ │ │ ├── cs-backgrounds.svg │ │ │ ├── cs-bluetooth.svg │ │ │ ├── cs-cat-admin.svg │ │ │ ├── cs-cat-appearance.svg │ │ │ ├── cs-cat-hardware.svg │ │ │ ├── cs-cat-prefs.svg │ │ │ ├── cs-cat-themes.svg │ │ │ ├── cs-color.svg │ │ │ ├── cs-date-time.svg │ │ │ ├── cs-default-applications.svg │ │ │ ├── cs-desklets.svg │ │ │ ├── cs-desktop-effects.svg │ │ │ ├── cs-desktop.svg │ │ │ ├── cs-details.svg │ │ │ ├── cs-display.svg │ │ │ ├── cs-drivers.svg │ │ │ ├── cs-extensions.svg │ │ │ ├── cs-firewall.svg │ │ │ ├── cs-fonts.svg │ │ │ ├── cs-general.svg │ │ │ ├── cs-input-method.svg │ │ │ ├── cs-keyboard.svg │ │ │ ├── cs-language.svg │ │ │ ├── cs-login.svg │ │ │ ├── cs-mouse.svg │ │ │ ├── cs-network.svg │ │ │ ├── cs-notifications.svg │ │ │ ├── cs-online-accounts.svg │ │ │ ├── cs-overview.svg │ │ │ ├── cs-panel.svg │ │ │ ├── cs-power.svg │ │ │ ├── cs-printer.svg │ │ │ ├── cs-privacy.svg │ │ │ ├── cs-region.svg │ │ │ ├── cs-screen.svg │ │ │ ├── cs-screensaver.svg │ │ │ ├── cs-session-properties.svg │ │ │ ├── cs-software-properties.svg │ │ │ ├── cs-sound.svg │ │ │ ├── cs-sources.svg │ │ │ ├── cs-startup-programs.svg │ │ │ ├── cs-tablet.svg │ │ │ ├── cs-themes.svg │ │ │ ├── cs-tiling.svg │ │ │ ├── cs-universal-access.svg │ │ │ ├── cs-user.svg │ │ │ ├── cs-windows.svg │ │ │ ├── cs-workspaces.svg │ │ │ ├── csd-a11y-keyboard.svg │ │ │ ├── csd-a11y-settings.svg │ │ │ ├── csd-automount.svg │ │ │ ├── csd-background.svg │ │ │ ├── csd-color.svg │ │ │ ├── csd-cursor.svg │ │ │ ├── csd-datetime.svg │ │ │ ├── csd-housekeeping.svg │ │ │ ├── csd-keyboard.svg │ │ │ ├── csd-media-keys.svg │ │ │ ├── csd-mouse.svg │ │ │ ├── csd-power.svg │ │ │ ├── csd-print-notifications.svg │ │ │ ├── csd-printer.svg │ │ │ ├── csd-screensaver-proxy.svg │ │ │ ├── csd-sound.svg │ │ │ ├── csd-wacom.svg │ │ │ ├── csd-xrandr.svg │ │ │ ├── csd-xsettings.svg │ │ │ ├── cuckoo.svg │ │ │ ├── cumulus.svg │ │ │ ├── cups-launcher.svg │ │ │ ├── cups.svg │ │ │ ├── cupsprinter.svg │ │ │ ├── customdesktopmenu.svg │ │ │ ├── cutemarked.svg │ │ │ ├── cuttlefish.svg │ │ │ ├── cx.ring.Ring.svg │ │ │ ├── cx.ring.ring-kde.svg │ │ │ ├── d3lphin.svg │ │ │ ├── darktable.svg │ │ │ ├── datagrip.svg │ │ │ ├── date.svg │ │ │ ├── dates.svg │ │ │ ├── dayfolder.svg │ │ │ ├── dbeaver-ce.svg │ │ │ ├── dbeaver-ee.svg │ │ │ ├── dconf-editor.svg │ │ │ ├── ddcopy.svg │ │ │ ├── dde-calendar.svg │ │ │ ├── dde-file-manager.svg │ │ │ ├── dde-introduction.svg │ │ │ ├── ddm.svg │ │ │ ├── ddrescue-gui.svg │ │ │ ├── de.haeckerfelix.Fragments.svg │ │ │ ├── de.openstreetmap.josm.svg │ │ │ ├── debian-installer-launcher.svg │ │ │ ├── debian-logo.svg │ │ │ ├── debian-plymouth-manager.svg │ │ │ ├── debian-reference.svg │ │ │ ├── debian-swirl.svg │ │ │ ├── debian.svg │ │ │ ├── deepin-appstore.svg │ │ │ ├── deepin-boot-maker.svg │ │ │ ├── deepin-calculator.svg │ │ │ ├── deepin-calendar.svg │ │ │ ├── deepin-clone.svg │ │ │ ├── deepin-cloud-configuration.svg │ │ │ ├── deepin-cloud-print-configurator.svg │ │ │ ├── deepin-cloud-scan-config-helper.svg │ │ │ ├── deepin-cloudprint-config-helper.svg │ │ │ ├── deepin-deb-installer.svg │ │ │ ├── deepin-draw.svg │ │ │ ├── deepin-editor.svg │ │ │ ├── deepin-emacs.svg │ │ │ ├── deepin-feedback.svg │ │ │ ├── deepin-font-installer.svg │ │ │ ├── deepin-game-center.svg │ │ │ ├── deepin-graphics-driver-manager.svg │ │ │ ├── deepin-image-viewer.svg │ │ │ ├── deepin-installer-oem.svg │ │ │ ├── deepin-installer.svg │ │ │ ├── deepin-manual.svg │ │ │ ├── deepin-media-player.svg │ │ │ ├── deepin-movie.svg │ │ │ ├── deepin-multitasking-view.svg │ │ │ ├── deepin-music-player.svg │ │ │ ├── deepin-music.svg │ │ │ ├── deepin-note.svg │ │ │ ├── deepin-picker.svg │ │ │ ├── deepin-remote-assistance.svg │ │ │ ├── deepin-repair-tools.svg │ │ │ ├── deepin-repair.svg │ │ │ ├── deepin-scanner.svg │ │ │ ├── deepin-screen-recorder.svg │ │ │ ├── deepin-screenrecorder.svg │ │ │ ├── deepin-screenshot.svg │ │ │ ├── deepin-show-desktop.svg │ │ │ ├── deepin-software-center.svg │ │ │ ├── deepin-system-monitor.svg │ │ │ ├── deepin-terminal.svg │ │ │ ├── deepin-toggle-desktop.svg │ │ │ ├── deepin-translator.svg │ │ │ ├── deepin-voice-recorder.svg │ │ │ ├── deepin.com.qq.im.svg │ │ │ ├── deepin.com.qq.office.svg │ │ │ ├── deepin.com.wechat.svg │ │ │ ├── deezer.svg │ │ │ ├── default-application.svg │ │ │ ├── deja-dup.svg │ │ │ ├── deluge-torrent.svg │ │ │ ├── deluge.svg │ │ │ ├── designer-qt4.svg │ │ │ ├── designer-qt5.svg │ │ │ ├── designer.svg │ │ │ ├── designer5.svg │ │ │ ├── deskbar-applet.svg │ │ │ ├── deskbar.svg │ │ │ ├── desktop-effect.svg │ │ │ ├── desktop-effects.svg │ │ │ ├── desktop-environment-gnome.svg │ │ │ ├── desktop-environment-kde.svg │ │ │ ├── desktop-environment-lxde.svg │ │ │ ├── desktop-environment-mate.svg │ │ │ ├── desktop-environment-xfce.svg │ │ │ ├── desktop.svg │ │ │ ├── devede.svg │ │ │ ├── devedeng.svg │ │ │ ├── devhelp.svg │ │ │ ├── device-notifier.svg │ │ │ ├── dia.svg │ │ │ ├── dialog-info.svg │ │ │ ├── dialog-information.svg │ │ │ ├── dialog-password.svg │ │ │ ├── dianara.svg │ │ │ ├── dict.svg │ │ │ ├── dictionary.svg │ │ │ ├── digikam.svg │ │ │ ├── dillo.svg │ │ │ ├── dingtalk.svg │ │ │ ├── diodon.svg │ │ │ ├── discord-ptb.svg │ │ │ ├── discord.svg │ │ │ ├── disk-burner.svg │ │ │ ├── disk-check.svg │ │ │ ├── disk-usage-analyzer.svg │ │ │ ├── diskmonitor.svg │ │ │ ├── disks.svg │ │ │ ├── disper.svg │ │ │ ├── display-capplet.svg │ │ │ ├── display-im6.q16.svg │ │ │ ├── display.im6.svg │ │ │ ├── display.svg │ │ │ ├── distributor-logo-antergos.svg │ │ │ ├── distributor-logo-archlinux.svg │ │ │ ├── distributor-logo-blackarch.svg │ │ │ ├── distributor-logo-budgie-remix.svg │ │ │ ├── distributor-logo-budgie.svg │ │ │ ├── distributor-logo-centos.svg │ │ │ ├── distributor-logo-chakra.svg │ │ │ ├── distributor-logo-debian.svg │ │ │ ├── distributor-logo-deepin.svg │ │ │ ├── distributor-logo-devuan.svg │ │ │ ├── distributor-logo-elementary.svg │ │ │ ├── distributor-logo-fedora.svg │ │ │ ├── distributor-logo-gentoo.svg │ │ │ ├── distributor-logo-kali.svg │ │ │ ├── distributor-logo-korora.svg │ │ │ ├── distributor-logo-kubuntu.svg │ │ │ ├── distributor-logo-lfs.svg │ │ │ ├── distributor-logo-linux-mint.svg │ │ │ ├── distributor-logo-lubuntu.svg │ │ │ ├── distributor-logo-mageia.svg │ │ │ ├── distributor-logo-manjaro.svg │ │ │ ├── distributor-logo-mint.svg │ │ │ ├── distributor-logo-mx.svg │ │ │ ├── distributor-logo-opensuse.svg │ │ │ ├── distributor-logo-parrot.svg │ │ │ ├── distributor-logo-raspbian.svg │ │ │ ├── distributor-logo-rhel.svg │ │ │ ├── distributor-logo-siduction.svg │ │ │ ├── distributor-logo-slackware.svg │ │ │ ├── distributor-logo-solus.svg │ │ │ ├── distributor-logo-ubuntu-budgie.svg │ │ │ ├── distributor-logo-ubuntu-gnome.svg │ │ │ ├── distributor-logo-ubuntu-mate.svg │ │ │ ├── distributor-logo-ubuntu-studio.svg │ │ │ ├── distributor-logo-ubuntu.svg │ │ │ ├── distributor-logo-void.svg │ │ │ ├── distributor-logo-xubuntu.svg │ │ │ ├── distributor-logo.svg │ │ │ ├── dnfdragora.svg │ │ │ ├── docear.svg │ │ │ ├── dockbarx.svg │ │ │ ├── documentation.svg │ │ │ ├── dont-starve-together.svg │ │ │ ├── dont-starve.svg │ │ │ ├── dosbox-staging.svg │ │ │ ├── dosbox.svg │ │ │ ├── dota.svg │ │ │ ├── dragonplayer.svg │ │ │ ├── drakconf.svg │ │ │ ├── drakmenustyle.svg │ │ │ ├── draksec-mdk.svg │ │ │ ├── drakstats.svg │ │ │ ├── draw-io.svg │ │ │ ├── drawio.svg │ │ │ ├── dreamchess.svg │ │ │ ├── drive-removable-media.svg │ │ │ ├── driver-manager.svg │ │ │ ├── dvd95.svg │ │ │ ├── dvd9548.svg │ │ │ ├── dwww-gnome-touristinfo.svg │ │ │ ├── e-mail.svg │ │ │ ├── easy-tag.svg │ │ │ ├── easytags.svg │ │ │ ├── echomixer.svg │ │ │ ├── eddy.svg │ │ │ ├── edile.svg │ │ │ ├── edit-clear.svg │ │ │ ├── edit-find.svg │ │ │ ├── edit-paste.svg │ │ │ ├── edit-urpm-sources.svg │ │ │ ├── eekboard.svg │ │ │ ├── electron2.svg │ │ │ ├── electron3.svg │ │ │ ├── electron4.svg │ │ │ ├── electron5.svg │ │ │ ├── electron6.svg │ │ │ ├── element-nightly.svg │ │ │ ├── element.svg │ │ │ ├── elementary-photo.svg │ │ │ ├── elisa.svg │ │ │ ├── emacs-24.svg │ │ │ ├── emacs-25.svg │ │ │ ├── emacs-nox.svg │ │ │ ├── emacs-snapshot.svg │ │ │ ├── emacs.svg │ │ │ ├── emacs22.svg │ │ │ ├── emacs23.svg │ │ │ ├── emacs24.svg │ │ │ ├── emacs25.svg │ │ │ ├── email-client.svg │ │ │ ├── email.svg │ │ │ ├── emblem-mail.svg │ │ │ ├── emblem-people.svg │ │ │ ├── emerillon.svg │ │ │ ├── empathy.svg │ │ │ ├── emule.svg │ │ │ ├── engrampa.svg │ │ │ ├── eog.svg │ │ │ ├── eom.svg │ │ │ ├── epdfview.svg │ │ │ ├── ephoto.svg │ │ │ ├── epiphany-bookmarks.svg │ │ │ ├── epiphany-browser.svg │ │ │ ├── epiphany-gecko.svg │ │ │ ├── epiphany-icon.svg │ │ │ ├── epiphany-webkit.svg │ │ │ ├── epiphany.svg │ │ │ ├── epulse.svg │ │ │ ├── equaliser.svg │ │ │ ├── esd.svg │ │ │ ├── etcher.svg │ │ │ ├── etube.svg │ │ │ ├── eu.blumenstingl.martin.keystateplasmoid.svg │ │ │ ├── eu.tiliado.NuvolaAppAmazonCloudPlayer.svg │ │ │ ├── eu.tiliado.NuvolaAppDeezer.svg │ │ │ ├── eu.tiliado.NuvolaAppGooglePlayMusic.svg │ │ │ ├── eu.tiliado.NuvolaAppSpotify.svg │ │ │ ├── eu.tiliado.NuvolaAppYoutube.svg │ │ │ ├── eu.tiliado.NuvolaAppYoutubeMusic.svg │ │ │ ├── evince.svg │ │ │ ├── evolution-calendar.svg │ │ │ ├── evolution-mail.svg │ │ │ ├── evolution-memos.svg │ │ │ ├── evolution-tasks.svg │ │ │ ├── evolution.svg │ │ │ ├── exfalso.svg │ │ │ ├── exmplayer.svg │ │ │ ├── ezame.svg │ │ │ ├── f-spot.svg │ │ │ ├── face-smile.svg │ │ │ ├── facebook-facebook.com.svg │ │ │ ├── facebookresource.svg │ │ │ ├── fcitx-sogoupinyin.svg │ │ │ ├── fcitx.svg │ │ │ ├── fcitx_ubuntukylin.svg │ │ │ ├── featherpad.svg │ │ │ ├── fedora-logo-icon.svg │ │ │ ├── fedora-release-notes.svg │ │ │ ├── fedorausb.svg │ │ │ ├── feedreader.svg │ │ │ ├── ffado.svg │ │ │ ├── fifteenpuzzle.svg │ │ │ ├── figma-linux.svg │ │ │ ├── figma.svg │ │ │ ├── file-manager.svg │ │ │ ├── file-roller.svg │ │ │ ├── file-system-manager.svg │ │ │ ├── filelight.svg │ │ │ ├── filerunner.svg │ │ │ ├── filetypes.svg │ │ │ ├── filled-xterm_32x32.svg │ │ │ ├── filled-xterm_48x48.svg │ │ │ ├── find-location.svg │ │ │ ├── firefox-3.0.svg │ │ │ ├── firefox-3.5.svg │ │ │ ├── firefox-4.0.svg │ │ │ ├── firefox-aurora-icon.svg │ │ │ ├── firefox-aurora.svg │ │ │ ├── firefox-beta-bin.svg │ │ │ ├── firefox-beta.svg │ │ │ ├── firefox-bin.svg │ │ │ ├── firefox-default.svg │ │ │ ├── firefox-developer-edition.svg │ │ │ ├── firefox-developer-icon.svg │ │ │ ├── firefox-developer.svg │ │ │ ├── firefox-esr.svg │ │ │ ├── firefox-gtk3.svg │ │ │ ├── firefox-icon-unbranded.svg │ │ │ ├── firefox-icon.svg │ │ │ ├── firefox-mozilla-build.svg │ │ │ ├── firefox-nightly-icon.svg │ │ │ ├── firefox-nightly.svg │ │ │ ├── firefox-original.svg │ │ │ ├── firefox-trunk.svg │ │ │ ├── firefox.svg │ │ │ ├── firefox3.svg │ │ │ ├── firestarter.svg │ │ │ ├── firewall-applet.svg │ │ │ ├── firewall-config.svg │ │ │ ├── firewall.svg │ │ │ ├── firewalld.svg │ │ │ ├── five-or-more.svg │ │ │ ├── flameshot.svg │ │ │ ├── flash-player-properties.svg │ │ │ ├── flash.svg │ │ │ ├── flashplayer.svg │ │ │ ├── flashplayerproperties.svg │ │ │ ├── flegita.svg │ │ │ ├── flock-browser.svg │ │ │ ├── fluid.svg │ │ │ ├── fma-config-tool.svg │ │ │ ├── focuswriter.svg │ │ │ ├── folder-remote-properties.svg │ │ │ ├── folder-wine.svg │ │ │ ├── folder_doc_q4os_startmenu.svg │ │ │ ├── foliate.svg │ │ │ ├── fondo.svg │ │ │ ├── font-manager.svg │ │ │ ├── font-viewer.svg │ │ │ ├── fonts.svg │ │ │ ├── footnote.svg │ │ │ ├── four-in-a-row.svg │ │ │ ├── foursquare.svg │ │ │ ├── foxit-reader.svg │ │ │ ├── foxitpdf.svg │ │ │ ├── foxitreader.svg │ │ │ ├── fr.free.Homebank.svg │ │ │ ├── fractal.svg │ │ │ ├── fragments.svg │ │ │ ├── freecad-daily.svg │ │ │ ├── freecad.svg │ │ │ ├── freefilesync.svg │ │ │ ├── freeminer.svg │ │ │ ├── freetube.svg │ │ │ ├── freetuxtv.svg │ │ │ ├── fritzing.svg │ │ │ ├── fritzing_icon.svg │ │ │ ├── fusion-icon.svg │ │ │ ├── fwbuilder.svg │ │ │ ├── gaiksaurus.svg │ │ │ ├── galculator.svg │ │ │ ├── galeon.svg │ │ │ ├── gallery-app.svg │ │ │ ├── gallery.svg │ │ │ ├── galternatives.svg │ │ │ ├── gambitchess.svg │ │ │ ├── gcalculator.svg │ │ │ ├── gcbalculator.svg │ │ │ ├── gcleaner.svg │ │ │ ├── gcolor.svg │ │ │ ├── gcolor2.svg │ │ │ ├── gcolor3.svg │ │ │ ├── gcompris-qt.svg │ │ │ ├── gconf-cleaner.svg │ │ │ ├── gconf-editor.svg │ │ │ ├── gconfeditor.svg │ │ │ ├── gcr-gnupg.svg │ │ │ ├── gcr-password.svg │ │ │ ├── gcrystal.svg │ │ │ ├── gda-control-center.svg │ │ │ ├── gddccontrol.svg │ │ │ ├── gdeb.svg │ │ │ ├── gdebi.svg │ │ │ ├── gdevilspie.svg │ │ │ ├── gdiskdump.svg │ │ │ ├── gdm-login-photo.svg │ │ │ ├── gdm-setup.svg │ │ │ ├── gdm-xnest.svg │ │ │ ├── gdm.svg │ │ │ ├── gdm2setup.svg │ │ │ ├── gdmap.svg │ │ │ ├── gdmap_icon.svg │ │ │ ├── gdmflexiserver.svg │ │ │ ├── gdmsetup.svg │ │ │ ├── gdu-check-disk.svg │ │ │ ├── gdu-encrypted-lock.svg │ │ │ ├── geany.svg │ │ │ ├── geary.svg │ │ │ ├── gecrit.svg │ │ │ ├── gedbi.svg │ │ │ ├── gedit-icon.svg │ │ │ ├── gedit-logo.svg │ │ │ ├── gedit.svg │ │ │ ├── gedit1.svg │ │ │ ├── gedit2.svg │ │ │ ├── geeqie.svg │ │ │ ├── gemini.svg │ │ │ ├── geogebra-classic.svg │ │ │ ├── geogebra.svg │ │ │ ├── gfeedline.svg │ │ │ ├── ghetto-skype.svg │ │ │ ├── gimp.svg │ │ │ ├── gis-weather.svg │ │ │ ├── git-cola.svg │ │ │ ├── git-dag.svg │ │ │ ├── git-gui.svg │ │ │ ├── gitg.svg │ │ │ ├── github-desktop.svg │ │ │ ├── github.svg │ │ │ ├── gitk.svg │ │ │ ├── gkdebconf-icon.svg │ │ │ ├── gkdebconf.svg │ │ │ ├── gkrellm.svg │ │ │ ├── gksu-debian.svg │ │ │ ├── gksu.svg │ │ │ ├── glViewImage.svg │ │ │ ├── glade-3.svg │ │ │ ├── glchess.svg │ │ │ ├── glines.svg │ │ │ ├── glipper.svg │ │ │ ├── glippy.svg │ │ │ ├── glxinfo.svg │ │ │ ├── gmail-desktop.svg │ │ │ ├── gmail-notify-icon.svg │ │ │ ├── gmail-plasmoid.svg │ │ │ ├── gmailwatcher.svg │ │ │ ├── gmusicbrowser.svg │ │ │ ├── gnect.svg │ │ │ ├── gnethogs.svg │ │ │ ├── gnibbles.svg │ │ │ ├── gnobots.svg │ │ │ ├── gnobots2.svg │ │ │ ├── gnochm.svg │ │ │ ├── gnoduino.svg │ │ │ ├── gnome-about-logo.svg │ │ │ ├── gnome-abrt.svg │ │ │ ├── gnome-activity-journal.svg │ │ │ ├── gnome-alsamixer-icon.svg │ │ │ ├── gnome-alsamixer.svg │ │ │ ├── gnome-app-install.svg │ │ │ ├── gnome-apt.svg │ │ │ ├── gnome-audio.svg │ │ │ ├── gnome-baker.svg │ │ │ ├── gnome-balsa.svg │ │ │ ├── gnome-balsa2.svg │ │ │ ├── gnome-bluetooth.svg │ │ │ ├── gnome-boxes.svg │ │ │ ├── gnome-calc.svg │ │ │ ├── gnome-calculator.svg │ │ │ ├── gnome-calendar.svg │ │ │ ├── gnome-character-map.svg │ │ │ ├── gnome-characters.svg │ │ │ ├── gnome-clocks.svg │ │ │ ├── gnome-color-chooser.svg │ │ │ ├── gnome-color-manager.svg │ │ │ ├── gnome-contacts.svg │ │ │ ├── gnome-control-center.svg │ │ │ ├── gnome-cups-manager.svg │ │ │ ├── gnome-debian.svg │ │ │ ├── gnome-desktop-config.svg │ │ │ ├── gnome-desktop-item-edit.svg │ │ │ ├── gnome-dev-printer.svg │ │ │ ├── gnome-devel.svg │ │ │ ├── gnome-device-manager.svg │ │ │ ├── gnome-dictionary.svg │ │ │ ├── gnome-disk-utility.svg │ │ │ ├── gnome-disks.svg │ │ │ ├── gnome-display-panel.svg │ │ │ ├── gnome-display-properties.svg │ │ │ ├── gnome-dsiplay-properties.svg │ │ │ ├── gnome-emacs.svg │ │ │ ├── gnome-encfs-manager.svg │ │ │ ├── gnome-eterm.svg │ │ │ ├── gnome-freecell.svg │ │ │ ├── gnome-games.svg │ │ │ ├── gnome-glchess.svg │ │ │ ├── gnome-glines.svg │ │ │ ├── gnome-gmenu.svg │ │ │ ├── gnome-gnect.svg │ │ │ ├── gnome-gnibbles.svg │ │ │ ├── gnome-gnibbless.svg │ │ │ ├── gnome-hearts.svg │ │ │ ├── gnome-help.svg │ │ │ ├── gnome-hideseek.svg │ │ │ ├── gnome-iagno.svg │ │ │ ├── gnome-info.svg │ │ │ ├── gnome-internet.svg │ │ │ ├── gnome-latex.svg │ │ │ ├── gnome-lightsoff.svg │ │ │ ├── gnome-lockscreen.svg │ │ │ ├── gnome-logo-icon-transparent.svg │ │ │ ├── gnome-logo-icon.svg │ │ │ ├── gnome-logout.svg │ │ │ ├── gnome-logs.svg │ │ │ ├── gnome-mahjongg.svg │ │ │ ├── gnome-maps.svg │ │ │ ├── gnome-menu.svg │ │ │ ├── gnome-mime-application-x-deb.svg │ │ │ ├── gnome-mime-text-x-vcalendar.svg │ │ │ ├── gnome-mixer.svg │ │ │ ├── gnome-monitor.svg │ │ │ ├── gnome-mouse-properties.svg │ │ │ ├── gnome-mouse.svg │ │ │ ├── gnome-mplayer-dbg.svg │ │ │ ├── gnome-mplayer.svg │ │ │ ├── gnome-mpv.svg │ │ │ ├── gnome-multi-writer.svg │ │ │ ├── gnome-music.svg │ │ │ ├── gnome-network-properties.svg │ │ │ ├── gnome-note.svg │ │ │ ├── gnome-package.svg │ │ │ ├── gnome-paint.svg │ │ │ ├── gnome-panel-clock.svg │ │ │ ├── gnome-panel-drawer.svg │ │ │ ├── gnome-panel-fish.svg │ │ │ ├── gnome-panel-force-quit.svg │ │ │ ├── gnome-panel-hibernate.svg │ │ │ ├── gnome-panel-launcher.svg │ │ │ ├── gnome-panel-notification-area.svg │ │ │ ├── gnome-panel-screenshoot.svg │ │ │ ├── gnome-panel-screenshot.svg │ │ │ ├── gnome-panel-window-list.svg │ │ │ ├── gnome-panel-window-menu.svg │ │ │ ├── gnome-panel-workspace-switcher.svg │ │ │ ├── gnome-panel.svg │ │ │ ├── gnome-pdf.svg │ │ │ ├── gnome-photos.svg │ │ │ ├── gnome-planner.svg │ │ │ ├── gnome-player.svg │ │ │ ├── gnome-power-manager.svg │ │ │ ├── gnome-power-statistics.svg │ │ │ ├── gnome-quadrapassel.svg │ │ │ ├── gnome-rdp.svg │ │ │ ├── gnome-remote-desktop.svg │ │ │ ├── gnome-run.svg │ │ │ ├── gnome-samegnome.svg │ │ │ ├── gnome-screenruler.svg │ │ │ ├── gnome-screenshot.svg │ │ │ ├── gnome-search-tool.svg │ │ │ ├── gnome-searchtool.svg │ │ │ ├── gnome-session-halt.svg │ │ │ ├── gnome-session-hebirnate.svg │ │ │ ├── gnome-session-hibernate.svg │ │ │ ├── gnome-session-properties.svg │ │ │ ├── gnome-session-suspend.svg │ │ │ ├── gnome-session.svg │ │ │ ├── gnome-set-time.svg │ │ │ ├── gnome-settings-accessibility-keyboard.svg │ │ │ ├── gnome-settings-accessibility-technologies.svg │ │ │ ├── gnome-settings-background.svg │ │ │ ├── gnome-settings-default-applications.svg │ │ │ ├── gnome-settings-font.svg │ │ │ ├── gnome-settings-keybinding.svg │ │ │ ├── gnome-settings-keybindings.svg │ │ │ ├── gnome-settings-mouse.svg │ │ │ ├── gnome-settings-sound.svg │ │ │ ├── gnome-settings-theme.svg │ │ │ ├── gnome-settings-ui-behavior.svg │ │ │ ├── gnome-settings.svg │ │ │ ├── gnome-shell-extension-prefs.svg │ │ │ ├── gnome-shutdown.svg │ │ │ ├── gnome-software.svg │ │ │ ├── gnome-sound-properties.svg │ │ │ ├── gnome-sound-recorder.svg │ │ │ ├── gnome-status.svg │ │ │ ├── gnome-sticky-notes-applet.svg │ │ │ ├── gnome-swell-foop.svg │ │ │ ├── gnome-system-config.svg │ │ │ ├── gnome-system-log.svg │ │ │ ├── gnome-system-monitor.svg │ │ │ ├── gnome-system.svg │ │ │ ├── gnome-term.svg │ │ │ ├── gnome-terminal.svg │ │ │ ├── gnome-tetraves.svg │ │ │ ├── gnome-tracker.svg │ │ │ ├── gnome-translate.svg │ │ │ ├── gnome-tweak-tool.svg │ │ │ ├── gnome-tweaks.svg │ │ │ ├── gnome-unknown.svg │ │ │ ├── gnome-usage.svg │ │ │ ├── gnome-user-share.svg │ │ │ ├── gnome-volume-control.svg │ │ │ ├── gnome-warning.svg │ │ │ ├── gnome-weather.svg │ │ │ ├── gnome-web-browser.svg │ │ │ ├── gnome-web.svg │ │ │ ├── gnome-window-manager.svg │ │ │ ├── gnome-windows.svg │ │ │ ├── gnome-wm.svg │ │ │ ├── gnome-word.svg │ │ │ ├── gnome-xterm.svg │ │ │ ├── gnome_apps.svg │ │ │ ├── gnomebaker.svg │ │ │ ├── gnomine.svg │ │ │ ├── gnote.svg │ │ │ ├── gnotes.svg │ │ │ ├── gnotravex.svg │ │ │ ├── gnucash.svg │ │ │ ├── gnugo.svg │ │ │ ├── gnugo48.svg │ │ │ ├── goa-account-exchange.svg │ │ │ ├── goa-account-facebook.svg │ │ │ ├── goa-account-flickr.svg │ │ │ ├── goa-account-foursquare.svg │ │ │ ├── goa-account-live.svg │ │ │ ├── goa-account-microsoft.svg │ │ │ ├── goa-account-msn.svg │ │ │ ├── goa-account-telegram.svg │ │ │ ├── goa-account-ubuntusso.svg │ │ │ ├── goa-account-yahoo.svg │ │ │ ├── goa-account.svg │ │ │ ├── goa-panel.svg │ │ │ ├── goland.svg │ │ │ ├── goldendict.svg │ │ │ ├── google-calculator.svg │ │ │ ├── google-chrome-dev.svg │ │ │ ├── google-chrome-developer-tool.svg │ │ │ ├── google-chrome.svg │ │ │ ├── google-chrome2.svg │ │ │ ├── google-chromium.svg │ │ │ ├── google-drawings.svg │ │ │ ├── google-earth.svg │ │ │ ├── google-music.svg │ │ │ ├── google-play-music-desktop-player.svg │ │ │ ├── google-reader.svg │ │ │ ├── google.svg │ │ │ ├── googlechrome.svg │ │ │ ├── googlemusicframe.svg │ │ │ ├── gourmet.svg │ │ │ ├── gp.svg │ │ │ ├── gpa.svg │ │ │ ├── gpaint.svg │ │ │ ├── gparted.svg │ │ │ ├── gpaste.svg │ │ │ ├── gpick.svg │ │ │ ├── gpicview.svg │ │ │ ├── gpk-prefs.svg │ │ │ ├── gpk-repo.svg │ │ │ ├── gpk-service-pack.svg │ │ │ ├── gpmdp.svg │ │ │ ├── gprename.svg │ │ │ ├── gpxsee.svg │ │ │ ├── grandr.svg │ │ │ ├── graphics-image-editor.svg │ │ │ ├── graphics-image-viewer.svg │ │ │ ├── graphics-viewer-document.svg │ │ │ ├── gravit-designer.svg │ │ │ ├── greader.svg │ │ │ ├── grip.svg │ │ │ ├── grsync-restore.svg │ │ │ ├── grsync.svg │ │ │ ├── gscan2pdf.svg │ │ │ ├── gscreenshot.svg │ │ │ ├── gsd-xrandr.svg │ │ │ ├── gsearchtool.svg │ │ │ ├── gsmartcontrol.svg │ │ │ ├── gstreamer-properties.svg │ │ │ ├── gtali.svg │ │ │ ├── gtg.svg │ │ │ ├── gthumb.svg │ │ │ ├── gtk-about.svg │ │ │ ├── gtk-dialog-info.svg │ │ │ ├── gtk-help.svg │ │ │ ├── gtk-info.svg │ │ │ ├── gtk-lshw.svg │ │ │ ├── gtk-missing-image.svg │ │ │ ├── gtk-preferences.svg │ │ │ ├── gtk-properties.svg │ │ │ ├── gtk-recordmydesktop.svg │ │ │ ├── gtk-redshift.svg │ │ │ ├── gtk-select-color.svg │ │ │ ├── gtk-theme-config.svg │ │ │ ├── gtk-youtube-viewer.svg │ │ │ ├── gtk3-demo.svg │ │ │ ├── gtk3-icon-browser.svg │ │ │ ├── gtk3-widget-factory.svg │ │ │ ├── gtk4-demo.svg │ │ │ ├── gtk4-widget-factory.svg │ │ │ ├── gtk_info.svg │ │ │ ├── gtkam-camera.svg │ │ │ ├── gtkam.svg │ │ │ ├── gtkconfig.svg │ │ │ ├── gtklp.svg │ │ │ ├── gtklpq.svg │ │ │ ├── gtkterm.svg │ │ │ ├── gtubeclock.svg │ │ │ ├── gtwitter.svg │ │ │ ├── guayadeque.svg │ │ │ ├── gufw.svg │ │ │ ├── gufw_menu.svg │ │ │ ├── guitarix2.svg │ │ │ ├── guvcview.svg │ │ │ ├── gvfsd-archive-file.svg │ │ │ ├── gvim.svg │ │ │ ├── gwenview.svg │ │ │ ├── gworldclock.svg │ │ │ ├── gx_head.svg │ │ │ ├── gxine.svg │ │ │ ├── gydl.svg │ │ │ ├── h2-icon.svg │ │ │ ├── hamsket.svg │ │ │ ├── harddrake.svg │ │ │ ├── harddrake2.svg │ │ │ ├── hardinfo.svg │ │ │ ├── help-about.svg │ │ │ ├── help-browser.svg │ │ │ ├── help-contents.svg │ │ │ ├── help-faq.svg │ │ │ ├── help-info.svg │ │ │ ├── help.svg │ │ │ ├── help_index.svg │ │ │ ├── hi48-app-wireshark.svg │ │ │ ├── hi64-apps-ffado.svg │ │ │ ├── homerun.svg │ │ │ ├── hotwire.svg │ │ │ ├── hourglass.svg │ │ │ ├── hp-toolbox.svg │ │ │ ├── hplip.svg │ │ │ ├── htop.svg │ │ │ ├── hugin.svg │ │ │ ├── hwbrowser.svg │ │ │ ├── hwinfo.svg │ │ │ ├── i-network-printer.svg │ │ │ ├── ibus-engine.svg │ │ │ ├── ibus-keyboard.svg │ │ │ ├── ibus-setup-chewing.svg │ │ │ ├── ibus-setup-hangul.svg │ │ │ ├── ibus-setup.svg │ │ │ ├── icaconfigmgr.svg │ │ │ ├── icaconncenter.svg │ │ │ ├── icamanager.svg │ │ │ ├── icaselfservice.svg │ │ │ ├── icons.svg │ │ │ ├── iconthemes.svg │ │ │ ├── idea-ultimate.svg │ │ │ ├── idle.svg │ │ │ ├── idle3.svg │ │ │ ├── iease-music.svg │ │ │ ├── im-chooser.svg │ │ │ ├── im-msn.svg │ │ │ ├── im.pidgin.Pidgin.svg │ │ │ ├── im.riot.Riot.svg │ │ │ ├── image-viewer.svg │ │ │ ├── imageburner.svg │ │ │ ├── imagemagick.svg │ │ │ ├── imagewriter.svg │ │ │ ├── imagination.svg │ │ │ ├── indicator-applet.svg │ │ │ ├── indicator-keylock.svg │ │ │ ├── indicator-privacy.svg │ │ │ ├── indicator-sensors.svg │ │ │ ├── indicator-sound-switcher.svg │ │ │ ├── indicator-stickynotes.svg │ │ │ ├── indicator-virtual-box.svg │ │ │ ├── indicator-weather.svg │ │ │ ├── info.olasagasti.revelation.svg │ │ │ ├── info.svg │ │ │ ├── inkscape-logo.svg │ │ │ ├── inkscape.svg │ │ │ ├── inkscape.viewer.svg │ │ │ ├── input-joystick.svg │ │ │ ├── input-keyboard.svg │ │ │ ├── input-mouse.svg │ │ │ ├── input_device_settings.svg │ │ │ ├── instantbird.svg │ │ │ ├── intellij-idea-ce.svg │ │ │ ├── intellij-idea-community.svg │ │ │ ├── intellij-idea-ue-bundled-jre.svg │ │ │ ├── intellij-idea-ultimate-edition.svg │ │ │ ├── intellij-idea-ultimate.svg │ │ │ ├── intellij-idea.svg │ │ │ ├── intellij.svg │ │ │ ├── intellij_idea.svg │ │ │ ├── internet-chat.svg │ │ │ ├── internet-feed-reader.svg │ │ │ ├── internet-mail.svg │ │ │ ├── internet-telephony.svg │ │ │ ├── internet-web-browser.svg │ │ │ ├── internet.svg │ │ │ ├── internet_mail.svg │ │ │ ├── io.atom.Atom.svg │ │ │ ├── io.atom.electron.BaseApp.svg │ │ │ ├── io.bit3.WhatsAppQT.svg │ │ │ ├── io.brackets.Brackets.svg │ │ │ ├── io.dbeaver.DBeaverCommunity.svg │ │ │ ├── io.designer.GravitDesigner.svg │ │ │ ├── io.element.Element.svg │ │ │ ├── io.elementary.appcenter.svg │ │ │ ├── io.elementary.calculator.svg │ │ │ ├── io.elementary.calendar.svg │ │ │ ├── io.elementary.camera.svg │ │ │ ├── io.elementary.code.svg │ │ │ ├── io.elementary.files.svg │ │ │ ├── io.elementary.mail.svg │ │ │ ├── io.elementary.music.svg │ │ │ ├── io.elementary.photos-viewer.svg │ │ │ ├── io.elementary.photos.svg │ │ │ ├── io.elementary.screenshot-tool.svg │ │ │ ├── io.elementary.switchboard.svg │ │ │ ├── io.elementary.tasks.svg │ │ │ ├── io.elementary.terminal.svg │ │ │ ├── io.elementary.videos.svg │ │ │ ├── io.elementary.wingpanel.svg │ │ │ ├── io.github.Celluloid.svg │ │ │ ├── io.github.GnomeMpv.svg │ │ │ ├── io.github.Hexchat.svg │ │ │ ├── io.github.Pithos.svg │ │ │ ├── io.github.Qalculate.svg │ │ │ ├── io.github.TransmissionRemoteGtk.svg │ │ │ ├── io.github.antimicrox.antimicrox.svg │ │ │ ├── io.github.celluloid-player.Celluloid.svg │ │ │ ├── io.github.celluloid_player.Celluloid.svg │ │ │ ├── io.github.cloose.CuteMarkEd.svg │ │ │ ├── io.github.jkozera.ZevDocs.svg │ │ │ ├── io.github.qalculate.Qalculate.svg │ │ │ ├── io.github.quodlibet.ExFalso.svg │ │ │ ├── io.github.quodlibet.QuodLibet.svg │ │ │ ├── io.gitlab.jstest_gtk.jstest_gtk.svg │ │ │ ├── io.gitlab.o20.onenote.svg │ │ │ ├── io.gitlab.o20.word.svg │ │ │ ├── io.liri.Calculator.svg │ │ │ ├── io.liri.Text.svg │ │ │ ├── io.mpv.Mpv.svg │ │ │ ├── io.mrarm.mcpelauncher.svg │ │ │ ├── io.neovim.nvim.svg │ │ │ ├── io.photoflare.photoflare.svg │ │ │ ├── iok.svg │ │ │ ├── ipython-notebook.svg │ │ │ ├── ipython.svg │ │ │ ├── ipython3.svg │ │ │ ├── irix.svg │ │ │ ├── iso-image-burn.svg │ │ │ ├── isoimagewriter.svg │ │ │ ├── istanbul.svg │ │ │ ├── jack_mixer.svg │ │ │ ├── java-1.6.0.svg │ │ │ ├── java-1.7.0.svg │ │ │ ├── java-1.8.0-openjdk.svg │ │ │ ├── java-1.8.0.svg │ │ │ ├── java-1.9.0.svg │ │ │ ├── java-10-openjdk.svg │ │ │ ├── java-11-openjdk.svg │ │ │ ├── java-12-openjdk.svg │ │ │ ├── java-13-openjdk.svg │ │ │ ├── java-14-openjdk.svg │ │ │ ├── java.svg │ │ │ ├── java10-openjdk.svg │ │ │ ├── java11-openjdk.svg │ │ │ ├── java12-openjdk.svg │ │ │ ├── java13-openjdk.svg │ │ │ ├── java14-openjdk.svg │ │ │ ├── java8-openjdk.svg │ │ │ ├── java9-openjdk.svg │ │ │ ├── javaws.svg │ │ │ ├── jeex.svg │ │ │ ├── jetbrains-clion.svg │ │ │ ├── jetbrains-datagrip.svg │ │ │ ├── jetbrains-intellij-idea.svg │ │ │ ├── jetbrains-intellij.svg │ │ │ ├── jetbrains-phpstorm.svg │ │ │ ├── jetbrains-pycharm-edu.svg │ │ │ ├── jetbrains-pycharm.svg │ │ │ ├── jetbrains-rider.svg │ │ │ ├── jetbrains-rubymine.svg │ │ │ ├── jetbrains-toolbox.svg │ │ │ ├── jetbrains-webstorm.svg │ │ │ ├── jetbrains.svg │ │ │ ├── jockey-gtk.svg │ │ │ ├── jockey-kde.svg │ │ │ ├── jockey.svg │ │ │ ├── joplin-desktop.svg │ │ │ ├── josm-latest.svg │ │ │ ├── josm.svg │ │ │ ├── jotasync.svg │ │ │ ├── journal.svg │ │ │ ├── jstest-gtk.svg │ │ │ ├── juffed.svg │ │ │ ├── juk.svg │ │ │ ├── jupyter-console.svg │ │ │ ├── jupyter-notebook.svg │ │ │ ├── k9copy.svg │ │ │ ├── kaccess.svg │ │ │ ├── kaddressbook.svg │ │ │ ├── kaffeine.svg │ │ │ ├── kalarm.svg │ │ │ ├── kali-bugs.svg │ │ │ ├── kali-database-assessment-trans.svg │ │ │ ├── kali-docs.svg │ │ │ ├── kali-info-gathering-trans.svg │ │ │ ├── kali-macchanger.svg │ │ │ ├── kali-p0f.svg │ │ │ ├── kali-password-attacks-trans.svg │ │ │ ├── kali-recordmydesktop.svg │ │ │ ├── kali-reporting-tools-trans.svg │ │ │ ├── kali-reverse-engineering-trans.svg │ │ │ ├── kali-social-engineering-trans.svg │ │ │ ├── kali-system-services-trans.svg │ │ │ ├── kali-truecrypt.svg │ │ │ ├── kali-vuln-assessment-trans.svg │ │ │ ├── kali-wireless-attacks-trans.svg │ │ │ ├── kali-wireshark.svg │ │ │ ├── kalu.svg │ │ │ ├── kamerka.svg │ │ │ ├── kamoso.svg │ │ │ ├── kamule.svg │ │ │ ├── kappfinder.svg │ │ │ ├── kate.svg │ │ │ ├── kate2.svg │ │ │ ├── kazam.svg │ │ │ ├── kbabeldict.svg │ │ │ ├── kbackup.svg │ │ │ ├── kblogger.svg │ │ │ ├── kbugbuster.svg │ │ │ ├── kbugster.svg │ │ │ ├── kcalc.svg │ │ │ ├── kcharselect.svg │ │ │ ├── kchart.svg │ │ │ ├── kchmviewer.svg │ │ │ ├── kcmkicker.svg │ │ │ ├── kcmkwm.svg │ │ │ ├── kcmpci.svg │ │ │ ├── kcmprocessor.svg │ │ │ ├── kcmsound.svg │ │ │ ├── kcmx.svg │ │ │ ├── kcnmsound.svg │ │ │ ├── kcolorchooser.svg │ │ │ ├── kconsole.svg │ │ │ ├── kcontrol.svg │ │ │ ├── kde-gtk-config.svg │ │ │ ├── kde-im-log-viewer.svg │ │ │ ├── kde-telepathy.svg │ │ │ ├── kde-windows.svg │ │ │ ├── kde.svg │ │ │ ├── kdeconnect.svg │ │ │ ├── kded5.svg │ │ │ ├── kdepim-dropbox.svg │ │ │ ├── kdf.svg │ │ │ ├── kdiskfree.svg │ │ │ ├── kdmconfig.svg │ │ │ ├── kedit-icon.svg │ │ │ ├── kedit.svg │ │ │ ├── keditbookmarks.svg │ │ │ ├── keepass2.svg │ │ │ ├── keepassx.svg │ │ │ ├── keepassx2.svg │ │ │ ├── kentoo.svg │ │ │ ├── key_bindings.svg │ │ │ ├── keyboard.svg │ │ │ ├── keyring-manager.svg │ │ │ ├── kfilebox.svg │ │ │ ├── kfind.svg │ │ │ ├── kflickr.svg │ │ │ ├── kfm.svg │ │ │ ├── kfontview.svg │ │ │ ├── kfourinline.svg │ │ │ ├── kget.svg │ │ │ ├── kgpg.svg │ │ │ ├── khelpcenter.svg │ │ │ ├── kid3-qt.svg │ │ │ ├── kimtoy.svg │ │ │ ├── kindd.svg │ │ │ ├── kino.svg │ │ │ ├── kjobviewer.svg │ │ │ ├── kjots.svg │ │ │ ├── kjournal.svg │ │ │ ├── kleopatra.svg │ │ │ ├── klettres.svg │ │ │ ├── klipper.svg │ │ │ ├── kmahjongg.svg │ │ │ ├── kmail.svg │ │ │ ├── kmail2.svg │ │ │ ├── kmailcvt.svg │ │ │ ├── kmenu.svg │ │ │ ├── kmenuedit.svg │ │ │ ├── kmines.svg │ │ │ ├── kmix.svg │ │ │ ├── kmousetool.svg │ │ │ ├── kmplayer.svg │ │ │ ├── kmymoney.svg │ │ │ ├── knotes.svg │ │ │ ├── knotify.svg │ │ │ ├── kolourpaint.svg │ │ │ ├── kompare.svg │ │ │ ├── konqueror.svg │ │ │ ├── konsole-linux32.svg │ │ │ ├── konsole.svg │ │ │ ├── konsole_tux.svg │ │ │ ├── konsolekalendar.svg │ │ │ ├── kontact.svg │ │ │ ├── konversation.svg │ │ │ ├── kopete.svg │ │ │ ├── kopete2.svg │ │ │ ├── korg-journal.svg │ │ │ ├── korg-todo.svg │ │ │ ├── korgac.svg │ │ │ ├── korganizer.svg │ │ │ ├── korora-welcome.svg │ │ │ ├── kpackage.svg │ │ │ ├── kpackage48.svg │ │ │ ├── kpager.svg │ │ │ ├── kpatience.svg │ │ │ ├── kpersonalizer.svg │ │ │ ├── kphoto.svg │ │ │ ├── kphotoalbum.svg │ │ │ ├── kpk-desktop-gnome.svg │ │ │ ├── kpk-desktop-xfce.svg │ │ │ ├── kplato.svg │ │ │ ├── kplayer.svg │ │ │ ├── kpresenter.svg │ │ │ ├── krdc.svg │ │ │ ├── krename.svg │ │ │ ├── krfb.svg │ │ │ ├── krita.svg │ │ │ ├── kritagemini.svg │ │ │ ├── kritasketch.svg │ │ │ ├── kronometer.svg │ │ │ ├── krunner.svg │ │ │ ├── krusader.svg │ │ │ ├── krusader_blue.svg │ │ │ ├── krusader_red.svg │ │ │ ├── kscreengenie.svg │ │ │ ├── kscreensaver.svg │ │ │ ├── kscreenshot.svg │ │ │ ├── ksensors.svg │ │ │ ├── ksmiletris.svg │ │ │ ├── ksmserver.svg │ │ │ ├── ksnapshot.svg │ │ │ ├── ksnip.svg │ │ │ ├── ksplash.svg │ │ │ ├── kspread.svg │ │ │ ├── kstars.svg │ │ │ ├── kstars_colors.svg │ │ │ ├── ksudoku.svg │ │ │ ├── ksysguard.svg │ │ │ ├── ksysguardd.svg │ │ │ ├── kterm.svg │ │ │ ├── ktexteditorautobrace.svg │ │ │ ├── kthesaurus.svg │ │ │ ├── ktimer.svg │ │ │ ├── ktip.svg │ │ │ ├── ktouch.svg │ │ │ ├── ktp-contacts.svg │ │ │ ├── kube-mail.svg │ │ │ ├── kubuntu.svg │ │ │ ├── kuickshow.svg │ │ │ ├── kuiviewer.svg │ │ │ ├── kuser.svg │ │ │ ├── kvantum.svg │ │ │ ├── kwalletmanager.svg │ │ │ ├── kwalletmanager2.svg │ │ │ ├── kwikdisk.svg │ │ │ ├── kwin.svg │ │ │ ├── kword.svg │ │ │ ├── kwords.svg │ │ │ ├── kylin-video.svg │ │ │ ├── kynaptic.svg │ │ │ ├── kynpatic.svg │ │ │ ├── l3afpad.svg │ │ │ ├── labplot2.svg │ │ │ ├── lash.svg │ │ │ ├── last-fm.svg │ │ │ ├── lastfm-audioscrobbler.svg │ │ │ ├── lastfm-valut.svg │ │ │ ├── lastfm-www.last.fm.svg │ │ │ ├── lastfm.svg │ │ │ ├── latexila.svg │ │ │ ├── latte-dock.svg │ │ │ ├── launch.svg │ │ │ ├── lazpaint.svg │ │ │ ├── leafpad.svg │ │ │ ├── leftpad.svg │ │ │ ├── library-podcast.svg │ │ │ ├── libreoffice-base.svg │ │ │ ├── libreoffice-calc.svg │ │ │ ├── libreoffice-draw.svg │ │ │ ├── libreoffice-impress.svg │ │ │ ├── libreoffice-main.svg │ │ │ ├── libreoffice-math.svg │ │ │ ├── libreoffice-oasis-web.svg │ │ │ ├── libreoffice-printeradmin.svg │ │ │ ├── libreoffice-start-centre.svg │ │ │ ├── libreoffice-startcenter.svg │ │ │ ├── libreoffice-template.svg │ │ │ ├── libreoffice-writer.svg │ │ │ ├── libreoffice.svg │ │ │ ├── libreoffice3-base.svg │ │ │ ├── libreoffice3-calc.svg │ │ │ ├── libreoffice3-draw.svg │ │ │ ├── libreoffice3-impress.svg │ │ │ ├── libreoffice3-main.svg │ │ │ ├── libreoffice3-math.svg │ │ │ ├── libreoffice3-printeradmin.svg │ │ │ ├── libreoffice3-startcenter.svg │ │ │ ├── libreoffice3-template.svg │ │ │ ├── libreoffice3-writer.svg │ │ │ ├── libreoffice3.svg │ │ │ ├── libreoffice34-base.svg │ │ │ ├── libreoffice34-calc.svg │ │ │ ├── libreoffice34-draw.svg │ │ │ ├── libreoffice34-impress.svg │ │ │ ├── libreoffice34-main.svg │ │ │ ├── libreoffice34-math.svg │ │ │ ├── libreoffice34-printeradmin.svg │ │ │ ├── libreoffice34-startcenter.svg │ │ │ ├── libreoffice34-template.svg │ │ │ ├── libreoffice34-writer.svg │ │ │ ├── libreoffice34.svg │ │ │ ├── libreoffice4.2-base.svg │ │ │ ├── libreoffice4.2-calc.svg │ │ │ ├── libreoffice4.2-draw.svg │ │ │ ├── libreoffice4.2-impress.svg │ │ │ ├── libreoffice4.2-math.svg │ │ │ ├── libreoffice4.2-printeradmin.svg │ │ │ ├── libreoffice4.2-startcenter.svg │ │ │ ├── libreoffice4.2-template.svg │ │ │ ├── libreoffice4.2-writer.svg │ │ │ ├── libreoffice4.svg │ │ │ ├── libreoffice5.0-base.svg │ │ │ ├── libreoffice5.0-calc.svg │ │ │ ├── libreoffice5.0-draw.svg │ │ │ ├── libreoffice5.0-impress.svg │ │ │ ├── libreoffice5.0-main.svg │ │ │ ├── libreoffice5.0-math.svg │ │ │ ├── libreoffice5.0-startcenter.svg │ │ │ ├── libreoffice5.0-writer.svg │ │ │ ├── libreoffice5.0.svg │ │ │ ├── libreoffice5.1-base.svg │ │ │ ├── libreoffice5.1-calc.svg │ │ │ ├── libreoffice5.1-draw.svg │ │ │ ├── libreoffice5.1-impress.svg │ │ │ ├── libreoffice5.1-main.svg │ │ │ ├── libreoffice5.1-math.svg │ │ │ ├── libreoffice5.1-startcenter.svg │ │ │ ├── libreoffice5.1-writer.svg │ │ │ ├── libreoffice5.1.svg │ │ │ ├── libreoffice5.2-base.svg │ │ │ ├── libreoffice5.2-calc.svg │ │ │ ├── libreoffice5.2-draw.svg │ │ │ ├── libreoffice5.2-impress.svg │ │ │ ├── libreoffice5.2-main.svg │ │ │ ├── libreoffice5.2-math.svg │ │ │ ├── libreoffice5.2-startcenter.svg │ │ │ ├── libreoffice5.2-writer.svg │ │ │ ├── libreoffice5.2.svg │ │ │ ├── libreoffice5.3-base.svg │ │ │ ├── libreoffice5.3-calc.svg │ │ │ ├── libreoffice5.3-draw.svg │ │ │ ├── libreoffice5.3-impress.svg │ │ │ ├── libreoffice5.3-main.svg │ │ │ ├── libreoffice5.3-math.svg │ │ │ ├── libreoffice5.3-startcenter.svg │ │ │ ├── libreoffice5.3-writer.svg │ │ │ ├── libreoffice5.3.svg │ │ │ ├── libreoffice5.4-base.svg │ │ │ ├── libreoffice5.4-calc.svg │ │ │ ├── libreoffice5.4-draw.svg │ │ │ ├── libreoffice5.4-impress.svg │ │ │ ├── libreoffice5.4-main.svg │ │ │ ├── libreoffice5.4-math.svg │ │ │ ├── libreoffice5.4-startcenter.svg │ │ │ ├── libreoffice5.4-writer.svg │ │ │ ├── libreoffice5.4.svg │ │ │ ├── libreoffice6.0-base.svg │ │ │ ├── libreoffice6.0-calc.svg │ │ │ ├── libreoffice6.0-draw.svg │ │ │ ├── libreoffice6.0-impress.svg │ │ │ ├── libreoffice6.0-main.svg │ │ │ ├── libreoffice6.0-math.svg │ │ │ ├── libreoffice6.0-startcenter.svg │ │ │ ├── libreoffice6.0-writer.svg │ │ │ ├── libreoffice6.0.svg │ │ │ ├── libreoffice6.2-base.svg │ │ │ ├── libreoffice6.2-calc.svg │ │ │ ├── libreoffice6.2-draw.svg │ │ │ ├── libreoffice6.2-impress.svg │ │ │ ├── libreoffice6.2-main.svg │ │ │ ├── libreoffice6.2-math.svg │ │ │ ├── libreoffice6.2-startcenter.svg │ │ │ ├── libreoffice6.2-writer.svg │ │ │ ├── libreoffice6.3-base.svg │ │ │ ├── libreoffice6.3-calc.svg │ │ │ ├── libreoffice6.3-draw.svg │ │ │ ├── libreoffice6.3-impress.svg │ │ │ ├── libreoffice6.3-main.svg │ │ │ ├── libreoffice6.3-math.svg │ │ │ ├── libreoffice6.3-startcenter.svg │ │ │ ├── libreoffice6.3-writer.svg │ │ │ ├── libreoffice6.4-base.svg │ │ │ ├── libreoffice6.4-calc.svg │ │ │ ├── libreoffice6.4-draw.svg │ │ │ ├── libreoffice6.4-impress.svg │ │ │ ├── libreoffice6.4-math.svg │ │ │ ├── libreoffice6.4-startcenter.svg │ │ │ ├── libreoffice6.4-writer.svg │ │ │ ├── libreoffice7.0-base.svg │ │ │ ├── libreoffice7.0-calc.svg │ │ │ ├── libreoffice7.0-draw.svg │ │ │ ├── libreoffice7.0-impress.svg │ │ │ ├── libreoffice7.0-main.svg │ │ │ ├── libreoffice7.0-math.svg │ │ │ ├── libreoffice7.0-startcenter.svg │ │ │ ├── libreoffice7.0-writer.svg │ │ │ ├── libreofficedev6.0-base.svg │ │ │ ├── libreofficedev6.0-calc.svg │ │ │ ├── libreofficedev6.0-draw.svg │ │ │ ├── libreofficedev6.0-impress.svg │ │ │ ├── libreofficedev6.0-main.svg │ │ │ ├── libreofficedev6.0-math.svg │ │ │ ├── libreofficedev6.0-startcenter.svg │ │ │ ├── libreofficedev6.0-writer.svg │ │ │ ├── libreofficedev6.1-base.svg │ │ │ ├── libreofficedev6.1-calc.svg │ │ │ ├── libreofficedev6.1-draw.svg │ │ │ ├── libreofficedev6.1-impress.svg │ │ │ ├── libreofficedev6.1-main.svg │ │ │ ├── libreofficedev6.1-math.svg │ │ │ ├── libreofficedev6.1-startcenter.svg │ │ │ ├── libreofficedev6.1-writer.svg │ │ │ ├── light-software-center.svg │ │ │ ├── light_neovim_gtk.svg │ │ │ ├── lightdm-gtk-greeter-settings.svg │ │ │ ├── lightdm-settings.svg │ │ │ ├── lightread.svg │ │ │ ├── linguist-qt4.svg │ │ │ ├── linguist-qt5.svg │ │ │ ├── linguist.svg │ │ │ ├── linguist5.svg │ │ │ ├── linguistic.svg │ │ │ ├── linssid.svg │ │ │ ├── liveusb-creator.svg │ │ │ ├── livewallpaper-config.svg │ │ │ ├── livewallpaper.svg │ │ │ ├── locale.svg │ │ │ ├── location-services-active.svg │ │ │ ├── lock-ok.svg │ │ │ ├── lock-screen.svg │ │ │ ├── lock.svg │ │ │ ├── login-photo.svg │ │ │ ├── login.svg │ │ │ ├── logjam.svg │ │ │ ├── logview.svg │ │ │ ├── logviewer.svg │ │ │ ├── lokalize.svg │ │ │ ├── lookswitcher.svg │ │ │ ├── lpi-bug.svg │ │ │ ├── lrfviewer.svg │ │ │ ├── lshw.svg │ │ │ ├── lskat.svg │ │ │ ├── lubuntu-software-center.svg │ │ │ ├── luckybackup.svg │ │ │ ├── luminance-hdr.svg │ │ │ ├── lutris_blender.svg │ │ │ ├── lutris_dont-starve-together.svg │ │ │ ├── lutris_dont-starve.svg │ │ │ ├── lutris_godot-engine.svg │ │ │ ├── lutris_kpatience.svg │ │ │ ├── lutris_krita-gemini.svg │ │ │ ├── lutris_minecraft.svg │ │ │ ├── lutris_minetest.svg │ │ │ ├── lutris_rimworld.svg │ │ │ ├── lutris_terraria.svg │ │ │ ├── lximage-qt.svg │ │ │ ├── lximage.svg │ │ │ ├── lxmusic.svg │ │ │ ├── lxtask.svg │ │ │ ├── lxterminal.svg │ │ │ ├── macchanger.svg │ │ │ ├── mahjongg.svg │ │ │ ├── mail-client.svg │ │ │ ├── mail-generic.svg │ │ │ ├── mail-notification.svg │ │ │ ├── mail_generic.svg │ │ │ ├── mailer.svg │ │ │ ├── mailspring.svg │ │ │ ├── mandrivaupdate.svg │ │ │ ├── manjaro-settings-manager.svg │ │ │ ├── manjaro-welcome.svg │ │ │ ├── manjaro.svg │ │ │ ├── maps.svg │ │ │ ├── mark-location-symbolic.svg │ │ │ ├── master-pdf-editor.svg │ │ │ ├── masterpdfeditor3.svg │ │ │ ├── masterpdfeditor4.svg │ │ │ ├── masterpdfeditor5.svg │ │ │ ├── mate-ax-applet.svg │ │ │ ├── mate-color-manager.svg │ │ │ ├── mate-desktop-item-edit.svg │ │ │ ├── mate-desktop.svg │ │ │ ├── mate-disk-usage-analyzer.svg │ │ │ ├── mate-indicator-applet.svg │ │ │ ├── mate-logo.svg │ │ │ ├── mate-netspeed-applet.svg │ │ │ ├── mate-network-properties.svg │ │ │ ├── mate-notification-properties.svg │ │ │ ├── mate-panel-clock.svg │ │ │ ├── mate-panel-fish.svg │ │ │ ├── mate-panel-force-quit.svg │ │ │ ├── mate-panel-launcher.svg │ │ │ ├── mate-panel-notification-area.svg │ │ │ ├── mate-panel-window-list.svg │ │ │ ├── mate-panel-window-menu.svg │ │ │ ├── mate-panel-workspace-switcher.svg │ │ │ ├── mate-panel.svg │ │ │ ├── mate-power-manager.svg │ │ │ ├── mate-power-statistics.svg │ │ │ ├── mate-preferences-desktop-display.svg │ │ │ ├── mate-sensors-applet.svg │ │ │ ├── mate-session-properties.svg │ │ │ ├── mate-sticky-notes-applet.svg │ │ │ ├── mate-system-log.svg │ │ │ ├── mate.svg │ │ │ ├── mateconf-editor.svg │ │ │ ├── matepalimpsest.svg │ │ │ ├── matlab-desktop.svg │ │ │ ├── mcpelauncher-ui-qt.svg │ │ │ ├── mdmflexiserver.svg │ │ │ ├── mdmsetup.svg │ │ │ ├── me-tv.svg │ │ │ ├── me.kozec.syncthingtk.svg │ │ │ ├── media-cdrom.svg │ │ │ ├── media-optical-copy.svg │ │ │ ├── media-player-48.svg │ │ │ ├── media-removable.svg │ │ │ ├── mediacontrol.svg │ │ │ ├── mediawriter.svg │ │ │ ├── medit.svg │ │ │ ├── mendeley.svg │ │ │ ├── menu-editor.svg │ │ │ ├── menulibre.svg │ │ │ ├── messagebox_info.svg │ │ │ ├── messengerfordesktop.svg │ │ │ ├── metacity.svg │ │ │ ├── meteo-qt.svg │ │ │ ├── meterbridge32x32.svg │ │ │ ├── microsoft-edge-beta.svg │ │ │ ├── microsoft-edge-dev.svg │ │ │ ├── microsoft-edge.svg │ │ │ ├── microsoft-office-online.svg │ │ │ ├── minecraft-launcher.svg │ │ │ ├── minecraft-pi.svg │ │ │ ├── minecraft.svg │ │ │ ├── minetest-icon.svg │ │ │ ├── minetest.svg │ │ │ ├── mini.xterm.svg │ │ │ ├── mini.xterm_32x32.svg │ │ │ ├── mini.xterm_48x48.svg │ │ │ ├── minimizeall.svg │ │ │ ├── minitube-ubuntu.svg │ │ │ ├── mintbackup-icon.svg │ │ │ ├── mintbackup.svg │ │ │ ├── mintdrivers.svg │ │ │ ├── mintinstall.svg │ │ │ ├── mintlocale-im.svg │ │ │ ├── mintnanny.svg │ │ │ ├── mintreport.svg │ │ │ ├── mintsources-keys.svg │ │ │ ├── mintsources-mint.svg │ │ │ ├── mintsources.svg │ │ │ ├── mintstick.svg │ │ │ ├── mintupdate-release-upgrade.svg │ │ │ ├── mintupdate.svg │ │ │ ├── mintwelcome.svg │ │ │ ├── mitter.svg │ │ │ ├── mixxx-icon.svg │ │ │ ├── mkv-gui.svg │ │ │ ├── mkvmergeGUI.svg │ │ │ ├── mkvtoolnix-gui.svg │ │ │ ├── modem-manager-gui.svg │ │ │ ├── monitor.svg │ │ │ ├── mouse.svg │ │ │ ├── mousepad.svg │ │ │ ├── mozilla-firefox.svg │ │ │ ├── mozilla-thunderbird.svg │ │ │ ├── mozo.svg │ │ │ ├── mpv-icon-8bit-64x64.svg │ │ │ ├── mpv.svg │ │ │ ├── ms-excel.svg │ │ │ ├── ms-office.svg │ │ │ ├── ms-onenote.svg │ │ │ ├── ms-outlook.svg │ │ │ ├── ms-powerpoint.svg │ │ │ ├── ms-skype.svg │ │ │ ├── ms-word.svg │ │ │ ├── mscore-portable.svg │ │ │ ├── mscore.svg │ │ │ ├── mscore3.svg │ │ │ ├── msiexec.svg │ │ │ ├── mtpaint.svg │ │ │ ├── mudita24.svg │ │ │ ├── mugshot.svg │ │ │ ├── multibootusb.svg │ │ │ ├── multilingual-terminal.svg │ │ │ ├── multimedia-audio-player.svg │ │ │ ├── multimedia-photo-manager.svg │ │ │ ├── multimedia-photo-viewer.svg │ │ │ ├── multimedia-video-player.svg │ │ │ ├── multimedia-volume-control.svg │ │ │ ├── multimedia.svg │ │ │ ├── multisystem-liveusb.svg │ │ │ ├── multisystem-test-iso.svg │ │ │ ├── multisystem-vbox.svg │ │ │ ├── multisystem.svg │ │ │ ├── multitasking-view.svg │ │ │ ├── muon-discover.svg │ │ │ ├── muon.svg │ │ │ ├── muondis-cover.svg │ │ │ ├── muondiscover.svg │ │ │ ├── mupdf.svg │ │ │ ├── music_icon-24.svg │ │ │ ├── mx-clocky.svg │ │ │ ├── mx-findshares.svg │ │ │ ├── mx-menu-editor.svg │ │ │ ├── mx-system-sounds.svg │ │ │ ├── mx-timeset-gui-icon.svg │ │ │ ├── mx-update.svg │ │ │ ├── mx-usb-unmounter.svg │ │ │ ├── mypaint.svg │ │ │ ├── nautilus-actions-config-tool.svg │ │ │ ├── nautilus-actions.svg │ │ │ ├── nautilus-cd-burner.svg │ │ │ ├── nautilus.svg │ │ │ ├── neovim.svg │ │ │ ├── nepomuk.svg │ │ │ ├── net.ankiweb.Anki.svg │ │ │ ├── net.codeindustry.MasterPDFEditor.svg │ │ │ ├── net.jami.Jami.svg │ │ │ ├── net.lutris.Lutris.svg │ │ │ ├── net.minetest.Minetest.svg │ │ │ ├── net.rpdev.OpenTodoList.svg │ │ │ ├── net.scribus.Scribus.svg │ │ │ ├── net.sourceforge.Chessx.svg │ │ │ ├── net.sourceforge.Klavaro.svg │ │ │ ├── net.sourceforge.qtpfsgui.LuminanceHDR.svg │ │ │ ├── net.supertuxkart.SuperTuxKart.svg │ │ │ ├── net.xm1math.Texmaker.svg │ │ │ ├── net.xmind.XMind8.svg │ │ │ ├── net.xmind.ZEN.svg │ │ │ ├── netbeans-beta.svg │ │ │ ├── netease-cloud-music.svg │ │ │ ├── network-firewall.svg │ │ │ ├── network-manager.svg │ │ │ ├── network-wired.svg │ │ │ ├── network-workgroup.svg │ │ │ ├── networkmanager.svg │ │ │ ├── nimbus.svg │ │ │ ├── nl.hjdskes.gcolor3.svg │ │ │ ├── nl.openoffice.bluefish.svg │ │ │ ├── nm-device-wireless.svg │ │ │ ├── nmm_qt_client.svg │ │ │ ├── noblenote.svg │ │ │ ├── nocover.svg │ │ │ ├── noise.svg │ │ │ ├── notecase.svg │ │ │ ├── notepad-48.svg │ │ │ ├── notepad.svg │ │ │ ├── notes.svg │ │ │ ├── notifyconf.svg │ │ │ ├── ntfs-config.svg │ │ │ ├── nuvolaplayer3_deezer.svg │ │ │ ├── nuvolaplayer3_google_play_music.svg │ │ │ ├── nuvolaplayer3_spotify.svg │ │ │ ├── nuvolaplayer3_youtube.svg │ │ │ ├── nvclock.svg │ │ │ ├── nvdock.svg │ │ │ ├── nvidia-310-settings.svg │ │ │ ├── nvidia-current-settings.svg │ │ │ ├── nvidia-current-updates-settings.svg │ │ │ ├── nvidia-ddm-mx.svg │ │ │ ├── nvidia-drivers-settings.svg │ │ │ ├── nvidia-settings.svg │ │ │ ├── nvidia-x-server-setting.svg │ │ │ ├── nvidia-x-server-settings.svg │ │ │ ├── nvidia.svg │ │ │ ├── nvim-gtk.svg │ │ │ ├── nvim-qt.svg │ │ │ ├── nvim.svg │ │ │ ├── nx-software-center.svg │ │ │ ├── nx-software-updater.svg │ │ │ ├── nxclient-wizard.svg │ │ │ ├── nxterm.svg │ │ │ ├── obconf-qt.svg │ │ │ ├── obconf.svg │ │ │ ├── obs.svg │ │ │ ├── octopi-repoeditor.svg │ │ │ ├── octopi.svg │ │ │ ├── office-address-book.svg │ │ │ ├── office-addressbook.svg │ │ │ ├── office-calendar.svg │ │ │ ├── office-date.svg │ │ │ ├── office-printer.svg │ │ │ ├── oggconvert.svg │ │ │ ├── ogmrip.svg │ │ │ ├── okular.svg │ │ │ ├── onboard-mono.svg │ │ │ ├── onboard-settings.svg │ │ │ ├── onboard.svg │ │ │ ├── online-account-facebook.svg │ │ │ ├── online-account-google.svg │ │ │ ├── online-account-lastfm.svg │ │ │ ├── online-account-microsoft.svg │ │ │ ├── online-accounts.svg │ │ │ ├── onlyoffice-desktopeditors.svg │ │ │ ├── onlyoffice.svg │ │ │ ├── ooo-draw.svg │ │ │ ├── ooo-printeradmin.svg │ │ │ ├── openbox.svg │ │ │ ├── opencubicplayer.svg │ │ │ ├── openerp-client.svg │ │ │ ├── openjdk-10.svg │ │ │ ├── openjdk-11.svg │ │ │ ├── openjdk-6.svg │ │ │ ├── openjdk-7.svg │ │ │ ├── openjdk-8.svg │ │ │ ├── openjdk-9.svg │ │ │ ├── openoffice4-printeradmin.svg │ │ │ ├── openofficeorg-printeradmin.svg │ │ │ ├── openofficeorg3-printeradmin.svg │ │ │ ├── openofficeorg3.0-printeradmin.svg │ │ │ ├── openshot-qt.svg │ │ │ ├── openterm.svg │ │ │ ├── opentodolist.svg │ │ │ ├── openwmail.svg │ │ │ ├── opera-beta.svg │ │ │ ├── opera-browser-icon.svg │ │ │ ├── opera-browser-icons.svg │ │ │ ├── opera-browser.svg │ │ │ ├── opera-icon.svg │ │ │ ├── opera.svg │ │ │ ├── oracle-javaws.svg │ │ │ ├── oracle_java6.svg │ │ │ ├── oracle_java7.svg │ │ │ ├── oracle_java8.svg │ │ │ ├── oracle_java9.svg │ │ │ ├── orage.svg │ │ │ ├── orage_globaltime.svg │ │ │ ├── orca.svg │ │ │ ├── org.20.notes.svg │ │ │ ├── org.apache.netbeans-beta.svg │ │ │ ├── org.apache.netbeans.svg │ │ │ ├── org.ardour.Ardour.svg │ │ │ ├── org.ardour.Ardour5.svg │ │ │ ├── org.atheme.audacious.svg │ │ │ ├── org.audacityteam.Audacity.svg │ │ │ ├── org.avidemux.Avidemux.svg │ │ │ ├── org.blender.Blender.svg │ │ │ ├── org.bunkus.mkvtoolnix-gui.svg │ │ │ ├── org.chromium.Chromium.svg │ │ │ ├── org.claws_mail.Claws-Mail.svg │ │ │ ├── org.clawsmail.Claws.svg │ │ │ ├── org.clementine_player.Clementine.svg │ │ │ ├── org.codeblocks.codeblocks.svg │ │ │ ├── org.cunidev.gestures.svg │ │ │ ├── org.daa.NeovimGtk.svg │ │ │ ├── org.darktable.Darktable.svg │ │ │ ├── org.deepin.flatdeb.deepin-calculator.svg │ │ │ ├── org.deepin.flatdeb.deepin-calendar.svg │ │ │ ├── org.deepin.flatdeb.deepin-image-viewer.svg │ │ │ ├── org.deepin.flatdeb.deepin-music.svg │ │ │ ├── org.deepin.flatdeb.deepin-screen-recorder.svg │ │ │ ├── org.deepin.flatdeb.deepin-screenshot.svg │ │ │ ├── org.deepin.flatdeb.deepin-voice-recorder.svg │ │ │ ├── org.delugetorrent.Deluge.svg │ │ │ ├── org.dharkael.Flameshot.svg │ │ │ ├── org.eclipse.Committers.svg │ │ │ ├── org.eclipse.Eclipse.svg │ │ │ ├── org.eclipse.Java.svg │ │ │ ├── org.eclipse.Javascript.svg │ │ │ ├── org.electronjs.Electron2.BaseApp.svg │ │ │ ├── org.electronjs.Electron3.BaseApp.svg │ │ │ ├── org.electronjs.Electron4.BaseApp.svg │ │ │ ├── org.electronjs.Electron5.BaseApp.svg │ │ │ ├── org.electronjs.Electron6.BaseApp.svg │ │ │ ├── org.equeim.Tremotesf.svg │ │ │ ├── org.fedoraproject.MediaWriter.svg │ │ │ ├── org.filezillaproject.Filezilla.svg │ │ │ ├── org.flameshot.Flameshot.svg │ │ │ ├── org.flatpak.qtdemo.svg │ │ │ ├── org.freecadweb.FreeCAD.svg │ │ │ ├── org.freedesktop.GlxInfo.svg │ │ │ ├── org.freedesktop.GnomeAbrt.svg │ │ │ ├── org.freedesktop.MalcontentControl.svg │ │ │ ├── org.freedesktop.Sdk.Extension.openjdk.svg │ │ │ ├── org.freedesktop.Sdk.Extension.openjdk10.svg │ │ │ ├── org.freedesktop.Sdk.Extension.openjdk11.svg │ │ │ ├── org.freedesktop.Sdk.Extension.openjdk8.svg │ │ │ ├── org.freedesktop.Sdk.Extension.openjdk9.svg │ │ │ ├── org.freedesktop.problems.applet.svg │ │ │ ├── org.freefilesync.FreeFileSync.svg │ │ │ ├── org.fritzing.Fritzing.svg │ │ │ ├── org.gajim.Gajim.svg │ │ │ ├── org.geany.Geany.svg │ │ │ ├── org.geogebra.GeoGebra.svg │ │ │ ├── org.gimp.GIMP.svg │ │ │ ├── org.gmusicbrowser.gmusicbrowser.svg │ │ │ ├── org.gnome.2048.svg │ │ │ ├── org.gnome.Aisleriot.svg │ │ │ ├── org.gnome.ArchiveManager.svg │ │ │ ├── org.gnome.Atomix.svg │ │ │ ├── org.gnome.Boxes.svg │ │ │ ├── org.gnome.Calculator.svg │ │ │ ├── org.gnome.Camara.svg │ │ │ ├── org.gnome.CharacterMap.svg │ │ │ ├── org.gnome.Characters.svg │ │ │ ├── org.gnome.ChromeGnomeShell.svg │ │ │ ├── org.gnome.ColorProfileViewer.svg │ │ │ ├── org.gnome.ColorViewer.svg │ │ │ ├── org.gnome.Contacts.svg │ │ │ ├── org.gnome.DejaDup.svg │ │ │ ├── org.gnome.Devhelp.svg │ │ │ ├── org.gnome.Dictionary.svg │ │ │ ├── org.gnome.DiskUtility.svg │ │ │ ├── org.gnome.EasyTAG.svg │ │ │ ├── org.gnome.Empathy.svg │ │ │ ├── org.gnome.Eolie.svg │ │ │ ├── org.gnome.Epiphany.Devel.svg │ │ │ ├── org.gnome.Evince-previewer.svg │ │ │ ├── org.gnome.Evince.svg │ │ │ ├── org.gnome.Evolution.svg │ │ │ ├── org.gnome.Extensions.svg │ │ │ ├── org.gnome.FileRoller.svg │ │ │ ├── org.gnome.Firmware.svg │ │ │ ├── org.gnome.FontViewer.svg │ │ │ ├── org.gnome.Fonts.svg │ │ │ ├── org.gnome.Fractal.svg │ │ │ ├── org.gnome.Fragments.svg │ │ │ ├── org.gnome.GSmartControl.svg │ │ │ ├── org.gnome.GTG.svg │ │ │ ├── org.gnome.Geany.svg │ │ │ ├── org.gnome.Geary.svg │ │ │ ├── org.gnome.Glade.svg │ │ │ ├── org.gnome.Gnote.svg │ │ │ ├── org.gnome.Klotski.svg │ │ │ ├── org.gnome.LightsOff.svg │ │ │ ├── org.gnome.Logs.svg │ │ │ ├── org.gnome.Mines.svg │ │ │ ├── org.gnome.Mpv.svg │ │ │ ├── org.gnome.MultiWriter.svg │ │ │ ├── org.gnome.Nibbles.svg │ │ │ ├── org.gnome.Notes.svg │ │ │ ├── org.gnome.PasswordSafe.svg │ │ │ ├── org.gnome.Pitivi.svg │ │ │ ├── org.gnome.Polari.svg │ │ │ ├── org.gnome.Reversi.svg │ │ │ ├── org.gnome.Rhythmbox.svg │ │ │ ├── org.gnome.Rhythmbox3.svg │ │ │ ├── org.gnome.Robots.svg │ │ │ ├── org.gnome.Screenshot.svg │ │ │ ├── org.gnome.Seahorse.svg │ │ │ ├── org.gnome.Settings.svg │ │ │ ├── org.gnome.Shell.Extensions.GSConnect.svg │ │ │ ├── org.gnome.Shell.Extensions.svg │ │ │ ├── org.gnome.Shotwell.svg │ │ │ ├── org.gnome.SimpleScan.svg │ │ │ ├── org.gnome.Software.Editor.svg │ │ │ ├── org.gnome.SoundJuicer.svg │ │ │ ├── org.gnome.SoundRecorder.svg │ │ │ ├── org.gnome.Sudoku.svg │ │ │ ├── org.gnome.SwellFoop.svg │ │ │ ├── org.gnome.Sysprof.svg │ │ │ ├── org.gnome.Sysprof2.svg │ │ │ ├── org.gnome.Sysprof3.svg │ │ │ ├── org.gnome.SystemMonitor.svg │ │ │ ├── org.gnome.Tali.svg │ │ │ ├── org.gnome.Terminal.svg │ │ │ ├── org.gnome.Todo.svg │ │ │ ├── org.gnome.Tomboy.svg │ │ │ ├── org.gnome.TwentyFortyEight.svg │ │ │ ├── org.gnome.Usage.svg │ │ │ ├── org.gnome.Yelp.svg │ │ │ ├── org.gnome.almanah.svg │ │ │ ├── org.gnome.baobab.svg │ │ │ ├── org.gnome.bijiben.svg │ │ │ ├── org.gnome.books.svg │ │ │ ├── org.gnome.builder.svg │ │ │ ├── org.gnome.calendar.svg │ │ │ ├── org.gnome.cheese.svg │ │ │ ├── org.gnome.chess.svg │ │ │ ├── org.gnome.clocks.svg │ │ │ ├── org.gnome.dconf-editor.svg │ │ │ ├── org.gnome.documents.svg │ │ │ ├── org.gnome.eog.svg │ │ │ ├── org.gnome.epiphany.svg │ │ │ ├── org.gnome.feedreader.svg │ │ │ ├── org.gnome.files.svg │ │ │ ├── org.gnome.five-or-more.svg │ │ │ ├── org.gnome.font-viewer.svg │ │ │ ├── org.gnome.four-in-a-row.svg │ │ │ ├── org.gnome.gThumb.svg │ │ │ ├── org.gnome.games.svg │ │ │ ├── org.gnome.gbrainy.svg │ │ │ ├── org.gnome.gedit.svg │ │ │ ├── org.gnome.gitg.svg │ │ │ ├── org.gnome.gnome-2048.svg │ │ │ ├── org.gnome.gnome-latex.svg │ │ │ ├── org.gnome.gnome-mahjongg.svg │ │ │ ├── org.gnome.hitori.svg │ │ │ ├── org.gnome.iagno.svg │ │ │ ├── org.gnome.lollypop.svg │ │ │ ├── org.gnome.mahjongg.svg │ │ │ ├── org.gnome.maps.svg │ │ │ ├── org.gnome.meld.svg │ │ │ ├── org.gnome.music.svg │ │ │ ├── org.gnome.nautilus.svg │ │ │ ├── org.gnome.photos.svg │ │ │ ├── org.gnome.powerstats.svg │ │ │ ├── org.gnome.quadrapassel.svg │ │ │ ├── org.gnome.seahorse.Application.svg │ │ │ ├── org.gnome.software.svg │ │ │ ├── org.gnome.taquin.svg │ │ │ ├── org.gnome.tetravex.svg │ │ │ ├── org.gnome.totem.svg │ │ │ ├── org.gnome.tweak.svg │ │ │ ├── org.gnome.tweaks.svg │ │ │ ├── org.gnome.weather.application.svg │ │ │ ├── org.gnome.weather.svg │ │ │ ├── org.gnome.web.svg │ │ │ ├── org.gnu.emacs.svg │ │ │ ├── org.gnucash.GnuCash.svg │ │ │ ├── org.godotengine.Godot.svg │ │ │ ├── org.gtk.Demo3.svg │ │ │ ├── org.gtk.Demo4.svg │ │ │ ├── org.gtk.WidgetFactory3.svg │ │ │ ├── org.gtk.WidgetFactory4.svg │ │ │ ├── org.gtkhash.gtkhash.svg │ │ │ ├── org.hydrogenmusic.Hydrogen.svg │ │ │ ├── org.inkscape.Inkscape.svg │ │ │ ├── org.joplinapp.joplin.svg │ │ │ ├── org.kde.akregator.svg │ │ │ ├── org.kde.amarok.svg │ │ │ ├── org.kde.ark.svg │ │ │ ├── org.kde.artikulate.svg │ │ │ ├── org.kde.babe.svg │ │ │ ├── org.kde.blinken.svg │ │ │ ├── org.kde.blogilo.svg │ │ │ ├── org.kde.bomber.svg │ │ │ ├── org.kde.calligragemini.svg │ │ │ ├── org.kde.calligraplan.svg │ │ │ ├── org.kde.calligrasheets.svg │ │ │ ├── org.kde.calligrastage.svg │ │ │ ├── org.kde.calligrawords.svg │ │ │ ├── org.kde.digikam.svg │ │ │ ├── org.kde.discover.svg │ │ │ ├── org.kde.dolphin.svg │ │ │ ├── org.kde.dragonplayer.svg │ │ │ ├── org.kde.filelight.svg │ │ │ ├── org.kde.gcompris.svg │ │ │ ├── org.kde.gwenview.svg │ │ │ ├── org.kde.juk.svg │ │ │ ├── org.kde.k3b.svg │ │ │ ├── org.kde.kaddressbook.svg │ │ │ ├── org.kde.kalarm.svg │ │ │ ├── org.kde.kanagram.svg │ │ │ ├── org.kde.karbon.svg │ │ │ ├── org.kde.kate.svg │ │ │ ├── org.kde.katomic.svg │ │ │ ├── org.kde.kblocks.svg │ │ │ ├── org.kde.kcalc.svg │ │ │ ├── org.kde.kdeconnect.kcm.svg │ │ │ ├── org.kde.kdeconnect.svg │ │ │ ├── org.kde.kdenlive.svg │ │ │ ├── org.kde.kdevelop.svg │ │ │ ├── org.kde.kget.svg │ │ │ ├── org.kde.kgpg.svg │ │ │ ├── org.kde.kid3.svg │ │ │ ├── org.kde.kiriki.svg │ │ │ ├── org.kde.kjots.svg │ │ │ ├── org.kde.kjumpingcube.svg │ │ │ ├── org.kde.kleopatra.svg │ │ │ ├── org.kde.klettres.svg │ │ │ ├── org.kde.kmahjongg.svg │ │ │ ├── org.kde.kmail.svg │ │ │ ├── org.kde.kmail2.svg │ │ │ ├── org.kde.kmines.svg │ │ │ ├── org.kde.kmix.svg │ │ │ ├── org.kde.kmymoney.svg │ │ │ ├── org.kde.knetattach.svg │ │ │ ├── org.kde.knotes.svg │ │ │ ├── org.kde.kolourpaint.svg │ │ │ ├── org.kde.kompare.svg │ │ │ ├── org.kde.konqueror.svg │ │ │ ├── org.kde.kontact.svg │ │ │ ├── org.kde.konversation.svg │ │ │ ├── org.kde.korganizer.svg │ │ │ ├── org.kde.kpat.svg │ │ │ ├── org.kde.krename.svg │ │ │ ├── org.kde.krfb.svg │ │ │ ├── org.kde.krita.svg │ │ │ ├── org.kde.kronometer.svg │ │ │ ├── org.kde.krusader.svg │ │ │ ├── org.kde.ksudoku.svg │ │ │ ├── org.kde.ktorrent.svg │ │ │ ├── org.kde.ktouch.svg │ │ │ ├── org.kde.ktuberling.svg │ │ │ ├── org.kde.kwrite.svg │ │ │ ├── org.kde.lokalize.svg │ │ │ ├── org.kde.lskat.svg │ │ │ ├── org.kde.okular.svg │ │ │ ├── org.kde.partitionmanager.svg │ │ │ ├── org.kde.plasma.activitybar.svg │ │ │ ├── org.kde.plasma.activitypager.svg │ │ │ ├── org.kde.plasma.audiodeviceswitcher.svg │ │ │ ├── org.kde.plasma.bluetooth.svg │ │ │ ├── org.kde.plasma.calendar.svg │ │ │ ├── org.kde.plasma.clipboard.svg │ │ │ ├── org.kde.plasma.date.svg │ │ │ ├── org.kde.plasma.frame.svg │ │ │ ├── org.kde.plasma.icontasks.svg │ │ │ ├── org.kde.plasma.katesessions.svg │ │ │ ├── org.kde.plasma.kickerdash.svg │ │ │ ├── org.kde.plasma.konsoleprofiles.svg │ │ │ ├── org.kde.plasma.mediacontroller.svg │ │ │ ├── org.kde.plasma.mediacontrollercompact.svg │ │ │ ├── org.kde.plasma.mediaframe.svg │ │ │ ├── org.kde.plasma.multimediacontrols.svg │ │ │ ├── org.kde.plasma.notes.svg │ │ │ ├── org.kde.plasma.notifications.svg │ │ │ ├── org.kde.plasma.pager.svg │ │ │ ├── org.kde.plasma.printmanager.svg │ │ │ ├── org.kde.plasma.quicklaunch.svg │ │ │ ├── org.kde.plasma.showactivitymanager.svg │ │ │ ├── org.kde.plasma.showdesktop.svg │ │ │ ├── org.kde.plasma.systemloadviewer.svg │ │ │ ├── org.kde.plasma.userswitch.svg │ │ │ ├── org.kde.plasma.userswitcher.svg │ │ │ ├── org.kde.plasma.uswitcher.svg │ │ │ ├── org.kde.plasma.weather.svg │ │ │ ├── org.kde.plasma.webbrowser.svg │ │ │ ├── org.kde.plasma.win7showdesktop.svg │ │ │ ├── org.kde.resourcesMonitor.svg │ │ │ ├── org.kde.ring-kde.svg │ │ │ ├── org.kde.showfoto.svg │ │ │ ├── org.kde.skrooge.svg │ │ │ ├── org.kde.thermalMonitor.svg │ │ │ ├── org.kde.vvave.svg │ │ │ ├── org.kde.weatherWidget.svg │ │ │ ├── org.kde.yakuake.svg │ │ │ ├── org.keepassxc.KeePassXC.svg │ │ │ ├── org.kitone.subtitleeditor.svg │ │ │ ├── org.ksnip.ksnip.svg │ │ │ ├── org.leocad.LeoCAD.svg │ │ │ ├── org.libreoffice.LibreOffice-base.svg │ │ │ ├── org.libreoffice.LibreOffice-calc.svg │ │ │ ├── org.libreoffice.LibreOffice-draw.svg │ │ │ ├── org.libreoffice.LibreOffice-impress.svg │ │ │ ├── org.libreoffice.LibreOffice-math.svg │ │ │ ├── org.libreoffice.LibreOffice-startcenter.svg │ │ │ ├── org.libreoffice.LibreOffice-writer.svg │ │ │ ├── org.libreoffice.LibreOffice.base.svg │ │ │ ├── org.libreoffice.LibreOffice.calc.svg │ │ │ ├── org.libreoffice.LibreOffice.draw.svg │ │ │ ├── org.libreoffice.LibreOffice.impress.svg │ │ │ ├── org.libreoffice.LibreOffice.math.svg │ │ │ ├── org.libreoffice.LibreOffice.startcenter.svg │ │ │ ├── org.libreoffice.LibreOffice.writer.svg │ │ │ ├── org.mixxx.Mixxx.svg │ │ │ ├── org.mozilla.FirefoxDevEdition.svg │ │ │ ├── org.mozilla.FirefoxNightly.svg │ │ │ ├── org.mozilla.FirefoxNightlyWayland.svg │ │ │ ├── org.mozilla.Thunderbird.svg │ │ │ ├── org.mozilla.firefox.svg │ │ │ ├── org.musescore.MuseScore.svg │ │ │ ├── org.mypaint.MyPaint.svg │ │ │ ├── org.neovim.nvim.svg │ │ │ ├── org.nongnu.lingot.svg │ │ │ ├── org.nxos.softwarecenter.svg │ │ │ ├── org.o20.openpoint.svg │ │ │ ├── org.o20.svg │ │ │ ├── org.o20.word.svg │ │ │ ├── org.onlyoffice.desktopeditors.svg │ │ │ ├── org.openshot.OpenShot.svg │ │ │ ├── org.openstreetmap.josm.svg │ │ │ ├── org.pantheon.noise.svg │ │ │ ├── org.phoenicis.playonlinux.svg │ │ │ ├── org.photoqt.PhotoQt.svg │ │ │ ├── org.pitivi.Pitivi.svg │ │ │ ├── org.pulseaudio.pavucontrol.svg │ │ │ ├── org.pwmt.zathura.svg │ │ │ ├── org.qbittorrent.qBittorrent.svg │ │ │ ├── org.qt-project.qtcreator.svg │ │ │ ├── org.quassel_irc.QuasselClient.svg │ │ │ ├── org.qutebrowser.qutebrowser.svg │ │ │ ├── org.raspberrypi.rpi-imager.svg │ │ │ ├── org.remmina.Remmina.svg │ │ │ ├── org.speedcrunch.SpeedCrunch.svg │ │ │ ├── org.supertux.SuperTux-Milestone1.svg │ │ │ ├── org.supertux.SuperTux.svg │ │ │ ├── org.supertuxproject.SuperTux.svg │ │ │ ├── org.synfig.SynfigStudio.svg │ │ │ ├── org.telegram.desktop.svg │ │ │ ├── org.texstudio.TeXstudio.svg │ │ │ ├── org.tordini.flavio.Minitube.svg │ │ │ ├── org.torproject.torbrowser.svg │ │ │ ├── org.tug.texworks.svg │ │ │ ├── org.videolan.VLC.svg │ │ │ ├── org.vim.Vim.svg │ │ │ ├── org.virt_manager.virt-manager.svg │ │ │ ├── org.virt_manager.virt-viewer.svg │ │ │ ├── org.wireshark.Wireshark.svg │ │ │ ├── org.wireshark.gtk.svg │ │ │ ├── org.wireshark.qt.svg │ │ │ ├── org.wxhexeditor.wxHexEditor.svg │ │ │ ├── org.xfce.Dictionary.svg │ │ │ ├── org.xfce.Parole.svg │ │ │ ├── org.xfce.notification.svg │ │ │ ├── org.xfce.settings.appearance.svg │ │ │ ├── org.xfce.settings.editor.svg │ │ │ ├── org.yorba.geary.svg │ │ │ ├── org.zealdocs.Zeal.svg │ │ │ ├── org.zim_wiki.Zim.svg │ │ │ ├── org.zimwiki.Zim.svg │ │ │ ├── org.zotero.Zotero.svg │ │ │ ├── osmo.svg │ │ │ ├── oxygen.svg │ │ │ ├── p7zip.svg │ │ │ ├── package-manager-icon.svg │ │ │ ├── package.svg │ │ │ ├── package_applications.svg │ │ │ ├── package_development.svg │ │ │ ├── package_development_debugger.svg │ │ │ ├── package_development_tools.svg │ │ │ ├── package_editors.svg │ │ │ ├── package_edutainment.svg │ │ │ ├── package_favorite.svg │ │ │ ├── package_favourite.svg │ │ │ ├── package_games.svg │ │ │ ├── package_games_board.svg │ │ │ ├── package_games_card.svg │ │ │ ├── package_graphics.svg │ │ │ ├── package_graphics_photography.svg │ │ │ ├── package_graphics_scanning.svg │ │ │ ├── package_internet_email.svg │ │ │ ├── package_multimedia.svg │ │ │ ├── package_multimedia_audiomixer.svg │ │ │ ├── package_multimedia_audioplayer.svg │ │ │ ├── package_multimedia_jukebox.svg │ │ │ ├── package_office_addressbook.svg │ │ │ ├── package_toys.svg │ │ │ ├── package_utilities.svg │ │ │ ├── package_utilities_web.svg │ │ │ ├── package_wordprocessing.svg │ │ │ ├── palaura.svg │ │ │ ├── palimpsest.svg │ │ │ ├── pamac-manager.svg │ │ │ ├── pamac-updater.svg │ │ │ ├── pamac.svg │ │ │ ├── pan.svg │ │ │ ├── panel-applets.svg │ │ │ ├── panel-searchtool.svg │ │ │ ├── panini.svg │ │ │ ├── paprefs.svg │ │ │ ├── parcellite.svg │ │ │ ├── parole.svg │ │ │ ├── paromplayer.svg │ │ │ ├── partitionmanager.svg │ │ │ ├── partitions.svg │ │ │ ├── password-manager.svg │ │ │ ├── password.svg │ │ │ ├── passwords.svg │ │ │ ├── pattern-kde.svg │ │ │ ├── pattern-kde4.svg │ │ │ ├── pattern-x11.svg │ │ │ ├── pavucontrol.svg │ │ │ ├── pcb.svg │ │ │ ├── pcsx2.svg │ │ │ ├── pdf-presenter-console.svg │ │ │ ├── pdfarranger.svg │ │ │ ├── pdfslicer.svg │ │ │ ├── peazip.svg │ │ │ ├── pgadmin3.svg │ │ │ ├── pgadmin4.svg │ │ │ ├── phoenicis.svg │ │ │ ├── phonon-gstreamer.svg │ │ │ ├── photo.svg │ │ │ ├── photolayoutseditor.svg │ │ │ ├── photoqt.svg │ │ │ ├── photos.svg │ │ │ ├── php.svg │ │ │ ├── phpmyadmin.svg │ │ │ ├── phpstorm.svg │ │ │ ├── pidgin-menu.svg │ │ │ ├── pinta.svg │ │ │ ├── pirut.svg │ │ │ ├── pithos.svg │ │ │ ├── pitivi.svg │ │ │ ├── pix.svg │ │ │ ├── pk-package-sources.svg │ │ │ ├── pkgbrowser.svg │ │ │ ├── plan.svg │ │ │ ├── plank.svg │ │ │ ├── planner.svg │ │ │ ├── planwork.svg │ │ │ ├── plasma-media-center.svg │ │ │ ├── plasma-search.svg │ │ │ ├── plasma.svg │ │ │ ├── plasmadiscover.svg │ │ │ ├── plasmagik.svg │ │ │ ├── plasmashell.svg │ │ │ ├── playonlinux32.svg │ │ │ ├── plugin-colorfilter.svg │ │ │ ├── plugin-notification.svg │ │ │ ├── plugin-wallpaper.svg │ │ │ ├── plugins-accessibility.svg │ │ │ ├── plv.svg │ │ │ ├── plymouth.svg │ │ │ ├── pnmixer.svg │ │ │ ├── polari.svg │ │ │ ├── pomotroid.svg │ │ │ ├── pop3.svg │ │ │ ├── popcorntime.svg │ │ │ ├── popsicle.svg │ │ │ ├── porthole.svg │ │ │ ├── postman.svg │ │ │ ├── postscript-viewer.svg │ │ │ ├── preferences-bluetooth.svg │ │ │ ├── preferences-calendar-and-tasks.svg │ │ │ ├── preferences-certificates.svg │ │ │ ├── preferences-color.svg │ │ │ ├── preferences-color2.svg │ │ │ ├── preferences-composer.svg │ │ │ ├── preferences-contact-list.svg │ │ │ ├── preferences-desktop-accessibility.svg │ │ │ ├── preferences-desktop-applications.svg │ │ │ ├── preferences-desktop-apps.svg │ │ │ ├── preferences-desktop-assistive-technology.svg │ │ │ ├── preferences-desktop-baloo.svg │ │ │ ├── preferences-desktop-color.svg │ │ │ ├── preferences-desktop-cursors.svg │ │ │ ├── preferences-desktop-default-applications.svg │ │ │ ├── preferences-desktop-desktop-wallpaper.svg │ │ │ ├── preferences-desktop-display-color.svg │ │ │ ├── preferences-desktop-display.svg │ │ │ ├── preferences-desktop-emoticons.svg │ │ │ ├── preferences-desktop-filetype-association.svg │ │ │ ├── preferences-desktop-font-installer.svg │ │ │ ├── preferences-desktop-font.svg │ │ │ ├── preferences-desktop-gaming.svg │ │ │ ├── preferences-desktop-gestures-screenedges.svg │ │ │ ├── preferences-desktop-icons.svg │ │ │ ├── preferences-desktop-keyboard.svg │ │ │ ├── preferences-desktop-launch-feedback.svg │ │ │ ├── preferences-desktop-locale.svg │ │ │ ├── preferences-desktop-mouse.svg │ │ │ ├── preferences-desktop-multimedia.svg │ │ │ ├── preferences-desktop-notification-bell.svg │ │ │ ├── preferences-desktop-notification.svg │ │ │ ├── preferences-desktop-notifications.svg │ │ │ ├── preferences-desktop-online-accounts.svg │ │ │ ├── preferences-desktop-peripherals.svg │ │ │ ├── preferences-desktop-plasma-theme.svg │ │ │ ├── preferences-desktop-plasma.svg │ │ │ ├── preferences-desktop-printer.svg │ │ │ ├── preferences-desktop-remote-desktop.svg │ │ │ ├── preferences-desktop-screensaver.svg │ │ │ ├── preferences-desktop-search.svg │ │ │ ├── preferences-desktop-sound.svg │ │ │ ├── preferences-desktop-theme-applications.svg │ │ │ ├── preferences-desktop-theme-global.svg │ │ │ ├── preferences-desktop-theme-windowdecorations.svg │ │ │ ├── preferences-desktop-theme.svg │ │ │ ├── preferences-desktop-thunderbolt.svg │ │ │ ├── preferences-desktop-tweaks.svg │ │ │ ├── preferences-desktop-user-password.svg │ │ │ ├── preferences-desktop-user.svg │ │ │ ├── preferences-desktop-wallpaper.svg │ │ │ ├── preferences-desktop-workspaces.svg │ │ │ ├── preferences-desktop.svg │ │ │ ├── preferences-devices-printer.svg │ │ │ ├── preferences-devices-scanner.svg │ │ │ ├── preferences-gtk-config.svg │ │ │ ├── preferences-kde-connect.svg │ │ │ ├── preferences-mail-accounts.svg │ │ │ ├── preferences-mail.svg │ │ │ ├── preferences-other.svg │ │ │ ├── preferences-plugin-script.svg │ │ │ ├── preferences-power.svg │ │ │ ├── preferences-remote-desktop.svg │ │ │ ├── preferences-security.svg │ │ │ ├── preferences-sound.svg │ │ │ ├── preferences-system-bluetooth-inactive.svg │ │ │ ├── preferences-system-bluetooth.svg │ │ │ ├── preferences-system-directory.svg │ │ │ ├── preferences-system-firewall.svg │ │ │ ├── preferences-system-hotcorners.svg │ │ │ ├── preferences-system-login.svg │ │ │ ├── preferences-system-network-ldap.svg │ │ │ ├── preferences-system-network-share.svg │ │ │ ├── preferences-system-network-sharing.svg │ │ │ ├── preferences-system-network.svg │ │ │ ├── preferences-system-notifications.svg │ │ │ ├── preferences-system-parental-controls.svg │ │ │ ├── preferences-system-performance.svg │ │ │ ├── preferences-system-power-management.svg │ │ │ ├── preferences-system-power.svg │ │ │ ├── preferences-system-privacy-housekeeping.svg │ │ │ ├── preferences-system-privacy.svg │ │ │ ├── preferences-system-search.svg │ │ │ ├── preferences-system-session-services.svg │ │ │ ├── preferences-system-session.svg │ │ │ ├── preferences-system-sharing.svg │ │ │ ├── preferences-system-sound.svg │ │ │ ├── preferences-system-splash.svg │ │ │ ├── preferences-system-tabbox.svg │ │ │ ├── preferences-system-time.svg │ │ │ ├── preferences-system-users.svg │ │ │ ├── preferences-system-windows-actions.svg │ │ │ ├── preferences-system-windows-effect-flipswitch.svg │ │ │ ├── preferences-system-windows-move.svg │ │ │ ├── preferences-system-windows.svg │ │ │ ├── preferences-system.svg │ │ │ ├── preferences-theme.svg │ │ │ ├── preferences-tweaks-anim.svg │ │ │ ├── preferences-tweaks-cerbere.svg │ │ │ ├── preferences-tweaks-shadows.svg │ │ │ ├── preferences-ubuntu-panel.svg │ │ │ ├── preferences-wallpaper.svg │ │ │ ├── preferences.svg │ │ │ ├── preferences_system.svg │ │ │ ├── printer-driver-deepin-cloud-print.svg │ │ │ ├── printer.svg │ │ │ ├── printer1.svg │ │ │ ├── printersandfax_q4os_startmenu.svg │ │ │ ├── printmgr.svg │ │ │ ├── proxy.svg │ │ │ ├── ptask.svg │ │ │ ├── ptbatcher.svg │ │ │ ├── puddletag.svg │ │ │ ├── pulseeffects.svg │ │ │ ├── pup.svg │ │ │ ├── pycad.svg │ │ │ ├── pycharm-community.svg │ │ │ ├── pycharm-education.svg │ │ │ ├── pycharm-professional.svg │ │ │ ├── pychess.svg │ │ │ ├── pynvim.svg │ │ │ ├── python2.6.svg │ │ │ ├── python2.7.svg │ │ │ ├── python3.0.svg │ │ │ ├── python3.1.svg │ │ │ ├── python3.2.svg │ │ │ ├── python3.3.svg │ │ │ ├── python3.4.svg │ │ │ ├── python3.5.svg │ │ │ ├── q4_findmenu.svg │ │ │ ├── q4_netcon.svg │ │ │ ├── q4os-updatemgr.svg │ │ │ ├── q4wine.svg │ │ │ ├── qalculate-applet.svg │ │ │ ├── qalculate-gtk.svg │ │ │ ├── qalculate-kde.svg │ │ │ ├── qalculate.svg │ │ │ ├── qalculator.svg │ │ │ ├── qbittorrent.svg │ │ │ ├── qdbusviewer-qt4.svg │ │ │ ├── qdbusviewer-qt5.svg │ │ │ ├── qdbusviewer.svg │ │ │ ├── qdbusviewer5.svg │ │ │ ├── qdirstat.svg │ │ │ ├── qemu-system-aarch64.svg │ │ │ ├── qemu-system-arm.svg │ │ │ ├── qemu-system-i386.svg │ │ │ ├── qemu-system-x86_64-spice.svg │ │ │ ├── qemu-system-x86_64.svg │ │ │ ├── qemu.svg │ │ │ ├── qjoypad.svg │ │ │ ├── qlandkartegt.svg │ │ │ ├── qlipper.svg │ │ │ ├── qmapshack.svg │ │ │ ├── qmlscene.svg │ │ │ ├── qps.svg │ │ │ ├── qq-music.svg │ │ │ ├── qq.svg │ │ │ ├── qshutdown.svg │ │ │ ├── qt-creator.svg │ │ │ ├── qt-logo.svg │ │ │ ├── qt4-logo.svg │ │ │ ├── qt4logo.svg │ │ │ ├── qt5-logo.svg │ │ │ ├── qt5ct.svg │ │ │ ├── qtassistant.svg │ │ │ ├── qtconfig-qt4.svg │ │ │ ├── qtconfig-qt5.svg │ │ │ ├── qtconfig.svg │ │ │ ├── qtcreator_logo_32.svg │ │ │ ├── qtcreatorubuntu.svg │ │ │ ├── qtdbusviewer.svg │ │ │ ├── qtemu.svg │ │ │ ├── qterminal.svg │ │ │ ├── qtlinguist.svg │ │ │ ├── qtlinguistic.svg │ │ │ ├── qtlogo.svg │ │ │ ├── qtop.svg │ │ │ ├── quasselclient.svg │ │ │ ├── quickDocs.svg │ │ │ ├── qv4l2.svg │ │ │ ├── qvidcap.svg │ │ │ ├── rambox-os.svg │ │ │ ├── randr.svg │ │ │ ├── rbackend.svg │ │ │ ├── rclock.svg │ │ │ ├── realtimesync.svg │ │ │ ├── reco.svg │ │ │ ├── record-desktop.svg │ │ │ ├── recordmydesktop.svg │ │ │ ├── red_glasses.svg │ │ │ ├── redhat-email.svg │ │ │ ├── redhat-filemanager.svg │ │ │ ├── redhat-linux.svg │ │ │ ├── redhat-server_settings.svg │ │ │ ├── redhat-system_tools.svg │ │ │ ├── redhat-tools.svg │ │ │ ├── redhat-web-browser.svg │ │ │ ├── redhat.svg │ │ │ ├── redshift-gtk.svg │ │ │ ├── redshift-icon-256.svg │ │ │ ├── redshift.svg │ │ │ ├── redshiftgui.svg │ │ │ ├── regextester.svg │ │ │ ├── regexxer.svg │ │ │ ├── rekonq.svg │ │ │ ├── reload.svg │ │ │ ├── remmina.svg │ │ │ ├── remote-desktop.svg │ │ │ ├── resapplet.svg │ │ │ ├── resolve.svg │ │ │ ├── rest.getinsomnia.Insomnia.svg │ │ │ ├── revelation.svg │ │ │ ├── rhel.svg │ │ │ ├── rhythmbox.svg │ │ │ ├── rider.svg │ │ │ ├── ring-jami.svg │ │ │ ├── ring-kde.svg │ │ │ ├── rip.svg │ │ │ ├── ripperx.svg │ │ │ ├── ristretto.svg │ │ │ ├── rosa-imagewriter.svg │ │ │ ├── rosamp.svg │ │ │ ├── roxterm-gtk3.svg │ │ │ ├── roxterm.svg │ │ │ ├── rpi-imager.svg │ │ │ ├── rpi.svg │ │ │ ├── rpmdrake.svg │ │ │ ├── rss.svg │ │ │ ├── rssguard.svg │ │ │ ├── rssnow.svg │ │ │ ├── rssowl.svg │ │ │ ├── rubymine.svg │ │ │ ├── sabaki.svg │ │ │ ├── samba.svg │ │ │ ├── samsung-driver.svg │ │ │ ├── sc-controller.svg │ │ │ ├── scanner.svg │ │ │ ├── scans2pdf.svg │ │ │ ├── scid.svg │ │ │ ├── scratch-text-editor.svg │ │ │ ├── screengrab.svg │ │ │ ├── screenie-qt.svg │ │ │ ├── screenie.svg │ │ │ ├── screenrecorder.svg │ │ │ ├── screenruler-icon-32x32.svg │ │ │ ├── screenruler-icon.svg │ │ │ ├── screenruler.svg │ │ │ ├── screensaver.svg │ │ │ ├── scribus-ng.svg │ │ │ ├── scribus-trunk.svg │ │ │ ├── script-error.svg │ │ │ ├── scudcloud.svg │ │ │ ├── seahorse-preferences.svg │ │ │ ├── seahorse.svg │ │ │ ├── search.svg │ │ │ ├── searchmonkey.svg │ │ │ ├── security-medium.svg │ │ │ ├── selene.svg │ │ │ ├── semn.svg │ │ │ ├── sense_emu_gui.svg │ │ │ ├── sequeler.svg │ │ │ ├── setroubleshoot_red_icon.svg │ │ │ ├── sgt-mines.svg │ │ │ ├── share.svg │ │ │ ├── shortcuts.svg │ │ │ ├── shotwell.svg │ │ │ ├── show-background.svg │ │ │ ├── show-desktop.svg │ │ │ ├── showdown.svg │ │ │ ├── showfoto.svg │ │ │ ├── showimage.svg │ │ │ ├── shutter.svg │ │ │ ├── sigil.svg │ │ │ ├── signal-desktop.svg │ │ │ ├── sigram.svg │ │ │ ├── silicon-128.svg │ │ │ ├── silicon-22.svg │ │ │ ├── silicon-32.svg │ │ │ ├── silicon-48.svg │ │ │ ├── silicon-64.svg │ │ │ ├── simple-ccsm.svg │ │ │ ├── simple-scan.svg │ │ │ ├── simplenote.svg │ │ │ ├── simplescreenrecorder.svg │ │ │ ├── sk1-color-picker.svg │ │ │ ├── skanlite.svg │ │ │ ├── skrooge-initial.svg │ │ │ ├── skype.svg │ │ │ ├── skype_protocol.svg │ │ │ ├── skypeforlinux.svg │ │ │ ├── slack.svg │ │ │ ├── sleep.svg │ │ │ ├── slidewall.svg │ │ │ ├── slingscold.svg │ │ │ ├── smartcode-stremio.svg │ │ │ ├── smartgithg.svg │ │ │ ├── smplayer.svg │ │ │ ├── smuxi-frontend-gnome.svg │ │ │ ├── smuxi.svg │ │ │ ├── software-center.svg │ │ │ ├── software-manager.svg │ │ │ ├── software-properties-mint.svg │ │ │ ├── software-properties.svg │ │ │ ├── software-sources.svg │ │ │ ├── software-store.svg │ │ │ ├── software-update-available.svg │ │ │ ├── software-update-urgent.svg │ │ │ ├── software.svg │ │ │ ├── softwarecenter-debian.svg │ │ │ ├── softwarecenter-ubuntu.svg │ │ │ ├── softwarecenter.svg │ │ │ ├── sogou_notify.svg │ │ │ ├── sogoupinyin.svg │ │ │ ├── sonata.svg │ │ │ ├── soundconverter.svg │ │ │ ├── soundkonverter.svg │ │ │ ├── spacefm.svg │ │ │ ├── spectacle.svg │ │ │ ├── speedcrunch.svg │ │ │ ├── spotify-client.svg │ │ │ ├── spotify-linux-48x48.svg │ │ │ ├── spotify-linux-512x512.svg │ │ │ ├── spotify-web-player.svg │ │ │ ├── spotify.svg │ │ │ ├── spotify_A.svg │ │ │ ├── spotifywebplayer.svg │ │ │ ├── sqliteman.svg │ │ │ ├── ssh-askpass-gnome.svg │ │ │ ├── stacer.svg │ │ │ ├── starcal2.svg │ │ │ ├── stardict_16x16.svg │ │ │ ├── stardict_32x32.svg │ │ │ ├── starred.svg │ │ │ ├── start-here-archlinux.svg │ │ │ ├── start-here-debian.svg │ │ │ ├── start-here-fedora.svg │ │ │ ├── start-here-kde.svg │ │ │ ├── start-here-korora.svg │ │ │ ├── start-here-linux-mint.svg │ │ │ ├── start-here-lubuntu.svg │ │ │ ├── start-here-manjaro.svg │ │ │ ├── start-here-opensuse.svg │ │ │ ├── start-here-ubuntu.svg │ │ │ ├── start-here-xfce.svg │ │ │ ├── startupmanager.svg │ │ │ ├── staruml.svg │ │ │ ├── steam-icon.svg │ │ │ ├── steam-launcher.svg │ │ │ ├── steam.svg │ │ │ ├── steam_icon_105600.svg │ │ │ ├── steam_icon_219740.svg │ │ │ ├── steam_icon_280680.svg │ │ │ ├── steam_icon_286160.svg │ │ │ ├── steam_icon_294100.svg │ │ │ ├── steam_icon_322330.svg │ │ │ ├── steam_icon_365670.svg │ │ │ ├── steam_icon_404790.svg │ │ │ ├── steam_icon_415890.svg │ │ │ ├── steamos-logo-icon.svg │ │ │ ├── steampowered.svg │ │ │ ├── stellarium.svg │ │ │ ├── sticky-notes.svg │ │ │ ├── stock_about.svg │ │ │ ├── stock_addressbook.svg │ │ │ ├── stock_alarm.svg │ │ │ ├── stock_calendar.svg │ │ │ ├── stock_dialog-info.svg │ │ │ ├── stock_help-agent.svg │ │ │ ├── stock_help.svg │ │ │ ├── stock_insert_note.svg │ │ │ ├── stock_keyring.svg │ │ │ ├── stock_mail-compose.svg │ │ │ ├── stock_new-meeting.svg │ │ │ ├── stock_notes.svg │ │ │ ├── stock_task.svg │ │ │ ├── stock_tasks.svg │ │ │ ├── stock_view-details.svg │ │ │ ├── stock_xfburn.svg │ │ │ ├── stoken-gui.svg │ │ │ ├── streamlink-twitch-gui.svg │ │ │ ├── strigi.svg │ │ │ ├── studio.svg │ │ │ ├── style.svg │ │ │ ├── stylesheet.svg │ │ │ ├── sublime-text-2.svg │ │ │ ├── sublime-text-3.svg │ │ │ ├── sublime-text.svg │ │ │ ├── sublime-text2.svg │ │ │ ├── sublime.svg │ │ │ ├── sublime3-text.svg │ │ │ ├── sublime_merge.svg │ │ │ ├── sublime_text.svg │ │ │ ├── sublimemerge.svg │ │ │ ├── sublimetext.svg │ │ │ ├── subtitleeditor.svg │ │ │ ├── sun-java-jdk10.svg │ │ │ ├── sun-java-jdk5.svg │ │ │ ├── sun-java-jdk6.svg │ │ │ ├── sun-java-jdk7.svg │ │ │ ├── sun-java-jdk8.svg │ │ │ ├── sun-java-jdk9.svg │ │ │ ├── sun-java-jre10.svg │ │ │ ├── sun-java-jre8.svg │ │ │ ├── sun-java.svg │ │ │ ├── sun-java32-jdk5.svg │ │ │ ├── sun-java32-jdk6.svg │ │ │ ├── sun-java32-jdk7.svg │ │ │ ├── sun-java32-jdk8.svg │ │ │ ├── sun-java6.svg │ │ │ ├── sun-java7.svg │ │ │ ├── sun-java8.svg │ │ │ ├── sun-javaws-jdk10.svg │ │ │ ├── sun-javaws-jdk6.svg │ │ │ ├── sun-javaws-jdk7.svg │ │ │ ├── sun-javaws-jdk8.svg │ │ │ ├── sun-javaws-jdk9.svg │ │ │ ├── sun-javaws-jre10.svg │ │ │ ├── sun-javaws-jre8.svg │ │ │ ├── sun-javaws.svg │ │ │ ├── sun-javaws32-jdk6.svg │ │ │ ├── sun-javaws32-jdk7.svg │ │ │ ├── sun-javaws32-jdk8.svg │ │ │ ├── sun-jcontrol-jdk10.svg │ │ │ ├── sun-jcontrol-jdk6.svg │ │ │ ├── sun-jcontrol-jdk7.svg │ │ │ ├── sun-jcontrol-jdk8.svg │ │ │ ├── sun-jcontrol-jdk9.svg │ │ │ ├── sun-jcontrol-jre10.svg │ │ │ ├── sun-jcontrol-jre8.svg │ │ │ ├── sun-jcontrol.svg │ │ │ ├── sun-jcontrol32-jdk6.svg │ │ │ ├── sun-jcontrol32-jdk7.svg │ │ │ ├── sun-jcontrol32-jdk8.svg │ │ │ ├── sun_java.svg │ │ │ ├── supertux2.svg │ │ │ ├── supertuxkart_128.svg │ │ │ ├── susehelpcenter.svg │ │ │ ├── svgcleaner.svg │ │ │ ├── swcentre.svg │ │ │ ├── sweeper.svg │ │ │ ├── swell-foop.svg │ │ │ ├── switchuser.svg │ │ │ ├── sylpheed.svg │ │ │ ├── symbolic │ │ │ │ ├── accessories-calculator.svg │ │ │ │ ├── accessories-camera.svg │ │ │ │ ├── accessories-character-map.svg │ │ │ │ ├── accessories-dictionary.svg │ │ │ │ ├── accessories-screenshot.svg │ │ │ │ ├── accessories-text-editor.svg │ │ │ │ ├── address-book-app.svg │ │ │ │ ├── amazon-store.svg │ │ │ │ ├── applets-screenshooter.svg │ │ │ │ ├── application-x-executable.svg │ │ │ │ ├── applications-system.svg │ │ │ │ ├── apport.svg │ │ │ │ ├── aptdaemon-download.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── backups-app.svg │ │ │ │ ├── baobab.svg │ │ │ │ ├── bash.svg │ │ │ │ ├── bijiben.svg │ │ │ │ ├── builder.svg │ │ │ │ ├── ca.desrt.dconf-editor.svg │ │ │ │ ├── calendar-app.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-app.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── chromium-browser.svg │ │ │ │ ├── clock-app.svg │ │ │ │ ├── com.github.bilelmoussaoui.Authenticator.svg │ │ │ │ ├── config-language.svg │ │ │ │ ├── configurator-app.svg │ │ │ │ ├── dconf-editor.svg │ │ │ │ ├── deja-dup.svg │ │ │ │ ├── disk-usage-app.svg │ │ │ │ ├── disk-utility-app.svg │ │ │ │ ├── documents-app.svg │ │ │ │ ├── docviewer-app.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── ebook-reader-app.svg │ │ │ │ ├── empathy.svg │ │ │ │ ├── eog.svg │ │ │ │ ├── error-app.svg │ │ │ │ ├── evince.svg │ │ │ │ ├── evolution.svg │ │ │ │ ├── extensions.svg │ │ │ │ ├── file-roller.svg │ │ │ │ ├── filemanager-app.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── fusion-icon.svg │ │ │ │ ├── gallery-app.svg │ │ │ │ ├── games-app.svg │ │ │ │ ├── gedit.svg │ │ │ │ ├── gksu-root-terminal.svg │ │ │ │ ├── gnome-aisleriot.svg │ │ │ │ ├── gnome-books.svg │ │ │ │ ├── gnome-calculator.svg │ │ │ │ ├── gnome-calendar.svg │ │ │ │ ├── gnome-characters.svg │ │ │ │ ├── gnome-clocks.svg │ │ │ │ ├── gnome-contacts.svg │ │ │ │ ├── gnome-control-center.svg │ │ │ │ ├── gnome-disks-state-standby.svg │ │ │ │ ├── gnome-disks.svg │ │ │ │ ├── gnome-documents.svg │ │ │ │ ├── gnome-help.svg │ │ │ │ ├── gnome-logs.svg │ │ │ │ ├── gnome-mahjongg.svg │ │ │ │ ├── gnome-maps.svg │ │ │ │ ├── gnome-mines.svg │ │ │ │ ├── gnome-music.svg │ │ │ │ ├── gnome-photos.svg │ │ │ │ ├── gnome-power-manager.svg │ │ │ │ ├── gnome-screenshot.svg │ │ │ │ ├── gnome-software.svg │ │ │ │ ├── gnome-sudoku.svg │ │ │ │ ├── gnome-system-monitor.svg │ │ │ │ ├── gnome-terminal.svg │ │ │ │ ├── gnome-tweak-tool.svg │ │ │ │ ├── gnome-usage.svg │ │ │ │ ├── gnome-weather.svg │ │ │ │ ├── goa-panel.svg │ │ │ │ ├── google-chrome.svg │ │ │ │ ├── help-app.svg │ │ │ │ ├── help-browser.svg │ │ │ │ ├── help-faq.svg │ │ │ │ ├── help.svg │ │ │ │ ├── image-viewer-app.svg │ │ │ │ ├── image-viewer.svg │ │ │ │ ├── inkscape.svg │ │ │ │ ├── internet-chat.svg │ │ │ │ ├── internet-mail.svg │ │ │ │ ├── internet-news-reader.svg │ │ │ │ ├── internet-web-browser.svg │ │ │ │ ├── io.github.seadve.Kooha.svg │ │ │ │ ├── jockey.svg │ │ │ │ ├── libreoffice-base.svg │ │ │ │ ├── libreoffice-calc.svg │ │ │ │ ├── libreoffice-draw.svg │ │ │ │ ├── libreoffice-impress.svg │ │ │ │ ├── libreoffice-main.svg │ │ │ │ ├── libreoffice-math.svg │ │ │ │ ├── libreoffice-writer.svg │ │ │ │ ├── log-viewer-app.svg │ │ │ │ ├── logviewer.svg │ │ │ │ ├── mail-app.svg │ │ │ │ ├── mail-archive.svg │ │ │ │ ├── maps-app.svg │ │ │ │ ├── media-eq.svg │ │ │ │ ├── mediaplayer-app.svg │ │ │ │ ├── messaging-app.svg │ │ │ │ ├── multimedia-audio-player.svg │ │ │ │ ├── multimedia-equalizer.svg │ │ │ │ ├── multimedia-photo-manager.svg │ │ │ │ ├── multimedia-photo-viewer.svg │ │ │ │ ├── multimedia-video-player.svg │ │ │ │ ├── multimedia-volume-control.svg │ │ │ │ ├── music-app.svg │ │ │ │ ├── nautilus.svg │ │ │ │ ├── notes-app.svg │ │ │ │ ├── office-address-book.svg │ │ │ │ ├── office-addressbook.svg │ │ │ │ ├── office-calendar.svg │ │ │ │ ├── org.gnome.ArchiveManager.svg │ │ │ │ ├── org.gnome.Books.svg │ │ │ │ ├── org.gnome.Boxes.svg │ │ │ │ ├── org.gnome.Calculator.svg │ │ │ │ ├── org.gnome.Calendar.svg │ │ │ │ ├── org.gnome.Characters.svg │ │ │ │ ├── org.gnome.Cheese.svg │ │ │ │ ├── org.gnome.Contacts.svg │ │ │ │ ├── org.gnome.DejaDup.svg │ │ │ │ ├── org.gnome.DiskUtility.svg │ │ │ │ ├── org.gnome.Disks.svg │ │ │ │ ├── org.gnome.Documents.svg │ │ │ │ ├── org.gnome.Empathy.svg │ │ │ │ ├── org.gnome.Epiphany.svg │ │ │ │ ├── org.gnome.Evince.svg │ │ │ │ ├── org.gnome.Evolution.svg │ │ │ │ ├── org.gnome.Fractal.svg │ │ │ │ ├── org.gnome.Games.svg │ │ │ │ ├── org.gnome.Geary.svg │ │ │ │ ├── org.gnome.Logs.svg │ │ │ │ ├── org.gnome.Lollypop-artists-list.svg │ │ │ │ ├── org.gnome.Lollypop-equalizer.svg │ │ │ │ ├── org.gnome.Lollypop-gradio.svg │ │ │ │ ├── org.gnome.Lollypop-play-queue.svg │ │ │ │ ├── org.gnome.Lollypop-suggestions.svg │ │ │ │ ├── org.gnome.Lollypop-tag-list.svg │ │ │ │ ├── org.gnome.Lollypop-tag.svg │ │ │ │ ├── org.gnome.Lollypop-unplayed-albums.svg │ │ │ │ ├── org.gnome.Lollypop.svg │ │ │ │ ├── org.gnome.Mahjongg.svg │ │ │ │ ├── org.gnome.Maps.svg │ │ │ │ ├── org.gnome.Mines.svg │ │ │ │ ├── org.gnome.Music.svg │ │ │ │ ├── org.gnome.Nautilus.svg │ │ │ │ ├── org.gnome.Notes.svg │ │ │ │ ├── org.gnome.Photos.svg │ │ │ │ ├── org.gnome.Podcasts.svg │ │ │ │ ├── org.gnome.Polari.svg │ │ │ │ ├── org.gnome.PowerStats.svg │ │ │ │ ├── org.gnome.Rhythmbox.svg │ │ │ │ ├── org.gnome.Screenshot.svg │ │ │ │ ├── org.gnome.Settings.svg │ │ │ │ ├── org.gnome.SimpleScan.svg │ │ │ │ ├── org.gnome.Sudoku.svg │ │ │ │ ├── org.gnome.SystemMonitor.svg │ │ │ │ ├── org.gnome.Terminal.svg │ │ │ │ ├── org.gnome.Todo.svg │ │ │ │ ├── org.gnome.Totem.svg │ │ │ │ ├── org.gnome.Usage.svg │ │ │ │ ├── org.gnome.Weather.Application.svg │ │ │ │ ├── org.gnome.Weather.svg │ │ │ │ ├── org.gnome.Yelp.svg │ │ │ │ ├── org.gnome.baobab.svg │ │ │ │ ├── org.gnome.bijiben.svg │ │ │ │ ├── org.gnome.clocks.svg │ │ │ │ ├── org.gnome.eog.svg │ │ │ │ ├── org.gnome.gedit.svg │ │ │ │ ├── org.gnome.seahorse.Application.svg │ │ │ │ ├── org.gnome.tweaks.svg │ │ │ │ ├── packages-app.svg │ │ │ │ ├── password-manager.svg │ │ │ │ ├── passwords-app.svg │ │ │ │ ├── podcasts-app.svg │ │ │ │ ├── power-statistics.svg │ │ │ │ ├── preferences-bluetooth.svg │ │ │ │ ├── preferences-color.svg │ │ │ │ ├── preferences-desktop-accessibility.svg │ │ │ │ ├── preferences-desktop-apps.svg │ │ │ │ ├── preferences-desktop-default-applications.svg │ │ │ │ ├── preferences-desktop-display.svg │ │ │ │ ├── preferences-desktop-font.svg │ │ │ │ ├── preferences-desktop-keyboard-shortcuts.svg │ │ │ │ ├── preferences-desktop-keyboard.svg │ │ │ │ ├── preferences-desktop-locale.svg │ │ │ │ ├── preferences-desktop-online-accounts.svg │ │ │ │ ├── preferences-desktop-remote-desktop.svg │ │ │ │ ├── preferences-desktop-screensaver.svg │ │ │ │ ├── preferences-desktop-sharing.svg │ │ │ │ ├── preferences-desktop-wallpaper.svg │ │ │ │ ├── preferences-desktop.svg │ │ │ │ ├── preferences-other.svg │ │ │ │ ├── preferences-system-details.svg │ │ │ │ ├── preferences-system-devices.svg │ │ │ │ ├── preferences-system-network-proxy.svg │ │ │ │ ├── preferences-system-network.svg │ │ │ │ ├── preferences-system-notifications.svg │ │ │ │ ├── preferences-system-parental-control.svg │ │ │ │ ├── preferences-system-power.svg │ │ │ │ ├── preferences-system-privacy.svg │ │ │ │ ├── preferences-system-search.svg │ │ │ │ ├── preferences-system-sharing.svg │ │ │ │ ├── preferences-system-time.svg │ │ │ │ ├── preferences-system.svg │ │ │ │ ├── preferences-ubuntu-panel.svg │ │ │ │ ├── rhythmbox.svg │ │ │ │ ├── root-terminal-app.svg │ │ │ │ ├── scanner.svg │ │ │ │ ├── screenshot-app.svg │ │ │ │ ├── seahorse.svg │ │ │ │ ├── session-properties.svg │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ ├── settings-app.svg │ │ │ │ ├── shotwell.svg │ │ │ │ ├── slideshow.svg │ │ │ │ ├── software-properties-gtk.svg │ │ │ │ ├── software-properties.svg │ │ │ │ ├── software-store.svg │ │ │ │ ├── software-updater.svg │ │ │ │ ├── sparkleshare.svg │ │ │ │ ├── speedometer.svg │ │ │ │ ├── sudoku-app.svg │ │ │ │ ├── system-file-manager.svg │ │ │ │ ├── system-help.svg │ │ │ │ ├── system-monitor-app.svg │ │ │ │ ├── system-settings.svg │ │ │ │ ├── system-software-install.svg │ │ │ │ ├── system-software-update.svg │ │ │ │ ├── system-users.svg │ │ │ │ ├── terminal-app.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-editor.svg │ │ │ │ ├── to-do-app.svg │ │ │ │ ├── totem.svg │ │ │ │ ├── transmission.svg │ │ │ │ ├── tweaks-app.svg │ │ │ │ ├── ubiquity.svg │ │ │ │ ├── unity-tweak-tool.svg │ │ │ │ ├── update-manager.svg │ │ │ │ ├── usage-app.svg │ │ │ │ ├── usb-creator-gtk.svg │ │ │ │ ├── user-info.svg │ │ │ │ ├── utilities-system-monitor.svg │ │ │ │ ├── utilities-terminal.svg │ │ │ │ ├── utilities-tweak-tool.svg │ │ │ │ ├── weather-app.svg │ │ │ │ ├── web-browser.svg │ │ │ │ ├── webbrowser-app.svg │ │ │ │ ├── x-office-address-book.svg │ │ │ │ └── xapp-prefs-behavior.svg │ │ │ ├── synaptic.svg │ │ │ ├── syncthing.svg │ │ │ ├── syncthingtray.svg │ │ │ ├── syntevo-smartgit.svg │ │ │ ├── sysprof-icon.svg │ │ │ ├── sysprof.svg │ │ │ ├── system-config-authentication.svg │ │ │ ├── system-config-boot.svg │ │ │ ├── system-config-date.svg │ │ │ ├── system-config-display.svg │ │ │ ├── system-config-displayca.svg │ │ │ ├── system-config-firewall.svg │ │ │ ├── system-config-keyboard.svg │ │ │ ├── system-config-printer.svg │ │ │ ├── system-config-services.svg │ │ │ ├── system-config-users.svg │ │ │ ├── system-error.svg │ │ │ ├── system-file-manager.svg │ │ │ ├── system-help.svg │ │ │ ├── system-hibernate.svg │ │ │ ├── system-installer.svg │ │ │ ├── system-lock-screen-symbolic.svg │ │ │ ├── system-lock-screen.svg │ │ │ ├── system-monitor.svg │ │ │ ├── system-os-installer.svg │ │ │ ├── system-reboot.svg │ │ │ ├── system-run.svg │ │ │ ├── system-search.svg │ │ │ ├── system-shut-down.svg │ │ │ ├── system-shutdown.svg │ │ │ ├── system-software-install.svg │ │ │ ├── system-software-installer.svg │ │ │ ├── system-software-update.svg │ │ │ ├── system-switch-java.svg │ │ │ ├── system-switch-user.svg │ │ │ ├── system-upgrade.svg │ │ │ ├── system-users.svg │ │ │ ├── system-utilities-logviewer.svg │ │ │ ├── system76-driver.svg │ │ │ ├── systemback.svg │ │ │ ├── tableplus.svg │ │ │ ├── tagua.svg │ │ │ ├── tali.svg │ │ │ ├── tdenetworkmanager.svg │ │ │ ├── tdescreensaver.svg │ │ │ ├── tdevelop.svg │ │ │ ├── tdmconfig.svg │ │ │ ├── teams-for-linux.svg │ │ │ ├── teams.svg │ │ │ ├── teamviewer.svg │ │ │ ├── telegram-desktop.svg │ │ │ ├── telegram.svg │ │ │ ├── telepathy-kde.svg │ │ │ ├── telepathy.svg │ │ │ ├── terasology.svg │ │ │ ├── terminal-tango.svg │ │ │ ├── terminal.svg │ │ │ ├── terminator-128.svg │ │ │ ├── terminator.svg │ │ │ ├── terminix.svg │ │ │ ├── terminology.svg │ │ │ ├── termius.svg │ │ │ ├── terra.svg │ │ │ ├── texmaker.svg │ │ │ ├── texmaker128x128.svg │ │ │ ├── text-editor.svg │ │ │ ├── textadept.svg │ │ │ ├── theme-config.svg │ │ │ ├── thermal-monitor.svg │ │ │ ├── thunar-filemanager.svg │ │ │ ├── thunar.svg │ │ │ ├── thunderbird-3.0.svg │ │ │ ├── thunderbird-beta-bin.svg │ │ │ ├── thunderbird-beta.svg │ │ │ ├── thunderbird-branded.svg │ │ │ ├── thunderbird-early-bird.svg │ │ │ ├── thunderbird-icon.svg │ │ │ ├── thunderbird-mozilla-build.svg │ │ │ ├── thunderbird-trunk.svg │ │ │ ├── thunderbird.svg │ │ │ ├── tild.svg │ │ │ ├── tilda.svg │ │ │ ├── tilix.svg │ │ │ ├── tim.svg │ │ │ ├── time-admin.svg │ │ │ ├── time.svg │ │ │ ├── timekpr.svg │ │ │ ├── timeset-gui-icon.svg │ │ │ ├── timeshift.svg │ │ │ ├── timevault.svg │ │ │ ├── tint2.svg │ │ │ ├── tint2conf.svg │ │ │ ├── tkpacman-icon.svg │ │ │ ├── tkpacman.svg │ │ │ ├── tomboy-16.svg │ │ │ ├── tomboy-32.svg │ │ │ ├── tomboy-note.svg │ │ │ ├── tomboy-panel.svg │ │ │ ├── tomboy.svg │ │ │ ├── tools-report-bug.svg │ │ │ ├── tools-wizard.svg │ │ │ ├── topmenu-applet.svg │ │ │ ├── tor-browser-en.svg │ │ │ ├── tor-browser.svg │ │ │ ├── torbrowser.svg │ │ │ ├── totem.svg │ │ │ ├── tracker.svg │ │ │ ├── transgui-2.svg │ │ │ ├── transgui.svg │ │ │ ├── translator.svg │ │ │ ├── transmission-gtk.svg │ │ │ ├── transmission-qt.svg │ │ │ ├── transmission-remote-gtk.svg │ │ │ ├── transmission-remote-qt.svg │ │ │ ├── transmission.svg │ │ │ ├── tremotesf.svg │ │ │ ├── trojita.svg │ │ │ ├── tsclient.svg │ │ │ ├── tutanota-desktop.svg │ │ │ ├── tuxboot.svg │ │ │ ├── tuxpaint.svg │ │ │ ├── tv.kodi.Kodi.svg │ │ │ ├── tvmaxe.svg │ │ │ ├── tvtime.svg │ │ │ ├── twin.svg │ │ │ ├── twitux.svg │ │ │ ├── typhoon.svg │ │ │ ├── typora.svg │ │ │ ├── ubuntu-cleaner.svg │ │ │ ├── ubuntu-kylin-software-center.svg │ │ │ ├── ubuntu-logo-icon.svg │ │ │ ├── ubuntu-mate.svg │ │ │ ├── ubuntu-online-tour.svg │ │ │ ├── ubuntu-qtcreator.svg │ │ │ ├── ubuntu.svg │ │ │ ├── ubuntuone-client.svg │ │ │ ├── ubuntuone-installer.svg │ │ │ ├── ubuntuoneUP.svg │ │ │ ├── ubuntusoftware.svg │ │ │ ├── ufw-frontends.svg │ │ │ ├── uget-icon.svg │ │ │ ├── uget.svg │ │ │ ├── un-reboot.svg │ │ │ ├── unity-color-panel.svg │ │ │ ├── unity-control-center.svg │ │ │ ├── unity-datetime-panel.svg │ │ │ ├── unity-display-panel.svg │ │ │ ├── unity-lens-photos.svg │ │ │ ├── unity-mail.svg │ │ │ ├── unity-power-panel.svg │ │ │ ├── unity-sound-panel.svg │ │ │ ├── unity-tweak-tool.svg │ │ │ ├── unity-webapps-amazoncloudreader.svg │ │ │ ├── unity-webapps-facebook.svg │ │ │ ├── unity-webapps-telegram.svg │ │ │ ├── unity-webapps-yahoo-mail.svg │ │ │ ├── unity-webapps-yahoo-news.svg │ │ │ ├── unity-webapps-yahoonews.svg │ │ │ ├── unity-webapps-youtube.svg │ │ │ ├── uos-downloadmanager.svg │ │ │ ├── uosbrowser-cn.svg │ │ │ ├── update-manager.svg │ │ │ ├── update-notifier.svg │ │ │ ├── update.svg │ │ │ ├── urxvt.svg │ │ │ ├── urxvt_48x48.svg │ │ │ ├── us.zoom.Zoom.svg │ │ │ ├── usb-creator-gtk.svg │ │ │ ├── usb-creator-kde.svg │ │ │ ├── usb-creator.svg │ │ │ ├── user-admin.svg │ │ │ ├── user-file-manager.svg │ │ │ ├── user-info.svg │ │ │ ├── user_auth.svg │ │ │ ├── user_icon.svg │ │ │ ├── userdrake.svg │ │ │ ├── userinfo.svg │ │ │ ├── users-admin.svg │ │ │ ├── users.svg │ │ │ ├── utilities-dictionary.svg │ │ │ ├── utilities-file-archiver.svg │ │ │ ├── utilities-log-viewer.svg │ │ │ ├── utilities-notes.svg │ │ │ ├── utilities-root-terminal.svg │ │ │ ├── utilities-system-monitor.svg │ │ │ ├── utilities-terminal-root.svg │ │ │ ├── utilities-terminal.svg │ │ │ ├── utilities-terminal_su.svg │ │ │ ├── utilities-text-editor.svg │ │ │ ├── utilities-x-terminal.svg │ │ │ ├── utilities_terminal.svg │ │ │ ├── uxterm.svg │ │ │ ├── vala-panel.svg │ │ │ ├── vala-terminal.svg │ │ │ ├── vbox.svg │ │ │ ├── vcalendar.svg │ │ │ ├── veracrypt.svg │ │ │ ├── verbiste.svg │ │ │ ├── viber.svg │ │ │ ├── vidcutter.svg │ │ │ ├── video-display.svg │ │ │ ├── video-player.svg │ │ │ ├── vidiot.svg │ │ │ ├── viewnior.svg │ │ │ ├── vim-qt.svg │ │ │ ├── vim.svg │ │ │ ├── vimlogo.svg │ │ │ ├── vinagre.svg │ │ │ ├── virt-manager.svg │ │ │ ├── virtual-box.svg │ │ │ ├── virtualbox-bin.svg │ │ │ ├── virtualbox-ose.svg │ │ │ ├── visual-studio-code-insiders.svg │ │ │ ├── visual-studio-code.svg │ │ │ ├── visualstudiocode.svg │ │ │ ├── vivaldi-beta.svg │ │ │ ├── vivaldi-snapshot.svg │ │ │ ├── vivaldi-stable.svg │ │ │ ├── vivaldi.svg │ │ │ ├── vlc-alternative.svg │ │ │ ├── vlc.svg │ │ │ ├── vmplayer.svg │ │ │ ├── vmware-player.svg │ │ │ ├── vmware-workstation.svg │ │ │ ├── vmware.svg │ │ │ ├── vokoscreen.svg │ │ │ ├── volume-knob.svg │ │ │ ├── vsc.svg │ │ │ ├── vscode.svg │ │ │ ├── vscodium.svg │ │ │ ├── vso.svg │ │ │ ├── vuescan.svg │ │ │ ├── vvave.svg │ │ │ ├── wallpaper.svg │ │ │ ├── wallstreet-control.svg │ │ │ ├── warpinator.svg │ │ │ ├── waterfox-classic.svg │ │ │ ├── waterfox-current.svg │ │ │ ├── waterfox-icon.svg │ │ │ ├── waterfox.svg │ │ │ ├── wayland.svg │ │ │ ├── weather-widget.svg │ │ │ ├── weather.svg │ │ │ ├── web-amazon.svg │ │ │ ├── web-browser-app.svg │ │ │ ├── web-browser.svg │ │ │ ├── web-discord.svg │ │ │ ├── web-facebook.svg │ │ │ ├── web-google-maps.svg │ │ │ ├── web-google-play-music.svg │ │ │ ├── web-onenote.svg │ │ │ ├── web-spotify.svg │ │ │ ├── web-telegram.svg │ │ │ ├── web-whatsapp.svg │ │ │ ├── web-yahoo.svg │ │ │ ├── webbrowser-app.svg │ │ │ ├── webcamoid.svg │ │ │ ├── webide.svg │ │ │ ├── webstorm.svg │ │ │ ├── wewechat.svg │ │ │ ├── whaawmp.svg │ │ │ ├── whatsapp-desktop.svg │ │ │ ├── whatsapp-for-linux.svg │ │ │ ├── whatsapp-nativefier.svg │ │ │ ├── whatsapp.svg │ │ │ ├── whatsappfordesktop.svg │ │ │ ├── whatsdesk.svg │ │ │ ├── wicd-gtk.svg │ │ │ ├── wicd.svg │ │ │ ├── wifi-radar.svg │ │ │ ├── window-manager.svg │ │ │ └── window_list.svg │ │ │ ├── categories │ │ │ ├── applications-accessories.svg │ │ │ ├── applications-all.svg │ │ │ ├── applications-development.svg │ │ │ ├── applications-education-language.svg │ │ │ ├── applications-education-mathematics.svg │ │ │ ├── applications-education-science.svg │ │ │ ├── applications-education.svg │ │ │ ├── applications-engineering.svg │ │ │ ├── applications-games.svg │ │ │ ├── applications-graphics.svg │ │ │ ├── applications-internet.svg │ │ │ ├── applications-multimedia.svg │ │ │ ├── applications-office.svg │ │ │ ├── applications-other.svg │ │ │ ├── applications-science.svg │ │ │ ├── applications-system.svg │ │ │ ├── applications-utilities.svg │ │ │ ├── symbolic │ │ │ │ ├── applications-development.svg │ │ │ │ ├── applications-education.svg │ │ │ │ ├── applications-engineering.svg │ │ │ │ ├── applications-games.svg │ │ │ │ ├── applications-graphics.svg │ │ │ │ ├── applications-internet.svg │ │ │ │ ├── applications-multimedia.svg │ │ │ │ ├── applications-office.svg │ │ │ │ ├── applications-other.svg │ │ │ │ ├── applications-science.svg │ │ │ │ ├── applications-system.svg │ │ │ │ ├── applications-utilities.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── config-language.svg │ │ │ │ ├── cs-desklets.svg │ │ │ │ ├── emoji-activity.svg │ │ │ │ ├── emoji-body.svg │ │ │ │ ├── emoji-food.svg │ │ │ │ ├── emoji-nature.svg │ │ │ │ ├── emoji-objects.svg │ │ │ │ ├── emoji-travel.svg │ │ │ │ ├── event-birthday.svg │ │ │ │ ├── preferences-desktop-online-accounts.svg │ │ │ │ ├── xapp-prefs-display.svg │ │ │ │ ├── xapp-prefs-plugins.svg │ │ │ │ ├── xapp-prefs-preview.svg │ │ │ │ └── xapp-prefs-toolbar.svg │ │ │ └── wps-office-kingsoft.svg │ │ │ ├── devices │ │ │ ├── audio-card.svg │ │ │ ├── audio-headphones.svg │ │ │ ├── audio-headset.svg │ │ │ ├── battery.svg │ │ │ ├── blueman-camera.svg │ │ │ ├── blueman-cellular.svg │ │ │ ├── blueman-desktop.svg │ │ │ ├── blueman-device.svg │ │ │ ├── blueman-handheld.svg │ │ │ ├── blueman-keyboard.svg │ │ │ ├── blueman-laptop.svg │ │ │ ├── blueman-loudspeaker.svg │ │ │ ├── blueman-mouse.svg │ │ │ ├── blueman-pointing.svg │ │ │ ├── blueman-scanner.svg │ │ │ ├── blueman-smart-phone.svg │ │ │ ├── blueman.svg │ │ │ ├── camera-photo.svg │ │ │ ├── camera-video.svg │ │ │ ├── camera-web.svg │ │ │ ├── camera.svg │ │ │ ├── camera_unmount.svg │ │ │ ├── cdrom_unmount.svg │ │ │ ├── cdwriter_unmount.svg │ │ │ ├── computer-laptop.svg │ │ │ ├── computer.svg │ │ │ ├── cpu.svg │ │ │ ├── cs-mouse.svg │ │ │ ├── cs-printer.svg │ │ │ ├── cs-tablet.svg │ │ │ ├── cups-launcher.svg │ │ │ ├── cups.svg │ │ │ ├── cupsprinter.svg │ │ │ ├── device-notifier.svg │ │ │ ├── display.svg │ │ │ ├── document-print-preview.svg │ │ │ ├── drive-cdrom.svg │ │ │ ├── drive-harddisk-encrypted.svg │ │ │ ├── drive-harddisk-ieee1394.svg │ │ │ ├── drive-harddisk-root.svg │ │ │ ├── drive-harddisk-scsi.svg │ │ │ ├── drive-harddisk-solidstate.svg │ │ │ ├── drive-harddisk-system.svg │ │ │ ├── drive-harddisk-usb.svg │ │ │ ├── drive-harddisk.svg │ │ │ ├── drive-multidisk.svg │ │ │ ├── drive-multipartition.svg │ │ │ ├── drive-optical.svg │ │ │ ├── drive-partition.svg │ │ │ ├── drive-removable-media-usb-pendrive.svg │ │ │ ├── drive-removable-media-usb.svg │ │ │ ├── drive-removable-media.svg │ │ │ ├── drive-removable-usb.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-harddisk-1394.svg │ │ │ ├── gnome-dev-harddisk-usb.svg │ │ │ ├── gnome-dev-harddisk.svg │ │ │ ├── gnome-dev-ipod.svg │ │ │ ├── gnome-dev-keyboard.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-mouse-properties.svg │ │ │ ├── gnome-mouse.svg │ │ │ ├── gnome-phone-manager.svg │ │ │ ├── gnome-settings-keybindings.svg │ │ │ ├── gnome-settings-mouse.svg │ │ │ ├── gparted.svg │ │ │ ├── gtk-cdrom.svg │ │ │ ├── gtklp.svg │ │ │ ├── gtklpq.svg │ │ │ ├── input-gamepad.svg │ │ │ ├── input-gaming.svg │ │ │ ├── input-keyboard.svg │ │ │ ├── input-mouse.svg │ │ │ ├── input-tablet.svg │ │ │ ├── input-touchpad.svg │ │ │ ├── input_device_settings.svg │ │ │ ├── kdeprint_printer.svg │ │ │ ├── key_bindings.svg │ │ │ ├── keyboard.svg │ │ │ ├── kjobviewer.svg │ │ │ ├── kmousetool.svg │ │ │ ├── kprinter.svg │ │ │ ├── kprinter4.svg │ │ │ ├── kxkb.svg │ │ │ ├── laptop.svg │ │ │ ├── media-cdrom.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.svg │ │ │ ├── media-memory-sd.svg │ │ │ ├── media-memory-sm.svg │ │ │ ├── media-optical-audio.svg │ │ │ ├── media-optical-blu-ray.svg │ │ │ ├── media-optical-cd-r.svg │ │ │ ├── media-optical-cd-video.svg │ │ │ ├── media-optical-cd.svg │ │ │ ├── media-optical-cdr.svg │ │ │ ├── media-optical-data.svg │ │ │ ├── media-optical-dvd-ram.svg │ │ │ ├── media-optical-dvd-rom.svg │ │ │ ├── media-optical-dvd-rw.svg │ │ │ ├── media-optical-dvd-video.svg │ │ │ ├── media-optical-dvd.svg │ │ │ ├── media-optical-mixed-cd.svg │ │ │ ├── media-optical-recordable.svg │ │ │ ├── media-optical-video.svg │ │ │ ├── media-optical.svg │ │ │ ├── media-removable.svg │ │ │ ├── monitor.svg │ │ │ ├── mouse.svg │ │ │ ├── multimedia-player-apple-ipod-touch.svg │ │ │ ├── multimedia-player-ipod-touch.svg │ │ │ ├── multimedia-player.svg │ │ │ ├── music-player.svg │ │ │ ├── network-card.svg │ │ │ ├── network-rj11-female.svg │ │ │ ├── network-rj45-female.svg │ │ │ ├── nm-device-wireless.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 │ │ │ ├── phone-motorola-droid.svg │ │ │ ├── phone.svg │ │ │ ├── plugin-commands.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_mouse.svg │ │ │ ├── printer-mdk.svg │ │ │ ├── printer.svg │ │ │ ├── printer1.svg │ │ │ ├── printmgr.svg │ │ │ ├── processor.svg │ │ │ ├── removable-media.svg │ │ │ ├── scanner.svg │ │ │ ├── smartphone.svg │ │ │ ├── soundcard.svg │ │ │ ├── stock_cell-phone.svg │ │ │ ├── stock_printers.svg │ │ │ ├── symbolic │ │ │ │ ├── ac-adapter.svg │ │ │ │ ├── audio-card.svg │ │ │ │ ├── audio-headphones.svg │ │ │ │ ├── audio-headset.svg │ │ │ │ ├── audio-input-microphone.svg │ │ │ │ ├── audio-speakers.svg │ │ │ │ ├── auth-fingerprint.svg │ │ │ │ ├── auth-smartcard.svg │ │ │ │ ├── battery.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── camera-photo.svg │ │ │ │ ├── camera-video.svg │ │ │ │ ├── camera-web.svg │ │ │ │ ├── colorimeter-colorhug.svg │ │ │ │ ├── computer-apple-ipad.svg │ │ │ │ ├── computer-laptop.svg │ │ │ │ ├── computer-symbolic2.svg │ │ │ │ ├── computer.svg │ │ │ │ ├── display-projector.svg │ │ │ │ ├── drive-harddisk-ieee1394.svg │ │ │ │ ├── drive-harddisk-solidstate.svg │ │ │ │ ├── drive-harddisk-system.svg │ │ │ │ ├── drive-harddisk-usb.svg │ │ │ │ ├── drive-harddisk.svg │ │ │ │ ├── drive-multidisk.svg │ │ │ │ ├── drive-optical.svg │ │ │ │ ├── drive-removable-media-usb.svg │ │ │ │ ├── drive-removable-media.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── gnome-dev-media-sdmmc.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── input-dialpad.svg │ │ │ │ ├── input-gaming.svg │ │ │ │ ├── input-keyboard.svg │ │ │ │ ├── input-mouse.svg │ │ │ │ ├── input-tablet.svg │ │ │ │ ├── input-touchpad.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── media-flash.svg │ │ │ │ ├── media-floppy.svg │ │ │ │ ├── media-memory-sd.svg │ │ │ │ ├── media-memory-sembolic.svg │ │ │ │ ├── media-optical-audio.svg │ │ │ │ ├── media-optical-bd.svg │ │ │ │ ├── media-optical-cd-audio.svg │ │ │ │ ├── media-optical-data.svg │ │ │ │ ├── media-optical-dvd.svg │ │ │ │ ├── media-optical-video.svg │ │ │ │ ├── media-optical.svg │ │ │ │ ├── media-removable.svg │ │ │ │ ├── media-sim-card.svg │ │ │ │ ├── media-tape.svg │ │ │ │ ├── media-zip.svg │ │ │ │ ├── modem.svg │ │ │ │ ├── multimedia-player-apple-ipod-touch.svg │ │ │ │ ├── multimedia-player.svg │ │ │ │ ├── network-cellular.svg │ │ │ │ ├── network-server.svg │ │ │ │ ├── pda.svg │ │ │ │ ├── phone-apple-iphone.svg │ │ │ │ ├── phone-google-nexus-one.svg │ │ │ │ ├── phone-htc-g1-white.svg │ │ │ │ ├── phone-old.svg │ │ │ │ ├── phone-palm-pre.svg │ │ │ │ ├── phone-samsung-galaxy-s.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── printer-network.svg │ │ │ │ ├── printer.svg │ │ │ │ ├── scanner.svg │ │ │ │ ├── smartphone.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── thunderbolt.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── uninterruptible-power-supply.svg │ │ │ │ ├── video-display.svg │ │ │ │ ├── video-joined-displays.svg │ │ │ │ └── video-single-display.svg │ │ │ ├── system-config-keyboard.svg │ │ │ ├── system-config-printer.svg │ │ │ ├── system.svg │ │ │ ├── touchpad-indicator.svg │ │ │ ├── touchpad.svg │ │ │ ├── unity-fallback-mount-helper.svg │ │ │ ├── usbpendrive_unmount.svg │ │ │ ├── vap.svg │ │ │ ├── video-display.svg │ │ │ ├── video-television.svg │ │ │ ├── xfce-mouse.svg │ │ │ ├── xfce-printer.svg │ │ │ ├── xfce4-keyboard.svg │ │ │ ├── yast-printer.svg │ │ │ ├── yast_mouse.svg │ │ │ ├── yast_printer.svg │ │ │ └── yast_soundcard.svg │ │ │ ├── emblems │ │ │ ├── checkmark.svg │ │ │ ├── emblem-added.svg │ │ │ ├── emblem-checked.svg │ │ │ ├── emblem-information.svg │ │ │ ├── emblem-locked.svg │ │ │ ├── emblem-mounted.svg │ │ │ ├── emblem-new.png │ │ │ ├── emblem-noread.svg │ │ │ ├── emblem-nowrite.svg │ │ │ ├── emblem-pause.svg │ │ │ ├── emblem-readonly.svg │ │ │ ├── emblem-remove.svg │ │ │ ├── emblem-success.svg │ │ │ ├── emblem-unavailable.svg │ │ │ ├── emblem-unlocked.svg │ │ │ ├── emblem-unmounted.svg │ │ │ ├── emblem-unreadable.svg │ │ │ ├── emblem-warning.svg │ │ │ └── symbolic │ │ │ │ ├── emblem-default.svg │ │ │ │ ├── emblem-documents.svg │ │ │ │ ├── emblem-favorite.svg │ │ │ │ ├── emblem-important.svg │ │ │ │ ├── emblem-music.svg │ │ │ │ ├── emblem-ok.svg │ │ │ │ ├── emblem-photos.svg │ │ │ │ ├── emblem-shared.svg │ │ │ │ ├── emblem-synchronizing.svg │ │ │ │ ├── emblem-system.svg │ │ │ │ └── emblem-videos.svg │ │ │ ├── emotes │ │ │ ├── emote-love.png │ │ │ ├── face-angel.png │ │ │ ├── face-angry.png │ │ │ ├── face-cool.png │ │ │ ├── face-crying.png │ │ │ ├── face-devilish.png │ │ │ ├── face-embarrassed.png │ │ │ ├── face-glasses.png │ │ │ ├── face-kiss.png │ │ │ ├── face-laugh.png │ │ │ ├── face-monkey.png │ │ │ ├── face-plain.png │ │ │ ├── face-raspberry.png │ │ │ ├── face-sad.png │ │ │ ├── face-sick.png │ │ │ ├── face-smile-big.png │ │ │ ├── face-smile.png │ │ │ ├── face-smirk.png │ │ │ ├── face-surprise.png │ │ │ ├── face-tired.png │ │ │ ├── face-uncertain.png │ │ │ ├── face-wink.png │ │ │ └── face-worried.png │ │ │ ├── mimetypes │ │ │ ├── 7zip.svg │ │ │ ├── android-package-archive.svg │ │ │ ├── application-7zip.svg │ │ │ ├── application-acad.svg │ │ │ ├── application-apk.svg │ │ │ ├── application-archive-blank.svg │ │ │ ├── application-archive-zip.svg │ │ │ ├── application-archive.svg │ │ │ ├── application-atom+xml.svg │ │ │ ├── application-autocad_dwg.svg │ │ │ ├── application-certificate.svg │ │ │ ├── application-clariscad.svg │ │ │ ├── application-database.svg │ │ │ ├── application-dicom.svg │ │ │ ├── application-drawing.svg │ │ │ ├── application-dwg.svg │ │ │ ├── application-dxf.svg │ │ │ ├── application-epub+zip.svg │ │ │ ├── application-excel.svg │ │ │ ├── application-font-woff.svg │ │ │ ├── application-geo+json.svg │ │ │ ├── application-gml+xml.svg │ │ │ ├── application-gnunet-directory.svg │ │ │ ├── application-gpx+xml.svg │ │ │ ├── application-gpx.svg │ │ │ ├── application-gzip.svg │ │ │ ├── application-illustrator.svg │ │ │ ├── application-image-png.svg │ │ │ ├── application-images.svg │ │ │ ├── application-install.svg │ │ │ ├── application-java.svg │ │ │ ├── application-javascript.svg │ │ │ ├── application-json.svg │ │ │ ├── application-loc+xml.svg │ │ │ ├── application-mac-binhex40.svg │ │ │ ├── application-mathml+xml.svg │ │ │ ├── application-metalink+xml.svg │ │ │ ├── application-metalink4+xml.svg │ │ │ ├── application-msexcel.svg │ │ │ ├── application-msonenote.svg │ │ │ ├── application-msoutlook.svg │ │ │ ├── application-mspowerpoint.svg │ │ │ ├── application-msword-template.svg │ │ │ ├── application-msword.svg │ │ │ ├── application-octet-stream.svg │ │ │ ├── application-ogg.svg │ │ │ ├── application-owl+xml.svg │ │ │ ├── application-pdf.svg │ │ │ ├── application-pgp-encrypted.svg │ │ │ ├── application-pgp-keys.svg │ │ │ ├── application-pgp-signature.svg │ │ │ ├── application-pgp.svg │ │ │ ├── application-photoshop.svg │ │ │ ├── application-pkcs10.svg │ │ │ ├── application-pkcs12.svg │ │ │ ├── application-pkcs7-mime.svg │ │ │ ├── application-pkcs7-signature.svg │ │ │ ├── application-pkcs8.svg │ │ │ ├── application-pkix-cerl.svg │ │ │ ├── application-pkix-cert.svg │ │ │ ├── application-pkix-crl.svg │ │ │ ├── application-pkix-pkipath.svg │ │ │ ├── application-postscript.svg │ │ │ ├── application-ram.svg │ │ │ ├── application-rdata.svg │ │ │ ├── application-rdf+xml.svg │ │ │ ├── application-relaxng.svg │ │ │ ├── application-rss+xml.svg │ │ │ ├── application-rss_xml.svg │ │ │ ├── application-rtf-rtl.svg │ │ │ ├── application-rtf.svg │ │ │ ├── application-shorten.svg │ │ │ ├── application-slf+xml.svg │ │ │ ├── application-sql.svg │ │ │ ├── application-sxw.svg │ │ │ ├── application-tcx+xml.svg │ │ │ ├── application-text.svg │ │ │ ├── application-vnd-google-earth-kml.svg │ │ │ ├── application-vnd.android.package-archive.svg │ │ │ ├── application-vnd.ant.fit.svg │ │ │ ├── application-vnd.appimage.svg │ │ │ ├── application-vnd.apple.mpegurl.svg │ │ │ ├── application-vnd.cups-pdf-banner.svg │ │ │ ├── application-vnd.debian.binary-package.svg │ │ │ ├── application-vnd.fai.igc.svg │ │ │ ├── application-vnd.flatpak.ref.svg │ │ │ ├── application-vnd.flatpak.repo.svg │ │ │ ├── application-vnd.flatpak.svg │ │ │ ├── application-vnd.geo+json.svg │ │ │ ├── application-vnd.google-apps.document.svg │ │ │ ├── application-vnd.google-apps.map.svg │ │ │ ├── application-vnd.google-apps.spreadsheet.svg │ │ │ ├── application-vnd.google-earth.kml+xml.svg │ │ │ ├── application-vnd.google-earth.kml.svg │ │ │ ├── application-vnd.google-earth.kmz.svg │ │ │ ├── application-vnd.iccprofile.svg │ │ │ ├── application-vnd.insync.link.drive.doc.svg │ │ │ ├── application-vnd.insync.link.drive.sheet.svg │ │ │ ├── application-vnd.insync.link.drive.slides.svg │ │ │ ├── application-vnd.kde.bluedevil-sendfile.svg │ │ │ ├── application-vnd.kde.fontspackage.svg │ │ │ ├── application-vnd.kde.kphotoalbum-import.svg │ │ │ ├── application-vnd.kde.kxmlguirc.svg │ │ │ ├── application-vnd.kde.okular-archive.svg │ │ │ ├── application-vnd.ms-access.svg │ │ │ ├── application-vnd.ms-asf.svg │ │ │ ├── application-vnd.ms-cab-compressed.svg │ │ │ ├── application-vnd.ms-database.svg │ │ │ ├── application-vnd.ms-excel.addin.macroenabled.12.svg │ │ │ ├── application-vnd.ms-excel.sheet.binary.macroenabled.12.svg │ │ │ ├── application-vnd.ms-excel.sheet.macroenabled.12.svg │ │ │ ├── application-vnd.ms-excel.svg │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ │ ├── application-vnd.ms-htmlhelp.svg │ │ │ ├── application-vnd.ms-infopath.svg │ │ │ ├── application-vnd.ms-powerpoint.addin.macroenabled.12.svg │ │ │ ├── application-vnd.ms-powerpoint.presentation.macroenabled.12.svg │ │ │ ├── application-vnd.ms-powerpoint.slide.macroenabled.12.svg │ │ │ ├── application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg │ │ │ ├── application-vnd.ms-powerpoint.svg │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ │ ├── application-vnd.ms-project.svg │ │ │ ├── application-vnd.ms-publisher.svg │ │ │ ├── application-vnd.ms-tnef.svg │ │ │ ├── application-vnd.ms-word.document.macroenabled.12.svg │ │ │ ├── application-vnd.ms-word.svg │ │ │ ├── application-vnd.ms-word.template.macroenabled.12.svg │ │ │ ├── application-vnd.ms-wpl.svg │ │ │ ├── application-vnd.nintendo.snes.rom.svg │ │ │ ├── application-vnd.nmea.nmea.svg │ │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ │ ├── application-vnd.oasis.opendocument.database.svg │ │ │ ├── application-vnd.oasis.opendocument.draw.template.svg │ │ │ ├── application-vnd.oasis.opendocument.drawing-template.svg │ │ │ ├── application-vnd.oasis.opendocument.drawing.svg │ │ │ ├── application-vnd.oasis.opendocument.drawing.template.svg │ │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ │ ├── application-vnd.oasis.opendocument.graphics-template.svg │ │ │ ├── application-vnd.oasis.opendocument.graphics.svg │ │ │ ├── application-vnd.oasis.opendocument.image.svg │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ │ ├── application-vnd.oasis.opendocument.presentation.svg │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet.svg │ │ │ ├── application-vnd.oasis.opendocument.text-master.svg │ │ │ ├── application-vnd.oasis.opendocument.text-rtl.svg │ │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ │ ├── application-vnd.oasis.opendocument.text-web.svg │ │ │ ├── application-vnd.oasis.opendocument.text.svg │ │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ │ ├── application-vnd.openofficeorg.extension.svg │ │ │ ├── application-vnd.openxmlformats-officedocument.presentationml.presentation.svg │ │ │ ├── application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg │ │ │ ├── application-vnd.openxmlformats-officedocument.presentationml.template.svg │ │ │ ├── application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ │ ├── application-vnd.oziexplorer.plt.svg │ │ │ ├── application-vnd.oziexplorer.rte.svg │ │ │ ├── application-vnd.oziexplorer.wpt.svg │ │ │ ├── application-vnd.palm.svg │ │ │ ├── application-vnd.rar.svg │ │ │ ├── application-vnd.recordare.musicxml+xml.svg │ │ │ ├── application-vnd.recordare.musicxml.svg │ │ │ ├── application-vnd.rn-realmedia.svg │ │ │ ├── application-vnd.scribus.svg │ │ │ ├── application-vnd.snap.svg │ │ │ ├── application-vnd.sqlite3.svg │ │ │ ├── application-vnd.squashfs.svg │ │ │ ├── application-vnd.stardivision.cal.svg │ │ │ ├── application-vnd.stardivision.calc.svg │ │ │ ├── application-vnd.stardivision.draw.svg │ │ │ ├── application-vnd.stardivision.mail.svg │ │ │ ├── application-vnd.stardivision.math.svg │ │ │ ├── application-vnd.sun.xml.base.svg │ │ │ ├── application-vnd.sun.xml.calc.svg │ │ │ ├── application-vnd.sun.xml.calc.template.svg │ │ │ ├── application-vnd.sun.xml.draw.svg │ │ │ ├── application-vnd.sun.xml.draw.template.svg │ │ │ ├── application-vnd.sun.xml.impress.png.svg │ │ │ ├── application-vnd.sun.xml.impress.svg │ │ │ ├── application-vnd.sun.xml.impress.template.svg │ │ │ ├── application-vnd.sun.xml.math.svg │ │ │ ├── application-vnd.sun.xml.wordperfect.svg │ │ │ ├── application-vnd.sun.xml.writer-global.svg │ │ │ ├── application-vnd.sun.xml.writer-rtl.svg │ │ │ ├── application-vnd.sun.xml.writer-template.svg │ │ │ ├── application-vnd.sun.xml.writer.global.svg │ │ │ ├── application-vnd.sun.xml.writer.png.svg │ │ │ ├── application-vnd.sun.xml.writer.svg │ │ │ ├── application-vnd.sun.xml.writer.template.svg │ │ │ ├── application-vnd.tcpdump.pcap.svg │ │ │ ├── application-vnd.visio.svg │ │ │ ├── application-vnd.wordperfect-rtl.svg │ │ │ ├── application-vnd.wordperfect.svg │ │ │ ├── application-vnd.xdgapp.svg │ │ │ ├── application-winhlp.svg │ │ │ ├── application-wps-office.doc.svg │ │ │ ├── application-wps-office.docx.svg │ │ │ ├── application-wps-office.dot.svg │ │ │ ├── application-wps-office.dotx.svg │ │ │ ├── application-wps-office.pot.svg │ │ │ ├── application-wps-office.potx.svg │ │ │ ├── application-wps-office.ppt.svg │ │ │ ├── application-wps-office.pptx.svg │ │ │ ├── application-wps-office.wps.svg │ │ │ ├── application-wps-office.wpt.svg │ │ │ ├── application-wps-office.xls.svg │ │ │ ├── application-wps-office.xlsx.svg │ │ │ ├── application-wps-office.xlt.svg │ │ │ ├── application-wps-office.xltx.svg │ │ │ ├── application-x-5view.svg │ │ │ ├── application-x-7z-ace.svg │ │ │ ├── application-x-7z-arj.svg │ │ │ ├── application-x-7z-compressed-tar.svg │ │ │ ├── application-x-7z-compressed.svg │ │ │ ├── application-x-7zip.svg │ │ │ ├── application-x-abiword.svg │ │ │ ├── application-x-acad.svg │ │ │ ├── application-x-accountwizard-package.svg │ │ │ ├── application-x-ace.svg │ │ │ ├── application-x-addon.svg │ │ │ ├── application-x-amiga-disk-format.svg │ │ │ ├── application-x-appimage.svg │ │ │ ├── application-x-apple-diskimage.svg │ │ │ ├── application-x-applix-spreadsheet.svg │ │ │ ├── application-x-applix-word.svg │ │ │ ├── application-x-ar.svg │ │ │ ├── application-x-arc.svg │ │ │ ├── application-x-archive.svg │ │ │ ├── application-x-ardour.svg │ │ │ ├── application-x-arj.svg │ │ │ ├── application-x-audacity-project.svg │ │ │ ├── application-x-autocad.svg │ │ │ ├── application-x-awk.svg │ │ │ ├── application-x-bin.svg │ │ │ ├── application-x-bittorrent.svg │ │ │ ├── application-x-blender.svg │ │ │ ├── application-x-brasero.svg │ │ │ ├── application-x-bzdvi.svg │ │ │ ├── application-x-bzip-compressed-tar.svg │ │ │ ├── application-x-bzip-compressed.svg │ │ │ ├── application-x-bzip.svg │ │ │ ├── application-x-bzpdf.svg │ │ │ ├── application-x-bzpostscript.svg │ │ │ ├── application-x-cabri.svg │ │ │ ├── application-x-ccf-container.svg │ │ │ ├── application-x-cd-image.svg │ │ │ ├── application-x-cda.svg │ │ │ ├── application-x-chm.svg │ │ │ ├── application-x-class-file.svg │ │ │ ├── application-x-clementine.svg │ │ │ ├── application-x-cmakecache.svg │ │ │ ├── application-x-compress-tar.svg │ │ │ ├── application-x-compress.svg │ │ │ ├── application-x-compressed-tar.svg │ │ │ ├── application-x-compressed.svg │ │ │ ├── application-x-core.svg │ │ │ ├── application-x-cpio.svg │ │ │ ├── application-x-cue.svg │ │ │ ├── application-x-deb.svg │ │ │ ├── application-x-designer.svg │ │ │ ├── application-x-desktop.svg │ │ │ ├── application-x-dgn.svg │ │ │ ├── application-x-dia-diagram.svg │ │ │ ├── application-x-dlc-container.svg │ │ │ ├── application-x-drgeo.svg │ │ │ ├── application-x-dwg.svg │ │ │ ├── application-x-e-theme.svg │ │ │ ├── application-x-egon.svg │ │ │ ├── application-x-etherpeek.svg │ │ │ ├── application-x-excel.svg │ │ │ ├── application-x-executable-script.svg │ │ │ ├── application-x-executable.svg │ │ │ ├── application-x-extension-eml.svg │ │ │ ├── application-x-extension-fcstd.svg │ │ │ ├── application-x-extension-html.svg │ │ │ ├── application-x-extension-rss.svg │ │ │ ├── application-x-fictionbook+xml.svg │ │ │ ├── application-x-firmware.svg │ │ │ ├── application-x-flash-video.svg │ │ │ ├── application-x-font-afm.svg │ │ │ ├── application-x-font-bdf.svg │ │ │ ├── application-x-font-dos.svg │ │ │ ├── application-x-font-framemaker.svg │ │ │ ├── application-x-font-libgrx.svg │ │ │ ├── application-x-font-linux-psf.svg │ │ │ ├── application-x-font-otf.svg │ │ │ ├── application-x-font-pcf.svg │ │ │ ├── application-x-font-snf.svg │ │ │ ├── application-x-font-speedo.svg │ │ │ ├── application-x-font-sunos-news.svg │ │ │ ├── application-x-font-tex-tfm.svg │ │ │ ├── application-x-font-tex.svg │ │ │ ├── application-x-font-ttf.svg │ │ │ ├── application-x-font-ttx.svg │ │ │ ├── application-x-font-type1.svg │ │ │ ├── application-x-font-vfont.svg │ │ │ ├── application-x-gambas3.svg │ │ │ ├── application-x-gambasscript.svg │ │ │ ├── application-x-gambasserverpage.svg │ │ │ ├── application-x-gameboy-rom.svg │ │ │ ├── application-x-gamecube-rom.svg │ │ │ ├── application-x-gba-rom.svg │ │ │ ├── application-x-gdbm.svg │ │ │ ├── application-x-generic.svg │ │ │ ├── application-x-genesis-rom.svg │ │ │ ├── application-x-gettext-translation.svg │ │ │ ├── application-x-glabels.svg │ │ │ ├── application-x-glade.svg │ │ │ ├── application-x-gnome-theme-package-rtl.svg │ │ │ ├── application-x-gnome-theme-package.svg │ │ │ ├── application-x-gnumeric.svg │ │ │ ├── application-x-gpx+xml.svg │ │ │ ├── application-x-gpx.svg │ │ │ ├── application-x-grsync-session.svg │ │ │ ├── application-x-gtk-builder.svg │ │ │ ├── application-x-gunmeric.svg │ │ │ ├── application-x-gz-font-linux-psf.svg │ │ │ ├── application-x-gzdvi.svg │ │ │ ├── application-x-gzip.svg │ │ │ ├── application-x-gzpdf.svg │ │ │ ├── application-x-gzpostscript.svg │ │ │ ├── application-x-icq.svg │ │ │ ├── application-x-iff.svg │ │ │ ├── application-x-img.svg │ │ │ ├── application-x-ipod-firmware.svg │ │ │ ├── application-x-iptrace.svg │ │ │ ├── application-x-iso.svg │ │ │ ├── application-x-iso9660-appimage.svg │ │ │ ├── application-x-it87.svg │ │ │ ├── application-x-jar.svg │ │ │ ├── application-x-java-applet.svg │ │ │ ├── application-x-java-archive.svg │ │ │ ├── application-x-java.svg │ │ │ ├── application-x-javascript.svg │ │ │ ├── application-x-jokosher.svg │ │ │ ├── application-x-k3b.svg │ │ │ ├── application-x-kcachegrind.svg │ │ │ ├── application-x-kcsrc.svg │ │ │ ├── application-x-kdenlive.svg │ │ │ ├── application-x-kdenlivetitle.svg │ │ │ ├── application-x-keepass.svg │ │ │ ├── application-x-keepass2.svg │ │ │ ├── application-x-keepassx.svg │ │ │ ├── application-x-keepassxc.svg │ │ │ ├── application-x-kexi-connectiondata.svg │ │ │ ├── application-x-kexiproject-shortcut.svg │ │ │ ├── application-x-kexiproject-sqlite.svg │ │ │ ├── application-x-kexiproject-sqlite2.svg │ │ │ ├── application-x-kexiproject-sqlite3.svg │ │ │ ├── application-x-kformula.svg │ │ │ ├── application-x-kgeo.svg │ │ │ ├── application-x-kgetlist.svg │ │ │ ├── application-x-khtml-adaptor.svg │ │ │ ├── application-x-kig.svg │ │ │ ├── application-x-kmplot.svg │ │ │ ├── application-x-kns.svg │ │ │ ├── application-x-kolf.svg │ │ │ ├── application-x-kommander.svg │ │ │ ├── application-x-kontour.svg │ │ │ ├── application-x-kontur.svg │ │ │ ├── application-x-kopete-emoticons.svg │ │ │ ├── application-x-kourse.svg │ │ │ ├── application-x-kover.svg │ │ │ ├── application-x-kplato.svg │ │ │ ├── application-x-kpresenter.svg │ │ │ ├── application-x-krita-assistant.svg │ │ │ ├── application-x-krita-paintoppresent.svg │ │ │ ├── application-x-krita.svg │ │ │ ├── application-x-kseg.svg │ │ │ ├── application-x-ksysguard.svg │ │ │ ├── application-x-ktheme.svg │ │ │ ├── application-x-kudesigner.svg │ │ │ ├── application-x-kva.svg │ │ │ ├── application-x-kvs.svg │ │ │ ├── application-x-kvtml.svg │ │ │ ├── application-x-kwallet.svg │ │ │ ├── application-x-kword.svg │ │ │ ├── application-x-kwordquiz.svg │ │ │ ├── application-x-labplot2.svg │ │ │ ├── application-x-lanalyzer.svg │ │ │ ├── application-x-lha.svg │ │ │ ├── application-x-lhz.svg │ │ │ ├── application-x-lmms-project.svg │ │ │ ├── application-x-lyx.svg │ │ │ ├── application-x-lz4-compressed-tar.svg │ │ │ ├── application-x-lzip-compressed-tar.svg │ │ │ ├── application-x-lzma-compressed-tar.svg │ │ │ ├── application-x-lzma.svg │ │ │ ├── application-x-lzop.svg │ │ │ ├── application-x-lzpdf.svg │ │ │ ├── application-x-m4.svg │ │ │ ├── application-x-macbinary.svg │ │ │ ├── application-x-maff.svg │ │ │ ├── application-x-marble.svg │ │ │ ├── application-x-matroska.svg │ │ │ ├── application-x-mif.svg │ │ │ ├── application-x-mimearchive.svg │ │ │ ├── application-x-mobipocket-ebook.svg │ │ │ ├── application-x-model.svg │ │ │ ├── application-x-mplayer2.svg │ │ │ ├── application-x-ms-dos-executable.svg │ │ │ ├── application-x-ms-shortcut.svg │ │ │ ├── application-x-ms-wim.svg │ │ │ ├── application-x-msexcel.svg │ │ │ ├── application-x-msi.svg │ │ │ ├── application-x-mswinurl.svg │ │ │ ├── application-x-mswrite.svg │ │ │ ├── application-x-musescore+xml.svg │ │ │ ├── application-x-musescore.svg │ │ │ ├── application-x-n64-rom.svg │ │ │ ├── application-x-navi-animation.svg │ │ │ ├── application-x-nes-rom.svg │ │ │ ├── application-x-netinstobserver.svg │ │ │ ├── application-x-nettl.svg │ │ │ ├── application-x-nintendo-ds-rom.svg │ │ │ ├── application-x-nzb.svg │ │ │ ├── application-x-object.svg │ │ │ ├── application-x-ole-storage.svg │ │ │ ├── application-x-osm+xml.svg │ │ │ ├── application-x-pak.svg │ │ │ ├── application-x-partial-download.svg │ │ │ ├── application-x-patch.svg │ │ │ ├── application-x-pcapng.svg │ │ │ ├── application-x-pem-file.svg │ │ │ ├── application-x-pem-key.svg │ │ │ ├── application-x-perl.svg │ │ │ ├── application-x-php.svg │ │ │ ├── application-x-pkcs12.svg │ │ │ ├── application-x-pkcs7-certificates.svg │ │ │ ├── application-x-planner.svg │ │ │ ├── application-x-plasma.svg │ │ │ ├── application-x-project.svg │ │ │ ├── application-x-ptoptimizer-script.svg │ │ │ ├── application-x-python-bytecode.svg │ │ │ ├── application-x-qet-element.svg │ │ │ ├── application-x-qet-project.svg │ │ │ ├── application-x-qtiplot.svg │ │ │ ├── application-x-quanta.svg │ │ │ ├── application-x-quattropro.svg │ │ │ ├── application-x-r-project.svg │ │ │ ├── application-x-radcom.svg │ │ │ ├── application-x-rar.svg │ │ │ ├── application-x-raw-disk-image-xz-compressed.svg │ │ │ ├── application-x-raw-disk-image.svg │ │ │ ├── application-x-rdata.svg │ │ │ ├── application-x-remote-connection.svg │ │ │ ├── application-x-riff.svg │ │ │ ├── application-x-root.svg │ │ │ ├── application-x-rosegarden-composition.svg │ │ │ ├── application-x-rpm.svg │ │ │ ├── application-x-rsdf-container.svg │ │ │ ├── application-x-ruby.svg │ │ │ ├── application-x-sami.svg │ │ │ ├── application-x-scel.svg │ │ │ ├── application-x-scribus.svg │ │ │ ├── application-x-shar.svg │ │ │ ├── application-x-shared-library-la.svg │ │ │ ├── application-x-sharedlib.svg │ │ │ ├── application-x-shellscript.svg │ │ │ ├── application-x-shockwave-flash.svg │ │ │ ├── application-x-siag.svg │ │ │ ├── application-x-sif.svg │ │ │ ├── application-x-skg.svg │ │ │ ├── application-x-skgc.svg │ │ │ ├── application-x-smb-server.svg │ │ │ ├── application-x-smb-workgroup.svg │ │ │ ├── application-x-snoop.svg │ │ │ ├── application-x-sogouskin.svg │ │ │ ├── application-x-source-rpm.svg │ │ │ ├── application-x-spkac+base64.svg │ │ │ ├── application-x-spkac.svg │ │ │ ├── application-x-spss-por.svg │ │ │ ├── application-x-spss-sav.svg │ │ │ ├── application-x-sqlite2.svg │ │ │ ├── application-x-sqlite3.svg │ │ │ ├── application-x-srt.svg │ │ │ ├── application-x-srtrip.svg │ │ │ ├── application-x-stuffit.svg │ │ │ ├── application-x-subrip.svg │ │ │ ├── application-x-superkaramba.svg │ │ │ ├── application-x-tar.svg │ │ │ ├── application-x-tarz.svg │ │ │ ├── application-x-tektronix-rf5.svg │ │ │ ├── application-x-tex-gf.svg │ │ │ ├── application-x-tex-pk.svg │ │ │ ├── application-x-texgzdvi.svg │ │ │ ├── application-x-tgif.svg │ │ │ ├── application-x-theme-rtl.svg │ │ │ ├── application-x-theme.svg │ │ │ ├── application-x-trash.svg │ │ │ ├── application-x-trig.svg │ │ │ ├── application-x-troff-man.svg │ │ │ ├── application-x-tuberling.svg │ │ │ ├── application-x-turtle.svg │ │ │ ├── application-x-tzo.svg │ │ │ ├── application-x-uml.svg │ │ │ ├── application-x-visualnetworks.svg │ │ │ ├── application-x-vnc.svg │ │ │ ├── application-x-vnd.akonadi.calendar.event.svg │ │ │ ├── application-x-vnd.akonadi.calendar.freebusy.svg │ │ │ ├── application-x-vnd.akonadi.calendar.journal.svg │ │ │ ├── application-x-vnd.akonadi.calendar.todo.svg │ │ │ ├── application-x-vnd.akonadi.collection.virtual.svg │ │ │ ├── application-x-vnd.akonadi.note.svg │ │ │ ├── application-x-vnd.kde.alarm.active.svg │ │ │ ├── application-x-vnd.kde.alarm.archived.svg │ │ │ ├── application-x-vnd.kde.alarm.svg │ │ │ ├── application-x-vnd.kde.alarm.template.svg │ │ │ ├── application-x-vnd.kde.contactgroup.svg │ │ │ ├── application-x-vnd.kde.kplato.svg │ │ │ ├── application-x-vnd.kde.kplato.work.svg │ │ │ ├── application-x-vnd.kde.kugar.mixed.svg │ │ │ ├── application-x-vnd.kde.notes.svg │ │ │ ├── application-x-vnd.kde.plan.svg │ │ │ ├── application-x-vnd.kde.plan.work.svg │ │ │ ├── application-x-webarchive.svg │ │ │ ├── application-x-wine-extension-cpl.svg │ │ │ ├── application-x-wine-extension-inf.svg │ │ │ ├── application-x-wine-extension-ini.svg │ │ │ ├── application-x-wine-extension-its.svg │ │ │ ├── application-x-wine-extension-skb.svg │ │ │ ├── application-x-wine-extension-skp.svg │ │ │ ├── application-x-wine-extension-vbs.svg │ │ │ ├── application-x-wmf.svg │ │ │ ├── application-x-x509-ca-cert.svg │ │ │ ├── application-x-x509-user-cert.svg │ │ │ ├── application-x-xbel.svg │ │ │ ├── application-x-xliff.svg │ │ │ ├── application-x-xpinstall.svg │ │ │ ├── application-x-xz-compressed-tar.svg │ │ │ ├── application-x-xz-pkg.svg │ │ │ ├── application-x-xz.svg │ │ │ ├── application-x-xzpdf.svg │ │ │ ├── application-x-yaml.svg │ │ │ ├── application-x-zerosize.svg │ │ │ ├── application-x-zip-compressed-fb2.svg │ │ │ ├── application-x-zip.svg │ │ │ ├── application-x-zoo.svg │ │ │ ├── application-x.object.svg │ │ │ ├── application-xhtml+xml.svg │ │ │ ├── application-xmind.svg │ │ │ ├── application-xml-dtd.svg │ │ │ ├── application-xml.svg │ │ │ ├── application-xsd.svg │ │ │ ├── application-xslt+xml.svg │ │ │ ├── application-xspf+xml.svg │ │ │ ├── application-zip.svg │ │ │ ├── archive.svg │ │ │ ├── ascii.svg │ │ │ ├── audio-aac.svg │ │ │ ├── audio-ac3.svg │ │ │ ├── audio-flac.svg │ │ │ ├── audio-m4a.svg │ │ │ ├── audio-midi.svg │ │ │ ├── audio-mp2.svg │ │ │ ├── audio-mp3.svg │ │ │ ├── audio-mp4.svg │ │ │ ├── audio-mpeg.svg │ │ │ ├── audio-prs.sid.svg │ │ │ ├── audio-shn.svg │ │ │ ├── audio-vn.rn-realmedia.svg │ │ │ ├── audio-vnd.rn-realvideo.svg │ │ │ ├── audio-vnd.wave.svg │ │ │ ├── audio-x-adpcm.svg │ │ │ ├── audio-x-aiff.svg │ │ │ ├── audio-x-caf.svg │ │ │ ├── audio-x-flac+ogg.svg │ │ │ ├── audio-x-flac.svg │ │ │ ├── audio-x-generic.svg │ │ │ ├── audio-x-it.svg │ │ │ ├── audio-x-m4a.svg │ │ │ ├── audio-x-midi.svg │ │ │ ├── audio-x-monkey.svg │ │ │ ├── audio-x-monkeys-audio.svg │ │ │ ├── audio-x-mp2.svg │ │ │ ├── audio-x-mp3-playlist.svg │ │ │ ├── audio-x-mpeg.svg │ │ │ ├── audio-x-mpegurl.svg │ │ │ ├── audio-x-ms-wax.svg │ │ │ ├── audio-x-ms-wma.svg │ │ │ ├── audio-x-ofr.svg │ │ │ ├── audio-x-playlist.svg │ │ │ ├── audio-x-pn-realaudio.svg │ │ │ ├── audio-x-scpls.svg │ │ │ ├── audio-x-speex+ogg.svg │ │ │ ├── audio-x-tta.svg │ │ │ ├── audio-x-vorbis+ogg.svg │ │ │ ├── audio-x-wav.svg │ │ │ ├── audio-x-xi.svg │ │ │ ├── audio-x-xm.svg │ │ │ ├── audiobook.svg │ │ │ ├── binary.svg │ │ │ ├── blank-cd.svg │ │ │ ├── contents2.svg │ │ │ ├── deb.svg │ │ │ ├── divx.svg │ │ │ ├── document-excel.svg │ │ │ ├── document-illustrator.svg │ │ │ ├── document-photoshop.svg │ │ │ ├── document-powerpoint.svg │ │ │ ├── document-rtl.svg │ │ │ ├── document-word.svg │ │ │ ├── document.svg │ │ │ ├── drawing-dwg.svg │ │ │ ├── emblem-package.svg │ │ │ ├── empty.svg │ │ │ ├── encrypted.svg │ │ │ ├── exec.svg │ │ │ ├── extension.svg │ │ │ ├── folder_tar.svg │ │ │ ├── font-collection.svg │ │ │ ├── font-otf.svg │ │ │ ├── font-ttf.svg │ │ │ ├── font-woff.svg │ │ │ ├── font-x-generic.svg │ │ │ ├── font.svg │ │ │ ├── font_bitmap.svg │ │ │ ├── font_truetype.svg │ │ │ ├── font_type1.svg │ │ │ ├── fonts-package.svg │ │ │ ├── gedit-plugin.svg │ │ │ ├── gif.svg │ │ │ ├── gnome-exe-thumbnailer-generic-x.svg │ │ │ ├── gnome-exe-thumbnailer-generic.svg │ │ │ ├── gnome-exe-thumbnailer-template.svg │ │ │ ├── gnome-fs-executable.svg │ │ │ ├── gnome-fs-regular.svg │ │ │ ├── gnome-mime-application-atom+xml.svg │ │ │ ├── gnome-mime-application-javascript.svg │ │ │ ├── gnome-mime-application-magicpoint.svg │ │ │ ├── gnome-mime-application-msword.svg │ │ │ ├── gnome-mime-application-pdf.svg │ │ │ ├── gnome-mime-application-postscript.svg │ │ │ ├── gnome-mime-application-rss+xml.svg │ │ │ ├── gnome-mime-application-rtf.svg │ │ │ ├── gnome-mime-application-vnd.lotus-1-2-3.svg │ │ │ ├── gnome-mime-application-vnd.ms-cab-compressed.svg │ │ │ ├── gnome-mime-application-vnd.ms-excel.svg │ │ │ ├── gnome-mime-application-vnd.ms-powerpoint.svg │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.graphics.svg │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.image.svg │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.presentation-template.svg │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.presentation.svg │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.spreadsheet.svg │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.text-template.svg │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.text-web.svg │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.text.svg │ │ │ ├── gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.presentation.svg │ │ │ ├── gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg │ │ │ ├── gnome-mime-application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ ├── gnome-mime-application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg │ │ │ ├── gnome-mime-application-vnd.rn-realmedia-secure.svg │ │ │ ├── gnome-mime-application-vnd.rn-realmedia-vbr.svg │ │ │ ├── gnome-mime-application-vnd.rn-realmedia.svg │ │ │ ├── gnome-mime-application-vnd.scribus.svg │ │ │ ├── gnome-mime-application-vnd.stardivision.calc.svg │ │ │ ├── gnome-mime-application-vnd.stardivision.impress.svg │ │ │ ├── gnome-mime-application-vnd.stardivision.writer.svg │ │ │ ├── gnome-mime-application-vnd.sun.xml.calc.svg │ │ │ ├── gnome-mime-application-vnd.sun.xml.calc.template.svg │ │ │ ├── gnome-mime-application-vnd.sun.xml.draw.svg │ │ │ ├── gnome-mime-application-vnd.sun.xml.draw.template.svg │ │ │ ├── gnome-mime-application-vnd.sun.xml.impress.svg │ │ │ ├── gnome-mime-application-vnd.sun.xml.impress.template.svg │ │ │ ├── gnome-mime-application-vnd.sun.xml.writer.svg │ │ │ ├── gnome-mime-application-vnd.sun.xml.writer.template.svg │ │ │ ├── gnome-mime-application-wordperfect.svg │ │ │ ├── gnome-mime-application-x-7z-compressed.svg │ │ │ ├── gnome-mime-application-x-7zip.svg │ │ │ ├── gnome-mime-application-x-abiword.svg │ │ │ ├── gnome-mime-application-x-ace.svg │ │ │ ├── gnome-mime-application-x-applix-spreadsheet.svg │ │ │ ├── gnome-mime-application-x-applix-word.svg │ │ │ ├── gnome-mime-application-x-archive.svg │ │ │ ├── gnome-mime-application-x-arj.svg │ │ │ ├── gnome-mime-application-x-bittorrent.svg │ │ │ ├── gnome-mime-application-x-bzip-compressed-tar.svg │ │ │ ├── gnome-mime-application-x-bzip-compressed.svg │ │ │ ├── gnome-mime-application-x-bzip.svg │ │ │ ├── gnome-mime-application-x-class-file.svg │ │ │ ├── gnome-mime-application-x-compress.svg │ │ │ ├── gnome-mime-application-x-compressed-tar.svg │ │ │ ├── gnome-mime-application-x-cpio-compress.svg │ │ │ ├── gnome-mime-application-x-cpio-compressed.svg │ │ │ ├── gnome-mime-application-x-cpio.svg │ │ │ ├── gnome-mime-application-x-deb.svg │ │ │ ├── gnome-mime-application-x-designer.svg │ │ │ ├── gnome-mime-application-x-desktop.svg │ │ │ ├── gnome-mime-application-x-dvi.svg │ │ │ ├── gnome-mime-application-x-executable.svg │ │ │ ├── gnome-mime-application-x-font-afm.svg │ │ │ ├── gnome-mime-application-x-font-bdf.svg │ │ │ ├── gnome-mime-application-x-font-linux-psf.svg │ │ │ ├── gnome-mime-application-x-font-pcf.svg │ │ │ ├── gnome-mime-application-x-font-sunos-news.svg │ │ │ ├── gnome-mime-application-x-font-ttf.svg │ │ │ ├── gnome-mime-application-x-glade.svg │ │ │ ├── gnome-mime-application-x-gnome-app-info.svg │ │ │ ├── gnome-mime-application-x-gnome-theme-package.svg │ │ │ ├── gnome-mime-application-x-gnumeric.svg │ │ │ ├── gnome-mime-application-x-gzip.svg │ │ │ ├── gnome-mime-application-x-gzpostscript.svg │ │ │ ├── gnome-mime-application-x-jar.svg │ │ │ ├── gnome-mime-application-x-java-archive.svg │ │ │ ├── gnome-mime-application-x-java.svg │ │ │ ├── gnome-mime-application-x-javascript.svg │ │ │ ├── gnome-mime-application-x-killustrator.svg │ │ │ ├── gnome-mime-application-x-kpresenter.svg │ │ │ ├── gnome-mime-application-x-kspread.svg │ │ │ ├── gnome-mime-application-x-kword.svg │ │ │ ├── gnome-mime-application-x-lha.svg │ │ │ ├── gnome-mime-application-x-lhz.svg │ │ │ ├── gnome-mime-application-x-lzma-compressed-tar.svg │ │ │ ├── gnome-mime-application-x-lzop.svg │ │ │ ├── gnome-mime-application-x-ms-dos-executable.svg │ │ │ ├── gnome-mime-application-x-nero-disc-image.svg │ │ │ ├── gnome-mime-application-x-nero-linux-compilation.svg │ │ │ ├── gnome-mime-application-x-perl.svg │ │ │ ├── gnome-mime-application-x-php.svg │ │ │ ├── gnome-mime-application-x-python-bytecode.svg │ │ │ ├── gnome-mime-application-x-rar.svg │ │ │ ├── gnome-mime-application-x-remote-connection.svg │ │ │ ├── gnome-mime-application-x-rpm.svg │ │ │ ├── gnome-mime-application-x-ruby.svg │ │ │ ├── gnome-mime-application-x-scribus.svg │ │ │ ├── gnome-mime-application-x-shellscript.svg │ │ │ ├── gnome-mime-application-x-shockwave-flash.svg │ │ │ ├── gnome-mime-application-x-stuffit.svg │ │ │ ├── gnome-mime-application-x-tar.svg │ │ │ ├── gnome-mime-application-x-tarz.svg │ │ │ ├── gnome-mime-application-x-tex.svg │ │ │ ├── gnome-mime-application-x-theme.svg │ │ │ ├── gnome-mime-application-x-vnc.svg │ │ │ ├── gnome-mime-application-x-zip.svg │ │ │ ├── gnome-mime-application-x-zoo.svg │ │ │ ├── gnome-mime-application-xhtml+xml.svg │ │ │ ├── gnome-mime-application-xml.svg │ │ │ ├── gnome-mime-application-zip.svg │ │ │ ├── gnome-mime-audio.svg │ │ │ ├── gnome-mime-image-jpeg.svg │ │ │ ├── gnome-mime-image-png.svg │ │ │ ├── gnome-mime-image-x-cmu-raster.svg │ │ │ ├── gnome-mime-image-x-killustrator.svg │ │ │ ├── gnome-mime-image-x-xpixmap.svg │ │ │ ├── gnome-mime-image.svg │ │ │ ├── gnome-mime-text-css.svg │ │ │ ├── gnome-mime-text-html.svg │ │ │ ├── gnome-mime-text-javascript.svg │ │ │ ├── gnome-mime-text-plain.svg │ │ │ ├── gnome-mime-text-vnd.wap.wml.svg │ │ │ ├── gnome-mime-text-x-c++.svg │ │ │ ├── gnome-mime-text-x-c++src.svg │ │ │ ├── gnome-mime-text-x-c.svg │ │ │ ├── gnome-mime-text-x-changelog.svg │ │ │ ├── gnome-mime-text-x-chdr.svg │ │ │ ├── gnome-mime-text-x-copying.svg │ │ │ ├── gnome-mime-text-x-csh.svg │ │ │ ├── gnome-mime-text-x-csharp.svg │ │ │ ├── gnome-mime-text-x-csrc.svg │ │ │ ├── gnome-mime-text-x-gtkrc.svg │ │ │ ├── gnome-mime-text-x-install.svg │ │ │ ├── gnome-mime-text-x-java.svg │ │ │ ├── gnome-mime-text-x-javascript.svg │ │ │ ├── gnome-mime-text-x-makefile.svg │ │ │ ├── gnome-mime-text-x-python.svg │ │ │ ├── gnome-mime-text-x-readme.svg │ │ │ ├── gnome-mime-text-x-sh.svg │ │ │ ├── gnome-mime-text-x-source.svg │ │ │ ├── gnome-mime-text-x-vcalendar.svg │ │ │ ├── gnome-mime-text-x-vcard.svg │ │ │ ├── gnome-mime-text-x-zsh.svg │ │ │ ├── gnome-mime-text.svg │ │ │ ├── gnome-mime-video-x-ms-asf.svg │ │ │ ├── gnome-mime-video-x-ms-wmv.svg │ │ │ ├── gnome-mime-video.svg │ │ │ ├── gnome-mime-x-font-afm.svg │ │ │ ├── gnome-mime-x-install.svg │ │ │ ├── gnome-package.svg │ │ │ ├── gnome-unknown.svg │ │ │ ├── gtk-file.svg │ │ │ ├── html.svg │ │ │ ├── image-bmp.svg │ │ │ ├── image-generic.svg │ │ │ ├── image-gif.svg │ │ │ ├── image-ico.svg │ │ │ ├── image-jpeg.svg │ │ │ ├── image-jpeg2000.svg │ │ │ ├── image-svg+xml-compressed.svg │ │ │ ├── image-svg+xml.svg │ │ │ ├── image-tiff.svg │ │ │ ├── image-vnd.adobe.photoshop.svg │ │ │ ├── image-vnd.dgn.svg │ │ │ ├── image-vnd.djvu.svg │ │ │ ├── image-vnd.dwg.svg │ │ │ ├── image-vnd.dxf.svg │ │ │ ├── image-vnd.microsoft.icon.svg │ │ │ ├── image-vnd.zbrush.pcx.svg │ │ │ ├── image-x-3ds.svg │ │ │ ├── image-x-adobe-dng.svg │ │ │ ├── image-x-compressed-xcf.svg │ │ │ ├── image-x-dwg.svg │ │ │ ├── image-x-emf.svg │ │ │ ├── image-x-eps.svg │ │ │ ├── image-x-generic.svg │ │ │ ├── image-x-ico.svg │ │ │ ├── image-x-icon.svg │ │ │ ├── image-x-krita.svg │ │ │ ├── image-x-pcx.svg │ │ │ ├── image-x-portable-bitmap.svg │ │ │ ├── image-x-portable.bitmap.svg │ │ │ ├── image-x-psd.svg │ │ │ ├── image-x-psdimage-x-psd.svg │ │ │ ├── image-x-svg+xml.svg │ │ │ ├── image-x-tga.svg │ │ │ ├── image-x-vnd.trolltech.qpicture.svg │ │ │ ├── image-x-win-bitmap.svg │ │ │ ├── image-x-win-bmp.svg │ │ │ ├── image-x-wmf.svg │ │ │ ├── image-x-xcf.svg │ │ │ ├── image-x-xfig.svg │ │ │ ├── image.svg │ │ │ ├── inode-symlink.svg │ │ │ ├── inode-vnd.kde.service.unknown.svg │ │ │ ├── inode-vnd.kde.service.upnp.Unknown.svg │ │ │ ├── internet-feed.svg │ │ │ ├── javascript.svg │ │ │ ├── jd-container.svg │ │ │ ├── jpeg.svg │ │ │ ├── jpg.svg │ │ │ ├── kpresenter_kpr.svg │ │ │ ├── libpeas-plugin.svg │ │ │ ├── libreoffice-database.svg │ │ │ ├── libreoffice-drawing-template.svg │ │ │ ├── libreoffice-drawing.svg │ │ │ ├── libreoffice-extension.svg │ │ │ ├── libreoffice-formula.svg │ │ │ ├── libreoffice-master-document.svg │ │ │ ├── libreoffice-oasis-database.svg │ │ │ ├── libreoffice-oasis-drawing-template.svg │ │ │ ├── libreoffice-oasis-drawing.svg │ │ │ ├── libreoffice-oasis-formula.svg │ │ │ ├── libreoffice-oasis-master-document.svg │ │ │ ├── libreoffice-oasis-presentation-template.svg │ │ │ ├── libreoffice-oasis-presentation.svg │ │ │ ├── libreoffice-oasis-spreadsheet-template.svg │ │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ │ ├── libreoffice-oasis-text-template.svg │ │ │ ├── libreoffice-oasis-text.svg │ │ │ ├── libreoffice-oasis-web-template.svg │ │ │ ├── libreoffice-oasis-web.svg │ │ │ ├── libreoffice-presentation-template.svg │ │ │ ├── libreoffice-presentation.svg │ │ │ ├── libreoffice-spreadsheet-template.svg │ │ │ ├── libreoffice-spreadsheet.svg │ │ │ ├── libreoffice-text-template.svg │ │ │ ├── libreoffice-text.svg │ │ │ ├── libreoffice-web.svg │ │ │ ├── media-audio.svg │ │ │ ├── media-image.svg │ │ │ ├── media-video.svg │ │ │ ├── message-news.svg │ │ │ ├── message-partial.svg │ │ │ ├── message-rfc822.svg │ │ │ ├── message-x-gnu-rmail.svg │ │ │ ├── message.svg │ │ │ ├── mime-ascii.svg │ │ │ ├── misc.svg │ │ │ ├── model-fcstd.svg │ │ │ ├── model-vnd.dwf.svg │ │ │ ├── model-vrml.svg │ │ │ ├── model-x.stl-binary.svg │ │ │ ├── model-x3d+binary.svg │ │ │ ├── model-x3d+vrml.svg │ │ │ ├── model-x3d+xml.svg │ │ │ ├── model-x3d.svg │ │ │ ├── model.svg │ │ │ ├── multipart-alternative.svg │ │ │ ├── multipart-appledouble.svg │ │ │ ├── multipart-digest.svg │ │ │ ├── multipart-encrypted.svg │ │ │ ├── multipart-mixed.svg │ │ │ ├── multipart-related.svg │ │ │ ├── multipart-report.svg │ │ │ ├── multipart-signed.svg │ │ │ ├── multipart-x-mixed-replace.svg │ │ │ ├── music.svg │ │ │ ├── nero-disc-image.svg │ │ │ ├── nero-linux-compilation.svg │ │ │ ├── none.svg │ │ │ ├── odf.svg │ │ │ ├── office-contact.svg │ │ │ ├── office-document-rtl.svg │ │ │ ├── office-document.svg │ │ │ ├── office-illustration.svg │ │ │ ├── office-spreadsheet.svg │ │ │ ├── openoffice3-drawing.svg │ │ │ ├── openoffice4-database.svg │ │ │ ├── openoffice4-drawing-template.svg │ │ │ ├── openoffice4-drawing.svg │ │ │ ├── openoffice4-extension.svg │ │ │ ├── openoffice4-formula.svg │ │ │ ├── openoffice4-master-document.svg │ │ │ ├── openoffice4-oasis-database.svg │ │ │ ├── openoffice4-oasis-drawing-template.svg │ │ │ ├── openoffice4-oasis-drawing.svg │ │ │ ├── openoffice4-oasis-formula.svg │ │ │ ├── openoffice4-oasis-master-document.svg │ │ │ ├── openoffice4-oasis-presentation-template.svg │ │ │ ├── openoffice4-oasis-presentation.svg │ │ │ ├── openoffice4-oasis-spreadsheet-template.svg │ │ │ ├── openoffice4-oasis-spreadsheet.svg │ │ │ ├── openoffice4-oasis-text-template.svg │ │ │ ├── openoffice4-oasis-text.svg │ │ │ ├── openoffice4-oasis-web-template.svg │ │ │ ├── openoffice4-presentation-template.svg │ │ │ ├── openoffice4-presentation.svg │ │ │ ├── openoffice4-spreadsheet-template.svg │ │ │ ├── openoffice4-spreadsheet.svg │ │ │ ├── openoffice4-text-template.svg │ │ │ ├── openoffice4-text.svg │ │ │ ├── openofficeorg3-database.svg │ │ │ ├── openofficeorg3-drawing.svg │ │ │ ├── openofficeorg3-extension.svg │ │ │ ├── openofficeorg3-oasis-database.svg │ │ │ ├── openofficeorg3-oasis-spreadsheet.svg │ │ │ ├── opera-extension.svg │ │ │ ├── opera-widget.svg │ │ │ ├── package-gdebi.svg │ │ │ ├── package-x-generic.svg │ │ │ ├── package.svg │ │ │ ├── package_editors.svg │ │ │ ├── package_wordprocessing.svg │ │ │ ├── pdf.svg │ │ │ ├── plan.svg │ │ │ ├── playlist-automatic.svg │ │ │ ├── playlist.svg │ │ │ ├── podcast.svg │ │ │ ├── pplication-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg │ │ │ ├── qgis-asc.svg │ │ │ ├── qgis-ddf.svg │ │ │ ├── qgis-dem.svg │ │ │ ├── qgis-dt0.svg │ │ │ ├── qgis-dxf.svg │ │ │ ├── qgis-gml.svg │ │ │ ├── qgis-img.svg │ │ │ ├── qgis-mldata.svg │ │ │ ├── qgis-qlr.svg │ │ │ ├── qgis-qml.svg │ │ │ ├── qgis-shp.svg │ │ │ ├── qgis-sqlite.svg │ │ │ ├── rar.svg │ │ │ ├── raw.svg │ │ │ ├── rpm.svg │ │ │ ├── shellscript.svg │ │ │ ├── sound.svg │ │ │ ├── source-php.svg │ │ │ ├── source-playlist.svg │ │ │ ├── source-smart-playlist.svg │ │ │ ├── spreadsheet.svg │ │ │ ├── stock_addressbook.svg │ │ │ ├── stock_calendar.svg │ │ │ ├── stock_certificate.svg │ │ │ ├── stock_new-drawing.svg │ │ │ ├── stock_new-html.svg │ │ │ ├── stock_new-master-document.svg │ │ │ ├── stock_new-presentation.svg │ │ │ ├── stock_new-spreadsheet.svg │ │ │ ├── stock_new-template.svg │ │ │ ├── stock_new-text.svg │ │ │ ├── stock_script.svg │ │ │ ├── stock_scripts.svg │ │ │ ├── stock_unknown.svg │ │ │ ├── svg.svg │ │ │ ├── symbolic │ │ │ │ ├── application-certificate.svg │ │ │ │ ├── application-rss+xml.svg │ │ │ │ ├── application-x-addon.svg │ │ │ │ ├── application-x-appliance.svg │ │ │ │ ├── application-x-class-file.svg │ │ │ │ ├── application-x-executable.svg │ │ │ │ ├── application-xml.svg │ │ │ │ ├── audio-x-generic.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── extension.svg │ │ │ │ ├── font-x-generic.svg │ │ │ │ ├── html.svg │ │ │ │ ├── image-x-generic.svg │ │ │ │ ├── media-audio.svg │ │ │ │ ├── media-image.svg │ │ │ │ ├── media-optical-bd.svg │ │ │ │ ├── media-optical-cd-audio.svg │ │ │ │ ├── media-optical-dvd.svg │ │ │ │ ├── media-optical.svg │ │ │ │ ├── media-video.svg │ │ │ │ ├── package-x-generic.svg │ │ │ │ ├── payment-card.svg │ │ │ │ ├── playlist.svg │ │ │ │ ├── text-calendar.svg │ │ │ │ ├── text-html.svg │ │ │ │ ├── text-htmlh.svg │ │ │ │ ├── text-x-copying.svg │ │ │ │ ├── text-x-generic.svg │ │ │ │ ├── text-xml.svg │ │ │ │ ├── vcalendar.svg │ │ │ │ ├── video-x-generic.svg │ │ │ │ ├── x-office-address-book.svg │ │ │ │ ├── x-office-calendar.svg │ │ │ │ ├── x-office-document.svg │ │ │ │ ├── x-office-drawing.svg │ │ │ │ ├── x-office-presentation.svg │ │ │ │ └── x-office-spreadsheet.svg │ │ │ ├── tar.svg │ │ │ ├── text-c.svg │ │ │ ├── text-calendar.svg │ │ │ ├── text-csharp.svg │ │ │ ├── text-css.svg │ │ │ ├── text-csv.svg │ │ │ ├── text-directory.svg │ │ │ ├── text-dockerfile.svg │ │ │ ├── text-enriched-rtl.svg │ │ │ ├── text-enriched.svg │ │ │ ├── text-html.svg │ │ │ ├── text-html_alt.svg │ │ │ ├── text-htmlh.svg │ │ │ ├── text-javascript.svg │ │ │ ├── text-less.svg │ │ │ ├── text-markdown.svg │ │ │ ├── text-mathml.svg │ │ │ ├── text-mht.svg │ │ │ ├── text-plain.svg │ │ │ ├── text-r.svg │ │ │ ├── text-rdf+xml.svg │ │ │ ├── text-rdf.svg │ │ │ ├── text-richtext-rtl.svg │ │ │ ├── text-richtext.svg │ │ │ ├── text-rtf.svg │ │ │ ├── text-rtl.svg │ │ │ ├── text-rust.svg │ │ │ ├── text-sgml.svg │ │ │ ├── text-spreadsheet.svg │ │ │ ├── text-sqml.svg │ │ │ ├── text-troff.svg │ │ │ ├── text-vcalendar.svg │ │ │ ├── text-vnd-wap-wml.svg │ │ │ ├── text-vnd.abc.svg │ │ │ ├── text-vnd.kde.kcrash-report.svg │ │ │ ├── text-vnd.qt.linguist.svg │ │ │ ├── text-vnd.trolltech.linguist.svg │ │ │ ├── text-vnd.wap.wml.svg │ │ │ ├── text-wiki.svg │ │ │ ├── text-x-adasrc.svg │ │ │ ├── text-x-apport.svg │ │ │ ├── text-x-asm.svg │ │ │ ├── text-x-authors.svg │ │ │ ├── text-x-bak.svg │ │ │ ├── text-x-bibtex.svg │ │ │ ├── text-x-c++.svg │ │ │ ├── text-x-c++hdr.svg │ │ │ ├── text-x-c++src.svg │ │ │ ├── text-x-c.svg │ │ │ ├── text-x-changelog.svg │ │ │ ├── text-x-chdr.svg │ │ │ ├── text-x-cmake.svg │ │ │ ├── text-x-cobol.svg │ │ │ ├── text-x-copying.svg │ │ │ ├── text-x-cpp.svg │ │ │ ├── text-x-credits.svg │ │ │ ├── text-x-csharp.svg │ │ │ ├── text-x-csrc.svg │ │ │ ├── text-x-css.svg │ │ │ ├── text-x-dtd.svg │ │ │ ├── text-x-fortran.svg │ │ │ ├── text-x-generic-rtl.svg │ │ │ ├── text-x-generic.svapplication-x-awk.svg │ │ │ ├── text-x-generic.svg │ │ │ ├── text-x-gettext-translation.svg │ │ │ ├── text-x-go.svg │ │ │ ├── text-x-haskell.svg │ │ │ ├── text-x-hex.svg │ │ │ ├── text-x-install.svg │ │ │ ├── text-x-java-source.svg │ │ │ ├── text-x-java.svg │ │ │ ├── text-x-javascript.svg │ │ │ ├── text-x-katefilelist.svg │ │ │ ├── text-x-kotlin.svg │ │ │ ├── text-x-kvc.svg │ │ │ ├── text-x-kvt.svg │ │ │ ├── text-x-ldif.svg │ │ │ ├── text-x-lilypond.svg │ │ │ ├── text-x-log.svg │ │ │ ├── text-x-lua.svg │ │ │ ├── text-x-lyx.svg │ │ │ ├── text-x-makefile.svg │ │ │ ├── text-x-markdown.svg │ │ │ ├── text-x-meson.svg │ │ │ ├── text-x-microdvd.svg │ │ │ ├── text-x-nfo.svg │ │ │ ├── text-x-objchdr.svg │ │ │ ├── text-x-objcsrc.svg │ │ │ ├── text-x-opml+xml.svg │ │ │ ├── text-x-opml.svg │ │ │ ├── text-x-pascal.svg │ │ │ ├── text-x-patch.svg │ │ │ ├── text-x-perl.svg │ │ │ ├── text-x-php.svg │ │ │ ├── text-x-plain.svg │ │ │ ├── text-x-po.svg │ │ │ ├── text-x-preview.svg │ │ │ ├── text-x-python.svg │ │ │ ├── text-x-python3.svg │ │ │ ├── text-x-qml.svg │ │ │ ├── text-x-r-source.svg │ │ │ ├── text-x-r.svg │ │ │ ├── text-x-readme.svg │ │ │ ├── text-x-rpm-spec.svg │ │ │ ├── text-x-rsrc.svg │ │ │ ├── text-x-ruby.svg │ │ │ ├── text-x-rust.svg │ │ │ ├── text-x-sass.svg │ │ │ ├── text-x-scala.svg │ │ │ ├── text-x-scheme.svg │ │ │ ├── text-x-script.svg │ │ │ ├── text-x-scss.svg │ │ │ ├── text-x-source.svg │ │ │ ├── text-x-sql.svg │ │ │ ├── text-x-ssa.svg │ │ │ ├── text-x-tcl.svg │ │ │ ├── text-x-tex.svg │ │ │ ├── text-x-texinfo.svg │ │ │ ├── text-x-typescript.svg │ │ │ ├── text-x-vala.svg │ │ │ ├── text-x-vcard.svg │ │ │ ├── text-x-xslfo.svg │ │ │ ├── text-x.svg │ │ │ ├── text-xhtml+xml.svg │ │ │ ├── text-xmcd.svg │ │ │ ├── text-xml.svg │ │ │ ├── text.svg │ │ │ ├── text2.svg │ │ │ ├── tgz.svg │ │ │ ├── torrent.svg │ │ │ ├── txt.svg │ │ │ ├── txt2.svg │ │ │ ├── unknown.svg │ │ │ ├── uri-mms.svg │ │ │ ├── uri-mmst.svg │ │ │ ├── uri-mmsu.svg │ │ │ ├── uri-pnm.svg │ │ │ ├── uri-rtspt.svg │ │ │ ├── uri-rtspu.svg │ │ │ ├── vcalendar.svg │ │ │ ├── vcard.svg │ │ │ ├── video-mlt-playlist.svg │ │ │ ├── video-mp2t.svg │ │ │ ├── video-mp4.svg │ │ │ ├── video-quicktime.svg │ │ │ ├── video-vivo.svg │ │ │ ├── video-vnd.rn-realvideo.svg │ │ │ ├── video-wavelet.svg │ │ │ ├── video-webm.svg │ │ │ ├── video-x-anim.svg │ │ │ ├── video-x-flic.svg │ │ │ ├── video-x-flv.svg │ │ │ ├── video-x-generic.svg │ │ │ ├── video-x-google-vlc-plugin.svg │ │ │ ├── video-x-javafx.svg │ │ │ ├── video-x-matroska.svg │ │ │ ├── video-x-mng.svg │ │ │ ├── video-x-ms-asf-plugin.svg │ │ │ ├── video-x-ms-asf.svg │ │ │ ├── video-x-ms-wmp.svg │ │ │ ├── video-x-ms-wmv.svg │ │ │ ├── video-x-msvideo.svg │ │ │ ├── video-x-nsv.svg │ │ │ ├── video-x-ogm+ogg.svg │ │ │ ├── video-x-sgi-movie.svg │ │ │ ├── video-x-theora+ogg.svg │ │ │ ├── video-x-wmv.svg │ │ │ ├── video.svg │ │ │ ├── viewbib.svg │ │ │ ├── viewdvi.svg │ │ │ ├── viewhtml.svg │ │ │ ├── viewpdf.svg │ │ │ ├── viewps.svg │ │ │ ├── virtualbox-hdd.svg │ │ │ ├── virtualbox-ova.svg │ │ │ ├── virtualbox-ovf.svg │ │ │ ├── virtualbox-vbox-extpack.svg │ │ │ ├── virtualbox-vbox.svg │ │ │ ├── virtualbox-vdi.svg │ │ │ ├── virtualbox-vhd.svg │ │ │ ├── virtualbox-vmdk.svg │ │ │ ├── vnd.ms-publisher.svg │ │ │ ├── vnd.oasis.opendocument.drawing.svg │ │ │ ├── wordprocessing-rtl.svg │ │ │ ├── wordprocessing.svg │ │ │ ├── wps-office-doc.svg │ │ │ ├── wps-office-dot.svg │ │ │ ├── wps-office-dps.svg │ │ │ ├── wps-office-dpt.svg │ │ │ ├── wps-office-et.svg │ │ │ ├── wps-office-ett.svg │ │ │ ├── wps-office-pot.svg │ │ │ ├── wps-office-ppt.svg │ │ │ ├── wps-office-wps.svg │ │ │ ├── wps-office-wpt.svg │ │ │ ├── wps-office-xls.svg │ │ │ ├── wps-office-xlt.svg │ │ │ ├── www.svg │ │ │ ├── x-content-audio-cdda.svg │ │ │ ├── x-content-audio-dvd.svg │ │ │ ├── x-content-audio-player.svg │ │ │ ├── x-content-blank-bd.svg │ │ │ ├── x-content-blank-cd.svg │ │ │ ├── x-content-blank-dvd.svg │ │ │ ├── x-content-blank-hddvd.svg │ │ │ ├── x-content-image-dcf.svg │ │ │ ├── x-content-image-picturecd.svg │ │ │ ├── x-content-software.svg │ │ │ ├── x-content-unix-software.svg │ │ │ ├── x-content-video-bluray.svg │ │ │ ├── x-content-video-dvd.svg │ │ │ ├── x-content-video-hddvd.svg │ │ │ ├── x-content-video-svcd.svg │ │ │ ├── x-content-video-vcd.svg │ │ │ ├── x-content-win32-software.svg │ │ │ ├── x-gambasserverpage.svg │ │ │ ├── x-kde-nsplugin-generated.svg │ │ │ ├── x-mail-distribution-list.svg │ │ │ ├── x-media-podcast.svg │ │ │ ├── x-office-address-book.svg │ │ │ ├── x-office-calendar.svg │ │ │ ├── x-office-contact.svg │ │ │ ├── x-office-document-rtl.svg │ │ │ ├── x-office-document-template-rtl.svg │ │ │ ├── x-office-document-template.svg │ │ │ ├── x-office-document.svg │ │ │ ├── x-office-drawing.svg │ │ │ ├── x-office-presentation-rtl.svg │ │ │ ├── x-office-presentation-template-rtl.svg │ │ │ ├── x-office-presentation-template.svg │ │ │ ├── x-office-presentation.svg │ │ │ ├── x-office-spreadsheet-template.svg │ │ │ ├── x-office-spreadsheet.svg │ │ │ ├── x-world-x-3dmf.svg │ │ │ └── zip.svg │ │ │ ├── places │ │ │ ├── akonadi-phone-home.svg │ │ │ ├── application-x-gnome-saved-search.svg │ │ │ ├── bookmarks.svg │ │ │ ├── default-folder-bookmark.svg │ │ │ ├── default-folder-documents.svg │ │ │ ├── default-folder-download.svg │ │ │ ├── default-folder-dropbox.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-root.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.svg │ │ │ ├── edittrash.svg │ │ │ ├── emptytrash.svg │ │ │ ├── favorites.svg │ │ │ ├── folder-black.svg │ │ │ ├── folder-blue.svg │ │ │ ├── folder-bookmark.svg │ │ │ ├── folder-bookmarks.svg │ │ │ ├── folder-brown.svg │ │ │ ├── folder-camera.svg │ │ │ ├── folder-desktop.svg │ │ │ ├── folder-documents-open.svg │ │ │ ├── folder-documents.svg │ │ │ ├── folder-download-open.svg │ │ │ ├── folder-download.svg │ │ │ ├── folder-downloads.svg │ │ │ ├── folder-drag-accept.svg │ │ │ ├── folder-dropbox.svg │ │ │ ├── folder-favorites.svg │ │ │ ├── folder-green.svg │ │ │ ├── folder-grey.svg │ │ │ ├── folder-home.svg │ │ │ ├── folder-html.svg │ │ │ ├── folder-image-people.svg │ │ │ ├── folder-image.svg │ │ │ ├── folder-images.svg │ │ │ ├── folder-magenta.svg │ │ │ ├── folder-music-open.svg │ │ │ ├── folder-music.svg │ │ │ ├── folder-network.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-orange.svg │ │ │ ├── folder-photo.svg │ │ │ ├── folder-photos.svg │ │ │ ├── folder-picture.svg │ │ │ ├── folder-pictures-open.svg │ │ │ ├── folder-pictures.svg │ │ │ ├── folder-public.svg │ │ │ ├── folder-publicshare-open.svg │ │ │ ├── folder-publicshare.svg │ │ │ ├── folder-recent.svg │ │ │ ├── folder-red.svg │ │ │ ├── folder-remote-ftp.svg │ │ │ ├── folder-remote-nfs.svg │ │ │ ├── folder-remote-open.svg │ │ │ ├── folder-remote-smb.svg │ │ │ ├── folder-remote-ssh.svg │ │ │ ├── folder-remote.svg │ │ │ ├── folder-root.svg │ │ │ ├── folder-saved-search-alt.svg │ │ │ ├── folder-saved-search.svg │ │ │ ├── folder-sound.svg │ │ │ ├── folder-temp.svg │ │ │ ├── folder-templates-open.svg │ │ │ ├── folder-templates.svg │ │ │ ├── folder-text.svg │ │ │ ├── folder-txt.svg │ │ │ ├── folder-video.svg │ │ │ ├── folder-videocamera.svg │ │ │ ├── folder-videos-open.svg │ │ │ ├── folder-videos.svg │ │ │ ├── folder-violet.svg │ │ │ ├── folder-visiting.svg │ │ │ ├── folder-yellow.svg │ │ │ ├── folder.svg │ │ │ ├── folder_color_blue.svg │ │ │ ├── folder_color_blue_desktop.svg │ │ │ ├── folder_color_blue_documents.svg │ │ │ ├── folder_color_blue_music.svg │ │ │ ├── folder_color_blue_pictures.svg │ │ │ ├── folder_color_blue_public.svg │ │ │ ├── folder_color_blue_templates.svg │ │ │ ├── folder_color_blue_videos.svg │ │ │ ├── folder_color_brown.svg │ │ │ ├── folder_color_brown_desktop.svg │ │ │ ├── folder_color_brown_documents.svg │ │ │ ├── folder_color_brown_music.svg │ │ │ ├── folder_color_brown_pictures.svg │ │ │ ├── folder_color_brown_public.svg │ │ │ ├── folder_color_brown_templates.svg │ │ │ ├── folder_color_brown_videos.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_templates.svg │ │ │ ├── folder_color_default_videos.svg │ │ │ ├── folder_color_green.svg │ │ │ ├── folder_color_green_desktop.svg │ │ │ ├── folder_color_green_documents.svg │ │ │ ├── folder_color_green_music.svg │ │ │ ├── folder_color_green_pictures.svg │ │ │ ├── folder_color_green_public.svg │ │ │ ├── folder_color_green_templates.svg │ │ │ ├── folder_color_green_videos.svg │ │ │ ├── folder_color_grey.svg │ │ │ ├── folder_color_grey_desktop.svg │ │ │ ├── folder_color_grey_documents.svg │ │ │ ├── folder_color_grey_music.svg │ │ │ ├── folder_color_grey_pictures.svg │ │ │ ├── folder_color_grey_public.svg │ │ │ ├── folder_color_grey_templates.svg │ │ │ ├── folder_color_grey_videos.svg │ │ │ ├── folder_color_orange.svg │ │ │ ├── folder_color_orange_desktop.svg │ │ │ ├── folder_color_orange_documents.svg │ │ │ ├── folder_color_orange_music.svg │ │ │ ├── folder_color_orange_pictures.svg │ │ │ ├── folder_color_orange_public.svg │ │ │ ├── folder_color_orange_templates.svg │ │ │ ├── folder_color_orange_videos.svg │ │ │ ├── folder_color_pink.svg │ │ │ ├── folder_color_pink_desktop.svg │ │ │ ├── folder_color_pink_documents.svg │ │ │ ├── folder_color_pink_music.svg │ │ │ ├── folder_color_pink_pictures.svg │ │ │ ├── folder_color_pink_public.svg │ │ │ ├── folder_color_pink_templates.svg │ │ │ ├── folder_color_pink_videos.svg │ │ │ ├── folder_color_purple.svg │ │ │ ├── folder_color_purple_desktop.svg │ │ │ ├── folder_color_purple_documents.svg │ │ │ ├── folder_color_purple_music.svg │ │ │ ├── folder_color_purple_pictures.svg │ │ │ ├── folder_color_purple_public.svg │ │ │ ├── folder_color_purple_templates.svg │ │ │ ├── folder_color_purple_videos.svg │ │ │ ├── folder_color_red.svg │ │ │ ├── folder_color_red_desktop.svg │ │ │ ├── folder_color_red_documents.svg │ │ │ ├── folder_color_red_music.svg │ │ │ ├── folder_color_red_pictures.svg │ │ │ ├── folder_color_red_public.svg │ │ │ ├── folder_color_red_templates.svg │ │ │ ├── folder_color_red_videos.svg │ │ │ ├── folder_color_yellow.svg │ │ │ ├── folder_color_yellow_desktop.svg │ │ │ ├── folder_color_yellow_documents.svg │ │ │ ├── folder_color_yellow_music.svg │ │ │ ├── folder_color_yellow_pictures.svg │ │ │ ├── folder_color_yellow_public.svg │ │ │ ├── folder_color_yellow_templates.svg │ │ │ ├── folder_color_yellow_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-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 │ │ │ ├── inode-directory.svg │ │ │ ├── kfm_home.svg │ │ │ ├── knetattach.svg │ │ │ ├── library-music.svg │ │ │ ├── neat.svg │ │ │ ├── network-server-database.svg │ │ │ ├── network-server.svg │ │ │ ├── network-workgroup.svg │ │ │ ├── network.svg │ │ │ ├── network_fs.svg │ │ │ ├── network_local.svg │ │ │ ├── nfs.svg │ │ │ ├── other-desktop.svg │ │ │ ├── redhat-home.svg │ │ │ ├── redhat-network-server.svg │ │ │ ├── redhat-system-group.svg │ │ │ ├── repository.svg │ │ │ ├── samba.svg │ │ │ ├── server-database.svg │ │ │ ├── server.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 │ │ │ ├── symbolic │ │ │ │ ├── bookmark-missing.svg │ │ │ │ ├── document-open-recent.svg │ │ │ │ ├── find-here.svg │ │ │ │ ├── folder-activities.svg │ │ │ │ ├── folder-apple.svg │ │ │ │ ├── folder-cd.svg │ │ │ │ ├── folder-copy-cloud.svg │ │ │ │ ├── folder-development.svg │ │ │ │ ├── folder-documents.svg │ │ │ │ ├── folder-download.svg │ │ │ │ ├── folder-drag-accept.svg │ │ │ │ ├── folder-dropbox.svg │ │ │ │ ├── folder-games.svg │ │ │ │ ├── folder-git.svg │ │ │ │ ├── folder-github.svg │ │ │ │ ├── folder-gitlab.svg │ │ │ │ ├── folder-gnome.svg │ │ │ │ ├── folder-google-drive.svg │ │ │ │ ├── folder-image-people.svg │ │ │ │ ├── folder-images.svg │ │ │ │ ├── folder-important.svg │ │ │ │ ├── folder-java.svg │ │ │ │ ├── folder-locked.svg │ │ │ │ ├── folder-mail-cloud.svg │ │ │ │ ├── folder-mail.svg │ │ │ │ ├── folder-mega.svg │ │ │ │ ├── folder-meocloud.svg │ │ │ │ ├── folder-music.svg │ │ │ │ ├── folder-new.svg │ │ │ │ ├── folder-open-recent.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-owncloud.svg │ │ │ │ ├── folder-pcloud.svg │ │ │ │ ├── folder-pictures.svg │ │ │ │ ├── folder-print.svg │ │ │ │ ├── folder-private.svg │ │ │ │ ├── folder-publicshare.svg │ │ │ │ ├── folder-recent.svg │ │ │ │ ├── folder-remote.svg │ │ │ │ ├── folder-root.svg │ │ │ │ ├── folder-saved-search.svg │ │ │ │ ├── folder-script.svg │ │ │ │ ├── folder-steam.svg │ │ │ │ ├── folder-tar.svg │ │ │ │ ├── folder-templates.svg │ │ │ │ ├── folder-torrent.svg │ │ │ │ ├── folder-unlocked.svg │ │ │ │ ├── folder-vbox.svg │ │ │ │ ├── folder-videos.svg │ │ │ │ ├── folder-visiting.svg │ │ │ │ ├── folder-wifi.svg │ │ │ │ ├── folder-wine.svg │ │ │ │ ├── folder-yandex-disk.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── inode-directory.svg │ │ │ │ ├── internet-radio.svg │ │ │ │ ├── mail-folder-inbox.svg │ │ │ │ ├── mail-folder-outbox.svg │ │ │ │ ├── nemo-bookmark-not-found.svg │ │ │ │ ├── network-server-database.svg │ │ │ │ ├── network-server.svg │ │ │ │ ├── network-workgroup.svg │ │ │ │ ├── playlist-queue.svg │ │ │ │ ├── playlist.svg │ │ │ │ ├── user-bookmarks.svg │ │ │ │ ├── user-desktop.svg │ │ │ │ ├── user-home.svg │ │ │ │ ├── user-images.svg │ │ │ │ ├── user-pictures.svg │ │ │ │ ├── user-trash-full.svg │ │ │ │ └── user-trash.svg │ │ │ ├── trash-empty.svg │ │ │ ├── trash-full.svg │ │ │ ├── trashcan_empty.svg │ │ │ ├── trashcan_full.svg │ │ │ ├── user-bookmarks.svg │ │ │ ├── user-desktop.svg │ │ │ ├── user-home-open.svg │ │ │ ├── user-home.svg │ │ │ ├── user-identity.svg │ │ │ ├── user-images.svg │ │ │ ├── user-pictures.svg │ │ │ ├── user-share.svg │ │ │ ├── user-trash-full.svg │ │ │ ├── user-trash.svg │ │ │ ├── xfce-trash_empty.svg │ │ │ └── xfce-trash_full.svg │ │ │ └── status │ │ │ ├── dialog-error.svg │ │ │ ├── dialog-information.svg │ │ │ ├── dialog-password.svg │ │ │ ├── dialog-question.svg │ │ │ ├── dialog-warning.svg │ │ │ ├── gtk-dialog-authentication.svg │ │ │ ├── image-loading.svg │ │ │ ├── image-missing.svg │ │ │ └── symbolic │ │ │ ├── account-logged-in.svg │ │ │ ├── airplane-mode-disabled.svg │ │ │ ├── airplane-mode.svg │ │ │ ├── alarm.svg │ │ │ ├── appointment-missed.svg │ │ │ ├── appointment-soon.svg │ │ │ ├── arch-error.svg │ │ │ ├── arch-lit.svg │ │ │ ├── arch-unknown.svg │ │ │ ├── arch-updates.svg │ │ │ ├── arch-uptodate.svg │ │ │ ├── audio-input-microphone-high.svg │ │ │ ├── audio-input-microphone-low.svg │ │ │ ├── audio-input-microphone-medium.svg │ │ │ ├── audio-input-microphone-muted.svg │ │ │ ├── audio-volume-high.svg │ │ │ ├── audio-volume-low.svg │ │ │ ├── audio-volume-medium.svg │ │ │ ├── audio-volume-muted-blocking.svg │ │ │ ├── audio-volume-muted.svg │ │ │ ├── audio-volume-overamplified.svg │ │ │ ├── avatar-default.svg │ │ │ ├── battery-caution-charging.svg │ │ │ ├── battery-caution.svg │ │ │ ├── battery-empty-charging.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full-charged.svg │ │ │ ├── battery-full-charging.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-good-charging.svg │ │ │ ├── battery-good.svg │ │ │ ├── battery-level-0-charging.svg │ │ │ ├── battery-level-0.svg │ │ │ ├── battery-level-10-charging.svg │ │ │ ├── battery-level-10.svg │ │ │ ├── battery-level-100-charged.svg │ │ │ ├── battery-level-100.svg │ │ │ ├── battery-level-20-charging.svg │ │ │ ├── battery-level-20.svg │ │ │ ├── battery-level-30-charging.svg │ │ │ ├── battery-level-30.svg │ │ │ ├── battery-level-40-charging.svg │ │ │ ├── battery-level-40.svg │ │ │ ├── battery-level-50-charging.svg │ │ │ ├── battery-level-50.svg │ │ │ ├── battery-level-60-charging.svg │ │ │ ├── battery-level-60.svg │ │ │ ├── battery-level-70-charging.svg │ │ │ ├── battery-level-70.svg │ │ │ ├── battery-level-80-charging.svg │ │ │ ├── battery-level-80.svg │ │ │ ├── battery-level-90-charging.svg │ │ │ ├── battery-level-90.svg │ │ │ ├── battery-low-charging.svg │ │ │ ├── battery-low.svg │ │ │ ├── battery-medium-charging.svg │ │ │ ├── battery-medium.svg │ │ │ ├── battery-missing.svg │ │ │ ├── blueberry-tray-active.svg │ │ │ ├── blueberry-tray-disabled.svg │ │ │ ├── blueberry-tray.svg │ │ │ ├── bluetooth-active.svg │ │ │ ├── bluetooth-disabled.svg │ │ │ ├── bluetooth-paired.svg │ │ │ ├── budgie-brightness-controller-1.svg │ │ │ ├── budgie-caffeine-cup-empty.svg │ │ │ ├── budgie-caffeine-cup-full.svg │ │ │ ├── budgie-trash-empty.svg │ │ │ ├── budgie-trash-full.svg │ │ │ ├── budgie-trash-restore.svg │ │ │ ├── bumblebee-active.svg │ │ │ ├── bumblebee-inactive.svg │ │ │ ├── caffeine-cup-empty.svg │ │ │ ├── caffeine-cup-full.svg │ │ │ ├── call-missed.svg │ │ │ ├── caps-lock.svg │ │ │ ├── capslock-disabled.svg │ │ │ ├── capslock-enabled.svg │ │ │ ├── changes-allow.svg │ │ │ ├── changes-prevent.svg │ │ │ ├── channel-insecure.svg │ │ │ ├── channel-secure.svg │ │ │ ├── checkbox-checked.svg │ │ │ ├── checkbox-mixed.svg │ │ │ ├── checkbox.svg │ │ │ ├── computer-fail.svg │ │ │ ├── content-loading.svg │ │ │ ├── critical-notif.svg │ │ │ ├── data_icons_display.svg │ │ │ ├── data_icons_selection.svg │ │ │ ├── daytime-sunrise.svg │ │ │ ├── daytime-sunset.svg │ │ │ ├── dialog-error.svg │ │ │ ├── dialog-information.svg │ │ │ ├── dialog-password.svg │ │ │ ├── dialog-question.svg │ │ │ ├── dialog-warning.svg │ │ │ ├── display-brightness-high.svg │ │ │ ├── display-brightness-low.svg │ │ │ ├── display-brightness-medium.svg │ │ │ ├── display-brightness-off.svg │ │ │ ├── display-brightness.svg │ │ │ ├── freon-fan.svg │ │ │ ├── freon-gpu-temperature.svg │ │ │ ├── freon-temperature.svg │ │ │ ├── freon-voltage.svg │ │ │ ├── gnome-pie.svg │ │ │ ├── gser-icon-playing.svg │ │ │ ├── gser-icon-stopped.svg │ │ │ ├── gtk-dialog-warning.svg │ │ │ ├── image-loading.svg │ │ │ ├── input-keyboard-capslock.svg │ │ │ ├── input-keyboard-numlock.svg │ │ │ ├── keyboard-brightness.svg │ │ │ ├── location-active.svg │ │ │ ├── location-disabled.svg │ │ │ ├── location-inactive.svg │ │ │ ├── low-notif.svg │ │ │ ├── mail-attachment.svg │ │ │ ├── mail-important.svg │ │ │ ├── mail-read.svg │ │ │ ├── mail-replied.svg │ │ │ ├── mail-unread.svg │ │ │ ├── media-playlist-consecutive-symbolic-rtl.svg │ │ │ ├── media-playlist-consecutive.svg │ │ │ ├── media-playlist-no-repeat-symbolic-rtl.svg │ │ │ ├── media-playlist-no-repeat.svg │ │ │ ├── media-playlist-no-shuffle.svg │ │ │ ├── media-playlist-repeat-one-symbolic-rtl.svg │ │ │ ├── media-playlist-repeat-one.svg │ │ │ ├── media-playlist-repeat-song-symbolic-rtl.svg │ │ │ ├── media-playlist-repeat-song.svg │ │ │ ├── media-playlist-repeat-symbolic-rtl.svg │ │ │ ├── media-playlist-repeat.svg │ │ │ ├── media-playlist-shuffle-symbolic-rtl.svg │ │ │ ├── media-playlist-shuffle.svg │ │ │ ├── microphone-sensitivity-high.svg │ │ │ ├── microphone-sensitivity-low.svg │ │ │ ├── microphone-sensitivity-medium.svg │ │ │ ├── microphone-sensitivity-muted.svg │ │ │ ├── microphone-sensitivity-none.svg │ │ │ ├── mpi.svg │ │ │ ├── my-caffeine-off.svg │ │ │ ├── my-caffeine-on.svg │ │ │ ├── mymail.svg │ │ │ ├── network-acquiring.svg │ │ │ ├── network-cellular-3g.svg │ │ │ ├── network-cellular-4g.svg │ │ │ ├── network-cellular-acquiring.svg │ │ │ ├── network-cellular-cdma-1x.svg │ │ │ ├── network-cellular-connected.svg │ │ │ ├── network-cellular-disconnected.svg │ │ │ ├── network-cellular-edge.svg │ │ │ ├── network-cellular-error.svg │ │ │ ├── network-cellular-gprs.svg │ │ │ ├── network-cellular-hspa.svg │ │ │ ├── network-cellular-no-route.svg │ │ │ ├── network-cellular-offline.svg │ │ │ ├── network-cellular-secure-signal-excellent.svg │ │ │ ├── network-cellular-secure-signal-good.svg │ │ │ ├── network-cellular-secure-signal-low.svg │ │ │ ├── network-cellular-secure-signal-none.svg │ │ │ ├── network-cellular-secure-signal-ok.svg │ │ │ ├── network-cellular-signal-excellent-secure.svg │ │ │ ├── network-cellular-signal-excellent.svg │ │ │ ├── network-cellular-signal-good-secure.svg │ │ │ ├── network-cellular-signal-good.svg │ │ │ ├── network-cellular-signal-low.svg │ │ │ ├── network-cellular-signal-none-secure.svg │ │ │ ├── network-cellular-signal-none.svg │ │ │ ├── network-cellular-signal-ok-secure.svg │ │ │ ├── network-cellular-signal-ok.svg │ │ │ ├── network-cellular-signal-weak-secure.svg │ │ │ ├── network-cellular-signal-weak.svg │ │ │ ├── network-cellular-umts.svg │ │ │ ├── network-disconnected.svg │ │ │ ├── network-error.svg │ │ │ ├── network-idle.svg │ │ │ ├── network-no-route.svg │ │ │ ├── network-offline.svg │ │ │ ├── network-receive.svg │ │ │ ├── network-transmit-receive.svg │ │ │ ├── network-transmit.svg │ │ │ ├── network-vpn-acquiring.svg │ │ │ ├── network-vpn-disconnected.svg │ │ │ ├── network-vpn-error.svg │ │ │ ├── network-vpn-no-route.svg │ │ │ ├── network-vpn-offline.svg │ │ │ ├── network-vpn.svg │ │ │ ├── network-wired-acquiring.svg │ │ │ ├── network-wired-disconnected.svg │ │ │ ├── network-wired-error.svg │ │ │ ├── network-wired-no-route.svg │ │ │ ├── network-wired-offline.svg │ │ │ ├── network-wired-secure.svg │ │ │ ├── network-wired.svg │ │ │ ├── network-wireless-acquiring.svg │ │ │ ├── network-wireless-connected.svg │ │ │ ├── network-wireless-disabled.svg │ │ │ ├── network-wireless-disconnected.svg │ │ │ ├── network-wireless-encrypted.svg │ │ │ ├── network-wireless-error.svg │ │ │ ├── network-wireless-hotspot.svg │ │ │ ├── network-wireless-no-route.svg │ │ │ ├── network-wireless-offline.svg │ │ │ ├── network-wireless-signal-excellent-secure.svg │ │ │ ├── network-wireless-signal-excellent.svg │ │ │ ├── network-wireless-signal-good-secure.svg │ │ │ ├── network-wireless-signal-good.svg │ │ │ ├── network-wireless-signal-none-secure.svg │ │ │ ├── network-wireless-signal-none.svg │ │ │ ├── network-wireless-signal-ok-secure.svg │ │ │ ├── network-wireless-signal-ok.svg │ │ │ ├── network-wireless-signal-weak-secure.svg │ │ │ ├── network-wireless-signal-weak.svg │ │ │ ├── network-wireless.svg │ │ │ ├── night-light.svg │ │ │ ├── nm-signal-0-secure.svg │ │ │ ├── nm-signal-0.svg │ │ │ ├── nm-signal-100-secure.svg │ │ │ ├── nm-signal-100.svg │ │ │ ├── nm-signal-25-secure.svg │ │ │ ├── nm-signal-25.svg │ │ │ ├── nm-signal-50-secure.svg │ │ │ ├── nm-signal-50.svg │ │ │ ├── nm-signal-75-secure.svg │ │ │ ├── nm-signal-75.svg │ │ │ ├── normal-notif.svg │ │ │ ├── notification-disabled-new.svg │ │ │ ├── notification-disabled.svg │ │ │ ├── notification-new.svg │ │ │ ├── notification.svg │ │ │ ├── notifications-disabled.svg │ │ │ ├── notifications-new.svg │ │ │ ├── notifications.svg │ │ │ ├── num-lock.svg │ │ │ ├── numlock-disabled.svg │ │ │ ├── numlock-enabled.svg │ │ │ ├── nvidia-card.svg │ │ │ ├── nvidia-ram.svg │ │ │ ├── nvidia-temp.svg │ │ │ ├── org.gnome.Shell.Extensions.GSConnect.svg │ │ │ ├── org.perezdecastro.Revolt-status-blink.svg │ │ │ ├── org.perezdecastro.Revolt-status-online.svg │ │ │ ├── orientation-landscape-inverse.svg │ │ │ ├── orientation-landscape.svg │ │ │ ├── orientation-portrait-inverse.svg │ │ │ ├── orientation-portrait.svg │ │ │ ├── pager-checked.svg │ │ │ ├── prime-indicator-hybrid.svg │ │ │ ├── prime-indicator-intel.svg │ │ │ ├── prime-indicator-nvidia.svg │ │ │ ├── printer-error.svg │ │ │ ├── printer-printing.svg │ │ │ ├── printer-warning.svg │ │ │ ├── process-completed.svg │ │ │ ├── process-error.svg │ │ │ ├── process-working.svg │ │ │ ├── radio-checked.svg │ │ │ ├── radio-mixed.svg │ │ │ ├── radio.svg │ │ │ ├── revolt-status-blink.svg │ │ │ ├── revolt-status-online.svg │ │ │ ├── rotation-allowed.svg │ │ │ ├── rotation-locked.svg │ │ │ ├── security-high.svg │ │ │ ├── security-low.svg │ │ │ ├── security-medium.svg │ │ │ ├── sensors-fan.svg │ │ │ ├── sensors-temperature.svg │ │ │ ├── sensors-voltage.svg │ │ │ ├── software-installed.svg │ │ │ ├── software-update-available.svg │ │ │ ├── software-update-urgent.svg │ │ │ ├── start-here.svg │ │ │ ├── stopwatch.svg │ │ │ ├── sync-synchronizing.svg │ │ │ ├── system-shutdown.svg │ │ │ ├── task-due.svg │ │ │ ├── task-past-due.svg │ │ │ ├── temp.svg │ │ │ ├── thunderbolt-acquiring.svg │ │ │ ├── timer.svg │ │ │ ├── touchpad-disabled.svg │ │ │ ├── touchpad-enabled.svg │ │ │ ├── user-available.svg │ │ │ ├── user-away.svg │ │ │ ├── user-busy.svg │ │ │ ├── user-idle.svg │ │ │ ├── user-invisible.svg │ │ │ ├── user-not-tracked.svg │ │ │ ├── user-offline.svg │ │ │ ├── user-status-pending.svg │ │ │ ├── view-private.svg │ │ │ ├── view-wrapped-symbolic-rtl.svg │ │ │ ├── view-wrapped.svg │ │ │ ├── volume-warning.svg │ │ │ ├── weather-clear-night.svg │ │ │ ├── weather-clear.svg │ │ │ ├── weather-clouds-night.svg │ │ │ ├── weather-clouds.svg │ │ │ ├── weather-cloudy.svg │ │ │ ├── weather-few-clouds-night.svg │ │ │ ├── weather-few-clouds.svg │ │ │ ├── weather-fog.svg │ │ │ ├── weather-freezing-rain.svg │ │ │ ├── weather-none-available.svg │ │ │ ├── weather-overcast-night.svg │ │ │ ├── weather-overcast.svg │ │ │ ├── weather-severe-alert.svg │ │ │ ├── weather-showers-scattered.svg │ │ │ ├── weather-showers.svg │ │ │ ├── weather-snow-night.svg │ │ │ ├── weather-snow-rain.svg │ │ │ ├── weather-snow.svg │ │ │ ├── weather-storm-tornado.svg │ │ │ ├── weather-storm.svg │ │ │ └── weather-windy.svg │ └── webpack.config.js ├── widgets │ ├── LICENSE │ ├── README.md │ ├── config │ │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── index.scss │ ├── package.json │ ├── src │ │ ├── icons │ │ │ └── refresh.svg │ │ ├── items │ │ │ ├── analogclock.js │ │ │ ├── clippy.js │ │ │ ├── digitalclock.js │ │ │ └── quotedisplay.js │ │ ├── provider.js │ │ ├── styles │ │ │ ├── _quotedisplay.scss │ │ │ └── _widgets.scss │ │ └── widget.js │ └── webpack.config.js └── windows8-theme │ ├── LICENSE │ ├── config │ └── rush-project.json │ ├── eslint.config.mjs │ ├── index.js │ ├── index.scss │ ├── metadata.json │ ├── package.json │ ├── src │ ├── _variables.scss │ ├── close.png │ ├── maximize.png │ ├── minimize.png │ └── theme.js │ └── webpack.config.js ├── hooks └── pre-commit ├── rush.json ├── scripts ├── deploy.sh ├── setup.sh ├── switch-to-linux.sh ├── switch-to-windows.ps1 └── update-browserslist-db.mjs └── website ├── .gitattributes ├── .gitignore ├── LICENSE ├── config └── rush-project.json ├── eslint.config.mjs ├── package.json ├── src ├── cli │ └── index.js ├── client │ ├── .env.template │ ├── auth │ │ └── adapter.js │ ├── config.js │ ├── favicon.png │ ├── icon.png │ ├── index.ejs │ ├── index.js │ ├── index.scss │ ├── quotes.js │ ├── social.png │ └── social_transparent.png └── server │ ├── auth │ ├── adapter.js │ └── template.env.json │ ├── config.js │ └── index.js └── webpack.config.js /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meese-os/meeseOS/HEAD/LICENSE -------------------------------------------------------------------------------- /backend/server/.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | *~ 3 | !/__mocks__/**/* 4 | -------------------------------------------------------------------------------- /backend/server/__mocks__/homeDirFolder/exampleEmptyFile.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/wireless-tools-provider/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /development/cli/.gitignore: -------------------------------------------------------------------------------- 1 | !/__mocks__/**/* 2 | -------------------------------------------------------------------------------- /development/cli/__mocks__/packages/Application/dist/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /development/cli/__mocks__/packages/Theme/dist/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/client/__mocks__/null-module.js: -------------------------------------------------------------------------------- 1 | module.exports = ""; 2 | -------------------------------------------------------------------------------- /frontend/gnome-icons/.stylelintignore: -------------------------------------------------------------------------------- 1 | src/_icons.scss 2 | -------------------------------------------------------------------------------- /frontend/panels/README.md: -------------------------------------------------------------------------------- 1 | TODO: POPULATE! 2 | -------------------------------------------------------------------------------- /frontend/sounds/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/standard-theme/.stylelintignore: -------------------------------------------------------------------------------- 1 | src/_icons.scss 2 | -------------------------------------------------------------------------------- /frontend/static-wallpapers/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/we10x-icons/.stylelintignore: -------------------------------------------------------------------------------- 1 | src/_icons.scss 2 | -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/actions/mail-sent.svg: -------------------------------------------------------------------------------- 1 | mail-send.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/actions/select.svg: -------------------------------------------------------------------------------- 1 | edit-select.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/actions/symbolic/map.svg: -------------------------------------------------------------------------------- 1 | ../16/gps.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/actions/zoom-in-large.svg: -------------------------------------------------------------------------------- 1 | zoom-in.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/10B4_steam.0.svg: -------------------------------------------------------------------------------- 1 | steam.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/1CD8_rundll32.0.svg: -------------------------------------------------------------------------------- 1 | wine.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/2048-qt.svg: -------------------------------------------------------------------------------- 1 | 2048.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/2048.svg: -------------------------------------------------------------------------------- 1 | gnome-2048.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/2402_msiexec.0.svg: -------------------------------------------------------------------------------- 1 | wmtweaks.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/3dchess.svg: -------------------------------------------------------------------------------- 1 | knights.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/7765_winebrowser.0.svg: -------------------------------------------------------------------------------- 1 | wine.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/7z.svg: -------------------------------------------------------------------------------- 1 | 7zip.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/A35F_hh.0.svg: -------------------------------------------------------------------------------- 1 | system-help.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/AdobeFlash.svg: -------------------------------------------------------------------------------- 1 | flash.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/AdobeReader.svg: -------------------------------------------------------------------------------- 1 | acroread.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/AdobeReader10.svg: -------------------------------------------------------------------------------- 1 | acroread.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/AdobeReader11.svg: -------------------------------------------------------------------------------- 1 | acroread.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/AdobeReader12.svg: -------------------------------------------------------------------------------- 1 | acroread.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/AdobeReader8.svg: -------------------------------------------------------------------------------- 1 | acroread.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/AdobeReader9.svg: -------------------------------------------------------------------------------- 1 | acroread.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/AdvancedPhoto.svg: -------------------------------------------------------------------------------- 1 | kuickshow.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/Appstore.svg: -------------------------------------------------------------------------------- 1 | software-center.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/Ardour-icon_256px.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/BTM.svg: -------------------------------------------------------------------------------- 1 | accessories-camera.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/CMakeSetup.svg: -------------------------------------------------------------------------------- 1 | cmake.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/CMakeSetup32.svg: -------------------------------------------------------------------------------- 1 | cmake.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/DBeaver.svg: -------------------------------------------------------------------------------- 1 | dbeaver.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/Dictionary.app.svg: -------------------------------------------------------------------------------- 1 | dictionary.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/Dropbox.svg: -------------------------------------------------------------------------------- 1 | dropbox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/EasyTAG_icon.svg: -------------------------------------------------------------------------------- 1 | easytag.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/FBReader.svg: -------------------------------------------------------------------------------- 1 | calibre-gui.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/GitKraken.svg: -------------------------------------------------------------------------------- 1 | gitkraken.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/Gnome-Notes.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/J7Z.svg: -------------------------------------------------------------------------------- 1 | 7zip.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/JupyterConsole.svg: -------------------------------------------------------------------------------- 1 | jupyter.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/Last.fm-icon.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/MultiBrowser.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/Musescore.svg: -------------------------------------------------------------------------------- 1 | musescore.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/MvGather.svg: -------------------------------------------------------------------------------- 1 | totem.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/Notion.svg: -------------------------------------------------------------------------------- 1 | notion.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/PlayOnLinux.svg: -------------------------------------------------------------------------------- 1 | playonlinux.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/Pomodoro.svg: -------------------------------------------------------------------------------- 1 | gnome-pomodoro.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/QtIcon.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/RSS_feeds.svg: -------------------------------------------------------------------------------- 1 | akregator.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/TeXworks.svg: -------------------------------------------------------------------------------- 1 | texstudio.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/abiword_48.svg: -------------------------------------------------------------------------------- 1 | abiword.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/abrt-gui.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/abrt.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/accessories-notes.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ace.svg: -------------------------------------------------------------------------------- 1 | kpatience.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/acidrip.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/administration.svg: -------------------------------------------------------------------------------- 1 | yast.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/adobe-flashplayer.svg: -------------------------------------------------------------------------------- 1 | flash.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/adobe-reader.svg: -------------------------------------------------------------------------------- 1 | acroread.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/adobeflashplugin.svg: -------------------------------------------------------------------------------- 1 | flash.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/agenda.svg: -------------------------------------------------------------------------------- 1 | korganizer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/aisleriot.svg: -------------------------------------------------------------------------------- 1 | kpat.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/akonaditray.svg: -------------------------------------------------------------------------------- 1 | akonadi.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/alacarte.svg: -------------------------------------------------------------------------------- 1 | menu-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/alarm-clock.svg: -------------------------------------------------------------------------------- 1 | gnome-clocks.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/alien-arena.svg: -------------------------------------------------------------------------------- 1 | alienarena.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/alleyoop.svg: -------------------------------------------------------------------------------- 1 | abrt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/alsamixergui.svg: -------------------------------------------------------------------------------- 1 | kmix.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/altyo.svg: -------------------------------------------------------------------------------- 1 | yakuake.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/amarok-icon.svg: -------------------------------------------------------------------------------- 1 | amarok.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/amarok2.svg: -------------------------------------------------------------------------------- 1 | amarok.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/amazon.svg: -------------------------------------------------------------------------------- 1 | amazon-store.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/amazonmp3.svg: -------------------------------------------------------------------------------- 1 | amazon-store.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/amulegui.svg: -------------------------------------------------------------------------------- 1 | amule.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/anjuta6.svg: -------------------------------------------------------------------------------- 1 | anjuta.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/anjuta_icon.svg: -------------------------------------------------------------------------------- 1 | anjuta.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/app.svg: -------------------------------------------------------------------------------- 1 | gitkraken.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/apper.svg: -------------------------------------------------------------------------------- 1 | muon.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/appimagekit-emacs.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/appimagekit-ferdi.svg: -------------------------------------------------------------------------------- 1 | ferdi.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/appimagekit-franz.svg: -------------------------------------------------------------------------------- 1 | franz.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/appimagekit-joplin.svg: -------------------------------------------------------------------------------- 1 | joplin.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/appimagekit-kitty.svg: -------------------------------------------------------------------------------- 1 | kitty.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/appimagekit-ksnip.svg: -------------------------------------------------------------------------------- 1 | ksnip.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/appimagekit-leocad.svg: -------------------------------------------------------------------------------- 1 | leocad.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/appimagekit-rambox.svg: -------------------------------------------------------------------------------- 1 | rambox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/appimagekit-stacer.svg: -------------------------------------------------------------------------------- 1 | stacer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/appimagekit_irix.svg: -------------------------------------------------------------------------------- 1 | irix.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/applications-fonts.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/applications-java.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/apport-gtk.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/apport-gtk2.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/appset.svg: -------------------------------------------------------------------------------- 1 | ./synaptic.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/aptana-studio.svg: -------------------------------------------------------------------------------- 1 | aptana.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/aptdaemon-upgrade.svg: -------------------------------------------------------------------------------- 1 | update.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/archivemanager.svg: -------------------------------------------------------------------------------- 1 | ark.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ardour2.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ardour3.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ardour4.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ardour5.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ardour6.svg: -------------------------------------------------------------------------------- 1 | ardour.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/arduino-ide.svg: -------------------------------------------------------------------------------- 1 | arduino.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/arora.svg: -------------------------------------------------------------------------------- 1 | browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/artha.svg: -------------------------------------------------------------------------------- 1 | dictionary.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/as-icon.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/as-powered.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/asounder.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/assistant-qt4.svg: -------------------------------------------------------------------------------- 1 | qtassistant.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/assistant-qt5.svg: -------------------------------------------------------------------------------- 1 | qtassistant.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/assistant.svg: -------------------------------------------------------------------------------- 1 | qtassistant.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/assistant5.svg: -------------------------------------------------------------------------------- 1 | qt4logo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/asunder.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/aterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/atlas.svg: -------------------------------------------------------------------------------- 1 | gnome-maps.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/atomix-icon.svg: -------------------------------------------------------------------------------- 1 | katomic.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/atomix.svg: -------------------------------------------------------------------------------- 1 | katomic.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/audacious-16.svg: -------------------------------------------------------------------------------- 1 | audacious.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/audacious-32.svg: -------------------------------------------------------------------------------- 1 | audacious.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/audacity16.svg: -------------------------------------------------------------------------------- 1 | audacity.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/audacity32.svg: -------------------------------------------------------------------------------- 1 | audacity.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/audex.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/audio-player.svg: -------------------------------------------------------------------------------- 1 | juk.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/avidemux.svg: -------------------------------------------------------------------------------- 1 | totem.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/avidemux_icon.svg: -------------------------------------------------------------------------------- 1 | avidemux.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/awn-applet.svg: -------------------------------------------------------------------------------- 1 | dock.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/awn-manager.svg: -------------------------------------------------------------------------------- 1 | cs-applets.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/awn-plugins.svg: -------------------------------------------------------------------------------- 1 | awn-applet.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/awn-settings.svg: -------------------------------------------------------------------------------- 1 | cs-applets.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ax-applet.svg: -------------------------------------------------------------------------------- 1 | access.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/backlite.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/banji.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/bash.svg: -------------------------------------------------------------------------------- 1 | yast-sudo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/beagled.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/beryl-settings.svg: -------------------------------------------------------------------------------- 1 | wmtweaks.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/bijiben.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/bless.svg: -------------------------------------------------------------------------------- 1 | okteta.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/blivet-gui.svg: -------------------------------------------------------------------------------- 1 | gparted.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/blocks.svg: -------------------------------------------------------------------------------- 1 | gnome-klotski.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/bluedun.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/bluefish-icon.svg: -------------------------------------------------------------------------------- 1 | bluefish.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/blueman.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/blueradio-48.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/bluetooth-48.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/bluetoothradio.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/bombono-dvd.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/boot.svg: -------------------------------------------------------------------------------- 1 | system-shutdown.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/bottles_wine.svg: -------------------------------------------------------------------------------- 1 | wine.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/boxes.svg: -------------------------------------------------------------------------------- 1 | gnome-boxes.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/brave-browser-beta.svg: -------------------------------------------------------------------------------- 1 | brave.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/brave-browser.svg: -------------------------------------------------------------------------------- 1 | brave.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/browser-help.svg: -------------------------------------------------------------------------------- 1 | help-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/browser.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/bt-logo.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/btsync-user.svg: -------------------------------------------------------------------------------- 1 | reload.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/bug-buddy.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/bug.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/builder.svg: -------------------------------------------------------------------------------- 1 | gnome-builder.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/bum.svg: -------------------------------------------------------------------------------- 1 | grub-customizer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/bumblebee.svg: -------------------------------------------------------------------------------- 1 | nvidia.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/burner.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cacao-oj6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cacao-oj7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cacao-oj8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cacao-oj9.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cairo-clock.svg: -------------------------------------------------------------------------------- 1 | gnome-clocks.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cairo-dock-c.svg: -------------------------------------------------------------------------------- 1 | cairo-dock.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cairo-dock-o.svg: -------------------------------------------------------------------------------- 1 | cairo-dock.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/caja-actions.svg: -------------------------------------------------------------------------------- 1 | file-manager.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/caja-dropbox.svg: -------------------------------------------------------------------------------- 1 | dropbox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/calendar.svg: -------------------------------------------------------------------------------- 1 | office-calendar.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/calligradevtools.svg: -------------------------------------------------------------------------------- 1 | builder.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/calligrakrita.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/calligrakrita2.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/calligraplan.svg: -------------------------------------------------------------------------------- 1 | plan.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/calligrasheets.svg: -------------------------------------------------------------------------------- 1 | sheets.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/calligrastage.svg: -------------------------------------------------------------------------------- 1 | stage.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/calligrawords.svg: -------------------------------------------------------------------------------- 1 | words.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/camera-web.svg: -------------------------------------------------------------------------------- 1 | camera.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/camera.svg: -------------------------------------------------------------------------------- 1 | accessories-camera.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/caprine.svg: -------------------------------------------------------------------------------- 1 | fbmessenger.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/catfish.svg: -------------------------------------------------------------------------------- 1 | system-search.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cgoban.svg: -------------------------------------------------------------------------------- 1 | qgo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cgoban_32x32.svg: -------------------------------------------------------------------------------- 1 | qgo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/chakra-backup.svg: -------------------------------------------------------------------------------- 1 | deja-dup.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/checkers.svg: -------------------------------------------------------------------------------- 1 | qgo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/checkgmail.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/chemtool.svg: -------------------------------------------------------------------------------- 1 | chmsee-icon.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/chessx.svg: -------------------------------------------------------------------------------- 1 | knights.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/chinese.svg: -------------------------------------------------------------------------------- 1 | ibus-pinyin.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/chmsee-16x16.svg: -------------------------------------------------------------------------------- 1 | chmsee-icon.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/chmsee-32x32.svg: -------------------------------------------------------------------------------- 1 | chmsee-icon.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/chmsee-icon.svg: -------------------------------------------------------------------------------- 1 | help-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/chrome.svg: -------------------------------------------------------------------------------- 1 | google-chrome.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/chromium-browser.svg: -------------------------------------------------------------------------------- 1 | chromium.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/clamav.svg: -------------------------------------------------------------------------------- 1 | security-medium.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/clamtk.svg: -------------------------------------------------------------------------------- 1 | security-medium.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/claws-mail.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/clawsker.svg: -------------------------------------------------------------------------------- 1 | claws-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cmake-gui.svg: -------------------------------------------------------------------------------- 1 | cmake.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/code-oss.svg: -------------------------------------------------------------------------------- 1 | visualstudiocode.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/code.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/color-calibate.svg: -------------------------------------------------------------------------------- 1 | colour.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/color-pick.svg: -------------------------------------------------------------------------------- 1 | gpick.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/color.svg: -------------------------------------------------------------------------------- 1 | preferences-color.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/colorpicker.svg: -------------------------------------------------------------------------------- 1 | gcolor2.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/colors.svg: -------------------------------------------------------------------------------- 1 | preferences-color.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/colour.svg: -------------------------------------------------------------------------------- 1 | color.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/com.adobe.Reader.svg: -------------------------------------------------------------------------------- 1 | acroread.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/com.deepin.Picker.svg: -------------------------------------------------------------------------------- 1 | gpick.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/com.getferdi.Ferdi.svg: -------------------------------------------------------------------------------- 1 | ferdi.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/com.jetbrains.CLion.svg: -------------------------------------------------------------------------------- 1 | clion.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/com.jetbrains.Rider.svg: -------------------------------------------------------------------------------- 1 | rider.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/com.leinardi.gwe.svg: -------------------------------------------------------------------------------- 1 | nvidia.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/com.meetfranz.Franz.svg: -------------------------------------------------------------------------------- 1 | franz.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/com.obsproject.Studio.svg: -------------------------------------------------------------------------------- 1 | obs.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/com.skype.Client.svg: -------------------------------------------------------------------------------- 1 | skype.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/com.slack.Slack.svg: -------------------------------------------------------------------------------- 1 | slack.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/com.ugetdm.uGet.svg: -------------------------------------------------------------------------------- 1 | uget-icon.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/com.viber.Viber.svg: -------------------------------------------------------------------------------- 1 | viber.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/computerjanitor.svg: -------------------------------------------------------------------------------- 1 | bleachbit.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/config-users.svg: -------------------------------------------------------------------------------- 1 | users.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/configurator.svg: -------------------------------------------------------------------------------- 1 | dconf-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/contact.svg: -------------------------------------------------------------------------------- 1 | addressbook.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/contacts.svg: -------------------------------------------------------------------------------- 1 | addressbook.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-applets.svg: -------------------------------------------------------------------------------- 1 | dock.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-bluetooth.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-cat-hardware.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-desklets.svg: -------------------------------------------------------------------------------- 1 | dock.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-desktop-effects.svg: -------------------------------------------------------------------------------- 1 | ccsm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-desktop.svg: -------------------------------------------------------------------------------- 1 | desktop.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-details.svg: -------------------------------------------------------------------------------- 1 | userinfo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-drivers.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-extensions.svg: -------------------------------------------------------------------------------- 1 | extensions.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-firewall.svg: -------------------------------------------------------------------------------- 1 | firewall.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-fonts.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-login.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-mouse.svg: -------------------------------------------------------------------------------- 1 | input-mouse.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-panel.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-printer.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-startup-programs.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-tablet.svg: -------------------------------------------------------------------------------- 1 | input-tablet.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cs-themes.svg: -------------------------------------------------------------------------------- 1 | theme-config.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/csd-a11y-keyboard.svg: -------------------------------------------------------------------------------- 1 | access.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/csd-a11y-settings.svg: -------------------------------------------------------------------------------- 1 | access.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/csd-cursor.svg: -------------------------------------------------------------------------------- 1 | csd-clipboard.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/csd-mouse.svg: -------------------------------------------------------------------------------- 1 | input-mouse.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/csd-printer.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/csd-wacom.svg: -------------------------------------------------------------------------------- 1 | input-tablet.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cuckoo.svg: -------------------------------------------------------------------------------- 1 | gnome-clocks.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cumulus.svg: -------------------------------------------------------------------------------- 1 | weather.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cups.svg: -------------------------------------------------------------------------------- 1 | office-printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cupsprinter.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cuttlefish.svg: -------------------------------------------------------------------------------- 1 | plasma.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cx.ring.Ring.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/cx.ring.ring-kde.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/date.svg: -------------------------------------------------------------------------------- 1 | office-calendar.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/dates.svg: -------------------------------------------------------------------------------- 1 | office-calendar.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/dayfolder.svg: -------------------------------------------------------------------------------- 1 | office-calendar.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/dbeaver-ce.svg: -------------------------------------------------------------------------------- 1 | dbeaver.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/dbeaver-ee.svg: -------------------------------------------------------------------------------- 1 | dbeaver.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ddcopy.svg: -------------------------------------------------------------------------------- 1 | usb-creator-gtk.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ddm.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deepin-clone.svg: -------------------------------------------------------------------------------- 1 | yast-snapper.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deepin-draw.svg: -------------------------------------------------------------------------------- 1 | gnome-paint.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deepin-editor.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deepin-emacs.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deepin-feedback.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deepin-picker.svg: -------------------------------------------------------------------------------- 1 | gcolor2.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deepin-repair.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deepin-scanner.svg: -------------------------------------------------------------------------------- 1 | skanlite.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deepin-terminal.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deepin.com.qq.im.svg: -------------------------------------------------------------------------------- 1 | qq.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deepin.com.wechat.svg: -------------------------------------------------------------------------------- 1 | wechat.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deezer.svg: -------------------------------------------------------------------------------- 1 | equaliser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deluge-torrent.svg: -------------------------------------------------------------------------------- 1 | deluge.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/designer-qt4.svg: -------------------------------------------------------------------------------- 1 | qtdesigner.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/designer-qt5.svg: -------------------------------------------------------------------------------- 1 | qtdesigner.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/designer.svg: -------------------------------------------------------------------------------- 1 | qtdesigner.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/designer5.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deskbar-applet.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/deskbar.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/desktop-effect.svg: -------------------------------------------------------------------------------- 1 | ccsm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/desktop-effects.svg: -------------------------------------------------------------------------------- 1 | ccsm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/devede.svg: -------------------------------------------------------------------------------- 1 | k9-copy.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/devedeng.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/device-notifier.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/dialog-info.svg: -------------------------------------------------------------------------------- 1 | userinfo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/dict.svg: -------------------------------------------------------------------------------- 1 | dictionary.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/dillo.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/diodon.svg: -------------------------------------------------------------------------------- 1 | evolution-tasks.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/discord-ptb.svg: -------------------------------------------------------------------------------- 1 | discord.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/disk-burner.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/diskmonitor.svg: -------------------------------------------------------------------------------- 1 | gsmartcontrol.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/disks.svg: -------------------------------------------------------------------------------- 1 | disk-check.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/display.im6.svg: -------------------------------------------------------------------------------- 1 | imagemagick.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/dnfdragora.svg: -------------------------------------------------------------------------------- 1 | synaptic.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/docear.svg: -------------------------------------------------------------------------------- 1 | libreoffice-writer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/dockbarx.svg: -------------------------------------------------------------------------------- 1 | dock.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/drakmenustyle.svg: -------------------------------------------------------------------------------- 1 | menu-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/draksec-mdk.svg: -------------------------------------------------------------------------------- 1 | gufw.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/dreamchess.svg: -------------------------------------------------------------------------------- 1 | chess.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/driver-manager.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/dvd95.svg: -------------------------------------------------------------------------------- 1 | k9-copy.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/dvd9548.svg: -------------------------------------------------------------------------------- 1 | k9-copy.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/e-mail.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/easy-tag.svg: -------------------------------------------------------------------------------- 1 | easytag.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/easytags.svg: -------------------------------------------------------------------------------- 1 | easytag.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/electron2.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/electron3.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/electron4.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/electron5.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/electron6.svg: -------------------------------------------------------------------------------- 1 | electron.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/element.svg: -------------------------------------------------------------------------------- 1 | element-desktop.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/elementary-photo.svg: -------------------------------------------------------------------------------- 1 | photos.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/emacs-24.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/emacs-25.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/emacs-nox.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/emacs-snapshot.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/emacs22.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/emacs23.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/emacs24.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/emacs25.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/email.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/emblem-mail.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/emerillon.svg: -------------------------------------------------------------------------------- 1 | gnome-maps.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/emule.svg: -------------------------------------------------------------------------------- 1 | amule.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/engrampa.svg: -------------------------------------------------------------------------------- 1 | file-roller.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/eom.svg: -------------------------------------------------------------------------------- 1 | eog.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/epdfview.svg: -------------------------------------------------------------------------------- 1 | qpdfview.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ephoto.svg: -------------------------------------------------------------------------------- 1 | kphotoalbum.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/epiphany-icon.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/epiphany.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/epulse.svg: -------------------------------------------------------------------------------- 1 | kmix.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/etube.svg: -------------------------------------------------------------------------------- 1 | minitube.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/evolution-mail.svg: -------------------------------------------------------------------------------- 1 | evolution.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/evolution.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ezame.svg: -------------------------------------------------------------------------------- 1 | menu-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/f-spot.svg: -------------------------------------------------------------------------------- 1 | screenie.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/featherpad.svg: -------------------------------------------------------------------------------- 1 | gedit.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/fedorausb.svg: -------------------------------------------------------------------------------- 1 | liveusb-creator.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/figma-linux.svg: -------------------------------------------------------------------------------- 1 | figma.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/filelight.svg: -------------------------------------------------------------------------------- 1 | baobab.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/filerunner.svg: -------------------------------------------------------------------------------- 1 | file-manager.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firefox-3.0.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firefox-3.5.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firefox-4.0.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firefox-beta.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firefox-bin.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firefox-default.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firefox-esr.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firefox-gtk3.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firefox-icon.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firefox-original.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firefox3.svg: -------------------------------------------------------------------------------- 1 | firefox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firestarter.svg: -------------------------------------------------------------------------------- 1 | firewall.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firewall-config.svg: -------------------------------------------------------------------------------- 1 | firewall.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firewall.svg: -------------------------------------------------------------------------------- 1 | gufw.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/firewalld.svg: -------------------------------------------------------------------------------- 1 | firewall-config.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/five-or-more.svg: -------------------------------------------------------------------------------- 1 | gnome-glines.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/flashplayer.svg: -------------------------------------------------------------------------------- 1 | flash.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/flock-browser.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/folder-wine.svg: -------------------------------------------------------------------------------- 1 | wine-winefile.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/font-manager.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/font-viewer.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/footnote.svg: -------------------------------------------------------------------------------- 1 | knotes.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/foxitpdf.svg: -------------------------------------------------------------------------------- 1 | foxit-reader.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/foxitreader.svg: -------------------------------------------------------------------------------- 1 | foxit-reader.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/fr.free.Homebank.svg: -------------------------------------------------------------------------------- 1 | homebank.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/freecad-daily.svg: -------------------------------------------------------------------------------- 1 | freecad.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/freefilesync.svg: -------------------------------------------------------------------------------- 1 | reload.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/freeminer.svg: -------------------------------------------------------------------------------- 1 | minecraft.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/freetuxtv.svg: -------------------------------------------------------------------------------- 1 | minitube.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/fritzing_icon.svg: -------------------------------------------------------------------------------- 1 | fritzing.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/fusion-icon.svg: -------------------------------------------------------------------------------- 1 | ccsm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/fwbuilder.svg: -------------------------------------------------------------------------------- 1 | firewall.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/galculator.svg: -------------------------------------------------------------------------------- 1 | calc.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/galeon.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gallery.svg: -------------------------------------------------------------------------------- 1 | photo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gambitchess.svg: -------------------------------------------------------------------------------- 1 | knights.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gcalculator.svg: -------------------------------------------------------------------------------- 1 | calc.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gcleaner.svg: -------------------------------------------------------------------------------- 1 | computerjanitor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gcolor.svg: -------------------------------------------------------------------------------- 1 | gcolor2.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gcolor2.svg: -------------------------------------------------------------------------------- 1 | colorgrab.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gcolor3.svg: -------------------------------------------------------------------------------- 1 | gcolor2.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gcompris-qt.svg: -------------------------------------------------------------------------------- 1 | gcompris.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gconf-editor.svg: -------------------------------------------------------------------------------- 1 | builder.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gconfeditor.svg: -------------------------------------------------------------------------------- 1 | builder.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gcr-gnupg.svg: -------------------------------------------------------------------------------- 1 | gnupg.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gcrystal.svg: -------------------------------------------------------------------------------- 1 | crystal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gdeb.svg: -------------------------------------------------------------------------------- 1 | gdebi.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gdiskdump.svg: -------------------------------------------------------------------------------- 1 | palimpsest.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gdm-login-photo.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gdm-setup.svg: -------------------------------------------------------------------------------- 1 | gdm-xnest.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gdm-xnest.svg: -------------------------------------------------------------------------------- 1 | cs-login.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gdm.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gdm2setup.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gdmap.svg: -------------------------------------------------------------------------------- 1 | palimpsest.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gdmap_icon.svg: -------------------------------------------------------------------------------- 1 | palimpsest.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gdmflexiserver.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gdmsetup.svg: -------------------------------------------------------------------------------- 1 | gdm-xnest.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gdu-check-disk.svg: -------------------------------------------------------------------------------- 1 | disk-check.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gdu-encrypted-lock.svg: -------------------------------------------------------------------------------- 1 | lock.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/geary.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gedbi.svg: -------------------------------------------------------------------------------- 1 | gdebi.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gedit-icon.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gedit-logo.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gedit.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gedit1.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gedit2.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gemini.svg: -------------------------------------------------------------------------------- 1 | calligragemini.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/geogebra-classic.svg: -------------------------------------------------------------------------------- 1 | geogebra.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gfeedline.svg: -------------------------------------------------------------------------------- 1 | empathy.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ghetto-skype.svg: -------------------------------------------------------------------------------- 1 | skype.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/git-cola.svg: -------------------------------------------------------------------------------- 1 | git.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/git-dag.svg: -------------------------------------------------------------------------------- 1 | git.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/git-gui.svg: -------------------------------------------------------------------------------- 1 | git.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gitg.svg: -------------------------------------------------------------------------------- 1 | git.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/github-desktop.svg: -------------------------------------------------------------------------------- 1 | github.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gitk.svg: -------------------------------------------------------------------------------- 1 | gitg.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gkdebconf.svg: -------------------------------------------------------------------------------- 1 | gconf-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/glade-3.svg: -------------------------------------------------------------------------------- 1 | glade.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/glchess.svg: -------------------------------------------------------------------------------- 1 | chess.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/glines.svg: -------------------------------------------------------------------------------- 1 | gnome-glines.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/glipper.svg: -------------------------------------------------------------------------------- 1 | diodon.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/glxinfo.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gmail-desktop.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gmail-notify-icon.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gmail-plasmoid.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gmailwatcher.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gmusicbrowser.svg: -------------------------------------------------------------------------------- 1 | gnome-music.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnect.svg: -------------------------------------------------------------------------------- 1 | four-in-a-row.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnibbles.svg: -------------------------------------------------------------------------------- 1 | gnome-nibbles.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnobots.svg: -------------------------------------------------------------------------------- 1 | gnome-robots.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnobots2.svg: -------------------------------------------------------------------------------- 1 | gnome-robots.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnochm.svg: -------------------------------------------------------------------------------- 1 | help-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnoduino.svg: -------------------------------------------------------------------------------- 1 | arduino.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-about-logo.svg: -------------------------------------------------------------------------------- 1 | userinfo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-abrt.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-baker.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-balsa.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-bluetooth.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-calculator.svg: -------------------------------------------------------------------------------- 1 | calc.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-dev-printer.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-devel.svg: -------------------------------------------------------------------------------- 1 | builder.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-disks.svg: -------------------------------------------------------------------------------- 1 | palimpsest.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-emacs.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-eterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-glchess.svg: -------------------------------------------------------------------------------- 1 | gnome-chess.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-gmenu.svg: -------------------------------------------------------------------------------- 1 | menu-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-gnect.svg: -------------------------------------------------------------------------------- 1 | four-in-a-row.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-hearts.svg: -------------------------------------------------------------------------------- 1 | kpat.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-help.svg: -------------------------------------------------------------------------------- 1 | help-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-hideseek.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-iagno.svg: -------------------------------------------------------------------------------- 1 | qgo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-info.svg: -------------------------------------------------------------------------------- 1 | info.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-latex.svg: -------------------------------------------------------------------------------- 1 | latexila.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-lightsoff.svg: -------------------------------------------------------------------------------- 1 | lightsoff.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-menu.svg: -------------------------------------------------------------------------------- 1 | menu-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-mouse.svg: -------------------------------------------------------------------------------- 1 | input-mouse.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-mplayer.svg: -------------------------------------------------------------------------------- 1 | mplayer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-mpv.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-note.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-panel-drawer.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-panel-fish.svg: -------------------------------------------------------------------------------- 1 | bluefish.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-panel.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-photos.svg: -------------------------------------------------------------------------------- 1 | kuickshow.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-screenruler.svg: -------------------------------------------------------------------------------- 1 | kruler.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-settings-font.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-status.svg: -------------------------------------------------------------------------------- 1 | hwinfo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-term.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-terminal.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-warning.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-word.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnome-xterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnomebaker.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnomine.svg: -------------------------------------------------------------------------------- 1 | gnome-mines.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnote.svg: -------------------------------------------------------------------------------- 1 | tomboy.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnotes.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnotravex.svg: -------------------------------------------------------------------------------- 1 | gnome-tetravex.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnucash.svg: -------------------------------------------------------------------------------- 1 | gnucash-icon.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnugo.svg: -------------------------------------------------------------------------------- 1 | qgo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gnugo48.svg: -------------------------------------------------------------------------------- 1 | qgo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/goa-account-flickr.svg: -------------------------------------------------------------------------------- 1 | flickr.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/goa-account-live.svg: -------------------------------------------------------------------------------- 1 | live.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/goa-account-msn.svg: -------------------------------------------------------------------------------- 1 | live.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/goldendict.svg: -------------------------------------------------------------------------------- 1 | dictionary.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/google-chromium.svg: -------------------------------------------------------------------------------- 1 | chromium.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/google.svg: -------------------------------------------------------------------------------- 1 | goa-account-google.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gp.svg: -------------------------------------------------------------------------------- 1 | gnome-paint.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gpa.svg: -------------------------------------------------------------------------------- 1 | keyring-manager.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gpaint.svg: -------------------------------------------------------------------------------- 1 | gnome-paint.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gpaste.svg: -------------------------------------------------------------------------------- 1 | evolution-tasks.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gpick.svg: -------------------------------------------------------------------------------- 1 | gcolor2.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gpk-prefs.svg: -------------------------------------------------------------------------------- 1 | update-manager.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gpmdp.svg: -------------------------------------------------------------------------------- 1 | google-music.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gpxsee.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/grip.svg: -------------------------------------------------------------------------------- 1 | ubiquity.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/grsync-restore.svg: -------------------------------------------------------------------------------- 1 | deja-dup.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/grsync.svg: -------------------------------------------------------------------------------- 1 | reload.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gscan2pdf.svg: -------------------------------------------------------------------------------- 1 | qpdfview.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gsearchtool.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtali.svg: -------------------------------------------------------------------------------- 1 | tali.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtg.svg: -------------------------------------------------------------------------------- 1 | kmenuedit.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gthumb.svg: -------------------------------------------------------------------------------- 1 | kuickshow.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtk-about.svg: -------------------------------------------------------------------------------- 1 | info.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtk-dialog-info.svg: -------------------------------------------------------------------------------- 1 | userinfo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtk-help.svg: -------------------------------------------------------------------------------- 1 | help.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtk-lshw.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtk-redshift.svg: -------------------------------------------------------------------------------- 1 | redshift.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtk-select-color.svg: -------------------------------------------------------------------------------- 1 | gcolor2.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtk4-demo.svg: -------------------------------------------------------------------------------- 1 | gtk3-demo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtk_info.svg: -------------------------------------------------------------------------------- 1 | gtk-info.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtkam-camera.svg: -------------------------------------------------------------------------------- 1 | photo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtkam.svg: -------------------------------------------------------------------------------- 1 | accessories-camera.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtklp.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtklpq.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtkterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gtwitter.svg: -------------------------------------------------------------------------------- 1 | web-twitter.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/guayadeque.svg: -------------------------------------------------------------------------------- 1 | juk.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gufw_menu.svg: -------------------------------------------------------------------------------- 1 | firewall.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/guitarix2.svg: -------------------------------------------------------------------------------- 1 | guitarix.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/guvcview.svg: -------------------------------------------------------------------------------- 1 | cheese.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gvim.svg: -------------------------------------------------------------------------------- 1 | vim.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gx_head.svg: -------------------------------------------------------------------------------- 1 | guitarix.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gxine.svg: -------------------------------------------------------------------------------- 1 | xine.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/gydl.svg: -------------------------------------------------------------------------------- 1 | youtube-dl.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/h2-icon.svg: -------------------------------------------------------------------------------- 1 | hydrogen.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/hamsket.svg: -------------------------------------------------------------------------------- 1 | rambox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/harddrake.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/harddrake2.svg: -------------------------------------------------------------------------------- 1 | hardinfo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/hardinfo.svg: -------------------------------------------------------------------------------- 1 | hwinfo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/help-about.svg: -------------------------------------------------------------------------------- 1 | userinfo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/help-contents.svg: -------------------------------------------------------------------------------- 1 | help.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/help-info.svg: -------------------------------------------------------------------------------- 1 | info.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/help.svg: -------------------------------------------------------------------------------- 1 | help-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/help_index.svg: -------------------------------------------------------------------------------- 1 | help-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/hp-toolbox.svg: -------------------------------------------------------------------------------- 1 | hp_logo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/hplip.svg: -------------------------------------------------------------------------------- 1 | hp_logo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/hugin.svg: -------------------------------------------------------------------------------- 1 | kipi-panorama.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/hwbrowser.svg: -------------------------------------------------------------------------------- 1 | hwinfo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/i-network-printer.svg: -------------------------------------------------------------------------------- 1 | cups.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ibus-engine.svg: -------------------------------------------------------------------------------- 1 | ibus.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ibus-setup-chewing.svg: -------------------------------------------------------------------------------- 1 | ibus.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ibus-setup-hangul.svg: -------------------------------------------------------------------------------- 1 | ibus.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ibus-setup.svg: -------------------------------------------------------------------------------- 1 | ibus.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/iconthemes.svg: -------------------------------------------------------------------------------- 1 | icons.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/idea-ultimate.svg: -------------------------------------------------------------------------------- 1 | intellij.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/idle.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/idle3.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/iease-music.svg: -------------------------------------------------------------------------------- 1 | google-music.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/im-msn.svg: -------------------------------------------------------------------------------- 1 | live.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/im.pidgin.Pidgin.svg: -------------------------------------------------------------------------------- 1 | pidgin.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/imagewriter.svg: -------------------------------------------------------------------------------- 1 | usb-creator.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/indicator-applet.svg: -------------------------------------------------------------------------------- 1 | info.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/indicator-sensors.svg: -------------------------------------------------------------------------------- 1 | psensor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/info.svg: -------------------------------------------------------------------------------- 1 | userinfo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/inkscape-logo.svg: -------------------------------------------------------------------------------- 1 | inkscape.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/inkscape.viewer.svg: -------------------------------------------------------------------------------- 1 | inkscape.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/instantbird.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/intellij-idea-ce.svg: -------------------------------------------------------------------------------- 1 | idea.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/intellij-idea.svg: -------------------------------------------------------------------------------- 1 | idea.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/intellij.svg: -------------------------------------------------------------------------------- 1 | idea.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/intellij_idea.svg: -------------------------------------------------------------------------------- 1 | idea.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/internet-chat.svg: -------------------------------------------------------------------------------- 1 | polari.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/internet.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/io.atom.Atom.svg: -------------------------------------------------------------------------------- 1 | atom.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/io.elementary.mail.svg: -------------------------------------------------------------------------------- 1 | geary.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/io.github.GnomeMpv.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/io.github.Hexchat.svg: -------------------------------------------------------------------------------- 1 | hexchat.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/io.github.Pithos.svg: -------------------------------------------------------------------------------- 1 | pithos.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/io.liri.Calculator.svg: -------------------------------------------------------------------------------- 1 | calc.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/io.liri.Text.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/io.mpv.Mpv.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/io.neovim.nvim.svg: -------------------------------------------------------------------------------- 1 | nvim.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/iok.svg: -------------------------------------------------------------------------------- 1 | onboard.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ipython3.svg: -------------------------------------------------------------------------------- 1 | ipython.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/irix.svg: -------------------------------------------------------------------------------- 1 | kuickshow.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/iso-image-burn.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java-1.6.0.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java-1.7.0.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java-1.8.0-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java-1.8.0.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java-1.9.0.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java-10-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java-11-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java-12-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java-13-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java-14-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java10-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java11-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java12-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java13-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java14-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java8-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/java9-openjdk.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/javaws.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/jeex.svg: -------------------------------------------------------------------------------- 1 | okteta.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/jetbrains-clion.svg: -------------------------------------------------------------------------------- 1 | clion.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/jetbrains-intellij.svg: -------------------------------------------------------------------------------- 1 | idea.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/jetbrains-pycharm.svg: -------------------------------------------------------------------------------- 1 | pycharm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/jetbrains-rider.svg: -------------------------------------------------------------------------------- 1 | rider.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/jockey-gtk.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/jockey-kde.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/joplin-desktop.svg: -------------------------------------------------------------------------------- 1 | joplin.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/josm-latest.svg: -------------------------------------------------------------------------------- 1 | gnome-maps.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/josm.svg: -------------------------------------------------------------------------------- 1 | gnome-maps.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/jotasync.svg: -------------------------------------------------------------------------------- 1 | reload.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/journal.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/jupyter-console.svg: -------------------------------------------------------------------------------- 1 | jupyter.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/jupyter-notebook.svg: -------------------------------------------------------------------------------- 1 | jupyter.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/k9copy.svg: -------------------------------------------------------------------------------- 1 | k9-copy.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kaddressbook.svg: -------------------------------------------------------------------------------- 1 | addressbook.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kali-bugs.svg: -------------------------------------------------------------------------------- 1 | system-error.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kali-docs.svg: -------------------------------------------------------------------------------- 1 | devhelp.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kali-macchanger.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kali-truecrypt.svg: -------------------------------------------------------------------------------- 1 | truecrypt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kali-wireshark.svg: -------------------------------------------------------------------------------- 1 | wireshark.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kamerka.svg: -------------------------------------------------------------------------------- 1 | cheese.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kamoso.svg: -------------------------------------------------------------------------------- 1 | accessories-camera.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kamule.svg: -------------------------------------------------------------------------------- 1 | amule.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kate2.svg: -------------------------------------------------------------------------------- 1 | kate.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kbackup.svg: -------------------------------------------------------------------------------- 1 | deja-dup.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kbugbuster.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kbugster.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kcalc.svg: -------------------------------------------------------------------------------- 1 | calc.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kchart.svg: -------------------------------------------------------------------------------- 1 | sheets.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kchmviewer.svg: -------------------------------------------------------------------------------- 1 | chmsee-icon.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kcmkicker.svg: -------------------------------------------------------------------------------- 1 | cs-panel.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kcmpci.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kcmprocessor.svg: -------------------------------------------------------------------------------- 1 | yast-hwinfo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kcmx.svg: -------------------------------------------------------------------------------- 1 | xorg.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kconsole.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kde-im-log-viewer.svg: -------------------------------------------------------------------------------- 1 | kopete.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kdepim-dropbox.svg: -------------------------------------------------------------------------------- 1 | dropbox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kdf.svg: -------------------------------------------------------------------------------- 1 | disk-usage-analyzer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kedit.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/keditbookmarks.svg: -------------------------------------------------------------------------------- 1 | plasmagik.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/keepass2.svg: -------------------------------------------------------------------------------- 1 | keepass.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/keepassx.svg: -------------------------------------------------------------------------------- 1 | seahorse.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/keepassx2.svg: -------------------------------------------------------------------------------- 1 | seahorse.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kfilebox.svg: -------------------------------------------------------------------------------- 1 | dropbox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kfind.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kflickr.svg: -------------------------------------------------------------------------------- 1 | flickr.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kfm.svg: -------------------------------------------------------------------------------- 1 | file-manager.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kfontview.svg: -------------------------------------------------------------------------------- 1 | fonts.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kfourinline.svg: -------------------------------------------------------------------------------- 1 | gnome-glines.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kgpg.svg: -------------------------------------------------------------------------------- 1 | gnupg.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/khelpcenter.svg: -------------------------------------------------------------------------------- 1 | help-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kid3-qt.svg: -------------------------------------------------------------------------------- 1 | kid3.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kjobviewer.svg: -------------------------------------------------------------------------------- 1 | cups.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kjots.svg: -------------------------------------------------------------------------------- 1 | knotes.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/klipper.svg: -------------------------------------------------------------------------------- 1 | diodon.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kmahjongg.svg: -------------------------------------------------------------------------------- 1 | gnome-mahjongg.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kmail.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kmail2.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kmailcvt.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kmenuedit.svg: -------------------------------------------------------------------------------- 1 | menu-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kmines.svg: -------------------------------------------------------------------------------- 1 | gnome-mines.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kmousetool.svg: -------------------------------------------------------------------------------- 1 | input-mouse.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kmymoney.svg: -------------------------------------------------------------------------------- 1 | homebank.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/knotes.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/konsole-linux32.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/konsole_tux.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kontact.svg: -------------------------------------------------------------------------------- 1 | addressbook.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kopete.svg: -------------------------------------------------------------------------------- 1 | empathy.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kopete2.svg: -------------------------------------------------------------------------------- 1 | kopete.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/korgac.svg: -------------------------------------------------------------------------------- 1 | gnome-clocks.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kpatience.svg: -------------------------------------------------------------------------------- 1 | gnome-aisleriot.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kphoto.svg: -------------------------------------------------------------------------------- 1 | photo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kphotoalbum.svg: -------------------------------------------------------------------------------- 1 | photo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kplato.svg: -------------------------------------------------------------------------------- 1 | calligraplan.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kplayer.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kpresenter.svg: -------------------------------------------------------------------------------- 1 | stage.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/krdc.svg: -------------------------------------------------------------------------------- 1 | remote-desktop.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/krename.svg: -------------------------------------------------------------------------------- 1 | ./leafpad.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/krfb.svg: -------------------------------------------------------------------------------- 1 | remote-desktop.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/krita.svg: -------------------------------------------------------------------------------- 1 | mtpaint.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kritagemini.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kritasketch.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kronometer.svg: -------------------------------------------------------------------------------- 1 | gnome-pomodoro.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/krunner.svg: -------------------------------------------------------------------------------- 1 | plasma-search.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/krusader.svg: -------------------------------------------------------------------------------- 1 | krusader_user.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ksensors.svg: -------------------------------------------------------------------------------- 1 | psensor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kspread.svg: -------------------------------------------------------------------------------- 1 | sheets.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kstars.svg: -------------------------------------------------------------------------------- 1 | plasmagik.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ksudoku.svg: -------------------------------------------------------------------------------- 1 | gnome-sudoku.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ktip.svg: -------------------------------------------------------------------------------- 1 | info.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ktp-contacts.svg: -------------------------------------------------------------------------------- 1 | addressbook.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kube-mail.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kuser.svg: -------------------------------------------------------------------------------- 1 | users.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kwikdisk.svg: -------------------------------------------------------------------------------- 1 | gparted.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kwin.svg: -------------------------------------------------------------------------------- 1 | gnome-window-manager.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kword.svg: -------------------------------------------------------------------------------- 1 | words.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kwords.svg: -------------------------------------------------------------------------------- 1 | calligrawords.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kylin-video.svg: -------------------------------------------------------------------------------- 1 | mplayer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/kynaptic.svg: -------------------------------------------------------------------------------- 1 | synaptic.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/l3afpad.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/labplot2.svg: -------------------------------------------------------------------------------- 1 | labplot.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lash.svg: -------------------------------------------------------------------------------- 1 | deezer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/last-fm.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lastfm-valut.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lastfm-www.last.fm.svg: -------------------------------------------------------------------------------- 1 | lastfm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lastfm.svg: -------------------------------------------------------------------------------- 1 | goa-account-lastfm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/latexila.svg: -------------------------------------------------------------------------------- 1 | texstudio.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/latte-dock.svg: -------------------------------------------------------------------------------- 1 | cairo-dock.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lazpaint.svg: -------------------------------------------------------------------------------- 1 | gnome-paint.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/library-podcast.svg: -------------------------------------------------------------------------------- 1 | podcast.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/libreoffice34.svg: -------------------------------------------------------------------------------- 1 | libreoffice.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/light_neovim_gtk.svg: -------------------------------------------------------------------------------- 1 | neovim.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lightdm-settings.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/linguist-qt4.svg: -------------------------------------------------------------------------------- 1 | qtlinguistic.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/linguist-qt5.svg: -------------------------------------------------------------------------------- 1 | qtlinguistic.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/linguist.svg: -------------------------------------------------------------------------------- 1 | qtlinguistic.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/linguist5.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/linguistic.svg: -------------------------------------------------------------------------------- 1 | qtlinguistic.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/linssid.svg: -------------------------------------------------------------------------------- 1 | wicd.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lock-ok.svg: -------------------------------------------------------------------------------- 1 | keyring-manager.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/login-photo.svg: -------------------------------------------------------------------------------- 1 | mugshot.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lpi-bug.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lrfviewer.svg: -------------------------------------------------------------------------------- 1 | calibre-gui.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lshw.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lskat.svg: -------------------------------------------------------------------------------- 1 | gnome-aisleriot.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/luckybackup.svg: -------------------------------------------------------------------------------- 1 | deja-dup.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lutris_blender.svg: -------------------------------------------------------------------------------- 1 | blender.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lutris_godot-engine.svg: -------------------------------------------------------------------------------- 1 | godot.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lutris_krita-gemini.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lutris_minetest.svg: -------------------------------------------------------------------------------- 1 | minetest.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lutris_rimworld.svg: -------------------------------------------------------------------------------- 1 | rimworld.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lutris_terraria.svg: -------------------------------------------------------------------------------- 1 | terraria.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/lxterminal.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/macchanger.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mahjongg.svg: -------------------------------------------------------------------------------- 1 | gnome-mahjongg.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mail-client.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mail-notification.svg: -------------------------------------------------------------------------------- 1 | mailnag.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mailer.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mailspring.svg: -------------------------------------------------------------------------------- 1 | email.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mandrivaupdate.svg: -------------------------------------------------------------------------------- 1 | update.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/maps.svg: -------------------------------------------------------------------------------- 1 | gnome-maps.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mate-panel-fish.svg: -------------------------------------------------------------------------------- 1 | bluefish.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mate-panel.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mdmsetup.svg: -------------------------------------------------------------------------------- 1 | cs-login.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/me-tv.svg: -------------------------------------------------------------------------------- 1 | minitube.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/media-cdrom.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/meteo-qt.svg: -------------------------------------------------------------------------------- 1 | weather.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/minetest.svg: -------------------------------------------------------------------------------- 1 | minecraft.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/minimizeall.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mintdrivers.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mintreport.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mitter.svg: -------------------------------------------------------------------------------- 1 | web-twitter.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mixxx-icon.svg: -------------------------------------------------------------------------------- 1 | mixxx.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mkv-gui.svg: -------------------------------------------------------------------------------- 1 | mkvmerge.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mkvmergeGUI.svg: -------------------------------------------------------------------------------- 1 | mkvmerge.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mouse.svg: -------------------------------------------------------------------------------- 1 | input-mouse.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mozo.svg: -------------------------------------------------------------------------------- 1 | menu-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mpv.svg: -------------------------------------------------------------------------------- 1 | smplayer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ms-skype.svg: -------------------------------------------------------------------------------- 1 | skype.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mscore.svg: -------------------------------------------------------------------------------- 1 | musescore.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mscore3.svg: -------------------------------------------------------------------------------- 1 | musescore.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mtpaint.svg: -------------------------------------------------------------------------------- 1 | gnome-paint.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mugshot.svg: -------------------------------------------------------------------------------- 1 | users.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mupdf.svg: -------------------------------------------------------------------------------- 1 | qpdfview.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mx-clocky.svg: -------------------------------------------------------------------------------- 1 | clock.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/mypaint.svg: -------------------------------------------------------------------------------- 1 | mtpaint.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/net.jami.Jami.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/net.xmind.ZEN.svg: -------------------------------------------------------------------------------- 1 | xmind.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/nmm_qt_client.svg: -------------------------------------------------------------------------------- 1 | kpat.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/nocover.svg: -------------------------------------------------------------------------------- 1 | mixxx.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/notecase.svg: -------------------------------------------------------------------------------- 1 | text-editor.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/notes.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/nvclock.svg: -------------------------------------------------------------------------------- 1 | nvidia.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/nvidia-ddm-mx.svg: -------------------------------------------------------------------------------- 1 | nvidia.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/nvim-gtk.svg: -------------------------------------------------------------------------------- 1 | neovim.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/nvim-qt.svg: -------------------------------------------------------------------------------- 1 | neovim.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/nvim.svg: -------------------------------------------------------------------------------- 1 | neovim.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/nxterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/octopi.svg: -------------------------------------------------------------------------------- 1 | muon.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ogmrip.svg: -------------------------------------------------------------------------------- 1 | ubiquity.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/onboard-mono.svg: -------------------------------------------------------------------------------- 1 | onboard.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/onlyoffice.svg: -------------------------------------------------------------------------------- 1 | asc-de.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/openerp-client.svg: -------------------------------------------------------------------------------- 1 | opera.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/openjdk-10.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/openjdk-11.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/openjdk-6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/openjdk-7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/openjdk-8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/openjdk-9.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/openshot-qt.svg: -------------------------------------------------------------------------------- 1 | openshot.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/openterm.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/openwmail.svg: -------------------------------------------------------------------------------- 1 | gmail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/opera-browser.svg: -------------------------------------------------------------------------------- 1 | opera.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/opera-icon.svg: -------------------------------------------------------------------------------- 1 | opera.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/oracle-javaws.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/oracle_java6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/oracle_java7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/oracle_java8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/oracle_java9.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/orage.svg: -------------------------------------------------------------------------------- 1 | gnome-clocks.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/orca.svg: -------------------------------------------------------------------------------- 1 | access.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.gimp.GIMP.svg: -------------------------------------------------------------------------------- 1 | gimp.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.gnome.2048.svg: -------------------------------------------------------------------------------- 1 | 2048.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.gnome.GTG.svg: -------------------------------------------------------------------------------- 1 | gtg.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.gnome.Mpv.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.gnome.eog.svg: -------------------------------------------------------------------------------- 1 | eog.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.gnome.gitg.svg: -------------------------------------------------------------------------------- 1 | gitg.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.gnome.maps.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.gnome.meld.svg: -------------------------------------------------------------------------------- 1 | meld.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.gnu.emacs.svg: -------------------------------------------------------------------------------- 1 | emacs.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.kde.babe.svg: -------------------------------------------------------------------------------- 1 | babe.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.kde.juk.svg: -------------------------------------------------------------------------------- 1 | juk.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.kde.k3b.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.kde.kget.svg: -------------------------------------------------------------------------------- 1 | kget.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.kde.kgpg.svg: -------------------------------------------------------------------------------- 1 | gnupg.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.kde.kid3.svg: -------------------------------------------------------------------------------- 1 | kid3.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.kde.kjots.svg: -------------------------------------------------------------------------------- 1 | tomboy.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.kde.kmail.svg: -------------------------------------------------------------------------------- 1 | kmail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.kde.kmail2.svg: -------------------------------------------------------------------------------- 1 | kmail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.kde.krita.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.kde.vvave.svg: -------------------------------------------------------------------------------- 1 | babe.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.o20.svg: -------------------------------------------------------------------------------- 1 | ms-office.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.o20.word.svg: -------------------------------------------------------------------------------- 1 | ms-word.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.videolan.VLC.svg: -------------------------------------------------------------------------------- 1 | vlc.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/org.vim.Vim.svg: -------------------------------------------------------------------------------- 1 | vim.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/osmo.svg: -------------------------------------------------------------------------------- 1 | gnome-clocks.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/p7zip.svg: -------------------------------------------------------------------------------- 1 | 7zip.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/palaura.svg: -------------------------------------------------------------------------------- 1 | dictionary.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/palimpsest.svg: -------------------------------------------------------------------------------- 1 | gparted.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pan.svg: -------------------------------------------------------------------------------- 1 | akregator.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/panini.svg: -------------------------------------------------------------------------------- 1 | kipi-panorama.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/parcellite.svg: -------------------------------------------------------------------------------- 1 | diodon.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/parole.svg: -------------------------------------------------------------------------------- 1 | totem.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/paromplayer.svg: -------------------------------------------------------------------------------- 1 | tvtime.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/partitions.svg: -------------------------------------------------------------------------------- 1 | baobab.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pattern-x11.svg: -------------------------------------------------------------------------------- 1 | xorg.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pcb.svg: -------------------------------------------------------------------------------- 1 | cpuinfo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pgadmin3.svg: -------------------------------------------------------------------------------- 1 | pgadmin.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pgadmin4.svg: -------------------------------------------------------------------------------- 1 | pgadmin.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/photo.svg: -------------------------------------------------------------------------------- 1 | photos.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/photos.svg: -------------------------------------------------------------------------------- 1 | ristretto.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/php.svg: -------------------------------------------------------------------------------- 1 | applications-php.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pidgin-menu.svg: -------------------------------------------------------------------------------- 1 | pidgin.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pinta.svg: -------------------------------------------------------------------------------- 1 | krita.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pitivi.svg: -------------------------------------------------------------------------------- 1 | avidemux.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pix.svg: -------------------------------------------------------------------------------- 1 | gthumb.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pkgbrowser.svg: -------------------------------------------------------------------------------- 1 | gdebi.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/plan.svg: -------------------------------------------------------------------------------- 1 | office-calendar.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/plank.svg: -------------------------------------------------------------------------------- 1 | docky.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/planner.svg: -------------------------------------------------------------------------------- 1 | plan.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/planwork.svg: -------------------------------------------------------------------------------- 1 | korganizer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pop3.svg: -------------------------------------------------------------------------------- 1 | internet-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/printer1.svg: -------------------------------------------------------------------------------- 1 | cups.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/printmgr.svg: -------------------------------------------------------------------------------- 1 | cups.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pulseeffects.svg: -------------------------------------------------------------------------------- 1 | ccsm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pycad.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pychess.svg: -------------------------------------------------------------------------------- 1 | chess.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/pynvim.svg: -------------------------------------------------------------------------------- 1 | neovim.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/python2.6.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/python2.7.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/python3.0.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/python3.1.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/python3.2.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/python3.3.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/python3.4.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/python3.5.svg: -------------------------------------------------------------------------------- 1 | python.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/q4wine.svg: -------------------------------------------------------------------------------- 1 | wine.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qalculate.svg: -------------------------------------------------------------------------------- 1 | calculator.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qdirstat.svg: -------------------------------------------------------------------------------- 1 | baobab.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qemu.svg: -------------------------------------------------------------------------------- 1 | qemu-launcher.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qlandkartegt.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qlipper.svg: -------------------------------------------------------------------------------- 1 | diodon.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qmapshack.svg: -------------------------------------------------------------------------------- 1 | maps.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qmlscene.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qshutdown.svg: -------------------------------------------------------------------------------- 1 | kshutdown.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qt-creator.svg: -------------------------------------------------------------------------------- 1 | qtcreator.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qt-logo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qt4-logo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qt4logo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qt5-logo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qt5ct.svg: -------------------------------------------------------------------------------- 1 | qtconfig.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qtassistant.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qtconfig.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qtcreatorubuntu.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qtdbusviewer.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qtemu.svg: -------------------------------------------------------------------------------- 1 | qemu-launcher.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qterminal.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qtlinguistic.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qtlogo.svg: -------------------------------------------------------------------------------- 1 | qt.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qv4l2.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/qvidcap.svg: -------------------------------------------------------------------------------- 1 | mpv.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/rambox-os.svg: -------------------------------------------------------------------------------- 1 | rambox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/rbackend.svg: -------------------------------------------------------------------------------- 1 | r.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/rclock.svg: -------------------------------------------------------------------------------- 1 | gnome-clocks.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/realtimesync.svg: -------------------------------------------------------------------------------- 1 | update.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/redshiftgui.svg: -------------------------------------------------------------------------------- 1 | redshift.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/regexxer.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/rekonq.svg: -------------------------------------------------------------------------------- 1 | web-browser.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ring-jami.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ring-kde.svg: -------------------------------------------------------------------------------- 1 | ring.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/rip.svg: -------------------------------------------------------------------------------- 1 | ubiquity.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/ripperx.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/rssnow.svg: -------------------------------------------------------------------------------- 1 | akregator.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sabaki.svg: -------------------------------------------------------------------------------- 1 | qgo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/scans2pdf.svg: -------------------------------------------------------------------------------- 1 | gscan2pdf.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/scid.svg: -------------------------------------------------------------------------------- 1 | chess.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/screenruler.svg: -------------------------------------------------------------------------------- 1 | kruler.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/scribus-ng.svg: -------------------------------------------------------------------------------- 1 | scribus.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/scudcloud.svg: -------------------------------------------------------------------------------- 1 | slack.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/selene.svg: -------------------------------------------------------------------------------- 1 | deja-dup.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/semn.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/show-desktop.svg: -------------------------------------------------------------------------------- 1 | desktop.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/showdown.svg: -------------------------------------------------------------------------------- 1 | cutemarked.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/showimage.svg: -------------------------------------------------------------------------------- 1 | kuickshow.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sigram.svg: -------------------------------------------------------------------------------- 1 | telegram.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/silicon-128.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/silicon-22.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/silicon-32.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/silicon-48.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/silicon-64.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/simple-ccsm.svg: -------------------------------------------------------------------------------- 1 | ccsm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/simple-scan.svg: -------------------------------------------------------------------------------- 1 | scanner.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/skanlite.svg: -------------------------------------------------------------------------------- 1 | scanner.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/skype_protocol.svg: -------------------------------------------------------------------------------- 1 | skype.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/skypeforlinux.svg: -------------------------------------------------------------------------------- 1 | skype.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sleep.svg: -------------------------------------------------------------------------------- 1 | system-suspend.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/smartgithg.svg: -------------------------------------------------------------------------------- 1 | smartgit.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sonata.svg: -------------------------------------------------------------------------------- 1 | cantata.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/spacefm.svg: -------------------------------------------------------------------------------- 1 | file-manager.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/speedcrunch.svg: -------------------------------------------------------------------------------- 1 | calc.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/spotify_A.svg: -------------------------------------------------------------------------------- 1 | spotify.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/steam-icon.svg: -------------------------------------------------------------------------------- 1 | steam.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/steam-launcher.svg: -------------------------------------------------------------------------------- 1 | steam.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/steampowered.svg: -------------------------------------------------------------------------------- 1 | steam.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sticky-notes.svg: -------------------------------------------------------------------------------- 1 | basket.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/stock_about.svg: -------------------------------------------------------------------------------- 1 | gtk-info.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/stock_notes.svg: -------------------------------------------------------------------------------- 1 | knotes.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/stock_xfburn.svg: -------------------------------------------------------------------------------- 1 | brasero.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/strigi.svg: -------------------------------------------------------------------------------- 1 | search.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sublime.svg: -------------------------------------------------------------------------------- 1 | sublime-text.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java-jdk10.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java-jdk5.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java-jdk6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java-jdk7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java-jdk8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java-jdk9.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java-jre10.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java-jre8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java32-jdk5.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java32-jdk6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java32-jdk7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java32-jdk8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-java8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-javaws-jdk6.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-javaws-jdk7.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-javaws-jdk8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-javaws-jdk9.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-javaws-jre8.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-javaws.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun-jcontrol.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sun_java.svg: -------------------------------------------------------------------------------- 1 | java.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/supertux2.svg: -------------------------------------------------------------------------------- 1 | supertux.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sysprof-icon.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/sysprof.svg: -------------------------------------------------------------------------------- 1 | jockey.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/system-error.svg: -------------------------------------------------------------------------------- 1 | apport.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tagua.svg: -------------------------------------------------------------------------------- 1 | chess.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tali.svg: -------------------------------------------------------------------------------- 1 | gnome-tali.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tdevelop.svg: -------------------------------------------------------------------------------- 1 | kdevelop.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tdmconfig.svg: -------------------------------------------------------------------------------- 1 | cs-login.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/telepathy.svg: -------------------------------------------------------------------------------- 1 | empathy.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/terasology.svg: -------------------------------------------------------------------------------- 1 | freeminer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/terminator.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/terminology.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/terra.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/texmaker.svg: -------------------------------------------------------------------------------- 1 | texstudio.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tild.svg: -------------------------------------------------------------------------------- 1 | terminal.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/timekpr.svg: -------------------------------------------------------------------------------- 1 | time-admin.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/timevault.svg: -------------------------------------------------------------------------------- 1 | deja-dup.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tint2.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tint2conf.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tkpacman-icon.svg: -------------------------------------------------------------------------------- 1 | gdebi.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tkpacman.svg: -------------------------------------------------------------------------------- 1 | gdebi.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tomboy-16.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tomboy-32.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tomboy-note.svg: -------------------------------------------------------------------------------- 1 | tomboy.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tomboy-panel.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/translator.svg: -------------------------------------------------------------------------------- 1 | lokalize.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/trojita.svg: -------------------------------------------------------------------------------- 1 | claws-mail.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tsclient.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tuxboot.svg: -------------------------------------------------------------------------------- 1 | usb-creator.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tv.kodi.Kodi.svg: -------------------------------------------------------------------------------- 1 | kodi.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tvmaxe.svg: -------------------------------------------------------------------------------- 1 | tvtime.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/tvtime.svg: -------------------------------------------------------------------------------- 1 | minitube.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/twin.svg: -------------------------------------------------------------------------------- 1 | gnome-wm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/twitux.svg: -------------------------------------------------------------------------------- 1 | web-twitter.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/uget.svg: -------------------------------------------------------------------------------- 1 | uget-icon.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/unity-mail.svg: -------------------------------------------------------------------------------- 1 | email.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/us.zoom.Zoom.svg: -------------------------------------------------------------------------------- 1 | Zoom.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/user-admin.svg: -------------------------------------------------------------------------------- 1 | gksu.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/user-info.svg: -------------------------------------------------------------------------------- 1 | userinfo.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/user_auth.svg: -------------------------------------------------------------------------------- 1 | login.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/userdrake.svg: -------------------------------------------------------------------------------- 1 | users.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/utilities-notes.svg: -------------------------------------------------------------------------------- 1 | xpad.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/vala-panel.svg: -------------------------------------------------------------------------------- 1 | panel.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/vbox.svg: -------------------------------------------------------------------------------- 1 | virtualbox.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/vidiot.svg: -------------------------------------------------------------------------------- 1 | avidemux.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/vim-qt.svg: -------------------------------------------------------------------------------- 1 | vim.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/vimlogo.svg: -------------------------------------------------------------------------------- 1 | gvim.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/vivaldi-beta.svg: -------------------------------------------------------------------------------- 1 | vivaldi.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/vsc.svg: -------------------------------------------------------------------------------- 1 | visualstudiocode.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/vso.svg: -------------------------------------------------------------------------------- 1 | visualstudiocode.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/vuescan.svg: -------------------------------------------------------------------------------- 1 | skanlite.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/vvave.svg: -------------------------------------------------------------------------------- 1 | babe.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/web-discord.svg: -------------------------------------------------------------------------------- 1 | discord.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/webide.svg: -------------------------------------------------------------------------------- 1 | phpstorm.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/wewechat.svg: -------------------------------------------------------------------------------- 1 | wechat.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/whaawmp.svg: -------------------------------------------------------------------------------- 1 | dragonplayer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/whatsdesk.svg: -------------------------------------------------------------------------------- 1 | whatsapp.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/wicd-gtk.svg: -------------------------------------------------------------------------------- 1 | wicd.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/apps/wifi-radar.svg: -------------------------------------------------------------------------------- 1 | wicd.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/blueman.svg: -------------------------------------------------------------------------------- 1 | bluetooth.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/cs-tablet.svg: -------------------------------------------------------------------------------- 1 | tablet.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/cups.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/display.svg: -------------------------------------------------------------------------------- 1 | computer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/gtklp.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/gtklpq.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/kprinter.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/kprinter4.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/mouse.svg: -------------------------------------------------------------------------------- 1 | input-mouse.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/printer1.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/printmgr.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/processor.svg: -------------------------------------------------------------------------------- 1 | cpu.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/smartphone.svg: -------------------------------------------------------------------------------- 1 | phone.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/system.svg: -------------------------------------------------------------------------------- 1 | computer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/devices/vap.svg: -------------------------------------------------------------------------------- 1 | printer.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/mimetypes/gif.svg: -------------------------------------------------------------------------------- 1 | image-gif.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/mimetypes/gtk-file.svg: -------------------------------------------------------------------------------- 1 | empty.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/mimetypes/jpeg.svg: -------------------------------------------------------------------------------- 1 | image-jpeg.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/mimetypes/jpg.svg: -------------------------------------------------------------------------------- 1 | image-jpeg.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/mimetypes/model-x3d.svg: -------------------------------------------------------------------------------- 1 | model.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/mimetypes/none.svg: -------------------------------------------------------------------------------- 1 | unknown.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/mimetypes/text-c.svg: -------------------------------------------------------------------------------- 1 | text-x-c.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/mimetypes/text-r.svg: -------------------------------------------------------------------------------- 1 | text-x-r.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/mimetypes/video-mp4.svg: -------------------------------------------------------------------------------- 1 | video.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/mimetypes/www.svg: -------------------------------------------------------------------------------- 1 | text-html.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/places/gohome.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/places/gtg-home.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/places/gtk-home.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/places/kfm_home.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/places/network_fs.svg: -------------------------------------------------------------------------------- 1 | network.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/places/nfs.svg: -------------------------------------------------------------------------------- 1 | network.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/places/samba.svg: -------------------------------------------------------------------------------- 1 | network.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/places/stock_home.svg: -------------------------------------------------------------------------------- 1 | go-home.svg -------------------------------------------------------------------------------- /frontend/we10x-icons/src/icons/places/user-share.svg: -------------------------------------------------------------------------------- 1 | network.svg --------------------------------------------------------------------------------