├── .github ├── FUNDING.yml └── workflows │ ├── codespell.yml │ └── publish-package.yaml ├── COPYING ├── dev-scripts ├── architecture.py ├── check_ts.py ├── docstruct.py ├── item-help.py └── update-hidden.py ├── libopensesame ├── __init__.py ├── base_python_workspace.py ├── base_response_item.py ├── cistr.py ├── exceptions.py ├── experiment.py ├── feedback.py ├── file_pool_store.py ├── heartbeat.py ├── inline_script.py ├── item.py ├── item_stack.py ├── item_store.py ├── keyboard_response.py ├── logger.py ├── loop.py ├── metadata.py ├── misc.py ├── mouse_response.py ├── osexpfile │ ├── __init__.py │ ├── _osexpbase.py │ ├── _osexpreader.py │ └── _osexpwriter.py ├── oslogging.py ├── plugin_manager.py ├── plugins.py ├── py3compat.py ├── python_workspace.py ├── python_workspace_api.py ├── regexp.py ├── response_store.py ├── sampler.py ├── sequence.py ├── sketchpad.py ├── sketchpad_elements │ ├── __init__.py │ ├── _arrow.py │ ├── _base_element.py │ ├── _circle.py │ ├── _ellipse.py │ ├── _fixdot.py │ ├── _gabor.py │ ├── _image.py │ ├── _line.py │ ├── _noise.py │ ├── _rect.py │ └── _textline.py ├── syntax.py ├── synth.py ├── type_check.py ├── var_store.py └── widgets │ ├── __init__.py │ ├── _button.py │ ├── _checkbox.py │ ├── _form.py │ ├── _image.py │ ├── _image_button.py │ ├── _label.py │ ├── _rating_scale.py │ ├── _text_input.py │ ├── _widget.py │ ├── themes │ ├── __init__.py │ ├── gray.py │ ├── gray_large.py │ └── plain.py │ └── widget_factory.py ├── libqtopensesame ├── __init__.py ├── __main__.py ├── _input │ ├── __init__.py │ ├── conditional_expression.py │ ├── confirmation.py │ ├── item_combobox.py │ ├── pool_select.py │ └── popup_menu.py ├── actions │ ├── __init__.py │ ├── plugin_action.py │ └── recent_action.py ├── dialogs │ ├── __init__.py │ ├── base_dialog.py │ ├── gabor_settings.py │ ├── loop_wizard.py │ ├── noise_settings.py │ ├── patch_settings.py │ ├── polar_coordinates.py │ ├── sketchpad_dialog.py │ └── text_input.py ├── extensions │ ├── __init__.py │ ├── _base_extension.py │ └── _extension_manager.py ├── items │ ├── __init__.py │ ├── experiment.py │ ├── feedback.py │ ├── feedpad.py │ ├── inline_script.py │ ├── keyboard_response.py │ ├── logger.py │ ├── loop.py │ ├── mouse_response.py │ ├── qtautoplugin.py │ ├── qtitem.py │ ├── qtplugin.py │ ├── qtstructure_item.py │ ├── sampler.py │ ├── sequence.py │ ├── sketchpad.py │ └── synth.py ├── misc │ ├── __init__.py │ ├── base_component.py │ ├── base_draggable.py │ ├── base_subcomponent.py │ ├── config.py │ ├── console_bridge.py │ ├── display.py │ ├── drag_and_drop.py │ ├── item_name_delegate.py │ ├── markdown_parser.py │ ├── process.py │ ├── qtitem_store.py │ ├── qtplugin_manager.py │ ├── qtsyntax.py │ ├── run_if_delegate.py │ ├── shortcut.py │ ├── sketchpad_canvas.py │ ├── template_info.py │ ├── theme.py │ └── translate.py ├── pyqode_extras │ ├── __init__.py │ ├── modes │ │ ├── __init__.py │ │ ├── autodetect_indentation_mode.py │ │ └── convert_indentation_mode.py │ └── widgets │ │ ├── __init__.py │ │ ├── fallback_code_edit.py │ │ ├── python_code_edit.py │ │ └── text_code_edit.py ├── qtopensesame.py ├── qtopensesamerun.py ├── resources │ ├── chinese-japanese-korean.ttf │ ├── einstein.png │ ├── einstein@2x.png │ ├── help │ │ ├── locale │ │ │ ├── ar │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── bn │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── de │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── es │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── fr │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── he │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── hi │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── id │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── it │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── ja │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── ko │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── nl │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── pt │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── ru │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── tr │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ ├── yue │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ │ └── zh │ │ │ │ ├── missing.md │ │ │ │ └── new_item_warning.md │ │ ├── missing.md │ │ └── new_item_warning.md │ ├── locale │ │ ├── ar.qm │ │ ├── bn.qm │ │ ├── de.qm │ │ ├── es.qm │ │ ├── fr.qm │ │ ├── he.qm │ │ ├── hi.qm │ │ ├── id.qm │ │ ├── it.qm │ │ ├── ja.qm │ │ ├── ko.qm │ │ ├── nl.qm │ │ ├── pt.qm │ │ ├── ru.qm │ │ ├── tr.qm │ │ ├── yue.qm │ │ └── zh.qm │ ├── opensesame.icns │ ├── opensesame.ico │ ├── opensesamerun.ico │ ├── sounds │ │ ├── bark.ogg │ │ ├── drip.ogg │ │ ├── glass.ogg │ │ ├── notify1.ogg │ │ ├── notify2.ogg │ │ ├── notify3.ogg │ │ ├── phase.ogg │ │ └── sonar.ogg │ ├── templates │ │ ├── default.osexp │ │ ├── extended_template.osexp │ │ ├── form_template.osexp │ │ ├── online.osexp │ │ ├── pygaze_template.osexp │ │ └── quickrun.csv │ ├── theme │ │ ├── README │ │ ├── default │ │ │ ├── Faba │ │ │ │ ├── 16x16 │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── add-files-to-archive.png │ │ │ │ │ │ ├── add.png │ │ │ │ │ │ ├── application-menu.png │ │ │ │ │ │ ├── appointment-new-symbolic.png │ │ │ │ │ │ ├── appointment-new.png │ │ │ │ │ │ ├── archive-insert.png │ │ │ │ │ │ ├── bookmark-new.png │ │ │ │ │ │ ├── browser-download.png │ │ │ │ │ │ ├── calendar-go-today.png │ │ │ │ │ │ ├── contact-new.png │ │ │ │ │ │ ├── dialog-apply.png │ │ │ │ │ │ ├── dialog-cancel.png │ │ │ │ │ │ ├── dialog-close.png │ │ │ │ │ │ ├── dialog-no.png │ │ │ │ │ │ ├── dialog-ok.png │ │ │ │ │ │ ├── document-add.png │ │ │ │ │ │ ├── document-export-symbolic.png │ │ │ │ │ │ ├── document-export.png │ │ │ │ │ │ ├── document-import-symbolic.png │ │ │ │ │ │ ├── document-import.png │ │ │ │ │ │ ├── document-new.png │ │ │ │ │ │ ├── document-open-recent.png │ │ │ │ │ │ ├── document-open.png │ │ │ │ │ │ ├── document-page-setup.png │ │ │ │ │ │ ├── document-print.png │ │ │ │ │ │ ├── document-properties.png │ │ │ │ │ │ ├── document-revert.png │ │ │ │ │ │ ├── document-save-as.png │ │ │ │ │ │ ├── document-save.png │ │ │ │ │ │ ├── document-send.png │ │ │ │ │ │ ├── edit-clear-rtl-symbolic.png │ │ │ │ │ │ ├── edit-clear-symbolic-rtl.png │ │ │ │ │ │ ├── edit-clear-symbolic.png │ │ │ │ │ │ ├── edit-clear.png │ │ │ │ │ │ ├── edit-copy.png │ │ │ │ │ │ ├── edit-cut.png │ │ │ │ │ │ ├── edit-delete.png │ │ │ │ │ │ ├── edit-find-symbolic.png │ │ │ │ │ │ ├── edit-find.png │ │ │ │ │ │ ├── edit-flag.png │ │ │ │ │ │ ├── edit-paste.png │ │ │ │ │ │ ├── edit-redo.png │ │ │ │ │ │ ├── edit-select-all.png │ │ │ │ │ │ ├── edit-undo.png │ │ │ │ │ │ ├── event-new.png │ │ │ │ │ │ ├── extract-archive.png │ │ │ │ │ │ ├── folder-add.png │ │ │ │ │ │ ├── folder-new.png │ │ │ │ │ │ ├── format-justify-center.png │ │ │ │ │ │ ├── format-justify-fill.png │ │ │ │ │ │ ├── format-justify-left.png │ │ │ │ │ │ ├── format-justify-right.png │ │ │ │ │ │ ├── format-text-bold.png │ │ │ │ │ │ ├── format-text-italic.png │ │ │ │ │ │ ├── format-text-none.png │ │ │ │ │ │ ├── format-text-strikethrough.png │ │ │ │ │ │ ├── format-text-underline.png │ │ │ │ │ │ ├── go-bottom.png │ │ │ │ │ │ ├── go-down.png │ │ │ │ │ │ ├── go-first.png │ │ │ │ │ │ ├── go-home.png │ │ │ │ │ │ ├── go-jump-rtl.png │ │ │ │ │ │ ├── go-jump.png │ │ │ │ │ │ ├── go-last.png │ │ │ │ │ │ ├── go-next.png │ │ │ │ │ │ ├── go-previous.png │ │ │ │ │ │ ├── go-top.png │ │ │ │ │ │ ├── go-up.png │ │ │ │ │ │ ├── gtk-go-back-ltr.png │ │ │ │ │ │ ├── gtk-go-forward-ltr.png │ │ │ │ │ │ ├── gtk-ok.png │ │ │ │ │ │ ├── gtk-yes.png │ │ │ │ │ │ ├── help-contents.png │ │ │ │ │ │ ├── help-faq.png │ │ │ │ │ │ ├── help-hint.png │ │ │ │ │ │ ├── im-message-new.png │ │ │ │ │ │ ├── image-adjust.png │ │ │ │ │ │ ├── image-auto-adjust.png │ │ │ │ │ │ ├── image-crop.png │ │ │ │ │ │ ├── image-red-eye.png │ │ │ │ │ │ ├── insert-image.png │ │ │ │ │ │ ├── insert-link.png │ │ │ │ │ │ ├── list-add.png │ │ │ │ │ │ ├── list-remove.png │ │ │ │ │ │ ├── mail-archive.png │ │ │ │ │ │ ├── mail-forward.png │ │ │ │ │ │ ├── mail-mark-junk.png │ │ │ │ │ │ ├── mail-mark-notjunk.png │ │ │ │ │ │ ├── mail-mark-unread.png │ │ │ │ │ │ ├── mail-message-new.png │ │ │ │ │ │ ├── mail-move.png │ │ │ │ │ │ ├── mail-reply-all.png │ │ │ │ │ │ ├── mail-reply-sender.png │ │ │ │ │ │ ├── mail-reply.png │ │ │ │ │ │ ├── mail-send-receive.png │ │ │ │ │ │ ├── mail-send.png │ │ │ │ │ │ ├── mail-sent.png │ │ │ │ │ │ ├── mail-unread.png │ │ │ │ │ │ ├── media-eject-symbolic.png │ │ │ │ │ │ ├── media-eject.png │ │ │ │ │ │ ├── media-playback-pause-symbolic.png │ │ │ │ │ │ ├── media-playback-pause.png │ │ │ │ │ │ ├── media-playback-start-symbolic.png │ │ │ │ │ │ ├── media-playback-start.png │ │ │ │ │ │ ├── media-playback-stop-symbolic.png │ │ │ │ │ │ ├── media-playback-stop.png │ │ │ │ │ │ ├── media-playlist-consecutive-rtl.png │ │ │ │ │ │ ├── media-playlist-consecutive.png │ │ │ │ │ │ ├── media-playlist-no-shuffle.png │ │ │ │ │ │ ├── media-playlist-repeat-one.png │ │ │ │ │ │ ├── media-playlist-repeat-rtl.png │ │ │ │ │ │ ├── media-playlist-repeat-song-rtl.png │ │ │ │ │ │ ├── media-playlist-repeat-song.png │ │ │ │ │ │ ├── media-playlist-repeat.png │ │ │ │ │ │ ├── media-playlist-shuffle-rtl.png │ │ │ │ │ │ ├── media-playlist-shuffle.png │ │ │ │ │ │ ├── media-record-symbolic.png │ │ │ │ │ │ ├── media-record.png │ │ │ │ │ │ ├── media-seek-backward-rtl-symbolic.png │ │ │ │ │ │ ├── media-seek-backward-symbolic-rtl.png │ │ │ │ │ │ ├── media-seek-backward-symbolic.png │ │ │ │ │ │ ├── media-seek-backward.png │ │ │ │ │ │ ├── media-seek-forward-rtl-symbolic.png │ │ │ │ │ │ ├── media-seek-forward-symbolic-rtl.png │ │ │ │ │ │ ├── media-seek-forward-symbolic.png │ │ │ │ │ │ ├── media-seek-forward.png │ │ │ │ │ │ ├── media-skip-backward-rtl-symbolic.png │ │ │ │ │ │ ├── media-skip-backward-symbolic-rtl.png │ │ │ │ │ │ ├── media-skip-backward-symbolic.png │ │ │ │ │ │ ├── media-skip-backward.png │ │ │ │ │ │ ├── media-skip-forward-rtl-symbolic.png │ │ │ │ │ │ ├── media-skip-forward-symbolic-rtl.png │ │ │ │ │ │ ├── media-skip-forward-symbolic.png │ │ │ │ │ │ ├── media-skip-forward.png │ │ │ │ │ │ ├── node-add.png │ │ │ │ │ │ ├── node-break.png │ │ │ │ │ │ ├── node-curve.png │ │ │ │ │ │ ├── node-cusp.png │ │ │ │ │ │ ├── node-delete-segment.png │ │ │ │ │ │ ├── node-delete.png │ │ │ │ │ │ ├── node-insert.png │ │ │ │ │ │ ├── node-join-segment.png │ │ │ │ │ │ ├── node-join.png │ │ │ │ │ │ ├── node-line.png │ │ │ │ │ │ ├── object-flip-horizontal.png │ │ │ │ │ │ ├── object-flip-vertical.png │ │ │ │ │ │ ├── object-inverse.png │ │ │ │ │ │ ├── object-merge.png │ │ │ │ │ │ ├── object-rotate-left.png │ │ │ │ │ │ ├── object-rotate-right.png │ │ │ │ │ │ ├── object-straighten.png │ │ │ │ │ │ ├── open-menu.png │ │ │ │ │ │ ├── package-available-locked.png │ │ │ │ │ │ ├── package-available-new.png │ │ │ │ │ │ ├── package-available.png │ │ │ │ │ │ ├── package-broken.png │ │ │ │ │ │ ├── package-downgrade.png │ │ │ │ │ │ ├── package-install.png │ │ │ │ │ │ ├── package-installed-locked.png │ │ │ │ │ │ ├── package-installed-outdated.png │ │ │ │ │ │ ├── package-installed-updated.png │ │ │ │ │ │ ├── package-purge.png │ │ │ │ │ │ ├── package-reinstall.png │ │ │ │ │ │ ├── package-remove.png │ │ │ │ │ │ ├── package-supported.png │ │ │ │ │ │ ├── package-upgrade.png │ │ │ │ │ │ ├── pane-hide-symbolic-rtl.png │ │ │ │ │ │ ├── pane-hide-symbolic.png │ │ │ │ │ │ ├── pane-show-symbolic-rtl.png │ │ │ │ │ │ ├── pane-show-symbolic.png │ │ │ │ │ │ ├── process-stop.png │ │ │ │ │ │ ├── remove.png │ │ │ │ │ │ ├── system-lock-screen.png │ │ │ │ │ │ ├── system-restart.png │ │ │ │ │ │ ├── system-search.png │ │ │ │ │ │ ├── tag-new.png │ │ │ │ │ │ ├── view-fullscreen.png │ │ │ │ │ │ ├── view-refresh.png │ │ │ │ │ │ ├── view-restore.png │ │ │ │ │ │ ├── view-sort-ascending.png │ │ │ │ │ │ ├── view-sort-descending.png │ │ │ │ │ │ ├── window-close.png │ │ │ │ │ │ ├── zoom-fit-best.png │ │ │ │ │ │ ├── zoom-in.png │ │ │ │ │ │ ├── zoom-original.png │ │ │ │ │ │ └── zoom-out.png │ │ │ │ │ ├── animations │ │ │ │ │ │ ├── brasero-disc-00.png │ │ │ │ │ │ ├── brasero-disc-05.png │ │ │ │ │ │ ├── brasero-disc-10.png │ │ │ │ │ │ ├── brasero-disc-100.png │ │ │ │ │ │ ├── brasero-disc-15.png │ │ │ │ │ │ ├── brasero-disc-20.png │ │ │ │ │ │ ├── brasero-disc-25.png │ │ │ │ │ │ ├── brasero-disc-30.png │ │ │ │ │ │ ├── brasero-disc-35.png │ │ │ │ │ │ ├── brasero-disc-40.png │ │ │ │ │ │ ├── brasero-disc-45.png │ │ │ │ │ │ ├── brasero-disc-50.png │ │ │ │ │ │ ├── brasero-disc-55.png │ │ │ │ │ │ ├── brasero-disc-60.png │ │ │ │ │ │ ├── brasero-disc-65.png │ │ │ │ │ │ ├── brasero-disc-70.png │ │ │ │ │ │ ├── brasero-disc-75.png │ │ │ │ │ │ ├── brasero-disc-80.png │ │ │ │ │ │ ├── brasero-disc-85.png │ │ │ │ │ │ ├── brasero-disc-90.png │ │ │ │ │ │ ├── brasero-disc-95.png │ │ │ │ │ │ ├── nm-stage01-connecting01.png │ │ │ │ │ │ ├── nm-stage01-connecting02.png │ │ │ │ │ │ ├── nm-stage01-connecting03.png │ │ │ │ │ │ ├── nm-stage01-connecting04.png │ │ │ │ │ │ ├── nm-stage01-connecting05.png │ │ │ │ │ │ ├── nm-stage01-connecting06.png │ │ │ │ │ │ ├── nm-stage01-connecting07.png │ │ │ │ │ │ ├── nm-stage01-connecting08.png │ │ │ │ │ │ ├── nm-stage01-connecting09.png │ │ │ │ │ │ ├── nm-stage01-connecting10.png │ │ │ │ │ │ ├── nm-stage01-connecting11.png │ │ │ │ │ │ ├── nm-stage02-connecting01.png │ │ │ │ │ │ ├── nm-stage02-connecting02.png │ │ │ │ │ │ ├── nm-stage02-connecting03.png │ │ │ │ │ │ ├── nm-stage02-connecting04.png │ │ │ │ │ │ ├── nm-stage02-connecting05.png │ │ │ │ │ │ ├── nm-stage02-connecting06.png │ │ │ │ │ │ ├── nm-stage02-connecting07.png │ │ │ │ │ │ ├── nm-stage02-connecting08.png │ │ │ │ │ │ ├── nm-stage02-connecting09.png │ │ │ │ │ │ ├── nm-stage02-connecting10.png │ │ │ │ │ │ ├── nm-stage02-connecting11.png │ │ │ │ │ │ ├── nm-stage02-connecting12.png │ │ │ │ │ │ ├── nm-stage02-connecting13.png │ │ │ │ │ │ ├── nm-stage02-connecting14.png │ │ │ │ │ │ ├── nm-stage03-connecting01.png │ │ │ │ │ │ ├── nm-stage03-connecting02.png │ │ │ │ │ │ ├── nm-stage03-connecting03.png │ │ │ │ │ │ ├── nm-stage03-connecting04.png │ │ │ │ │ │ ├── nm-stage03-connecting05.png │ │ │ │ │ │ ├── nm-stage03-connecting06.png │ │ │ │ │ │ ├── nm-stage03-connecting07.png │ │ │ │ │ │ ├── nm-stage03-connecting08.png │ │ │ │ │ │ ├── nm-stage03-connecting09.png │ │ │ │ │ │ ├── nm-stage03-connecting10.png │ │ │ │ │ │ ├── nm-stage03-connecting11.png │ │ │ │ │ │ ├── nm-stage03-connecting12.png │ │ │ │ │ │ ├── nm-stage03-connecting13.png │ │ │ │ │ │ ├── nm-stage03-connecting14.png │ │ │ │ │ │ ├── nm-vpn-connecting01.png │ │ │ │ │ │ ├── nm-vpn-connecting02.png │ │ │ │ │ │ ├── nm-vpn-connecting03.png │ │ │ │ │ │ ├── nm-vpn-connecting04.png │ │ │ │ │ │ ├── nm-vpn-connecting05.png │ │ │ │ │ │ ├── nm-vpn-connecting06.png │ │ │ │ │ │ ├── nm-vpn-connecting07.png │ │ │ │ │ │ ├── nm-vpn-connecting08.png │ │ │ │ │ │ ├── nm-vpn-connecting09.png │ │ │ │ │ │ ├── nm-vpn-connecting10.png │ │ │ │ │ │ ├── nm-vpn-connecting11.png │ │ │ │ │ │ ├── nm-vpn-connecting12.png │ │ │ │ │ │ ├── nm-vpn-connecting13.png │ │ │ │ │ │ └── nm-vpn-connecting14.png │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── accessories-calculator.png │ │ │ │ │ │ ├── accessories-camera.png │ │ │ │ │ │ ├── apport.png │ │ │ │ │ │ ├── calendar.png │ │ │ │ │ │ ├── geary.png │ │ │ │ │ │ ├── help-browser.png │ │ │ │ │ │ ├── internet-feed-reader.png │ │ │ │ │ │ ├── internet-mail.png │ │ │ │ │ │ ├── internet-web-browser.png │ │ │ │ │ │ ├── multimedia-audio-player.png │ │ │ │ │ │ ├── multimedia-photo-manager.png │ │ │ │ │ │ ├── office-calendar.png │ │ │ │ │ │ ├── other-driver.png │ │ │ │ │ │ ├── preferences-desktop.png │ │ │ │ │ │ ├── preferences-system.png │ │ │ │ │ │ ├── recommended-driver.png │ │ │ │ │ │ ├── system-error.png │ │ │ │ │ │ ├── system-file-manager.png │ │ │ │ │ │ ├── system-users.png │ │ │ │ │ │ ├── utilities-terminal.png │ │ │ │ │ │ └── web-browser.png │ │ │ │ │ ├── categories │ │ │ │ │ │ ├── applications-internet.png │ │ │ │ │ │ ├── bluetooth.png │ │ │ │ │ │ ├── goa-panel.png │ │ │ │ │ │ ├── preferences-desktop-accessibility.png │ │ │ │ │ │ ├── preferences-desktop-display.png │ │ │ │ │ │ ├── preferences-desktop-keyboard.png │ │ │ │ │ │ ├── preferences-desktop-locale.png │ │ │ │ │ │ ├── preferences-desktop-notifications.png │ │ │ │ │ │ ├── preferences-desktop-online-accounts.png │ │ │ │ │ │ ├── preferences-desktop-peripherals.png │ │ │ │ │ │ ├── preferences-desktop-sound.png │ │ │ │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ │ │ │ ├── preferences-system-network.png │ │ │ │ │ │ ├── preferences-system-power.png │ │ │ │ │ │ ├── preferences-system-privacy.png │ │ │ │ │ │ └── preferences-system-time.png │ │ │ │ │ ├── devices │ │ │ │ │ │ ├── audio-speakers.png │ │ │ │ │ │ ├── camera-photo.png │ │ │ │ │ │ ├── drive-harddisk.png │ │ │ │ │ │ ├── drive-multidisk.png │ │ │ │ │ │ ├── gnome-dev-printer-new.png │ │ │ │ │ │ ├── input-keyboard.png │ │ │ │ │ │ ├── input-mouse.png │ │ │ │ │ │ ├── input-touchpad.png │ │ │ │ │ │ ├── input-trackpoint.png │ │ │ │ │ │ ├── printer.png │ │ │ │ │ │ └── video-display.png │ │ │ │ │ ├── emblems │ │ │ │ │ │ ├── emblem-downloads.png │ │ │ │ │ │ ├── emblem-mail.png │ │ │ │ │ │ ├── emblem-readonly.png │ │ │ │ │ │ ├── emblem-shared.png │ │ │ │ │ │ ├── emblem-symbolic-link.png │ │ │ │ │ │ ├── emblem-synchronizing.png │ │ │ │ │ │ └── emblem-unreadable.png │ │ │ │ │ ├── mimetypes │ │ │ │ │ │ ├── application-7zip.png │ │ │ │ │ │ ├── application-archive-zip.png │ │ │ │ │ │ ├── application-archive.png │ │ │ │ │ │ ├── application-x-cd-image.png │ │ │ │ │ │ ├── drive-cdrom.png │ │ │ │ │ │ ├── drive-optical.png │ │ │ │ │ │ ├── image-x-generic.png │ │ │ │ │ │ ├── inode-directory.png │ │ │ │ │ │ ├── media-cdr.png │ │ │ │ │ │ ├── media-cdrom-audio.png │ │ │ │ │ │ ├── media-cdrom.png │ │ │ │ │ │ ├── media-cdrw.png │ │ │ │ │ │ ├── media-dvd.png │ │ │ │ │ │ ├── media-dvdrw.png │ │ │ │ │ │ ├── media-optical-cd-video.png │ │ │ │ │ │ ├── media-optical-copy.png │ │ │ │ │ │ ├── media-optical-dvd-video.png │ │ │ │ │ │ ├── media-optical-video.png │ │ │ │ │ │ ├── media-optical.png │ │ │ │ │ │ ├── office-document.png │ │ │ │ │ │ ├── package-x-generic.png │ │ │ │ │ │ ├── text-plain.png │ │ │ │ │ │ ├── text-x-generic.png │ │ │ │ │ │ ├── text-x-install.png │ │ │ │ │ │ ├── text-x-script.png │ │ │ │ │ │ ├── text.png │ │ │ │ │ │ ├── x-office-calendar.png │ │ │ │ │ │ └── x-office-document.png │ │ │ │ │ ├── panel │ │ │ │ │ │ ├── account-logged-in.png │ │ │ │ │ │ ├── application-running.png │ │ │ │ │ │ ├── audio-output-none-panel.png │ │ │ │ │ │ ├── audio-output-none.png │ │ │ │ │ │ ├── audio-volume-high-panel.png │ │ │ │ │ │ ├── audio-volume-high.png │ │ │ │ │ │ ├── audio-volume-low-panel.png │ │ │ │ │ │ ├── audio-volume-low-zero-panel.png │ │ │ │ │ │ ├── audio-volume-low.png │ │ │ │ │ │ ├── audio-volume-medium-panel.png │ │ │ │ │ │ ├── audio-volume-medium.png │ │ │ │ │ │ ├── audio-volume-muted-blocking.png │ │ │ │ │ │ ├── audio-volume-muted-panel.png │ │ │ │ │ │ ├── audio-volume-muted.png │ │ │ │ │ │ ├── avatar-default.png │ │ │ │ │ │ ├── battery-caution-charging.png │ │ │ │ │ │ ├── battery-caution-symbolic.png │ │ │ │ │ │ ├── battery-caution.png │ │ │ │ │ │ ├── battery-empty-charging-symbolic.png │ │ │ │ │ │ ├── battery-empty-charging.png │ │ │ │ │ │ ├── battery-empty-symbolic.png │ │ │ │ │ │ ├── battery-empty.png │ │ │ │ │ │ ├── battery-full-charged-symbolic.png │ │ │ │ │ │ ├── battery-full-charged.png │ │ │ │ │ │ ├── battery-full-charging-symbolic.png │ │ │ │ │ │ ├── battery-full-charging.png │ │ │ │ │ │ ├── battery-full-symbolic.png │ │ │ │ │ │ ├── battery-full.png │ │ │ │ │ │ ├── battery-good-charging-symbolic.png │ │ │ │ │ │ ├── battery-good-charging.png │ │ │ │ │ │ ├── battery-good-symbolic.png │ │ │ │ │ │ ├── battery-good.png │ │ │ │ │ │ ├── battery-low-charging-symbolic.png │ │ │ │ │ │ ├── battery-low-charging.png │ │ │ │ │ │ ├── battery-low-symbolic.png │ │ │ │ │ │ ├── battery-low.png │ │ │ │ │ │ ├── battery-medium-charging.png │ │ │ │ │ │ ├── battery-medium-symbolic.png │ │ │ │ │ │ ├── battery-medium.png │ │ │ │ │ │ ├── battery-missing-symbolic.png │ │ │ │ │ │ ├── battery-missing.png │ │ │ │ │ │ ├── bluetooth-active-symbolic.png │ │ │ │ │ │ ├── bluetooth-active.png │ │ │ │ │ │ ├── bluetooth-disabled-symbolic.png │ │ │ │ │ │ ├── bluetooth-disabled.png │ │ │ │ │ │ ├── bluetooth-paired.png │ │ │ │ │ │ ├── dropboxstatus-busy.png │ │ │ │ │ │ ├── dropboxstatus-busy2.png │ │ │ │ │ │ ├── dropboxstatus-idle.png │ │ │ │ │ │ ├── dropboxstatus-logo.png │ │ │ │ │ │ ├── dropboxstatus-x.png │ │ │ │ │ │ ├── gnome-netstatus-disconn.png │ │ │ │ │ │ ├── gnome-netstatus-error.png │ │ │ │ │ │ ├── gnome-netstatus-rx.png │ │ │ │ │ │ ├── gnome-netstatus-tx.png │ │ │ │ │ │ ├── gnome-netstatus-txrx.png │ │ │ │ │ │ ├── gpm-ac-adapter.png │ │ │ │ │ │ ├── gpm-battery-000-charging.png │ │ │ │ │ │ ├── gpm-battery-000.png │ │ │ │ │ │ ├── gpm-battery-020-charging.png │ │ │ │ │ │ ├── gpm-battery-020.png │ │ │ │ │ │ ├── gpm-battery-040-charging.png │ │ │ │ │ │ ├── gpm-battery-040.png │ │ │ │ │ │ ├── gpm-battery-060-charging.png │ │ │ │ │ │ ├── gpm-battery-060.png │ │ │ │ │ │ ├── gpm-battery-080-charging.png │ │ │ │ │ │ ├── gpm-battery-080.png │ │ │ │ │ │ ├── gpm-battery-100-charging.png │ │ │ │ │ │ ├── gpm-battery-100.png │ │ │ │ │ │ ├── gpm-battery-charged.png │ │ │ │ │ │ ├── gpm-battery-missing.png │ │ │ │ │ │ ├── gpm-keyboard-000.png │ │ │ │ │ │ ├── gpm-keyboard-020.png │ │ │ │ │ │ ├── gpm-keyboard-040.png │ │ │ │ │ │ ├── gpm-keyboard-060.png │ │ │ │ │ │ ├── gpm-keyboard-080.png │ │ │ │ │ │ ├── gpm-keyboard-100.png │ │ │ │ │ │ ├── gpm-mouse-000.png │ │ │ │ │ │ ├── gpm-mouse-020.png │ │ │ │ │ │ ├── gpm-mouse-040.png │ │ │ │ │ │ ├── gpm-mouse-060.png │ │ │ │ │ │ ├── gpm-mouse-080.png │ │ │ │ │ │ ├── gpm-mouse-100.png │ │ │ │ │ │ ├── gpm-phone-000.png │ │ │ │ │ │ ├── gpm-phone-020.png │ │ │ │ │ │ ├── gpm-phone-040.png │ │ │ │ │ │ ├── gpm-phone-060.png │ │ │ │ │ │ ├── gpm-phone-080.png │ │ │ │ │ │ ├── gpm-phone-100.png │ │ │ │ │ │ ├── gpm-primary-000-charging.png │ │ │ │ │ │ ├── gpm-primary-000.png │ │ │ │ │ │ ├── gpm-primary-020-charging.png │ │ │ │ │ │ ├── gpm-primary-020.png │ │ │ │ │ │ ├── gpm-primary-040-charging.png │ │ │ │ │ │ ├── gpm-primary-040.png │ │ │ │ │ │ ├── gpm-primary-060-charging.png │ │ │ │ │ │ ├── gpm-primary-060.png │ │ │ │ │ │ ├── gpm-primary-080-charging.png │ │ │ │ │ │ ├── gpm-primary-080.png │ │ │ │ │ │ ├── gpm-primary-100-charging.png │ │ │ │ │ │ ├── gpm-primary-100.png │ │ │ │ │ │ ├── gpm-primary-charged.png │ │ │ │ │ │ ├── gpm-primary-missing.png │ │ │ │ │ │ ├── gpm-ups-000-charging.png │ │ │ │ │ │ ├── gpm-ups-000.png │ │ │ │ │ │ ├── gpm-ups-020-charging.png │ │ │ │ │ │ ├── gpm-ups-020.png │ │ │ │ │ │ ├── gpm-ups-040-charging.png │ │ │ │ │ │ ├── gpm-ups-040.png │ │ │ │ │ │ ├── gpm-ups-060-charging.png │ │ │ │ │ │ ├── gpm-ups-060.png │ │ │ │ │ │ ├── gpm-ups-080-charging.png │ │ │ │ │ │ ├── gpm-ups-080.png │ │ │ │ │ │ ├── gpm-ups-100-charging.png │ │ │ │ │ │ ├── gpm-ups-100.png │ │ │ │ │ │ ├── gpm-ups-charged.png │ │ │ │ │ │ ├── gpm-ups-missing.png │ │ │ │ │ │ ├── gsm-3g-full-secure.png │ │ │ │ │ │ ├── gsm-3g-full.png │ │ │ │ │ │ ├── gsm-3g-high-secure.png │ │ │ │ │ │ ├── gsm-3g-high.png │ │ │ │ │ │ ├── gsm-3g-low-secure.png │ │ │ │ │ │ ├── gsm-3g-low.png │ │ │ │ │ │ ├── gsm-3g-medium-secure.png │ │ │ │ │ │ ├── gsm-3g-medium.png │ │ │ │ │ │ ├── gsm-3g-none-secure.png │ │ │ │ │ │ ├── gsm-3g-none.png │ │ │ │ │ │ ├── indicator-messages-new.png │ │ │ │ │ │ ├── indicator-messages-red.png │ │ │ │ │ │ ├── indicator-messages.png │ │ │ │ │ │ ├── keyboard-battery-caution.png │ │ │ │ │ │ ├── keyboard-battery-empty.png │ │ │ │ │ │ ├── keyboard-battery-full.png │ │ │ │ │ │ ├── keyboard-battery-good.png │ │ │ │ │ │ ├── keyboard-battery-low.png │ │ │ │ │ │ ├── keyboard-battery-medium.png │ │ │ │ │ │ ├── mouse-battery-caution.png │ │ │ │ │ │ ├── mouse-battery-empty.png │ │ │ │ │ │ ├── mouse-battery-full.png │ │ │ │ │ │ ├── mouse-battery-good.png │ │ │ │ │ │ ├── mouse-battery-low.png │ │ │ │ │ │ ├── mouse-battery-medium.png │ │ │ │ │ │ ├── network-cellular-no-route.png │ │ │ │ │ │ ├── network-cellular-secure-signal-excellent.png │ │ │ │ │ │ ├── network-cellular-secure-signal-good.png │ │ │ │ │ │ ├── network-cellular-secure-signal-none.png │ │ │ │ │ │ ├── network-cellular-secure-signal-ok.png │ │ │ │ │ │ ├── network-cellular-secure-signal-weak.png │ │ │ │ │ │ ├── network-cellular-signal-acquiring.png │ │ │ │ │ │ ├── network-cellular-signal-excellent.png │ │ │ │ │ │ ├── network-cellular-signal-good.png │ │ │ │ │ │ ├── network-cellular-signal-none.png │ │ │ │ │ │ ├── network-cellular-signal-ok.png │ │ │ │ │ │ ├── network-cellular-signal-weak.png │ │ │ │ │ │ ├── network-disconnected.png │ │ │ │ │ │ ├── network-error.png │ │ │ │ │ │ ├── network-idle.png │ │ │ │ │ │ ├── network-offline.png │ │ │ │ │ │ ├── network-receive.png │ │ │ │ │ │ ├── network-transmit-receive.png │ │ │ │ │ │ ├── network-transmit.png │ │ │ │ │ │ ├── network-vpn-acquiring.png │ │ │ │ │ │ ├── network-vpn.png │ │ │ │ │ │ ├── network-wired-acquiring.png │ │ │ │ │ │ ├── network-wired-no-route.png │ │ │ │ │ │ ├── network-wired.png │ │ │ │ │ │ ├── network-wireless-acquiring.png │ │ │ │ │ │ ├── network-wireless-connected.png │ │ │ │ │ │ ├── network-wireless-hotspot.png │ │ │ │ │ │ ├── network-wireless-no-route.png │ │ │ │ │ │ ├── network-wireless-offline.png │ │ │ │ │ │ ├── network-wireless-secure-signal-excellent.png │ │ │ │ │ │ ├── network-wireless-secure-signal-good.png │ │ │ │ │ │ ├── network-wireless-secure-signal-low.png │ │ │ │ │ │ ├── network-wireless-secure-signal-none.png │ │ │ │ │ │ ├── network-wireless-secure-signal-ok.png │ │ │ │ │ │ ├── network-wireless-signal-excellent.png │ │ │ │ │ │ ├── network-wireless-signal-good.png │ │ │ │ │ │ ├── network-wireless-signal-low.png │ │ │ │ │ │ ├── network-wireless-signal-none.png │ │ │ │ │ │ ├── network-wireless-signal-ok.png │ │ │ │ │ │ ├── nm-adhoc.png │ │ │ │ │ │ ├── nm-device-wired-secure.png │ │ │ │ │ │ ├── nm-device-wired.png │ │ │ │ │ │ ├── nm-no-connection.png │ │ │ │ │ │ ├── nm-signal-0-secure.png │ │ │ │ │ │ ├── nm-signal-0.png │ │ │ │ │ │ ├── nm-signal-00-secure.png │ │ │ │ │ │ ├── nm-signal-00.png │ │ │ │ │ │ ├── nm-signal-100-secure.png │ │ │ │ │ │ ├── nm-signal-100.png │ │ │ │ │ │ ├── nm-signal-25-secure.png │ │ │ │ │ │ ├── nm-signal-25.png │ │ │ │ │ │ ├── nm-signal-50-secure.png │ │ │ │ │ │ ├── nm-signal-50.png │ │ │ │ │ │ ├── nm-signal-75-secure.png │ │ │ │ │ │ ├── nm-signal-75.png │ │ │ │ │ │ ├── nm-vpn-active-lock.png │ │ │ │ │ │ ├── nm-vpn-lock.png │ │ │ │ │ │ ├── phone-battery-caution.png │ │ │ │ │ │ ├── phone-battery-empty.png │ │ │ │ │ │ ├── phone-battery-full.png │ │ │ │ │ │ ├── phone-battery-good.png │ │ │ │ │ │ ├── phone-battery-low.png │ │ │ │ │ │ ├── phone-battery-medium.png │ │ │ │ │ │ ├── printer-symbolic.png │ │ │ │ │ │ ├── system-devices-information.png │ │ │ │ │ │ ├── system-devices-panel-alert.png │ │ │ │ │ │ ├── system-devices-panel.png │ │ │ │ │ │ ├── system-shutdown-panel-restart.png │ │ │ │ │ │ ├── system-shutdown-panel.png │ │ │ │ │ │ ├── volume-level-high-panel.png │ │ │ │ │ │ ├── volume-level-high.png │ │ │ │ │ │ ├── volume-level-low-panel.png │ │ │ │ │ │ ├── volume-level-low.png │ │ │ │ │ │ ├── volume-level-medium-panel.png │ │ │ │ │ │ ├── volume-level-medium.png │ │ │ │ │ │ ├── volume-level-muted-panel.png │ │ │ │ │ │ ├── volume-level-muted.png │ │ │ │ │ │ ├── volume-level-none-panel.png │ │ │ │ │ │ ├── volume-level-none.png │ │ │ │ │ │ ├── xfpm-keyboard-000.png │ │ │ │ │ │ ├── xfpm-keyboard-020.png │ │ │ │ │ │ ├── xfpm-keyboard-040.png │ │ │ │ │ │ ├── xfpm-keyboard-060.png │ │ │ │ │ │ ├── xfpm-keyboard-080.png │ │ │ │ │ │ ├── xfpm-keyboard-100.png │ │ │ │ │ │ ├── xfpm-mouse-000.png │ │ │ │ │ │ ├── xfpm-mouse-020.png │ │ │ │ │ │ ├── xfpm-mouse-040.png │ │ │ │ │ │ ├── xfpm-mouse-060.png │ │ │ │ │ │ ├── xfpm-mouse-080.png │ │ │ │ │ │ ├── xfpm-mouse-100.png │ │ │ │ │ │ ├── xfpm-phone-000.png │ │ │ │ │ │ ├── xfpm-phone-020.png │ │ │ │ │ │ ├── xfpm-phone-040.png │ │ │ │ │ │ ├── xfpm-phone-060.png │ │ │ │ │ │ ├── xfpm-phone-080.png │ │ │ │ │ │ ├── xfpm-phone-100.png │ │ │ │ │ │ ├── xfpm-primary-000-charging.png │ │ │ │ │ │ ├── xfpm-primary-000.png │ │ │ │ │ │ ├── xfpm-primary-020-charging.png │ │ │ │ │ │ ├── xfpm-primary-020.png │ │ │ │ │ │ ├── xfpm-primary-040-charging.png │ │ │ │ │ │ ├── xfpm-primary-040.png │ │ │ │ │ │ ├── xfpm-primary-060-charging.png │ │ │ │ │ │ ├── xfpm-primary-060.png │ │ │ │ │ │ ├── xfpm-primary-080-charging.png │ │ │ │ │ │ ├── xfpm-primary-080.png │ │ │ │ │ │ ├── xfpm-primary-100-charging.png │ │ │ │ │ │ ├── xfpm-primary-100.png │ │ │ │ │ │ ├── xfpm-primary-charged.png │ │ │ │ │ │ ├── xfpm-primary-missing.png │ │ │ │ │ │ ├── xfpm-ups-000-charging.png │ │ │ │ │ │ ├── xfpm-ups-000.png │ │ │ │ │ │ ├── xfpm-ups-020-charging.png │ │ │ │ │ │ ├── xfpm-ups-020.png │ │ │ │ │ │ ├── xfpm-ups-040-charging.png │ │ │ │ │ │ ├── xfpm-ups-040.png │ │ │ │ │ │ ├── xfpm-ups-060-charging.png │ │ │ │ │ │ ├── xfpm-ups-060.png │ │ │ │ │ │ ├── xfpm-ups-080-charging.png │ │ │ │ │ │ ├── xfpm-ups-080.png │ │ │ │ │ │ ├── xfpm-ups-100-charging.png │ │ │ │ │ │ ├── xfpm-ups-100.png │ │ │ │ │ │ ├── xfpm-ups-charged.png │ │ │ │ │ │ └── xfpm-ups-missing.png │ │ │ │ │ ├── places │ │ │ │ │ │ ├── folder-documents.png │ │ │ │ │ │ ├── folder-download.png │ │ │ │ │ │ ├── folder-drag-accept.png │ │ │ │ │ │ ├── folder-music.png │ │ │ │ │ │ ├── folder-open.png │ │ │ │ │ │ ├── folder-pictures.png │ │ │ │ │ │ ├── folder-publicshare.png │ │ │ │ │ │ ├── folder-recent.png │ │ │ │ │ │ ├── folder-remote.png │ │ │ │ │ │ ├── folder-saved-search.png │ │ │ │ │ │ ├── folder-tag.png │ │ │ │ │ │ ├── folder-templates.png │ │ │ │ │ │ ├── folder-videos.png │ │ │ │ │ │ ├── folder.png │ │ │ │ │ │ ├── gtk-network.png │ │ │ │ │ │ ├── library-music.png │ │ │ │ │ │ ├── library-places.png │ │ │ │ │ │ ├── library-podcast.png │ │ │ │ │ │ ├── mail-inbox.png │ │ │ │ │ │ ├── mail-mailbox.png │ │ │ │ │ │ ├── mail-outbox.png │ │ │ │ │ │ ├── network-server.png │ │ │ │ │ │ ├── network-workgroup.png │ │ │ │ │ │ ├── playlist-automatic.png │ │ │ │ │ │ ├── playlist-queue.png │ │ │ │ │ │ ├── playlist-similar.png │ │ │ │ │ │ ├── playlist.png │ │ │ │ │ │ ├── user-bookmarks.png │ │ │ │ │ │ ├── user-desktop.png │ │ │ │ │ │ └── user-home.png │ │ │ │ │ └── status │ │ │ │ │ │ ├── dialog-error.png │ │ │ │ │ │ ├── dialog-info.png │ │ │ │ │ │ ├── dialog-information.png │ │ │ │ │ │ ├── dialog-question.png │ │ │ │ │ │ ├── dialog-warning.png │ │ │ │ │ │ ├── image-loading.png │ │ │ │ │ │ ├── image-missing.png │ │ │ │ │ │ ├── mail-attachment.png │ │ │ │ │ │ ├── media-playlist-repeat-symbolic.png │ │ │ │ │ │ ├── media-playlist-shuffle-rtl-symbolic.png │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic.png │ │ │ │ │ │ ├── non-starred.png │ │ │ │ │ │ ├── printer-error.png │ │ │ │ │ │ ├── printer-paused.png │ │ │ │ │ │ ├── printer-printing.png │ │ │ │ │ │ ├── printer-warning.png │ │ │ │ │ │ ├── starred.png │ │ │ │ │ │ ├── user-available.png │ │ │ │ │ │ ├── user-away.png │ │ │ │ │ │ ├── user-busy.png │ │ │ │ │ │ ├── user-invisible.png │ │ │ │ │ │ └── user-offline.png │ │ │ │ ├── 24x24 │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── add-files-to-archive.png │ │ │ │ │ │ ├── add.png │ │ │ │ │ │ ├── application-menu.png │ │ │ │ │ │ ├── appointment-new-symbolic.png │ │ │ │ │ │ ├── appointment-new.png │ │ │ │ │ │ ├── archive-insert.png │ │ │ │ │ │ ├── bookmark-new.png │ │ │ │ │ │ ├── browser-download.png │ │ │ │ │ │ ├── calendar-go-today.png │ │ │ │ │ │ ├── contact-new.png │ │ │ │ │ │ ├── dialog-apply.png │ │ │ │ │ │ ├── dialog-cancel.png │ │ │ │ │ │ ├── dialog-close.png │ │ │ │ │ │ ├── dialog-no.png │ │ │ │ │ │ ├── dialog-ok.png │ │ │ │ │ │ ├── document-add.png │ │ │ │ │ │ ├── document-export-symbolic.png │ │ │ │ │ │ ├── document-export.png │ │ │ │ │ │ ├── document-import-symbolic.png │ │ │ │ │ │ ├── document-import.png │ │ │ │ │ │ ├── document-new.png │ │ │ │ │ │ ├── document-open-recent.png │ │ │ │ │ │ ├── document-open.png │ │ │ │ │ │ ├── document-page-setup.png │ │ │ │ │ │ ├── document-print.png │ │ │ │ │ │ ├── document-properties.png │ │ │ │ │ │ ├── document-revert.png │ │ │ │ │ │ ├── document-save-as.png │ │ │ │ │ │ ├── document-save.png │ │ │ │ │ │ ├── document-send.png │ │ │ │ │ │ ├── edit-clear-rtl-symbolic.png │ │ │ │ │ │ ├── edit-clear-symbolic-rtl.png │ │ │ │ │ │ ├── edit-clear-symbolic.png │ │ │ │ │ │ ├── edit-clear.png │ │ │ │ │ │ ├── edit-copy.png │ │ │ │ │ │ ├── edit-cut.png │ │ │ │ │ │ ├── edit-delete.png │ │ │ │ │ │ ├── edit-find-symbolic.png │ │ │ │ │ │ ├── edit-find.png │ │ │ │ │ │ ├── edit-flag.png │ │ │ │ │ │ ├── edit-paste.png │ │ │ │ │ │ ├── edit-redo.png │ │ │ │ │ │ ├── edit-select-all.png │ │ │ │ │ │ ├── edit-undo.png │ │ │ │ │ │ ├── event-new.png │ │ │ │ │ │ ├── extract-archive.png │ │ │ │ │ │ ├── folder-add.png │ │ │ │ │ │ ├── folder-new.png │ │ │ │ │ │ ├── format-justify-center.png │ │ │ │ │ │ ├── format-justify-fill.png │ │ │ │ │ │ ├── format-justify-left.png │ │ │ │ │ │ ├── format-justify-right.png │ │ │ │ │ │ ├── format-text-bold.png │ │ │ │ │ │ ├── format-text-italic.png │ │ │ │ │ │ ├── format-text-none.png │ │ │ │ │ │ ├── format-text-strikethrough.png │ │ │ │ │ │ ├── format-text-underline.png │ │ │ │ │ │ ├── go-bottom.png │ │ │ │ │ │ ├── go-down.png │ │ │ │ │ │ ├── go-first.png │ │ │ │ │ │ ├── go-home.png │ │ │ │ │ │ ├── go-jump-rtl.png │ │ │ │ │ │ ├── go-jump.png │ │ │ │ │ │ ├── go-last.png │ │ │ │ │ │ ├── go-next.png │ │ │ │ │ │ ├── go-previous.png │ │ │ │ │ │ ├── go-top.png │ │ │ │ │ │ ├── go-up.png │ │ │ │ │ │ ├── gtk-go-back-ltr.png │ │ │ │ │ │ ├── gtk-go-forward-ltr.png │ │ │ │ │ │ ├── gtk-ok.png │ │ │ │ │ │ ├── gtk-yes.png │ │ │ │ │ │ ├── help-contents.png │ │ │ │ │ │ ├── help-faq.png │ │ │ │ │ │ ├── help-hint.png │ │ │ │ │ │ ├── im-message-new.png │ │ │ │ │ │ ├── image-adjust.png │ │ │ │ │ │ ├── image-auto-adjust.png │ │ │ │ │ │ ├── image-crop.png │ │ │ │ │ │ ├── image-red-eye.png │ │ │ │ │ │ ├── insert-image.png │ │ │ │ │ │ ├── insert-link.png │ │ │ │ │ │ ├── list-add.png │ │ │ │ │ │ ├── list-remove.png │ │ │ │ │ │ ├── mail-archive.png │ │ │ │ │ │ ├── mail-forward.png │ │ │ │ │ │ ├── mail-mark-junk.png │ │ │ │ │ │ ├── mail-mark-notjunk.png │ │ │ │ │ │ ├── mail-mark-unread.png │ │ │ │ │ │ ├── mail-message-new.png │ │ │ │ │ │ ├── mail-move.png │ │ │ │ │ │ ├── mail-reply-all.png │ │ │ │ │ │ ├── mail-reply-sender.png │ │ │ │ │ │ ├── mail-reply.png │ │ │ │ │ │ ├── mail-send-receive.png │ │ │ │ │ │ ├── mail-send.png │ │ │ │ │ │ ├── mail-sent.png │ │ │ │ │ │ ├── mail-unread.png │ │ │ │ │ │ ├── media-eject-symbolic.png │ │ │ │ │ │ ├── media-eject.png │ │ │ │ │ │ ├── media-playback-pause-symbolic.png │ │ │ │ │ │ ├── media-playback-pause.png │ │ │ │ │ │ ├── media-playback-start-symbolic.png │ │ │ │ │ │ ├── media-playback-start.png │ │ │ │ │ │ ├── media-playback-stop-symbolic.png │ │ │ │ │ │ ├── media-playback-stop.png │ │ │ │ │ │ ├── media-playlist-consecutive-rtl.png │ │ │ │ │ │ ├── media-playlist-consecutive.png │ │ │ │ │ │ ├── media-playlist-no-shuffle.png │ │ │ │ │ │ ├── media-playlist-repeat-one.png │ │ │ │ │ │ ├── media-playlist-repeat-rtl.png │ │ │ │ │ │ ├── media-playlist-repeat-song-rtl.png │ │ │ │ │ │ ├── media-playlist-repeat-song.png │ │ │ │ │ │ ├── media-playlist-repeat.png │ │ │ │ │ │ ├── media-playlist-shuffle-rtl.png │ │ │ │ │ │ ├── media-playlist-shuffle.png │ │ │ │ │ │ ├── media-record-symbolic.png │ │ │ │ │ │ ├── media-record.png │ │ │ │ │ │ ├── media-seek-backward-rtl-symbolic.png │ │ │ │ │ │ ├── media-seek-backward-symbolic-rtl.png │ │ │ │ │ │ ├── media-seek-backward-symbolic.png │ │ │ │ │ │ ├── media-seek-backward.png │ │ │ │ │ │ ├── media-seek-forward-rtl-symbolic.png │ │ │ │ │ │ ├── media-seek-forward-symbolic-rtl.png │ │ │ │ │ │ ├── media-seek-forward-symbolic.png │ │ │ │ │ │ ├── media-seek-forward.png │ │ │ │ │ │ ├── media-skip-backward-rtl-symbolic.png │ │ │ │ │ │ ├── media-skip-backward-symbolic-rtl.png │ │ │ │ │ │ ├── media-skip-backward-symbolic.png │ │ │ │ │ │ ├── media-skip-backward.png │ │ │ │ │ │ ├── media-skip-forward-rtl-symbolic.png │ │ │ │ │ │ ├── media-skip-forward-symbolic-rtl.png │ │ │ │ │ │ ├── media-skip-forward-symbolic.png │ │ │ │ │ │ ├── media-skip-forward.png │ │ │ │ │ │ ├── node-add.png │ │ │ │ │ │ ├── node-break.png │ │ │ │ │ │ ├── node-curve.png │ │ │ │ │ │ ├── node-cusp.png │ │ │ │ │ │ ├── node-delete-segment.png │ │ │ │ │ │ ├── node-delete.png │ │ │ │ │ │ ├── node-insert.png │ │ │ │ │ │ ├── node-join-segment.png │ │ │ │ │ │ ├── node-join.png │ │ │ │ │ │ ├── node-line.png │ │ │ │ │ │ ├── object-flip-horizontal.png │ │ │ │ │ │ ├── object-flip-vertical.png │ │ │ │ │ │ ├── object-inverse.png │ │ │ │ │ │ ├── object-merge.png │ │ │ │ │ │ ├── object-rotate-left.png │ │ │ │ │ │ ├── object-rotate-right.png │ │ │ │ │ │ ├── object-straighten.png │ │ │ │ │ │ ├── open-menu.png │ │ │ │ │ │ ├── package-available-locked.png │ │ │ │ │ │ ├── package-available-new.png │ │ │ │ │ │ ├── package-available.png │ │ │ │ │ │ ├── package-broken.png │ │ │ │ │ │ ├── package-downgrade.png │ │ │ │ │ │ ├── package-install.png │ │ │ │ │ │ ├── package-installed-locked.png │ │ │ │ │ │ ├── package-installed-outdated.png │ │ │ │ │ │ ├── package-installed-updated.png │ │ │ │ │ │ ├── package-purge.png │ │ │ │ │ │ ├── package-reinstall.png │ │ │ │ │ │ ├── package-remove.png │ │ │ │ │ │ ├── package-supported.png │ │ │ │ │ │ ├── package-upgrade.png │ │ │ │ │ │ ├── pane-hide-symbolic-rtl.png │ │ │ │ │ │ ├── pane-hide-symbolic.png │ │ │ │ │ │ ├── pane-show-symbolic-rtl.png │ │ │ │ │ │ ├── pane-show-symbolic.png │ │ │ │ │ │ ├── process-stop.png │ │ │ │ │ │ ├── remove.png │ │ │ │ │ │ ├── system-lock-screen.png │ │ │ │ │ │ ├── system-restart.png │ │ │ │ │ │ ├── system-search.png │ │ │ │ │ │ ├── tag-new.png │ │ │ │ │ │ ├── view-fullscreen.png │ │ │ │ │ │ ├── view-refresh.png │ │ │ │ │ │ ├── view-restore.png │ │ │ │ │ │ ├── view-sort-ascending.png │ │ │ │ │ │ ├── view-sort-descending.png │ │ │ │ │ │ ├── window-close.png │ │ │ │ │ │ ├── zoom-fit-best.png │ │ │ │ │ │ ├── zoom-in.png │ │ │ │ │ │ ├── zoom-original.png │ │ │ │ │ │ └── zoom-out.png │ │ │ │ │ ├── animations │ │ │ │ │ │ ├── brasero-disc-00.png │ │ │ │ │ │ ├── brasero-disc-05.png │ │ │ │ │ │ ├── brasero-disc-10.png │ │ │ │ │ │ ├── brasero-disc-100.png │ │ │ │ │ │ ├── brasero-disc-15.png │ │ │ │ │ │ ├── brasero-disc-20.png │ │ │ │ │ │ ├── brasero-disc-25.png │ │ │ │ │ │ ├── brasero-disc-30.png │ │ │ │ │ │ ├── brasero-disc-35.png │ │ │ │ │ │ ├── brasero-disc-40.png │ │ │ │ │ │ ├── brasero-disc-45.png │ │ │ │ │ │ ├── brasero-disc-50.png │ │ │ │ │ │ ├── brasero-disc-55.png │ │ │ │ │ │ ├── brasero-disc-60.png │ │ │ │ │ │ ├── brasero-disc-65.png │ │ │ │ │ │ ├── brasero-disc-70.png │ │ │ │ │ │ ├── brasero-disc-75.png │ │ │ │ │ │ ├── brasero-disc-80.png │ │ │ │ │ │ ├── brasero-disc-85.png │ │ │ │ │ │ ├── brasero-disc-90.png │ │ │ │ │ │ ├── brasero-disc-95.png │ │ │ │ │ │ ├── nm-stage01-connecting01.png │ │ │ │ │ │ ├── nm-stage01-connecting02.png │ │ │ │ │ │ ├── nm-stage01-connecting03.png │ │ │ │ │ │ ├── nm-stage01-connecting04.png │ │ │ │ │ │ ├── nm-stage01-connecting05.png │ │ │ │ │ │ ├── nm-stage01-connecting06.png │ │ │ │ │ │ ├── nm-stage01-connecting07.png │ │ │ │ │ │ ├── nm-stage01-connecting08.png │ │ │ │ │ │ ├── nm-stage01-connecting09.png │ │ │ │ │ │ ├── nm-stage01-connecting10.png │ │ │ │ │ │ ├── nm-stage01-connecting11.png │ │ │ │ │ │ ├── nm-stage02-connecting01.png │ │ │ │ │ │ ├── nm-stage02-connecting02.png │ │ │ │ │ │ ├── nm-stage02-connecting03.png │ │ │ │ │ │ ├── nm-stage02-connecting04.png │ │ │ │ │ │ ├── nm-stage02-connecting05.png │ │ │ │ │ │ ├── nm-stage02-connecting06.png │ │ │ │ │ │ ├── nm-stage02-connecting07.png │ │ │ │ │ │ ├── nm-stage02-connecting08.png │ │ │ │ │ │ ├── nm-stage02-connecting09.png │ │ │ │ │ │ ├── nm-stage02-connecting10.png │ │ │ │ │ │ ├── nm-stage02-connecting11.png │ │ │ │ │ │ ├── nm-stage02-connecting12.png │ │ │ │ │ │ ├── nm-stage02-connecting13.png │ │ │ │ │ │ ├── nm-stage02-connecting14.png │ │ │ │ │ │ ├── nm-stage03-connecting01.png │ │ │ │ │ │ ├── nm-stage03-connecting02.png │ │ │ │ │ │ ├── nm-stage03-connecting03.png │ │ │ │ │ │ ├── nm-stage03-connecting04.png │ │ │ │ │ │ ├── nm-stage03-connecting05.png │ │ │ │ │ │ ├── nm-stage03-connecting06.png │ │ │ │ │ │ ├── nm-stage03-connecting07.png │ │ │ │ │ │ ├── nm-stage03-connecting08.png │ │ │ │ │ │ ├── nm-stage03-connecting09.png │ │ │ │ │ │ ├── nm-stage03-connecting10.png │ │ │ │ │ │ ├── nm-stage03-connecting11.png │ │ │ │ │ │ ├── nm-stage03-connecting12.png │ │ │ │ │ │ ├── nm-stage03-connecting13.png │ │ │ │ │ │ ├── nm-stage03-connecting14.png │ │ │ │ │ │ ├── nm-vpn-connecting01.png │ │ │ │ │ │ ├── nm-vpn-connecting02.png │ │ │ │ │ │ ├── nm-vpn-connecting03.png │ │ │ │ │ │ ├── nm-vpn-connecting04.png │ │ │ │ │ │ ├── nm-vpn-connecting05.png │ │ │ │ │ │ ├── nm-vpn-connecting06.png │ │ │ │ │ │ ├── nm-vpn-connecting07.png │ │ │ │ │ │ ├── nm-vpn-connecting08.png │ │ │ │ │ │ ├── nm-vpn-connecting09.png │ │ │ │ │ │ ├── nm-vpn-connecting10.png │ │ │ │ │ │ ├── nm-vpn-connecting11.png │ │ │ │ │ │ ├── nm-vpn-connecting12.png │ │ │ │ │ │ ├── nm-vpn-connecting13.png │ │ │ │ │ │ └── nm-vpn-connecting14.png │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── accessories-calculator.png │ │ │ │ │ │ ├── accessories-camera.png │ │ │ │ │ │ ├── apport.png │ │ │ │ │ │ ├── calendar.png │ │ │ │ │ │ ├── geary.png │ │ │ │ │ │ ├── help-browser.png │ │ │ │ │ │ ├── internet-feed-reader.png │ │ │ │ │ │ ├── internet-mail.png │ │ │ │ │ │ ├── internet-web-browser.png │ │ │ │ │ │ ├── multimedia-audio-player.png │ │ │ │ │ │ ├── multimedia-photo-manager.png │ │ │ │ │ │ ├── office-calendar.png │ │ │ │ │ │ ├── other-driver.png │ │ │ │ │ │ ├── preferences-desktop.png │ │ │ │ │ │ ├── preferences-system.png │ │ │ │ │ │ ├── recommended-driver.png │ │ │ │ │ │ ├── system-error.png │ │ │ │ │ │ ├── system-file-manager.png │ │ │ │ │ │ ├── system-users.png │ │ │ │ │ │ ├── utilities-terminal.png │ │ │ │ │ │ └── web-browser.png │ │ │ │ │ ├── categories │ │ │ │ │ │ ├── applications-internet.png │ │ │ │ │ │ ├── bluetooth.png │ │ │ │ │ │ ├── goa-panel.png │ │ │ │ │ │ ├── preferences-desktop-accessibility.png │ │ │ │ │ │ ├── preferences-desktop-display.png │ │ │ │ │ │ ├── preferences-desktop-keyboard.png │ │ │ │ │ │ ├── preferences-desktop-locale.png │ │ │ │ │ │ ├── preferences-desktop-notifications.png │ │ │ │ │ │ ├── preferences-desktop-online-accounts.png │ │ │ │ │ │ ├── preferences-desktop-peripherals.png │ │ │ │ │ │ ├── preferences-desktop-sound.png │ │ │ │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ │ │ │ ├── preferences-system-network.png │ │ │ │ │ │ ├── preferences-system-power.png │ │ │ │ │ │ ├── preferences-system-privacy.png │ │ │ │ │ │ └── preferences-system-time.png │ │ │ │ │ ├── devices │ │ │ │ │ │ ├── audio-speakers.png │ │ │ │ │ │ ├── camera-photo.png │ │ │ │ │ │ ├── drive-harddisk.png │ │ │ │ │ │ ├── drive-multidisk.png │ │ │ │ │ │ ├── gnome-dev-printer-new.png │ │ │ │ │ │ ├── input-keyboard.png │ │ │ │ │ │ ├── input-mouse.png │ │ │ │ │ │ ├── input-touchpad.png │ │ │ │ │ │ ├── input-trackpoint.png │ │ │ │ │ │ ├── printer.png │ │ │ │ │ │ └── video-display.png │ │ │ │ │ ├── emblems │ │ │ │ │ │ ├── emblem-downloads.png │ │ │ │ │ │ ├── emblem-mail.png │ │ │ │ │ │ ├── emblem-readonly.png │ │ │ │ │ │ ├── emblem-shared.png │ │ │ │ │ │ ├── emblem-symbolic-link.png │ │ │ │ │ │ ├── emblem-synchronizing.png │ │ │ │ │ │ └── emblem-unreadable.png │ │ │ │ │ ├── mimetypes │ │ │ │ │ │ ├── application-7zip.png │ │ │ │ │ │ ├── application-archive-zip.png │ │ │ │ │ │ ├── application-archive.png │ │ │ │ │ │ ├── application-x-cd-image.png │ │ │ │ │ │ ├── drive-cdrom.png │ │ │ │ │ │ ├── drive-optical.png │ │ │ │ │ │ ├── image-x-generic.png │ │ │ │ │ │ ├── inode-directory.png │ │ │ │ │ │ ├── media-cdr.png │ │ │ │ │ │ ├── media-cdrom-audio.png │ │ │ │ │ │ ├── media-cdrom.png │ │ │ │ │ │ ├── media-cdrw.png │ │ │ │ │ │ ├── media-dvd.png │ │ │ │ │ │ ├── media-dvdrw.png │ │ │ │ │ │ ├── media-optical-cd-video.png │ │ │ │ │ │ ├── media-optical-copy.png │ │ │ │ │ │ ├── media-optical-dvd-video.png │ │ │ │ │ │ ├── media-optical-video.png │ │ │ │ │ │ ├── media-optical.png │ │ │ │ │ │ ├── office-document.png │ │ │ │ │ │ ├── package-x-generic.png │ │ │ │ │ │ ├── text-plain.png │ │ │ │ │ │ ├── text-x-generic.png │ │ │ │ │ │ ├── text-x-install.png │ │ │ │ │ │ ├── text-x-script.png │ │ │ │ │ │ ├── text.png │ │ │ │ │ │ ├── x-office-calendar.png │ │ │ │ │ │ └── x-office-document.png │ │ │ │ │ ├── panel │ │ │ │ │ │ ├── account-logged-in.png │ │ │ │ │ │ ├── application-running.png │ │ │ │ │ │ ├── audio-output-none-panel.png │ │ │ │ │ │ ├── audio-output-none.png │ │ │ │ │ │ ├── audio-volume-high-panel.png │ │ │ │ │ │ ├── audio-volume-high.png │ │ │ │ │ │ ├── audio-volume-low-panel.png │ │ │ │ │ │ ├── audio-volume-low-zero-panel.png │ │ │ │ │ │ ├── audio-volume-low.png │ │ │ │ │ │ ├── audio-volume-medium-panel.png │ │ │ │ │ │ ├── audio-volume-medium.png │ │ │ │ │ │ ├── audio-volume-muted-blocking.png │ │ │ │ │ │ ├── audio-volume-muted-panel.png │ │ │ │ │ │ ├── audio-volume-muted.png │ │ │ │ │ │ ├── avatar-default.png │ │ │ │ │ │ ├── battery-caution-charging.png │ │ │ │ │ │ ├── battery-caution-symbolic.png │ │ │ │ │ │ ├── battery-caution.png │ │ │ │ │ │ ├── battery-empty-charging-symbolic.png │ │ │ │ │ │ ├── battery-empty-charging.png │ │ │ │ │ │ ├── battery-empty-symbolic.png │ │ │ │ │ │ ├── battery-empty.png │ │ │ │ │ │ ├── battery-full-charged-symbolic.png │ │ │ │ │ │ ├── battery-full-charged.png │ │ │ │ │ │ ├── battery-full-charging-symbolic.png │ │ │ │ │ │ ├── battery-full-charging.png │ │ │ │ │ │ ├── battery-full-symbolic.png │ │ │ │ │ │ ├── battery-full.png │ │ │ │ │ │ ├── battery-good-charging-symbolic.png │ │ │ │ │ │ ├── battery-good-charging.png │ │ │ │ │ │ ├── battery-good-symbolic.png │ │ │ │ │ │ ├── battery-good.png │ │ │ │ │ │ ├── battery-low-charging-symbolic.png │ │ │ │ │ │ ├── battery-low-charging.png │ │ │ │ │ │ ├── battery-low-symbolic.png │ │ │ │ │ │ ├── battery-low.png │ │ │ │ │ │ ├── battery-medium-charging.png │ │ │ │ │ │ ├── battery-medium-symbolic.png │ │ │ │ │ │ ├── battery-medium.png │ │ │ │ │ │ ├── battery-missing-symbolic.png │ │ │ │ │ │ ├── battery-missing.png │ │ │ │ │ │ ├── bluetooth-active-symbolic.png │ │ │ │ │ │ ├── bluetooth-active.png │ │ │ │ │ │ ├── bluetooth-disabled-symbolic.png │ │ │ │ │ │ ├── bluetooth-disabled.png │ │ │ │ │ │ ├── bluetooth-paired.png │ │ │ │ │ │ ├── dropboxstatus-busy.png │ │ │ │ │ │ ├── dropboxstatus-busy2.png │ │ │ │ │ │ ├── dropboxstatus-idle.png │ │ │ │ │ │ ├── dropboxstatus-logo.png │ │ │ │ │ │ ├── dropboxstatus-x.png │ │ │ │ │ │ ├── gnome-netstatus-disconn.png │ │ │ │ │ │ ├── gnome-netstatus-error.png │ │ │ │ │ │ ├── gnome-netstatus-rx.png │ │ │ │ │ │ ├── gnome-netstatus-tx.png │ │ │ │ │ │ ├── gnome-netstatus-txrx.png │ │ │ │ │ │ ├── gpm-ac-adapter.png │ │ │ │ │ │ ├── gpm-battery-000-charging.png │ │ │ │ │ │ ├── gpm-battery-000.png │ │ │ │ │ │ ├── gpm-battery-020-charging.png │ │ │ │ │ │ ├── gpm-battery-020.png │ │ │ │ │ │ ├── gpm-battery-040-charging.png │ │ │ │ │ │ ├── gpm-battery-040.png │ │ │ │ │ │ ├── gpm-battery-060-charging.png │ │ │ │ │ │ ├── gpm-battery-060.png │ │ │ │ │ │ ├── gpm-battery-080-charging.png │ │ │ │ │ │ ├── gpm-battery-080.png │ │ │ │ │ │ ├── gpm-battery-100-charging.png │ │ │ │ │ │ ├── gpm-battery-100.png │ │ │ │ │ │ ├── gpm-battery-charged.png │ │ │ │ │ │ ├── gpm-battery-missing.png │ │ │ │ │ │ ├── gpm-keyboard-000.png │ │ │ │ │ │ ├── gpm-keyboard-020.png │ │ │ │ │ │ ├── gpm-keyboard-040.png │ │ │ │ │ │ ├── gpm-keyboard-060.png │ │ │ │ │ │ ├── gpm-keyboard-080.png │ │ │ │ │ │ ├── gpm-keyboard-100.png │ │ │ │ │ │ ├── gpm-mouse-000.png │ │ │ │ │ │ ├── gpm-mouse-020.png │ │ │ │ │ │ ├── gpm-mouse-040.png │ │ │ │ │ │ ├── gpm-mouse-060.png │ │ │ │ │ │ ├── gpm-mouse-080.png │ │ │ │ │ │ ├── gpm-mouse-100.png │ │ │ │ │ │ ├── gpm-phone-000.png │ │ │ │ │ │ ├── gpm-phone-020.png │ │ │ │ │ │ ├── gpm-phone-040.png │ │ │ │ │ │ ├── gpm-phone-060.png │ │ │ │ │ │ ├── gpm-phone-080.png │ │ │ │ │ │ ├── gpm-phone-100.png │ │ │ │ │ │ ├── gpm-primary-000-charging.png │ │ │ │ │ │ ├── gpm-primary-000.png │ │ │ │ │ │ ├── gpm-primary-020-charging.png │ │ │ │ │ │ ├── gpm-primary-020.png │ │ │ │ │ │ ├── gpm-primary-040-charging.png │ │ │ │ │ │ ├── gpm-primary-040.png │ │ │ │ │ │ ├── gpm-primary-060-charging.png │ │ │ │ │ │ ├── gpm-primary-060.png │ │ │ │ │ │ ├── gpm-primary-080-charging.png │ │ │ │ │ │ ├── gpm-primary-080.png │ │ │ │ │ │ ├── gpm-primary-100-charging.png │ │ │ │ │ │ ├── gpm-primary-100.png │ │ │ │ │ │ ├── gpm-primary-charged.png │ │ │ │ │ │ ├── gpm-primary-missing.png │ │ │ │ │ │ ├── gpm-ups-000-charging.png │ │ │ │ │ │ ├── gpm-ups-000.png │ │ │ │ │ │ ├── gpm-ups-020-charging.png │ │ │ │ │ │ ├── gpm-ups-020.png │ │ │ │ │ │ ├── gpm-ups-040-charging.png │ │ │ │ │ │ ├── gpm-ups-040.png │ │ │ │ │ │ ├── gpm-ups-060-charging.png │ │ │ │ │ │ ├── gpm-ups-060.png │ │ │ │ │ │ ├── gpm-ups-080-charging.png │ │ │ │ │ │ ├── gpm-ups-080.png │ │ │ │ │ │ ├── gpm-ups-100-charging.png │ │ │ │ │ │ ├── gpm-ups-100.png │ │ │ │ │ │ ├── gpm-ups-charged.png │ │ │ │ │ │ ├── gpm-ups-missing.png │ │ │ │ │ │ ├── gsm-3g-full-secure.png │ │ │ │ │ │ ├── gsm-3g-full.png │ │ │ │ │ │ ├── gsm-3g-high-secure.png │ │ │ │ │ │ ├── gsm-3g-high.png │ │ │ │ │ │ ├── gsm-3g-low-secure.png │ │ │ │ │ │ ├── gsm-3g-low.png │ │ │ │ │ │ ├── gsm-3g-medium-secure.png │ │ │ │ │ │ ├── gsm-3g-medium.png │ │ │ │ │ │ ├── gsm-3g-none-secure.png │ │ │ │ │ │ ├── gsm-3g-none.png │ │ │ │ │ │ ├── indicator-messages-new.png │ │ │ │ │ │ ├── indicator-messages-red.png │ │ │ │ │ │ ├── indicator-messages.png │ │ │ │ │ │ ├── keyboard-battery-caution.png │ │ │ │ │ │ ├── keyboard-battery-empty.png │ │ │ │ │ │ ├── keyboard-battery-full.png │ │ │ │ │ │ ├── keyboard-battery-good.png │ │ │ │ │ │ ├── keyboard-battery-low.png │ │ │ │ │ │ ├── keyboard-battery-medium.png │ │ │ │ │ │ ├── mouse-battery-caution.png │ │ │ │ │ │ ├── mouse-battery-empty.png │ │ │ │ │ │ ├── mouse-battery-full.png │ │ │ │ │ │ ├── mouse-battery-good.png │ │ │ │ │ │ ├── mouse-battery-low.png │ │ │ │ │ │ ├── mouse-battery-medium.png │ │ │ │ │ │ ├── network-cellular-no-route.png │ │ │ │ │ │ ├── network-cellular-secure-signal-excellent.png │ │ │ │ │ │ ├── network-cellular-secure-signal-good.png │ │ │ │ │ │ ├── network-cellular-secure-signal-none.png │ │ │ │ │ │ ├── network-cellular-secure-signal-ok.png │ │ │ │ │ │ ├── network-cellular-secure-signal-weak.png │ │ │ │ │ │ ├── network-cellular-signal-acquiring.png │ │ │ │ │ │ ├── network-cellular-signal-excellent.png │ │ │ │ │ │ ├── network-cellular-signal-good.png │ │ │ │ │ │ ├── network-cellular-signal-none.png │ │ │ │ │ │ ├── network-cellular-signal-ok.png │ │ │ │ │ │ ├── network-cellular-signal-weak.png │ │ │ │ │ │ ├── network-disconnected.png │ │ │ │ │ │ ├── network-error.png │ │ │ │ │ │ ├── network-idle.png │ │ │ │ │ │ ├── network-offline.png │ │ │ │ │ │ ├── network-receive.png │ │ │ │ │ │ ├── network-transmit-receive.png │ │ │ │ │ │ ├── network-transmit.png │ │ │ │ │ │ ├── network-vpn-acquiring.png │ │ │ │ │ │ ├── network-vpn.png │ │ │ │ │ │ ├── network-wired-acquiring.png │ │ │ │ │ │ ├── network-wired-no-route.png │ │ │ │ │ │ ├── network-wired.png │ │ │ │ │ │ ├── network-wireless-acquiring.png │ │ │ │ │ │ ├── network-wireless-connected.png │ │ │ │ │ │ ├── network-wireless-hotspot.png │ │ │ │ │ │ ├── network-wireless-no-route.png │ │ │ │ │ │ ├── network-wireless-offline.png │ │ │ │ │ │ ├── network-wireless-secure-signal-excellent.png │ │ │ │ │ │ ├── network-wireless-secure-signal-good.png │ │ │ │ │ │ ├── network-wireless-secure-signal-low.png │ │ │ │ │ │ ├── network-wireless-secure-signal-none.png │ │ │ │ │ │ ├── network-wireless-secure-signal-ok.png │ │ │ │ │ │ ├── network-wireless-signal-excellent.png │ │ │ │ │ │ ├── network-wireless-signal-good.png │ │ │ │ │ │ ├── network-wireless-signal-low.png │ │ │ │ │ │ ├── network-wireless-signal-none.png │ │ │ │ │ │ ├── network-wireless-signal-ok.png │ │ │ │ │ │ ├── nm-adhoc.png │ │ │ │ │ │ ├── nm-device-wired-secure.png │ │ │ │ │ │ ├── nm-device-wired.png │ │ │ │ │ │ ├── nm-no-connection.png │ │ │ │ │ │ ├── nm-signal-0-secure.png │ │ │ │ │ │ ├── nm-signal-0.png │ │ │ │ │ │ ├── nm-signal-00-secure.png │ │ │ │ │ │ ├── nm-signal-00.png │ │ │ │ │ │ ├── nm-signal-100-secure.png │ │ │ │ │ │ ├── nm-signal-100.png │ │ │ │ │ │ ├── nm-signal-25-secure.png │ │ │ │ │ │ ├── nm-signal-25.png │ │ │ │ │ │ ├── nm-signal-50-secure.png │ │ │ │ │ │ ├── nm-signal-50.png │ │ │ │ │ │ ├── nm-signal-75-secure.png │ │ │ │ │ │ ├── nm-signal-75.png │ │ │ │ │ │ ├── nm-vpn-active-lock.png │ │ │ │ │ │ ├── nm-vpn-lock.png │ │ │ │ │ │ ├── phone-battery-caution.png │ │ │ │ │ │ ├── phone-battery-empty.png │ │ │ │ │ │ ├── phone-battery-full.png │ │ │ │ │ │ ├── phone-battery-good.png │ │ │ │ │ │ ├── phone-battery-low.png │ │ │ │ │ │ ├── phone-battery-medium.png │ │ │ │ │ │ ├── printer-symbolic.png │ │ │ │ │ │ ├── system-devices-information.png │ │ │ │ │ │ ├── system-devices-panel-alert.png │ │ │ │ │ │ ├── system-devices-panel.png │ │ │ │ │ │ ├── system-shutdown-panel-restart.png │ │ │ │ │ │ ├── system-shutdown-panel.png │ │ │ │ │ │ ├── volume-level-high-panel.png │ │ │ │ │ │ ├── volume-level-high.png │ │ │ │ │ │ ├── volume-level-low-panel.png │ │ │ │ │ │ ├── volume-level-low.png │ │ │ │ │ │ ├── volume-level-medium-panel.png │ │ │ │ │ │ ├── volume-level-medium.png │ │ │ │ │ │ ├── volume-level-muted-panel.png │ │ │ │ │ │ ├── volume-level-muted.png │ │ │ │ │ │ ├── volume-level-none-panel.png │ │ │ │ │ │ ├── volume-level-none.png │ │ │ │ │ │ ├── xfpm-keyboard-000.png │ │ │ │ │ │ ├── xfpm-keyboard-020.png │ │ │ │ │ │ ├── xfpm-keyboard-040.png │ │ │ │ │ │ ├── xfpm-keyboard-060.png │ │ │ │ │ │ ├── xfpm-keyboard-080.png │ │ │ │ │ │ ├── xfpm-keyboard-100.png │ │ │ │ │ │ ├── xfpm-mouse-000.png │ │ │ │ │ │ ├── xfpm-mouse-020.png │ │ │ │ │ │ ├── xfpm-mouse-040.png │ │ │ │ │ │ ├── xfpm-mouse-060.png │ │ │ │ │ │ ├── xfpm-mouse-080.png │ │ │ │ │ │ ├── xfpm-mouse-100.png │ │ │ │ │ │ ├── xfpm-phone-000.png │ │ │ │ │ │ ├── xfpm-phone-020.png │ │ │ │ │ │ ├── xfpm-phone-040.png │ │ │ │ │ │ ├── xfpm-phone-060.png │ │ │ │ │ │ ├── xfpm-phone-080.png │ │ │ │ │ │ ├── xfpm-phone-100.png │ │ │ │ │ │ ├── xfpm-primary-000-charging.png │ │ │ │ │ │ ├── xfpm-primary-000.png │ │ │ │ │ │ ├── xfpm-primary-020-charging.png │ │ │ │ │ │ ├── xfpm-primary-020.png │ │ │ │ │ │ ├── xfpm-primary-040-charging.png │ │ │ │ │ │ ├── xfpm-primary-040.png │ │ │ │ │ │ ├── xfpm-primary-060-charging.png │ │ │ │ │ │ ├── xfpm-primary-060.png │ │ │ │ │ │ ├── xfpm-primary-080-charging.png │ │ │ │ │ │ ├── xfpm-primary-080.png │ │ │ │ │ │ ├── xfpm-primary-100-charging.png │ │ │ │ │ │ ├── xfpm-primary-100.png │ │ │ │ │ │ ├── xfpm-primary-charged.png │ │ │ │ │ │ ├── xfpm-primary-missing.png │ │ │ │ │ │ ├── xfpm-ups-000-charging.png │ │ │ │ │ │ ├── xfpm-ups-000.png │ │ │ │ │ │ ├── xfpm-ups-020-charging.png │ │ │ │ │ │ ├── xfpm-ups-020.png │ │ │ │ │ │ ├── xfpm-ups-040-charging.png │ │ │ │ │ │ ├── xfpm-ups-040.png │ │ │ │ │ │ ├── xfpm-ups-060-charging.png │ │ │ │ │ │ ├── xfpm-ups-060.png │ │ │ │ │ │ ├── xfpm-ups-080-charging.png │ │ │ │ │ │ ├── xfpm-ups-080.png │ │ │ │ │ │ ├── xfpm-ups-100-charging.png │ │ │ │ │ │ ├── xfpm-ups-100.png │ │ │ │ │ │ ├── xfpm-ups-charged.png │ │ │ │ │ │ └── xfpm-ups-missing.png │ │ │ │ │ ├── places │ │ │ │ │ │ ├── folder-documents.png │ │ │ │ │ │ ├── folder-download.png │ │ │ │ │ │ ├── folder-drag-accept.png │ │ │ │ │ │ ├── folder-music.png │ │ │ │ │ │ ├── folder-open.png │ │ │ │ │ │ ├── folder-pictures.png │ │ │ │ │ │ ├── folder-publicshare.png │ │ │ │ │ │ ├── folder-recent.png │ │ │ │ │ │ ├── folder-remote.png │ │ │ │ │ │ ├── folder-saved-search.png │ │ │ │ │ │ ├── folder-tag.png │ │ │ │ │ │ ├── folder-templates.png │ │ │ │ │ │ ├── folder-videos.png │ │ │ │ │ │ ├── folder.png │ │ │ │ │ │ ├── gtk-network.png │ │ │ │ │ │ ├── library-music.png │ │ │ │ │ │ ├── library-places.png │ │ │ │ │ │ ├── library-podcast.png │ │ │ │ │ │ ├── mail-inbox.png │ │ │ │ │ │ ├── mail-mailbox.png │ │ │ │ │ │ ├── mail-outbox.png │ │ │ │ │ │ ├── network-server.png │ │ │ │ │ │ ├── network-workgroup.png │ │ │ │ │ │ ├── playlist-automatic.png │ │ │ │ │ │ ├── playlist-queue.png │ │ │ │ │ │ ├── playlist-similar.png │ │ │ │ │ │ ├── playlist.png │ │ │ │ │ │ ├── user-bookmarks.png │ │ │ │ │ │ ├── user-desktop.png │ │ │ │ │ │ └── user-home.png │ │ │ │ │ └── status │ │ │ │ │ │ ├── dialog-error.png │ │ │ │ │ │ ├── dialog-info.png │ │ │ │ │ │ ├── dialog-information.png │ │ │ │ │ │ ├── dialog-question.png │ │ │ │ │ │ ├── dialog-warning.png │ │ │ │ │ │ ├── image-loading.png │ │ │ │ │ │ ├── image-missing.png │ │ │ │ │ │ ├── mail-attachment.png │ │ │ │ │ │ ├── media-playlist-repeat-symbolic.png │ │ │ │ │ │ ├── media-playlist-shuffle-rtl-symbolic.png │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic.png │ │ │ │ │ │ ├── non-starred.png │ │ │ │ │ │ ├── printer-error.png │ │ │ │ │ │ ├── printer-paused.png │ │ │ │ │ │ ├── printer-printing.png │ │ │ │ │ │ ├── printer-warning.png │ │ │ │ │ │ ├── starred.png │ │ │ │ │ │ ├── user-available.png │ │ │ │ │ │ ├── user-away.png │ │ │ │ │ │ ├── user-busy.png │ │ │ │ │ │ ├── user-invisible.png │ │ │ │ │ │ └── user-offline.png │ │ │ │ ├── 32x32 │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── add-files-to-archive.png │ │ │ │ │ │ ├── add.png │ │ │ │ │ │ ├── application-menu.png │ │ │ │ │ │ ├── appointment-new-symbolic.png │ │ │ │ │ │ ├── appointment-new.png │ │ │ │ │ │ ├── archive-insert.png │ │ │ │ │ │ ├── bookmark-new.png │ │ │ │ │ │ ├── browser-download.png │ │ │ │ │ │ ├── calendar-go-today.png │ │ │ │ │ │ ├── contact-new.png │ │ │ │ │ │ ├── dialog-apply.png │ │ │ │ │ │ ├── dialog-cancel.png │ │ │ │ │ │ ├── dialog-close.png │ │ │ │ │ │ ├── dialog-no.png │ │ │ │ │ │ ├── dialog-ok.png │ │ │ │ │ │ ├── document-add.png │ │ │ │ │ │ ├── document-export-symbolic.png │ │ │ │ │ │ ├── document-export.png │ │ │ │ │ │ ├── document-import-symbolic.png │ │ │ │ │ │ ├── document-import.png │ │ │ │ │ │ ├── document-new.png │ │ │ │ │ │ ├── document-open-recent.png │ │ │ │ │ │ ├── document-open.png │ │ │ │ │ │ ├── document-page-setup.png │ │ │ │ │ │ ├── document-print.png │ │ │ │ │ │ ├── document-properties.png │ │ │ │ │ │ ├── document-revert.png │ │ │ │ │ │ ├── document-save-as.png │ │ │ │ │ │ ├── document-save.png │ │ │ │ │ │ ├── document-send.png │ │ │ │ │ │ ├── edit-clear-rtl-symbolic.png │ │ │ │ │ │ ├── edit-clear-symbolic-rtl.png │ │ │ │ │ │ ├── edit-clear-symbolic.png │ │ │ │ │ │ ├── edit-clear.png │ │ │ │ │ │ ├── edit-copy.png │ │ │ │ │ │ ├── edit-cut.png │ │ │ │ │ │ ├── edit-delete.png │ │ │ │ │ │ ├── edit-find-symbolic.png │ │ │ │ │ │ ├── edit-find.png │ │ │ │ │ │ ├── edit-flag.png │ │ │ │ │ │ ├── edit-paste.png │ │ │ │ │ │ ├── edit-redo.png │ │ │ │ │ │ ├── edit-select-all.png │ │ │ │ │ │ ├── edit-undo.png │ │ │ │ │ │ ├── event-new.png │ │ │ │ │ │ ├── extract-archive.png │ │ │ │ │ │ ├── folder-add.png │ │ │ │ │ │ ├── folder-new.png │ │ │ │ │ │ ├── format-justify-center.png │ │ │ │ │ │ ├── format-justify-fill.png │ │ │ │ │ │ ├── format-justify-left.png │ │ │ │ │ │ ├── format-justify-right.png │ │ │ │ │ │ ├── format-text-bold.png │ │ │ │ │ │ ├── format-text-italic.png │ │ │ │ │ │ ├── format-text-none.png │ │ │ │ │ │ ├── format-text-strikethrough.png │ │ │ │ │ │ ├── format-text-underline.png │ │ │ │ │ │ ├── go-bottom.png │ │ │ │ │ │ ├── go-down.png │ │ │ │ │ │ ├── go-first.png │ │ │ │ │ │ ├── go-home.png │ │ │ │ │ │ ├── go-jump-rtl.png │ │ │ │ │ │ ├── go-jump.png │ │ │ │ │ │ ├── go-last.png │ │ │ │ │ │ ├── go-next.png │ │ │ │ │ │ ├── go-previous.png │ │ │ │ │ │ ├── go-top.png │ │ │ │ │ │ ├── go-up.png │ │ │ │ │ │ ├── gtk-go-back-ltr.png │ │ │ │ │ │ ├── gtk-go-forward-ltr.png │ │ │ │ │ │ ├── gtk-ok.png │ │ │ │ │ │ ├── gtk-yes.png │ │ │ │ │ │ ├── help-contents.png │ │ │ │ │ │ ├── help-faq.png │ │ │ │ │ │ ├── help-hint.png │ │ │ │ │ │ ├── im-message-new.png │ │ │ │ │ │ ├── image-adjust.png │ │ │ │ │ │ ├── image-auto-adjust.png │ │ │ │ │ │ ├── image-crop.png │ │ │ │ │ │ ├── image-red-eye.png │ │ │ │ │ │ ├── insert-image.png │ │ │ │ │ │ ├── insert-link.png │ │ │ │ │ │ ├── list-add.png │ │ │ │ │ │ ├── list-remove.png │ │ │ │ │ │ ├── mail-archive.png │ │ │ │ │ │ ├── mail-forward.png │ │ │ │ │ │ ├── mail-mark-junk.png │ │ │ │ │ │ ├── mail-mark-notjunk.png │ │ │ │ │ │ ├── mail-mark-unread.png │ │ │ │ │ │ ├── mail-message-new.png │ │ │ │ │ │ ├── mail-move.png │ │ │ │ │ │ ├── mail-reply-all.png │ │ │ │ │ │ ├── mail-reply-sender.png │ │ │ │ │ │ ├── mail-reply.png │ │ │ │ │ │ ├── mail-send-receive.png │ │ │ │ │ │ ├── mail-send.png │ │ │ │ │ │ ├── mail-sent.png │ │ │ │ │ │ ├── mail-unread.png │ │ │ │ │ │ ├── media-eject-symbolic.png │ │ │ │ │ │ ├── media-eject.png │ │ │ │ │ │ ├── media-playback-pause-symbolic.png │ │ │ │ │ │ ├── media-playback-pause.png │ │ │ │ │ │ ├── media-playback-start-symbolic.png │ │ │ │ │ │ ├── media-playback-start.png │ │ │ │ │ │ ├── media-playback-stop-symbolic.png │ │ │ │ │ │ ├── media-playback-stop.png │ │ │ │ │ │ ├── media-playlist-consecutive-rtl.png │ │ │ │ │ │ ├── media-playlist-consecutive.png │ │ │ │ │ │ ├── media-playlist-no-shuffle.png │ │ │ │ │ │ ├── media-playlist-repeat-one.png │ │ │ │ │ │ ├── media-playlist-repeat-rtl.png │ │ │ │ │ │ ├── media-playlist-repeat-song-rtl.png │ │ │ │ │ │ ├── media-playlist-repeat-song.png │ │ │ │ │ │ ├── media-playlist-repeat.png │ │ │ │ │ │ ├── media-playlist-shuffle-rtl.png │ │ │ │ │ │ ├── media-playlist-shuffle.png │ │ │ │ │ │ ├── media-record-symbolic.png │ │ │ │ │ │ ├── media-record.png │ │ │ │ │ │ ├── media-seek-backward-rtl-symbolic.png │ │ │ │ │ │ ├── media-seek-backward-symbolic-rtl.png │ │ │ │ │ │ ├── media-seek-backward-symbolic.png │ │ │ │ │ │ ├── media-seek-backward.png │ │ │ │ │ │ ├── media-seek-forward-rtl-symbolic.png │ │ │ │ │ │ ├── media-seek-forward-symbolic-rtl.png │ │ │ │ │ │ ├── media-seek-forward-symbolic.png │ │ │ │ │ │ ├── media-seek-forward.png │ │ │ │ │ │ ├── media-skip-backward-rtl-symbolic.png │ │ │ │ │ │ ├── media-skip-backward-symbolic-rtl.png │ │ │ │ │ │ ├── media-skip-backward-symbolic.png │ │ │ │ │ │ ├── media-skip-backward.png │ │ │ │ │ │ ├── media-skip-forward-rtl-symbolic.png │ │ │ │ │ │ ├── media-skip-forward-symbolic-rtl.png │ │ │ │ │ │ ├── media-skip-forward-symbolic.png │ │ │ │ │ │ ├── media-skip-forward.png │ │ │ │ │ │ ├── node-add.png │ │ │ │ │ │ ├── node-break.png │ │ │ │ │ │ ├── node-curve.png │ │ │ │ │ │ ├── node-cusp.png │ │ │ │ │ │ ├── node-delete-segment.png │ │ │ │ │ │ ├── node-delete.png │ │ │ │ │ │ ├── node-insert.png │ │ │ │ │ │ ├── node-join-segment.png │ │ │ │ │ │ ├── node-join.png │ │ │ │ │ │ ├── node-line.png │ │ │ │ │ │ ├── object-flip-horizontal.png │ │ │ │ │ │ ├── object-flip-vertical.png │ │ │ │ │ │ ├── object-inverse.png │ │ │ │ │ │ ├── object-merge.png │ │ │ │ │ │ ├── object-rotate-left.png │ │ │ │ │ │ ├── object-rotate-right.png │ │ │ │ │ │ ├── object-straighten.png │ │ │ │ │ │ ├── open-menu.png │ │ │ │ │ │ ├── package-available-locked.png │ │ │ │ │ │ ├── package-available-new.png │ │ │ │ │ │ ├── package-available.png │ │ │ │ │ │ ├── package-broken.png │ │ │ │ │ │ ├── package-downgrade.png │ │ │ │ │ │ ├── package-install.png │ │ │ │ │ │ ├── package-installed-locked.png │ │ │ │ │ │ ├── package-installed-outdated.png │ │ │ │ │ │ ├── package-installed-updated.png │ │ │ │ │ │ ├── package-purge.png │ │ │ │ │ │ ├── package-reinstall.png │ │ │ │ │ │ ├── package-remove.png │ │ │ │ │ │ ├── package-supported.png │ │ │ │ │ │ ├── package-upgrade.png │ │ │ │ │ │ ├── pane-hide-symbolic-rtl.png │ │ │ │ │ │ ├── pane-hide-symbolic.png │ │ │ │ │ │ ├── pane-show-symbolic-rtl.png │ │ │ │ │ │ ├── pane-show-symbolic.png │ │ │ │ │ │ ├── process-stop.png │ │ │ │ │ │ ├── remove.png │ │ │ │ │ │ ├── system-lock-screen.png │ │ │ │ │ │ ├── system-restart.png │ │ │ │ │ │ ├── system-search.png │ │ │ │ │ │ ├── tag-new.png │ │ │ │ │ │ ├── view-fullscreen.png │ │ │ │ │ │ ├── view-refresh.png │ │ │ │ │ │ ├── view-restore.png │ │ │ │ │ │ ├── view-sort-ascending.png │ │ │ │ │ │ ├── view-sort-descending.png │ │ │ │ │ │ ├── window-close.png │ │ │ │ │ │ ├── zoom-fit-best.png │ │ │ │ │ │ ├── zoom-in.png │ │ │ │ │ │ ├── zoom-original.png │ │ │ │ │ │ └── zoom-out.png │ │ │ │ │ ├── animations │ │ │ │ │ │ ├── brasero-disc-00.png │ │ │ │ │ │ ├── brasero-disc-05.png │ │ │ │ │ │ ├── brasero-disc-10.png │ │ │ │ │ │ ├── brasero-disc-100.png │ │ │ │ │ │ ├── brasero-disc-15.png │ │ │ │ │ │ ├── brasero-disc-20.png │ │ │ │ │ │ ├── brasero-disc-25.png │ │ │ │ │ │ ├── brasero-disc-30.png │ │ │ │ │ │ ├── brasero-disc-35.png │ │ │ │ │ │ ├── brasero-disc-40.png │ │ │ │ │ │ ├── brasero-disc-45.png │ │ │ │ │ │ ├── brasero-disc-50.png │ │ │ │ │ │ ├── brasero-disc-55.png │ │ │ │ │ │ ├── brasero-disc-60.png │ │ │ │ │ │ ├── brasero-disc-65.png │ │ │ │ │ │ ├── brasero-disc-70.png │ │ │ │ │ │ ├── brasero-disc-75.png │ │ │ │ │ │ ├── brasero-disc-80.png │ │ │ │ │ │ ├── brasero-disc-85.png │ │ │ │ │ │ ├── brasero-disc-90.png │ │ │ │ │ │ ├── brasero-disc-95.png │ │ │ │ │ │ ├── nm-stage01-connecting01.png │ │ │ │ │ │ ├── nm-stage01-connecting02.png │ │ │ │ │ │ ├── nm-stage01-connecting03.png │ │ │ │ │ │ ├── nm-stage01-connecting04.png │ │ │ │ │ │ ├── nm-stage01-connecting05.png │ │ │ │ │ │ ├── nm-stage01-connecting06.png │ │ │ │ │ │ ├── nm-stage01-connecting07.png │ │ │ │ │ │ ├── nm-stage01-connecting08.png │ │ │ │ │ │ ├── nm-stage01-connecting09.png │ │ │ │ │ │ ├── nm-stage01-connecting10.png │ │ │ │ │ │ ├── nm-stage01-connecting11.png │ │ │ │ │ │ ├── nm-stage02-connecting01.png │ │ │ │ │ │ ├── nm-stage02-connecting02.png │ │ │ │ │ │ ├── nm-stage02-connecting03.png │ │ │ │ │ │ ├── nm-stage02-connecting04.png │ │ │ │ │ │ ├── nm-stage02-connecting05.png │ │ │ │ │ │ ├── nm-stage02-connecting06.png │ │ │ │ │ │ ├── nm-stage02-connecting07.png │ │ │ │ │ │ ├── nm-stage02-connecting08.png │ │ │ │ │ │ ├── nm-stage02-connecting09.png │ │ │ │ │ │ ├── nm-stage02-connecting10.png │ │ │ │ │ │ ├── nm-stage02-connecting11.png │ │ │ │ │ │ ├── nm-stage02-connecting12.png │ │ │ │ │ │ ├── nm-stage02-connecting13.png │ │ │ │ │ │ ├── nm-stage02-connecting14.png │ │ │ │ │ │ ├── nm-stage03-connecting01.png │ │ │ │ │ │ ├── nm-stage03-connecting02.png │ │ │ │ │ │ ├── nm-stage03-connecting03.png │ │ │ │ │ │ ├── nm-stage03-connecting04.png │ │ │ │ │ │ ├── nm-stage03-connecting05.png │ │ │ │ │ │ ├── nm-stage03-connecting06.png │ │ │ │ │ │ ├── nm-stage03-connecting07.png │ │ │ │ │ │ ├── nm-stage03-connecting08.png │ │ │ │ │ │ ├── nm-stage03-connecting09.png │ │ │ │ │ │ ├── nm-stage03-connecting10.png │ │ │ │ │ │ ├── nm-stage03-connecting11.png │ │ │ │ │ │ ├── nm-stage03-connecting12.png │ │ │ │ │ │ ├── nm-stage03-connecting13.png │ │ │ │ │ │ ├── nm-stage03-connecting14.png │ │ │ │ │ │ ├── nm-vpn-connecting01.png │ │ │ │ │ │ ├── nm-vpn-connecting02.png │ │ │ │ │ │ ├── nm-vpn-connecting03.png │ │ │ │ │ │ ├── nm-vpn-connecting04.png │ │ │ │ │ │ ├── nm-vpn-connecting05.png │ │ │ │ │ │ ├── nm-vpn-connecting06.png │ │ │ │ │ │ ├── nm-vpn-connecting07.png │ │ │ │ │ │ ├── nm-vpn-connecting08.png │ │ │ │ │ │ ├── nm-vpn-connecting09.png │ │ │ │ │ │ ├── nm-vpn-connecting10.png │ │ │ │ │ │ ├── nm-vpn-connecting11.png │ │ │ │ │ │ ├── nm-vpn-connecting12.png │ │ │ │ │ │ ├── nm-vpn-connecting13.png │ │ │ │ │ │ └── nm-vpn-connecting14.png │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── accessories-calculator.png │ │ │ │ │ │ ├── accessories-camera.png │ │ │ │ │ │ ├── apport.png │ │ │ │ │ │ ├── calendar.png │ │ │ │ │ │ ├── geary.png │ │ │ │ │ │ ├── help-browser.png │ │ │ │ │ │ ├── internet-feed-reader.png │ │ │ │ │ │ ├── internet-mail.png │ │ │ │ │ │ ├── internet-web-browser.png │ │ │ │ │ │ ├── multimedia-audio-player.png │ │ │ │ │ │ ├── multimedia-photo-manager.png │ │ │ │ │ │ ├── office-calendar.png │ │ │ │ │ │ ├── other-driver.png │ │ │ │ │ │ ├── preferences-desktop.png │ │ │ │ │ │ ├── preferences-system.png │ │ │ │ │ │ ├── recommended-driver.png │ │ │ │ │ │ ├── system-error.png │ │ │ │ │ │ ├── system-file-manager.png │ │ │ │ │ │ ├── system-users.png │ │ │ │ │ │ ├── utilities-terminal.png │ │ │ │ │ │ └── web-browser.png │ │ │ │ │ ├── categories │ │ │ │ │ │ ├── applications-internet.png │ │ │ │ │ │ ├── bluetooth.png │ │ │ │ │ │ ├── goa-panel.png │ │ │ │ │ │ ├── preferences-desktop-accessibility.png │ │ │ │ │ │ ├── preferences-desktop-display.png │ │ │ │ │ │ ├── preferences-desktop-keyboard.png │ │ │ │ │ │ ├── preferences-desktop-locale.png │ │ │ │ │ │ ├── preferences-desktop-notifications.png │ │ │ │ │ │ ├── preferences-desktop-online-accounts.png │ │ │ │ │ │ ├── preferences-desktop-peripherals.png │ │ │ │ │ │ ├── preferences-desktop-sound.png │ │ │ │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ │ │ │ ├── preferences-system-network.png │ │ │ │ │ │ ├── preferences-system-power.png │ │ │ │ │ │ ├── preferences-system-privacy.png │ │ │ │ │ │ └── preferences-system-time.png │ │ │ │ │ ├── devices │ │ │ │ │ │ ├── audio-speakers.png │ │ │ │ │ │ ├── camera-photo.png │ │ │ │ │ │ ├── drive-harddisk.png │ │ │ │ │ │ ├── drive-multidisk.png │ │ │ │ │ │ ├── gnome-dev-printer-new.png │ │ │ │ │ │ ├── input-keyboard.png │ │ │ │ │ │ ├── input-mouse.png │ │ │ │ │ │ ├── input-touchpad.png │ │ │ │ │ │ ├── input-trackpoint.png │ │ │ │ │ │ ├── printer.png │ │ │ │ │ │ └── video-display.png │ │ │ │ │ ├── emblems │ │ │ │ │ │ ├── emblem-downloads.png │ │ │ │ │ │ ├── emblem-mail.png │ │ │ │ │ │ ├── emblem-readonly.png │ │ │ │ │ │ ├── emblem-shared.png │ │ │ │ │ │ ├── emblem-symbolic-link.png │ │ │ │ │ │ ├── emblem-synchronizing.png │ │ │ │ │ │ └── emblem-unreadable.png │ │ │ │ │ ├── mimetypes │ │ │ │ │ │ ├── application-7zip.png │ │ │ │ │ │ ├── application-archive-zip.png │ │ │ │ │ │ ├── application-archive.png │ │ │ │ │ │ ├── application-x-cd-image.png │ │ │ │ │ │ ├── drive-cdrom.png │ │ │ │ │ │ ├── drive-optical.png │ │ │ │ │ │ ├── image-x-generic.png │ │ │ │ │ │ ├── inode-directory.png │ │ │ │ │ │ ├── media-cdr.png │ │ │ │ │ │ ├── media-cdrom-audio.png │ │ │ │ │ │ ├── media-cdrom.png │ │ │ │ │ │ ├── media-cdrw.png │ │ │ │ │ │ ├── media-dvd.png │ │ │ │ │ │ ├── media-dvdrw.png │ │ │ │ │ │ ├── media-optical-cd-video.png │ │ │ │ │ │ ├── media-optical-copy.png │ │ │ │ │ │ ├── media-optical-dvd-video.png │ │ │ │ │ │ ├── media-optical-video.png │ │ │ │ │ │ ├── media-optical.png │ │ │ │ │ │ ├── office-document.png │ │ │ │ │ │ ├── package-x-generic.png │ │ │ │ │ │ ├── text-plain.png │ │ │ │ │ │ ├── text-x-generic.png │ │ │ │ │ │ ├── text-x-install.png │ │ │ │ │ │ ├── text-x-script.png │ │ │ │ │ │ ├── text.png │ │ │ │ │ │ ├── x-office-calendar.png │ │ │ │ │ │ └── x-office-document.png │ │ │ │ │ ├── panel │ │ │ │ │ │ ├── account-logged-in.png │ │ │ │ │ │ ├── application-running.png │ │ │ │ │ │ ├── audio-output-none-panel.png │ │ │ │ │ │ ├── audio-output-none.png │ │ │ │ │ │ ├── audio-volume-high-panel.png │ │ │ │ │ │ ├── audio-volume-high.png │ │ │ │ │ │ ├── audio-volume-low-panel.png │ │ │ │ │ │ ├── audio-volume-low-zero-panel.png │ │ │ │ │ │ ├── audio-volume-low.png │ │ │ │ │ │ ├── audio-volume-medium-panel.png │ │ │ │ │ │ ├── audio-volume-medium.png │ │ │ │ │ │ ├── audio-volume-muted-blocking.png │ │ │ │ │ │ ├── audio-volume-muted-panel.png │ │ │ │ │ │ ├── audio-volume-muted.png │ │ │ │ │ │ ├── avatar-default.png │ │ │ │ │ │ ├── battery-caution-charging.png │ │ │ │ │ │ ├── battery-caution-symbolic.png │ │ │ │ │ │ ├── battery-caution.png │ │ │ │ │ │ ├── battery-empty-charging-symbolic.png │ │ │ │ │ │ ├── battery-empty-charging.png │ │ │ │ │ │ ├── battery-empty-symbolic.png │ │ │ │ │ │ ├── battery-empty.png │ │ │ │ │ │ ├── battery-full-charged-symbolic.png │ │ │ │ │ │ ├── battery-full-charged.png │ │ │ │ │ │ ├── battery-full-charging-symbolic.png │ │ │ │ │ │ ├── battery-full-charging.png │ │ │ │ │ │ ├── battery-full-symbolic.png │ │ │ │ │ │ ├── battery-full.png │ │ │ │ │ │ ├── battery-good-charging-symbolic.png │ │ │ │ │ │ ├── battery-good-charging.png │ │ │ │ │ │ ├── battery-good-symbolic.png │ │ │ │ │ │ ├── battery-good.png │ │ │ │ │ │ ├── battery-low-charging-symbolic.png │ │ │ │ │ │ ├── battery-low-charging.png │ │ │ │ │ │ ├── battery-low-symbolic.png │ │ │ │ │ │ ├── battery-low.png │ │ │ │ │ │ ├── battery-medium-charging.png │ │ │ │ │ │ ├── battery-medium-symbolic.png │ │ │ │ │ │ ├── battery-medium.png │ │ │ │ │ │ ├── battery-missing-symbolic.png │ │ │ │ │ │ ├── battery-missing.png │ │ │ │ │ │ ├── bluetooth-active-symbolic.png │ │ │ │ │ │ ├── bluetooth-active.png │ │ │ │ │ │ ├── bluetooth-disabled-symbolic.png │ │ │ │ │ │ ├── bluetooth-disabled.png │ │ │ │ │ │ ├── bluetooth-paired.png │ │ │ │ │ │ ├── dropboxstatus-busy.png │ │ │ │ │ │ ├── dropboxstatus-busy2.png │ │ │ │ │ │ ├── dropboxstatus-idle.png │ │ │ │ │ │ ├── dropboxstatus-logo.png │ │ │ │ │ │ ├── dropboxstatus-x.png │ │ │ │ │ │ ├── gnome-netstatus-disconn.png │ │ │ │ │ │ ├── gnome-netstatus-error.png │ │ │ │ │ │ ├── gnome-netstatus-rx.png │ │ │ │ │ │ ├── gnome-netstatus-tx.png │ │ │ │ │ │ ├── gnome-netstatus-txrx.png │ │ │ │ │ │ ├── gpm-ac-adapter.png │ │ │ │ │ │ ├── gpm-battery-000-charging.png │ │ │ │ │ │ ├── gpm-battery-000.png │ │ │ │ │ │ ├── gpm-battery-020-charging.png │ │ │ │ │ │ ├── gpm-battery-020.png │ │ │ │ │ │ ├── gpm-battery-040-charging.png │ │ │ │ │ │ ├── gpm-battery-040.png │ │ │ │ │ │ ├── gpm-battery-060-charging.png │ │ │ │ │ │ ├── gpm-battery-060.png │ │ │ │ │ │ ├── gpm-battery-080-charging.png │ │ │ │ │ │ ├── gpm-battery-080.png │ │ │ │ │ │ ├── gpm-battery-100-charging.png │ │ │ │ │ │ ├── gpm-battery-100.png │ │ │ │ │ │ ├── gpm-battery-charged.png │ │ │ │ │ │ ├── gpm-battery-missing.png │ │ │ │ │ │ ├── gpm-keyboard-000.png │ │ │ │ │ │ ├── gpm-keyboard-020.png │ │ │ │ │ │ ├── gpm-keyboard-040.png │ │ │ │ │ │ ├── gpm-keyboard-060.png │ │ │ │ │ │ ├── gpm-keyboard-080.png │ │ │ │ │ │ ├── gpm-keyboard-100.png │ │ │ │ │ │ ├── gpm-mouse-000.png │ │ │ │ │ │ ├── gpm-mouse-020.png │ │ │ │ │ │ ├── gpm-mouse-040.png │ │ │ │ │ │ ├── gpm-mouse-060.png │ │ │ │ │ │ ├── gpm-mouse-080.png │ │ │ │ │ │ ├── gpm-mouse-100.png │ │ │ │ │ │ ├── gpm-phone-000.png │ │ │ │ │ │ ├── gpm-phone-020.png │ │ │ │ │ │ ├── gpm-phone-040.png │ │ │ │ │ │ ├── gpm-phone-060.png │ │ │ │ │ │ ├── gpm-phone-080.png │ │ │ │ │ │ ├── gpm-phone-100.png │ │ │ │ │ │ ├── gpm-primary-000-charging.png │ │ │ │ │ │ ├── gpm-primary-000.png │ │ │ │ │ │ ├── gpm-primary-020-charging.png │ │ │ │ │ │ ├── gpm-primary-020.png │ │ │ │ │ │ ├── gpm-primary-040-charging.png │ │ │ │ │ │ ├── gpm-primary-040.png │ │ │ │ │ │ ├── gpm-primary-060-charging.png │ │ │ │ │ │ ├── gpm-primary-060.png │ │ │ │ │ │ ├── gpm-primary-080-charging.png │ │ │ │ │ │ ├── gpm-primary-080.png │ │ │ │ │ │ ├── gpm-primary-100-charging.png │ │ │ │ │ │ ├── gpm-primary-100.png │ │ │ │ │ │ ├── gpm-primary-charged.png │ │ │ │ │ │ ├── gpm-primary-missing.png │ │ │ │ │ │ ├── gpm-ups-000-charging.png │ │ │ │ │ │ ├── gpm-ups-000.png │ │ │ │ │ │ ├── gpm-ups-020-charging.png │ │ │ │ │ │ ├── gpm-ups-020.png │ │ │ │ │ │ ├── gpm-ups-040-charging.png │ │ │ │ │ │ ├── gpm-ups-040.png │ │ │ │ │ │ ├── gpm-ups-060-charging.png │ │ │ │ │ │ ├── gpm-ups-060.png │ │ │ │ │ │ ├── gpm-ups-080-charging.png │ │ │ │ │ │ ├── gpm-ups-080.png │ │ │ │ │ │ ├── gpm-ups-100-charging.png │ │ │ │ │ │ ├── gpm-ups-100.png │ │ │ │ │ │ ├── gpm-ups-charged.png │ │ │ │ │ │ ├── gpm-ups-missing.png │ │ │ │ │ │ ├── gsm-3g-full-secure.png │ │ │ │ │ │ ├── gsm-3g-full.png │ │ │ │ │ │ ├── gsm-3g-high-secure.png │ │ │ │ │ │ ├── gsm-3g-high.png │ │ │ │ │ │ ├── gsm-3g-low-secure.png │ │ │ │ │ │ ├── gsm-3g-low.png │ │ │ │ │ │ ├── gsm-3g-medium-secure.png │ │ │ │ │ │ ├── gsm-3g-medium.png │ │ │ │ │ │ ├── gsm-3g-none-secure.png │ │ │ │ │ │ ├── gsm-3g-none.png │ │ │ │ │ │ ├── indicator-messages-new.png │ │ │ │ │ │ ├── indicator-messages-red.png │ │ │ │ │ │ ├── indicator-messages.png │ │ │ │ │ │ ├── keyboard-battery-caution.png │ │ │ │ │ │ ├── keyboard-battery-empty.png │ │ │ │ │ │ ├── keyboard-battery-full.png │ │ │ │ │ │ ├── keyboard-battery-good.png │ │ │ │ │ │ ├── keyboard-battery-low.png │ │ │ │ │ │ ├── keyboard-battery-medium.png │ │ │ │ │ │ ├── mouse-battery-caution.png │ │ │ │ │ │ ├── mouse-battery-empty.png │ │ │ │ │ │ ├── mouse-battery-full.png │ │ │ │ │ │ ├── mouse-battery-good.png │ │ │ │ │ │ ├── mouse-battery-low.png │ │ │ │ │ │ ├── mouse-battery-medium.png │ │ │ │ │ │ ├── network-cellular-no-route.png │ │ │ │ │ │ ├── network-cellular-secure-signal-excellent.png │ │ │ │ │ │ ├── network-cellular-secure-signal-good.png │ │ │ │ │ │ ├── network-cellular-secure-signal-none.png │ │ │ │ │ │ ├── network-cellular-secure-signal-ok.png │ │ │ │ │ │ ├── network-cellular-secure-signal-weak.png │ │ │ │ │ │ ├── network-cellular-signal-acquiring.png │ │ │ │ │ │ ├── network-cellular-signal-excellent.png │ │ │ │ │ │ ├── network-cellular-signal-good.png │ │ │ │ │ │ ├── network-cellular-signal-none.png │ │ │ │ │ │ ├── network-cellular-signal-ok.png │ │ │ │ │ │ ├── network-cellular-signal-weak.png │ │ │ │ │ │ ├── network-disconnected.png │ │ │ │ │ │ ├── network-error.png │ │ │ │ │ │ ├── network-idle.png │ │ │ │ │ │ ├── network-offline.png │ │ │ │ │ │ ├── network-receive.png │ │ │ │ │ │ ├── network-transmit-receive.png │ │ │ │ │ │ ├── network-transmit.png │ │ │ │ │ │ ├── network-vpn-acquiring.png │ │ │ │ │ │ ├── network-vpn.png │ │ │ │ │ │ ├── network-wired-acquiring.png │ │ │ │ │ │ ├── network-wired-no-route.png │ │ │ │ │ │ ├── network-wired.png │ │ │ │ │ │ ├── network-wireless-acquiring.png │ │ │ │ │ │ ├── network-wireless-connected.png │ │ │ │ │ │ ├── network-wireless-hotspot.png │ │ │ │ │ │ ├── network-wireless-no-route.png │ │ │ │ │ │ ├── network-wireless-offline.png │ │ │ │ │ │ ├── network-wireless-secure-signal-excellent.png │ │ │ │ │ │ ├── network-wireless-secure-signal-good.png │ │ │ │ │ │ ├── network-wireless-secure-signal-low.png │ │ │ │ │ │ ├── network-wireless-secure-signal-none.png │ │ │ │ │ │ ├── network-wireless-secure-signal-ok.png │ │ │ │ │ │ ├── network-wireless-signal-excellent.png │ │ │ │ │ │ ├── network-wireless-signal-good.png │ │ │ │ │ │ ├── network-wireless-signal-low.png │ │ │ │ │ │ ├── network-wireless-signal-none.png │ │ │ │ │ │ ├── network-wireless-signal-ok.png │ │ │ │ │ │ ├── nm-adhoc.png │ │ │ │ │ │ ├── nm-device-wired-secure.png │ │ │ │ │ │ ├── nm-device-wired.png │ │ │ │ │ │ ├── nm-no-connection.png │ │ │ │ │ │ ├── nm-signal-0-secure.png │ │ │ │ │ │ ├── nm-signal-0.png │ │ │ │ │ │ ├── nm-signal-00-secure.png │ │ │ │ │ │ ├── nm-signal-00.png │ │ │ │ │ │ ├── nm-signal-100-secure.png │ │ │ │ │ │ ├── nm-signal-100.png │ │ │ │ │ │ ├── nm-signal-25-secure.png │ │ │ │ │ │ ├── nm-signal-25.png │ │ │ │ │ │ ├── nm-signal-50-secure.png │ │ │ │ │ │ ├── nm-signal-50.png │ │ │ │ │ │ ├── nm-signal-75-secure.png │ │ │ │ │ │ ├── nm-signal-75.png │ │ │ │ │ │ ├── nm-vpn-active-lock.png │ │ │ │ │ │ ├── nm-vpn-lock.png │ │ │ │ │ │ ├── phone-battery-caution.png │ │ │ │ │ │ ├── phone-battery-empty.png │ │ │ │ │ │ ├── phone-battery-full.png │ │ │ │ │ │ ├── phone-battery-good.png │ │ │ │ │ │ ├── phone-battery-low.png │ │ │ │ │ │ ├── phone-battery-medium.png │ │ │ │ │ │ ├── printer-symbolic.png │ │ │ │ │ │ ├── system-devices-information.png │ │ │ │ │ │ ├── system-devices-panel-alert.png │ │ │ │ │ │ ├── system-devices-panel.png │ │ │ │ │ │ ├── system-shutdown-panel-restart.png │ │ │ │ │ │ ├── system-shutdown-panel.png │ │ │ │ │ │ ├── volume-level-high-panel.png │ │ │ │ │ │ ├── volume-level-high.png │ │ │ │ │ │ ├── volume-level-low-panel.png │ │ │ │ │ │ ├── volume-level-low.png │ │ │ │ │ │ ├── volume-level-medium-panel.png │ │ │ │ │ │ ├── volume-level-medium.png │ │ │ │ │ │ ├── volume-level-muted-panel.png │ │ │ │ │ │ ├── volume-level-muted.png │ │ │ │ │ │ ├── volume-level-none-panel.png │ │ │ │ │ │ ├── volume-level-none.png │ │ │ │ │ │ ├── xfpm-keyboard-000.png │ │ │ │ │ │ ├── xfpm-keyboard-020.png │ │ │ │ │ │ ├── xfpm-keyboard-040.png │ │ │ │ │ │ ├── xfpm-keyboard-060.png │ │ │ │ │ │ ├── xfpm-keyboard-080.png │ │ │ │ │ │ ├── xfpm-keyboard-100.png │ │ │ │ │ │ ├── xfpm-mouse-000.png │ │ │ │ │ │ ├── xfpm-mouse-020.png │ │ │ │ │ │ ├── xfpm-mouse-040.png │ │ │ │ │ │ ├── xfpm-mouse-060.png │ │ │ │ │ │ ├── xfpm-mouse-080.png │ │ │ │ │ │ ├── xfpm-mouse-100.png │ │ │ │ │ │ ├── xfpm-phone-000.png │ │ │ │ │ │ ├── xfpm-phone-020.png │ │ │ │ │ │ ├── xfpm-phone-040.png │ │ │ │ │ │ ├── xfpm-phone-060.png │ │ │ │ │ │ ├── xfpm-phone-080.png │ │ │ │ │ │ ├── xfpm-phone-100.png │ │ │ │ │ │ ├── xfpm-primary-000-charging.png │ │ │ │ │ │ ├── xfpm-primary-000.png │ │ │ │ │ │ ├── xfpm-primary-020-charging.png │ │ │ │ │ │ ├── xfpm-primary-020.png │ │ │ │ │ │ ├── xfpm-primary-040-charging.png │ │ │ │ │ │ ├── xfpm-primary-040.png │ │ │ │ │ │ ├── xfpm-primary-060-charging.png │ │ │ │ │ │ ├── xfpm-primary-060.png │ │ │ │ │ │ ├── xfpm-primary-080-charging.png │ │ │ │ │ │ ├── xfpm-primary-080.png │ │ │ │ │ │ ├── xfpm-primary-100-charging.png │ │ │ │ │ │ ├── xfpm-primary-100.png │ │ │ │ │ │ ├── xfpm-primary-charged.png │ │ │ │ │ │ ├── xfpm-primary-missing.png │ │ │ │ │ │ ├── xfpm-ups-000-charging.png │ │ │ │ │ │ ├── xfpm-ups-000.png │ │ │ │ │ │ ├── xfpm-ups-020-charging.png │ │ │ │ │ │ ├── xfpm-ups-020.png │ │ │ │ │ │ ├── xfpm-ups-040-charging.png │ │ │ │ │ │ ├── xfpm-ups-040.png │ │ │ │ │ │ ├── xfpm-ups-060-charging.png │ │ │ │ │ │ ├── xfpm-ups-060.png │ │ │ │ │ │ ├── xfpm-ups-080-charging.png │ │ │ │ │ │ ├── xfpm-ups-080.png │ │ │ │ │ │ ├── xfpm-ups-100-charging.png │ │ │ │ │ │ ├── xfpm-ups-100.png │ │ │ │ │ │ ├── xfpm-ups-charged.png │ │ │ │ │ │ └── xfpm-ups-missing.png │ │ │ │ │ ├── places │ │ │ │ │ │ ├── folder-documents.png │ │ │ │ │ │ ├── folder-download.png │ │ │ │ │ │ ├── folder-drag-accept.png │ │ │ │ │ │ ├── folder-music.png │ │ │ │ │ │ ├── folder-open.png │ │ │ │ │ │ ├── folder-pictures.png │ │ │ │ │ │ ├── folder-publicshare.png │ │ │ │ │ │ ├── folder-recent.png │ │ │ │ │ │ ├── folder-remote.png │ │ │ │ │ │ ├── folder-saved-search.png │ │ │ │ │ │ ├── folder-tag.png │ │ │ │ │ │ ├── folder-templates.png │ │ │ │ │ │ ├── folder-videos.png │ │ │ │ │ │ ├── folder.png │ │ │ │ │ │ ├── gtk-network.png │ │ │ │ │ │ ├── library-music.png │ │ │ │ │ │ ├── library-places.png │ │ │ │ │ │ ├── library-podcast.png │ │ │ │ │ │ ├── mail-inbox.png │ │ │ │ │ │ ├── mail-mailbox.png │ │ │ │ │ │ ├── mail-outbox.png │ │ │ │ │ │ ├── network-server.png │ │ │ │ │ │ ├── network-workgroup.png │ │ │ │ │ │ ├── playlist-automatic.png │ │ │ │ │ │ ├── playlist-queue.png │ │ │ │ │ │ ├── playlist-similar.png │ │ │ │ │ │ ├── playlist.png │ │ │ │ │ │ ├── user-bookmarks.png │ │ │ │ │ │ ├── user-desktop.png │ │ │ │ │ │ └── user-home.png │ │ │ │ │ └── status │ │ │ │ │ │ ├── dialog-error.png │ │ │ │ │ │ ├── dialog-info.png │ │ │ │ │ │ ├── dialog-information.png │ │ │ │ │ │ ├── dialog-question.png │ │ │ │ │ │ ├── dialog-warning.png │ │ │ │ │ │ ├── image-loading.png │ │ │ │ │ │ ├── image-missing.png │ │ │ │ │ │ ├── mail-attachment.png │ │ │ │ │ │ ├── media-playlist-repeat-symbolic.png │ │ │ │ │ │ ├── media-playlist-shuffle-rtl-symbolic.png │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic.png │ │ │ │ │ │ ├── non-starred.png │ │ │ │ │ │ ├── printer-error.png │ │ │ │ │ │ ├── printer-paused.png │ │ │ │ │ │ ├── printer-printing.png │ │ │ │ │ │ ├── printer-warning.png │ │ │ │ │ │ ├── starred.png │ │ │ │ │ │ ├── user-available.png │ │ │ │ │ │ ├── user-away.png │ │ │ │ │ │ ├── user-busy.png │ │ │ │ │ │ ├── user-invisible.png │ │ │ │ │ │ └── user-offline.png │ │ │ │ └── index.theme │ │ │ ├── MokaSesame │ │ │ │ ├── 16x16 │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── document-new.png │ │ │ │ │ │ ├── os-overview.png │ │ │ │ │ │ ├── system-log-out.png │ │ │ │ │ │ ├── system-restart.png │ │ │ │ │ │ ├── system-run.png │ │ │ │ │ │ ├── system-shutdown.png │ │ │ │ │ │ ├── system-sleep.png │ │ │ │ │ │ ├── system-suspend.png │ │ │ │ │ │ ├── view-list-details.png │ │ │ │ │ │ └── view-list-icons.png │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── 0ad.png │ │ │ │ │ │ ├── 2048.png │ │ │ │ │ │ ├── QtProject-qtcreator.png │ │ │ │ │ │ ├── abiword.png │ │ │ │ │ │ ├── accessories-calculator.png │ │ │ │ │ │ ├── accessories-camera.png │ │ │ │ │ │ ├── accessories-character-map.png │ │ │ │ │ │ ├── accessories-clipboard.png │ │ │ │ │ │ ├── accessories-dictionary.png │ │ │ │ │ │ ├── accessories-document-viewer.png │ │ │ │ │ │ ├── accessories-media-converter.png │ │ │ │ │ │ ├── accessories-painting.png │ │ │ │ │ │ ├── accessories-podcast.png │ │ │ │ │ │ ├── accessories-system-cleaner.png │ │ │ │ │ │ ├── accessories-text-editor.png │ │ │ │ │ │ ├── accessories-thesaurus.png │ │ │ │ │ │ ├── acetoneiso.png │ │ │ │ │ │ ├── acroread.png │ │ │ │ │ │ ├── addressbook.png │ │ │ │ │ │ ├── adobe-air.png │ │ │ │ │ │ ├── aisleriot.png │ │ │ │ │ │ ├── amarok.png │ │ │ │ │ │ ├── android-studio.png │ │ │ │ │ │ ├── anjuta.png │ │ │ │ │ │ ├── anki.png │ │ │ │ │ │ ├── app-launcher.png │ │ │ │ │ │ ├── applets-screenshooter.png │ │ │ │ │ │ ├── aptanastudio.png │ │ │ │ │ │ ├── archive-manager.png │ │ │ │ │ │ ├── ardour.png │ │ │ │ │ │ ├── arduino-ide.png │ │ │ │ │ │ ├── arista.png │ │ │ │ │ │ ├── aseprite.png │ │ │ │ │ │ ├── assistant-qt4.png │ │ │ │ │ │ ├── astahc.png │ │ │ │ │ │ ├── atom.png │ │ │ │ │ │ ├── audacious.png │ │ │ │ │ │ ├── audacity.png │ │ │ │ │ │ ├── audio-equalizer.png │ │ │ │ │ │ ├── authy.png │ │ │ │ │ │ ├── autokey.png │ │ │ │ │ │ ├── avast.png │ │ │ │ │ │ ├── banshee.png │ │ │ │ │ │ ├── battlenet.png │ │ │ │ │ │ ├── birdie.png │ │ │ │ │ │ ├── bitcoin.png │ │ │ │ │ │ ├── bitdefender.png │ │ │ │ │ │ ├── bittorrentsync.png │ │ │ │ │ │ ├── bitwig-studio.png │ │ │ │ │ │ ├── bleachbit.png │ │ │ │ │ │ ├── blender.png │ │ │ │ │ │ ├── bluefish.png │ │ │ │ │ │ ├── bluetooth.png │ │ │ │ │ │ ├── boincmgr.png │ │ │ │ │ │ ├── bokken.png │ │ │ │ │ │ ├── bootloader.png │ │ │ │ │ │ ├── brackets.png │ │ │ │ │ │ ├── budgie.png │ │ │ │ │ │ ├── byobu.png │ │ │ │ │ │ ├── caffeine.png │ │ │ │ │ │ ├── cairo-dock.png │ │ │ │ │ │ ├── calendar.png │ │ │ │ │ │ ├── calibre.png │ │ │ │ │ │ ├── ccc_large.png │ │ │ │ │ │ ├── ccsm.png │ │ │ │ │ │ ├── checkbox.png │ │ │ │ │ │ ├── cheese.png │ │ │ │ │ │ ├── cherrytree.png │ │ │ │ │ │ ├── chess.png │ │ │ │ │ │ ├── chrome-app-list.png │ │ │ │ │ │ ├── chromium-browser-old.png │ │ │ │ │ │ ├── chromium-browser.png │ │ │ │ │ │ ├── clamav.png │ │ │ │ │ │ ├── clementine.png │ │ │ │ │ │ ├── clinica.png │ │ │ │ │ │ ├── clipgrab.png │ │ │ │ │ │ ├── clock.png │ │ │ │ │ │ ├── cmplayer.png │ │ │ │ │ │ ├── codeblocks.png │ │ │ │ │ │ ├── colorhug-ccmx.png │ │ │ │ │ │ ├── colorhug-flash.png │ │ │ │ │ │ ├── colorhug.png │ │ │ │ │ │ ├── comix.png │ │ │ │ │ │ ├── conky-manager.png │ │ │ │ │ │ ├── corebird.png │ │ │ │ │ │ ├── counter-strike.png │ │ │ │ │ │ ├── crossover.png │ │ │ │ │ │ ├── cs-tiling.png │ │ │ │ │ │ ├── curlew.png │ │ │ │ │ │ ├── d-feet.png │ │ │ │ │ │ ├── darktable.png │ │ │ │ │ │ ├── dart.png │ │ │ │ │ │ ├── dasher.png │ │ │ │ │ │ ├── dconf-editor.png │ │ │ │ │ │ ├── deadbeef.png │ │ │ │ │ │ ├── deepin-media-player.png │ │ │ │ │ │ ├── deja-dup.png │ │ │ │ │ │ ├── deluge.png │ │ │ │ │ │ ├── designer-qt4.png │ │ │ │ │ │ ├── desktop-environment-gnome.png │ │ │ │ │ │ ├── desktop-environment-kde.png │ │ │ │ │ │ ├── desktop-environment-lxde.png │ │ │ │ │ │ ├── desktop-environment-mate.png │ │ │ │ │ │ ├── desktop-environment-unity.png │ │ │ │ │ │ ├── desktop-environment-xfce.png │ │ │ │ │ │ ├── desktop-magnifier.png │ │ │ │ │ │ ├── desktop-tweaks.png │ │ │ │ │ │ ├── desura.png │ │ │ │ │ │ ├── devhelp.png │ │ │ │ │ │ ├── dia.png │ │ │ │ │ │ ├── digikam.png │ │ │ │ │ │ ├── direct-connect.png │ │ │ │ │ │ ├── disk-burner.png │ │ │ │ │ │ ├── disk-usage-analyzer.png │ │ │ │ │ │ ├── display.im6.png │ │ │ │ │ │ ├── docky.png │ │ │ │ │ │ ├── dogecoin.png │ │ │ │ │ │ ├── dolphin-emu.png │ │ │ │ │ │ ├── dosbox.png │ │ │ │ │ │ ├── dota2.png │ │ │ │ │ │ ├── doublecmd.png │ │ │ │ │ │ ├── dropbox.png │ │ │ │ │ │ ├── ds-emulator.png │ │ │ │ │ │ ├── dvdrip.png │ │ │ │ │ │ ├── dvdstyler.png │ │ │ │ │ │ ├── earth.png │ │ │ │ │ │ ├── easytag.png │ │ │ │ │ │ ├── eclipse.png │ │ │ │ │ │ ├── eidete.png │ │ │ │ │ │ ├── ekiga.png │ │ │ │ │ │ ├── elegance-colors.png │ │ │ │ │ │ ├── emacs.png │ │ │ │ │ │ ├── emerald.png │ │ │ │ │ │ ├── empathy.png │ │ │ │ │ │ ├── emule.png │ │ │ │ │ │ ├── espeak.png │ │ │ │ │ │ ├── ettercap.png │ │ │ │ │ │ ├── eufloria.png │ │ │ │ │ │ ├── exfalso.png │ │ │ │ │ │ ├── extensions.png │ │ │ │ │ │ ├── fbreader.png │ │ │ │ │ │ ├── fedora-release-notes.png │ │ │ │ │ │ ├── fedora-utils.png │ │ │ │ │ │ ├── fedorautils.png │ │ │ │ │ │ ├── fez.png │ │ │ │ │ │ ├── filebot.png │ │ │ │ │ │ ├── filezilla.png │ │ │ │ │ │ ├── finalterm.png │ │ │ │ │ │ ├── firefox-nightly.png │ │ │ │ │ │ ├── firefox-trunk.png │ │ │ │ │ │ ├── firefox.png │ │ │ │ │ │ ├── firewall.png │ │ │ │ │ │ ├── fitbit.png │ │ │ │ │ │ ├── five-or-more.png │ │ │ │ │ │ ├── flash.png │ │ │ │ │ │ ├── fluxgui.png │ │ │ │ │ │ ├── focuswriter.png │ │ │ │ │ │ ├── fontforge.png │ │ │ │ │ │ ├── four-in-a-row.png │ │ │ │ │ │ ├── freemind.png │ │ │ │ │ │ ├── friends.png │ │ │ │ │ │ ├── frostwire.png │ │ │ │ │ │ ├── gajim.png │ │ │ │ │ │ ├── gameconqueror.png │ │ │ │ │ │ ├── gaupol.png │ │ │ │ │ │ ├── gba.png │ │ │ │ │ │ ├── gbrainy.png │ │ │ │ │ │ ├── gcolor2.png │ │ │ │ │ │ ├── geany.png │ │ │ │ │ │ ├── gelemental.png │ │ │ │ │ │ ├── gensgs.png │ │ │ │ │ │ ├── genymotion.png │ │ │ │ │ │ ├── geogebra.png │ │ │ │ │ │ ├── gfeedline.png │ │ │ │ │ │ ├── ghex.png │ │ │ │ │ │ ├── gimp.png │ │ │ │ │ │ ├── gitg.png │ │ │ │ │ │ ├── gksu-root-terminal.png │ │ │ │ │ │ ├── glade.png │ │ │ │ │ │ ├── glippy.png │ │ │ │ │ │ ├── gloobus-preview.png │ │ │ │ │ │ ├── gmpc.png │ │ │ │ │ │ ├── gmusicbrowser.png │ │ │ │ │ │ ├── gnac.png │ │ │ │ │ │ ├── gnome-boxes.png │ │ │ │ │ │ ├── gnome-break-timer.png │ │ │ │ │ │ ├── gnome-clocks.png │ │ │ │ │ │ ├── gnome-disks.png │ │ │ │ │ │ ├── gnome-do.png │ │ │ │ │ │ ├── gnome-documents.png │ │ │ │ │ │ ├── gnome-klotski.png │ │ │ │ │ │ ├── gnome-music.png │ │ │ │ │ │ ├── gnome-nettool.png │ │ │ │ │ │ ├── gnome-nibbles.png │ │ │ │ │ │ ├── gnome-photos.png │ │ │ │ │ │ ├── gnome-power-statistics.png │ │ │ │ │ │ ├── gnome-robots.png │ │ │ │ │ │ ├── gnome-software.png │ │ │ │ │ │ ├── gnome-sound-recorder.png │ │ │ │ │ │ ├── gnome-subtitles.png │ │ │ │ │ │ ├── gnome-tali.png │ │ │ │ │ │ ├── gnome-tetravex.png │ │ │ │ │ │ ├── gnome-tweak-tool.png │ │ │ │ │ │ ├── gnome-weather.png │ │ │ │ │ │ ├── gnomines.png │ │ │ │ │ │ ├── gnu-r.png │ │ │ │ │ │ ├── gnucash.png │ │ │ │ │ │ ├── gnumeric.png │ │ │ │ │ │ ├── gnupg.png │ │ │ │ │ │ ├── godot.png │ │ │ │ │ │ ├── google-chrome-beta.png │ │ │ │ │ │ ├── google-chrome-old.png │ │ │ │ │ │ ├── google-chrome-unstable.png │ │ │ │ │ │ ├── google-chrome.png │ │ │ │ │ │ ├── google-music-manager.png │ │ │ │ │ │ ├── google-webdesigner.png │ │ │ │ │ │ ├── gparted.png │ │ │ │ │ │ ├── gpick.png │ │ │ │ │ │ ├── gpk-service-pack.png │ │ │ │ │ │ ├── gpodder.png │ │ │ │ │ │ ├── gramps.png │ │ │ │ │ │ ├── grsync.png │ │ │ │ │ │ ├── gstreamer.png │ │ │ │ │ │ ├── gtg.png │ │ │ │ │ │ ├── gthumb.png │ │ │ │ │ │ ├── gtk-recordmydesktop.png │ │ │ │ │ │ ├── gtkpod.png │ │ │ │ │ │ ├── guake.png │ │ │ │ │ │ ├── guayadeque.png │ │ │ │ │ │ ├── gummi.png │ │ │ │ │ │ ├── gvim.png │ │ │ │ │ │ ├── gwibber.png │ │ │ │ │ │ ├── haguichi.png │ │ │ │ │ │ ├── half-life.png │ │ │ │ │ │ ├── half-life2.png │ │ │ │ │ │ ├── hamster.png │ │ │ │ │ │ ├── handbrake.png │ │ │ │ │ │ ├── help-about.png │ │ │ │ │ │ ├── hexchat.png │ │ │ │ │ │ ├── higan.png │ │ │ │ │ │ ├── hipchat.png │ │ │ │ │ │ ├── homebank.png │ │ │ │ │ │ ├── hp-logo.png │ │ │ │ │ │ ├── hplip.png │ │ │ │ │ │ ├── hugin.png │ │ │ │ │ │ ├── hydrogen.png │ │ │ │ │ │ ├── iagno.png │ │ │ │ │ │ ├── ibus-bopomofo.png │ │ │ │ │ │ ├── ibus-pinyin.png │ │ │ │ │ │ ├── ibus.png │ │ │ │ │ │ ├── icedove.png │ │ │ │ │ │ ├── iceweasel.png │ │ │ │ │ │ ├── inkscape.png │ │ │ │ │ │ ├── insync.png │ │ │ │ │ │ ├── intel-linux-graphics-installer.png │ │ │ │ │ │ ├── intellij-idea.png │ │ │ │ │ │ ├── internet-mail.png │ │ │ │ │ │ ├── internet-news-reader.png │ │ │ │ │ │ ├── internet-telephony.png │ │ │ │ │ │ ├── internet-web-browser.png │ │ │ │ │ │ ├── jabber.png │ │ │ │ │ │ ├── jack.png │ │ │ │ │ │ ├── jamin.png │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ ├── jdownloader.png │ │ │ │ │ │ ├── jockey.png │ │ │ │ │ │ ├── jokosher.png │ │ │ │ │ │ ├── juk.png │ │ │ │ │ │ ├── kazam.png │ │ │ │ │ │ ├── keepass.png │ │ │ │ │ │ ├── kile.png │ │ │ │ │ │ ├── kingsoft-presentation.png │ │ │ │ │ │ ├── kingsoft-spreadsheets.png │ │ │ │ │ │ ├── kingsoft-writer.png │ │ │ │ │ │ ├── kmymoney.png │ │ │ │ │ │ ├── komodo.png │ │ │ │ │ │ ├── konqueror.png │ │ │ │ │ │ ├── konversation.png │ │ │ │ │ │ ├── kopete.png │ │ │ │ │ │ ├── krita.png │ │ │ │ │ │ ├── ktorrent.png │ │ │ │ │ │ ├── lazarus.png │ │ │ │ │ │ ├── leafpad.png │ │ │ │ │ │ ├── left-for-dead.png │ │ │ │ │ │ ├── libreoffice-base.png │ │ │ │ │ │ ├── libreoffice-calc.png │ │ │ │ │ │ ├── libreoffice-draw.png │ │ │ │ │ │ ├── libreoffice-impress.png │ │ │ │ │ │ ├── libreoffice-main.png │ │ │ │ │ │ ├── libreoffice-math.png │ │ │ │ │ │ ├── libreoffice-writer.png │ │ │ │ │ │ ├── lightsoff.png │ │ │ │ │ │ ├── lightworks.png │ │ │ │ │ │ ├── lightzone.png │ │ │ │ │ │ ├── linguist-qt4.png │ │ │ │ │ │ ├── linthesia.png │ │ │ │ │ │ ├── lmms.png │ │ │ │ │ │ ├── logviewer.png │ │ │ │ │ │ ├── luminance-hdr.png │ │ │ │ │ │ ├── lutris.png │ │ │ │ │ │ ├── lxmusic.png │ │ │ │ │ │ ├── lyx.png │ │ │ │ │ │ ├── mahjongg.png │ │ │ │ │ │ ├── manaplus.png │ │ │ │ │ │ ├── mathematica.png │ │ │ │ │ │ ├── matlab.png │ │ │ │ │ │ ├── maxthon.png │ │ │ │ │ │ ├── mc.png │ │ │ │ │ │ ├── meld.png │ │ │ │ │ │ ├── mendeley.png │ │ │ │ │ │ ├── menu-editor.png │ │ │ │ │ │ ├── midori.png │ │ │ │ │ │ ├── minecraft.png │ │ │ │ │ │ ├── minitube.png │ │ │ │ │ │ ├── miro.png │ │ │ │ │ │ ├── mixxx.png │ │ │ │ │ │ ├── mkv-gui.png │ │ │ │ │ │ ├── mkvinfo.png │ │ │ │ │ │ ├── moka.png │ │ │ │ │ │ ├── moneydance.png │ │ │ │ │ │ ├── mongodb.png │ │ │ │ │ │ ├── mono-runtime-common.png │ │ │ │ │ │ ├── monodevelop.png │ │ │ │ │ │ ├── mpd.png │ │ │ │ │ │ ├── mplayer.png │ │ │ │ │ │ ├── mpv.png │ │ │ │ │ │ ├── ms-excel.png │ │ │ │ │ │ ├── ms-powerpoint.png │ │ │ │ │ │ ├── ms-word.png │ │ │ │ │ │ ├── multimedia-audio-player.png │ │ │ │ │ │ ├── multimedia-photo-viewer.png │ │ │ │ │ │ ├── multimedia-video-player.png │ │ │ │ │ │ ├── multisystem.png │ │ │ │ │ │ ├── mumble.png │ │ │ │ │ │ ├── muon.png │ │ │ │ │ │ ├── musescore.png │ │ │ │ │ │ ├── musique.png │ │ │ │ │ │ ├── mysql-workbench.png │ │ │ │ │ │ ├── nemiver.png │ │ │ │ │ │ ├── nemo.png │ │ │ │ │ │ ├── nepomuk.png │ │ │ │ │ │ ├── netbeans.png │ │ │ │ │ │ ├── nexuiz.png │ │ │ │ │ │ ├── nicotine.png │ │ │ │ │ │ ├── ninja-ide.png │ │ │ │ │ │ ├── nitrotasks.png │ │ │ │ │ │ ├── notes.png │ │ │ │ │ │ ├── ntfs-config.png │ │ │ │ │ │ ├── nuvolaplayer.png │ │ │ │ │ │ ├── nvidia-settings.png │ │ │ │ │ │ ├── obconf.png │ │ │ │ │ │ ├── octave.png │ │ │ │ │ │ ├── octopi.png │ │ │ │ │ │ ├── onboard.png │ │ │ │ │ │ ├── openshot.png │ │ │ │ │ │ ├── openttd.png │ │ │ │ │ │ ├── opera.png │ │ │ │ │ │ ├── owncloud.png │ │ │ │ │ │ ├── oxygen.png │ │ │ │ │ │ ├── panel-applets.png │ │ │ │ │ │ ├── panel.png │ │ │ │ │ │ ├── parole.png │ │ │ │ │ │ ├── passwords.png │ │ │ │ │ │ ├── patchage.png │ │ │ │ │ │ ├── pdfmod.png │ │ │ │ │ │ ├── pdfshuffler.png │ │ │ │ │ │ ├── pencil.png │ │ │ │ │ │ ├── phpmyadmin.png │ │ │ │ │ │ ├── picard.png │ │ │ │ │ │ ├── pidgin.png │ │ │ │ │ │ ├── pithos.png │ │ │ │ │ │ ├── plank.png │ │ │ │ │ │ ├── plasma.png │ │ │ │ │ │ ├── playonlinux.png │ │ │ │ │ │ ├── plex.png │ │ │ │ │ │ ├── poedit.png │ │ │ │ │ │ ├── polari.png │ │ │ │ │ │ ├── polly.png │ │ │ │ │ │ ├── popcorntime.png │ │ │ │ │ │ ├── portal.png │ │ │ │ │ │ ├── postgresql.png │ │ │ │ │ │ ├── pragha.png │ │ │ │ │ │ ├── preferences-bluetooth.png │ │ │ │ │ │ ├── preferences-color.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-online-accounts.png │ │ │ │ │ │ ├── preferences-desktop-screensaver.png │ │ │ │ │ │ ├── preferences-desktop-theme.png │ │ │ │ │ │ ├── preferences-desktop-user.png │ │ │ │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ │ │ │ ├── preferences-kcalc-constants.png │ │ │ │ │ │ ├── preferences-management-service.png │ │ │ │ │ │ ├── preferences-plugins.png │ │ │ │ │ │ ├── preferences-system-bluetooth-inactive.png │ │ │ │ │ │ ├── preferences-system-brightness-lock.png │ │ │ │ │ │ ├── preferences-system-hotcorners.png │ │ │ │ │ │ ├── preferences-system-login.png │ │ │ │ │ │ ├── preferences-system-network.png │ │ │ │ │ │ ├── preferences-system-notifications.png │ │ │ │ │ │ ├── preferences-system-power.png │ │ │ │ │ │ ├── preferences-system-privacy.png │ │ │ │ │ │ ├── preferences-system-search.png │ │ │ │ │ │ ├── preferences-system-sharing.png │ │ │ │ │ │ ├── preferences-system-sound.png │ │ │ │ │ │ ├── preferences-system-time.png │ │ │ │ │ │ ├── preferences-system-windows.png │ │ │ │ │ │ ├── preferences-system.png │ │ │ │ │ │ ├── preferences-web-browser-cookies.png │ │ │ │ │ │ ├── preferences-web-browser-stylesheets.png │ │ │ │ │ │ ├── psensor.png │ │ │ │ │ │ ├── puddletag.png │ │ │ │ │ │ ├── putty.png │ │ │ │ │ │ ├── pycad.png │ │ │ │ │ │ ├── pycharm.png │ │ │ │ │ │ ├── pyrenamer.png │ │ │ │ │ │ ├── python.png │ │ │ │ │ │ ├── qcad.png │ │ │ │ │ │ ├── qr-creator.png │ │ │ │ │ │ ├── qsynth.png │ │ │ │ │ │ ├── qtconfig-qt4.png │ │ │ │ │ │ ├── qtiplot.png │ │ │ │ │ │ ├── quadrapassel.png │ │ │ │ │ │ ├── quassel.png │ │ │ │ │ │ ├── quiterss.png │ │ │ │ │ │ ├── quodlibet.png │ │ │ │ │ │ ├── qupzilla.png │ │ │ │ │ │ ├── radiotray.png │ │ │ │ │ │ ├── rapid-photo-downloader.png │ │ │ │ │ │ ├── rawtherapee.png │ │ │ │ │ │ ├── reditr.png │ │ │ │ │ │ ├── redshift.png │ │ │ │ │ │ ├── remote-desktop.png │ │ │ │ │ │ ├── retext.png │ │ │ │ │ │ ├── rhythmbox.png │ │ │ │ │ │ ├── rstudio.png │ │ │ │ │ │ ├── rubymine.png │ │ │ │ │ │ ├── rygel.png │ │ │ │ │ │ ├── samba.png │ │ │ │ │ │ ├── screenruler.png │ │ │ │ │ │ ├── scribus.png │ │ │ │ │ │ ├── selinux.png │ │ │ │ │ │ ├── sencha-animator.png │ │ │ │ │ │ ├── serious-sam3-bfe.png │ │ │ │ │ │ ├── session-properties.png │ │ │ │ │ │ ├── shotwell.png │ │ │ │ │ │ ├── shutter.png │ │ │ │ │ │ ├── sigil.png │ │ │ │ │ │ ├── sketchup.png │ │ │ │ │ │ ├── skype.png │ │ │ │ │ │ ├── smuxi.png │ │ │ │ │ │ ├── software-properties.png │ │ │ │ │ │ ├── solaar.png │ │ │ │ │ │ ├── sound-juicer.png │ │ │ │ │ │ ├── sparkleshare.png │ │ │ │ │ │ ├── springseed.png │ │ │ │ │ │ ├── sqldeveloper.png │ │ │ │ │ │ ├── steam.png │ │ │ │ │ │ ├── stellarium.png │ │ │ │ │ │ ├── stormcloud.png │ │ │ │ │ │ ├── subdownloader.png │ │ │ │ │ │ ├── sublime-text.png │ │ │ │ │ │ ├── sudoku.png │ │ │ │ │ │ ├── sunflower.png │ │ │ │ │ │ ├── supertuxkart.png │ │ │ │ │ │ ├── swell-foop.png │ │ │ │ │ │ ├── synapse.png │ │ │ │ │ │ ├── synergy.png │ │ │ │ │ │ ├── system-error.png │ │ │ │ │ │ ├── system-file-manager.png │ │ │ │ │ │ ├── system-help.png │ │ │ │ │ │ ├── system-lock-screen.png │ │ │ │ │ │ ├── system-remixer.png │ │ │ │ │ │ ├── system-software-install.png │ │ │ │ │ │ ├── system-software-package-manager.png │ │ │ │ │ │ ├── system-software-update.png │ │ │ │ │ │ ├── system76.png │ │ │ │ │ │ ├── team-fortress-2.png │ │ │ │ │ │ ├── teamspeak.png │ │ │ │ │ │ ├── teamviewer.png │ │ │ │ │ │ ├── telepathy-kde.png │ │ │ │ │ │ ├── terminator.png │ │ │ │ │ │ ├── texmaker.png │ │ │ │ │ │ ├── texstudio.png │ │ │ │ │ │ ├── texworks.png │ │ │ │ │ │ ├── thunderbird-old.png │ │ │ │ │ │ ├── thunderbird.png │ │ │ │ │ │ ├── tomahawk.png │ │ │ │ │ │ ├── totem.png │ │ │ │ │ │ ├── transmageddon.png │ │ │ │ │ │ ├── transmission.png │ │ │ │ │ │ ├── trillian.png │ │ │ │ │ │ ├── truecrypt.png │ │ │ │ │ │ ├── turpial.png │ │ │ │ │ │ ├── tuxguitar.png │ │ │ │ │ │ ├── tweetdeck.png │ │ │ │ │ │ ├── typecatcher.png │ │ │ │ │ │ ├── uberwriter.png │ │ │ │ │ │ ├── ubuntu-sdk.png │ │ │ │ │ │ ├── ubuntu-tweak.png │ │ │ │ │ │ ├── ubuntuone-music.png │ │ │ │ │ │ ├── ubuntuone.png │ │ │ │ │ │ ├── ufraw.png │ │ │ │ │ │ ├── uget.png │ │ │ │ │ │ ├── umplayer.png │ │ │ │ │ │ ├── unison-gtk.png │ │ │ │ │ │ ├── unity-lens-photos.png │ │ │ │ │ │ ├── unity-scope-gdrive.png │ │ │ │ │ │ ├── unity-tweak-tool.png │ │ │ │ │ │ ├── usb-creator-gtk.png │ │ │ │ │ │ ├── user-info.png │ │ │ │ │ │ ├── utilities-system-monitor.png │ │ │ │ │ │ ├── utilities-terminal.png │ │ │ │ │ │ ├── vala.png │ │ │ │ │ │ ├── varicad.png │ │ │ │ │ │ ├── variety.png │ │ │ │ │ │ ├── venom.png │ │ │ │ │ │ ├── verbiste.png │ │ │ │ │ │ ├── vidalia.png │ │ │ │ │ │ ├── video-editor.png │ │ │ │ │ │ ├── viewnior.png │ │ │ │ │ │ ├── vineyard.png │ │ │ │ │ │ ├── virt-manager.png │ │ │ │ │ │ ├── virtualbox.png │ │ │ │ │ │ ├── vlc.png │ │ │ │ │ │ ├── vmware-player.png │ │ │ │ │ │ ├── vmware-workstation.png │ │ │ │ │ │ ├── vocal.png │ │ │ │ │ │ ├── warsow.png │ │ │ │ │ │ ├── wayland.png │ │ │ │ │ │ ├── webide.png │ │ │ │ │ │ ├── wesnoth-map-editor.png │ │ │ │ │ │ ├── wesnoth.png │ │ │ │ │ │ ├── wine-browser.png │ │ │ │ │ │ ├── wine-folder.png │ │ │ │ │ │ ├── wine-help.png │ │ │ │ │ │ ├── wine-notepad.png │ │ │ │ │ │ ├── wine-uninstaller.png │ │ │ │ │ │ ├── wine-wordpad.png │ │ │ │ │ │ ├── wine.png │ │ │ │ │ │ ├── winecfg.png │ │ │ │ │ │ ├── winetricks.png │ │ │ │ │ │ ├── winff.png │ │ │ │ │ │ ├── wingpanel.png │ │ │ │ │ │ ├── wireframing-app.png │ │ │ │ │ │ ├── wireshark.png │ │ │ │ │ │ ├── workspace-overview.png │ │ │ │ │ │ ├── workspace-switcher-left-bottom.png │ │ │ │ │ │ ├── workspace-switcher-right-bottom.png │ │ │ │ │ │ ├── workspace-switcher-right-top.png │ │ │ │ │ │ ├── workspace-switcher-top-left.png │ │ │ │ │ │ ├── wuala.png │ │ │ │ │ │ ├── xampp.png │ │ │ │ │ │ ├── xbmc.png │ │ │ │ │ │ ├── xchat.png │ │ │ │ │ │ ├── xdiagnose.png │ │ │ │ │ │ ├── xhydra.png │ │ │ │ │ │ ├── xiphos.png │ │ │ │ │ │ ├── xmind.png │ │ │ │ │ │ ├── xnoise.png │ │ │ │ │ │ ├── xonotic.png │ │ │ │ │ │ ├── xorg.png │ │ │ │ │ │ ├── xournal.png │ │ │ │ │ │ ├── xterm.png │ │ │ │ │ │ ├── y-ppa-manager.png │ │ │ │ │ │ ├── yakuake.png │ │ │ │ │ │ ├── yast.png │ │ │ │ │ │ ├── zim.png │ │ │ │ │ │ ├── zotero.png │ │ │ │ │ │ └── zsnes.png │ │ │ │ │ ├── backends │ │ │ │ │ │ ├── os-android.png │ │ │ │ │ │ ├── os-expyriment.png │ │ │ │ │ │ ├── os-psychopy.png │ │ │ │ │ │ └── os-pygame.png │ │ │ │ │ ├── categories │ │ │ │ │ │ ├── applications-accessories.png │ │ │ │ │ │ ├── applications-development.png │ │ │ │ │ │ ├── applications-education.png │ │ │ │ │ │ ├── applications-electronics.png │ │ │ │ │ │ ├── applications-font.png │ │ │ │ │ │ ├── applications-games.png │ │ │ │ │ │ ├── applications-graphics.png │ │ │ │ │ │ ├── applications-haskell.png │ │ │ │ │ │ ├── applications-internet.png │ │ │ │ │ │ ├── applications-java.png │ │ │ │ │ │ ├── applications-mathematics.png │ │ │ │ │ │ ├── applications-monodevelopment.png │ │ │ │ │ │ ├── applications-multimedia.png │ │ │ │ │ │ ├── applications-ocaml.png │ │ │ │ │ │ ├── applications-office.png │ │ │ │ │ │ ├── applications-other.png │ │ │ │ │ │ ├── applications-php.png │ │ │ │ │ │ ├── applications-puzzles.png │ │ │ │ │ │ ├── applications-python.png │ │ │ │ │ │ ├── applications-ruby.png │ │ │ │ │ │ ├── applications-science.png │ │ │ │ │ │ ├── applications-system.png │ │ │ │ │ │ ├── applications-utilities.png │ │ │ │ │ │ ├── preferences-desktop-default-applications.png │ │ │ │ │ │ ├── preferences-desktop-tweaks.png │ │ │ │ │ │ └── preferences-desktop.png │ │ │ │ │ ├── cursor │ │ │ │ │ │ └── cursor-pencil.png │ │ │ │ │ ├── devices │ │ │ │ │ │ ├── audio-card.png │ │ │ │ │ │ ├── camera.png │ │ │ │ │ │ ├── computer.png │ │ │ │ │ │ ├── drive-harddisk-ieee1394.png │ │ │ │ │ │ ├── drive-harddisk.png │ │ │ │ │ │ ├── drive-optical.png │ │ │ │ │ │ ├── drive-removable-media-usb.png │ │ │ │ │ │ ├── drive-removable-media.png │ │ │ │ │ │ ├── input-keyboard.png │ │ │ │ │ │ ├── input-mouse.png │ │ │ │ │ │ ├── input-tablet.png │ │ │ │ │ │ ├── media-flash.png │ │ │ │ │ │ ├── multimedia-player.png │ │ │ │ │ │ ├── network-wired.png │ │ │ │ │ │ ├── nm-device-wireless.png │ │ │ │ │ │ ├── phone.png │ │ │ │ │ │ ├── printer.png │ │ │ │ │ │ └── scanner.png │ │ │ │ │ ├── emblems │ │ │ │ │ │ ├── emblem-default.png │ │ │ │ │ │ ├── emblem-important.png │ │ │ │ │ │ ├── emblem-package.png │ │ │ │ │ │ ├── emblem-readonly.png │ │ │ │ │ │ ├── emblem-shared.png │ │ │ │ │ │ ├── emblem-symbolic-link.png │ │ │ │ │ │ ├── emblem-synchronizing.png │ │ │ │ │ │ ├── emblem-unreadable.png │ │ │ │ │ │ └── emblem-web.png │ │ │ │ │ ├── emotes │ │ │ │ │ │ └── face-smile.png │ │ │ │ │ ├── items │ │ │ │ │ │ ├── os-coroutines.png │ │ │ │ │ │ ├── os-feedback.png │ │ │ │ │ │ ├── os-form_base.png │ │ │ │ │ │ ├── os-form_consent.png │ │ │ │ │ │ ├── os-form_multiple_choice.png │ │ │ │ │ │ ├── os-form_text_display.png │ │ │ │ │ │ ├── os-form_text_input.png │ │ │ │ │ │ ├── os-inline_html.png │ │ │ │ │ │ ├── os-inline_javascript.png │ │ │ │ │ │ ├── os-inline_script-syntax-error.png │ │ │ │ │ │ ├── os-inline_script-syntax-warning.png │ │ │ │ │ │ ├── os-inline_script.png │ │ │ │ │ │ ├── os-joystick.png │ │ │ │ │ │ ├── os-keyboard_response.png │ │ │ │ │ │ ├── os-logger.png │ │ │ │ │ │ ├── os-loop.png │ │ │ │ │ │ ├── os-media_player_mpy.png │ │ │ │ │ │ ├── os-mouse_response.png │ │ │ │ │ │ ├── os-psychopy_gratingstim.png │ │ │ │ │ │ ├── os-psychopy_textstim.png │ │ │ │ │ │ ├── os-pygaze_drift_correct.png │ │ │ │ │ │ ├── os-pygaze_init.png │ │ │ │ │ │ ├── os-pygaze_log.png │ │ │ │ │ │ ├── os-pygaze_roi.png │ │ │ │ │ │ ├── os-pygaze_start_recording.png │ │ │ │ │ │ ├── os-pygaze_stop_recording.png │ │ │ │ │ │ ├── os-pygaze_wait.png │ │ │ │ │ │ ├── os-repeat_cycle.png │ │ │ │ │ │ ├── os-reset_feedback.png │ │ │ │ │ │ ├── os-sampler.png │ │ │ │ │ │ ├── os-sequence.png │ │ │ │ │ │ ├── os-sketchpad.png │ │ │ │ │ │ ├── os-synth.png │ │ │ │ │ │ └── os-touch_response.png │ │ │ │ │ ├── mimetypes │ │ │ │ │ │ ├── application-rss+xml.png │ │ │ │ │ │ ├── application-x-executable.png │ │ │ │ │ │ ├── x-office-address-book.png │ │ │ │ │ │ └── x-office-calendar.png │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── os-color-picker.png │ │ │ │ │ │ ├── os-debug.png │ │ │ │ │ │ ├── os-experiment.png │ │ │ │ │ │ ├── os-finished-error.png │ │ │ │ │ │ ├── os-finished-success.png │ │ │ │ │ │ ├── os-finished-user-interrupt.png │ │ │ │ │ │ ├── os-inspector.png │ │ │ │ │ │ ├── os-view-controls.png │ │ │ │ │ │ ├── os-view-script.png │ │ │ │ │ │ ├── os-view-split.png │ │ │ │ │ │ └── rapunzel.png │ │ │ │ │ ├── places │ │ │ │ │ │ ├── distributor-logo-android.png │ │ │ │ │ │ ├── distributor-logo-antergos.png │ │ │ │ │ │ ├── distributor-logo-archlinux.png │ │ │ │ │ │ ├── distributor-logo-crunchbang.png │ │ │ │ │ │ ├── distributor-logo-debian.png │ │ │ │ │ │ ├── distributor-logo-deepin.png │ │ │ │ │ │ ├── distributor-logo-edubuntu.png │ │ │ │ │ │ ├── distributor-logo-elementary.png │ │ │ │ │ │ ├── distributor-logo-fedora.png │ │ │ │ │ │ ├── distributor-logo-frugalware.png │ │ │ │ │ │ ├── distributor-logo-gentoo.png │ │ │ │ │ │ ├── distributor-logo-kubuntu.png │ │ │ │ │ │ ├── distributor-logo-linux-mint.png │ │ │ │ │ │ ├── distributor-logo-mageia.png │ │ │ │ │ │ ├── distributor-logo-mandriva.png │ │ │ │ │ │ ├── distributor-logo-manjaro.png │ │ │ │ │ │ ├── distributor-logo-opensuse.png │ │ │ │ │ │ ├── distributor-logo-slackware.png │ │ │ │ │ │ ├── distributor-logo-steamos.png │ │ │ │ │ │ ├── distributor-logo-ubuntu-gnome.png │ │ │ │ │ │ ├── distributor-logo-ubuntu-mate.png │ │ │ │ │ │ ├── distributor-logo-ubuntu.png │ │ │ │ │ │ ├── distributor-logo-windows.png │ │ │ │ │ │ ├── folder-remote.png │ │ │ │ │ │ ├── network-workgroup.png │ │ │ │ │ │ ├── user-bookmarks.png │ │ │ │ │ │ ├── user-desktop.png │ │ │ │ │ │ ├── user-trash-full.png │ │ │ │ │ │ └── user-trash.png │ │ │ │ │ ├── sketchpad │ │ │ │ │ │ ├── os-arrow.png │ │ │ │ │ │ ├── os-circle.png │ │ │ │ │ │ ├── os-ellipse.png │ │ │ │ │ │ ├── os-fixdot.png │ │ │ │ │ │ ├── os-gabor.png │ │ │ │ │ │ ├── os-image.png │ │ │ │ │ │ ├── os-line.png │ │ │ │ │ │ ├── os-noise.png │ │ │ │ │ │ ├── os-pointer.png │ │ │ │ │ │ ├── os-rect.png │ │ │ │ │ │ └── os-textline.png │ │ │ │ │ ├── status │ │ │ │ │ │ ├── dialog-error.png │ │ │ │ │ │ ├── dialog-info.png │ │ │ │ │ │ ├── dialog-question.png │ │ │ │ │ │ ├── dialog-warning.png │ │ │ │ │ │ ├── security-high.png │ │ │ │ │ │ ├── security-low.png │ │ │ │ │ │ └── security-medium.png │ │ │ │ │ ├── unity │ │ │ │ │ │ └── launcher_bfb.png │ │ │ │ │ └── web │ │ │ │ │ │ ├── web-aim.png │ │ │ │ │ │ ├── web-airdroid.png │ │ │ │ │ │ ├── web-amazon.png │ │ │ │ │ │ ├── web-angry-birds.png │ │ │ │ │ │ ├── web-anydo.png │ │ │ │ │ │ ├── web-blogger.png │ │ │ │ │ │ ├── web-chrome-web-store.png │ │ │ │ │ │ ├── web-circ.png │ │ │ │ │ │ ├── web-copy.png │ │ │ │ │ │ ├── web-deviantart.png │ │ │ │ │ │ ├── web-duolingo.png │ │ │ │ │ │ ├── web-ebay.png │ │ │ │ │ │ ├── web-evernote.png │ │ │ │ │ │ ├── web-facebook-messenger.png │ │ │ │ │ │ ├── web-facebook.png │ │ │ │ │ │ ├── web-fastmail.png │ │ │ │ │ │ ├── web-feedly.png │ │ │ │ │ │ ├── web-flickr.png │ │ │ │ │ │ ├── web-foursquare.png │ │ │ │ │ │ ├── web-gadugadu.png │ │ │ │ │ │ ├── web-github.png │ │ │ │ │ │ ├── web-gizmo.png │ │ │ │ │ │ ├── web-google-apps-script.png │ │ │ │ │ │ ├── web-google-calendar.png │ │ │ │ │ │ ├── web-google-cast.png │ │ │ │ │ │ ├── web-google-docs.png │ │ │ │ │ │ ├── web-google-drawings.png │ │ │ │ │ │ ├── web-google-drive-old.png │ │ │ │ │ │ ├── web-google-drive.png │ │ │ │ │ │ ├── web-google-earth.png │ │ │ │ │ │ ├── web-google-forms.png │ │ │ │ │ │ ├── web-google-fusion-tables.png │ │ │ │ │ │ ├── web-google-gmail-offline.png │ │ │ │ │ │ ├── web-google-gmail.png │ │ │ │ │ │ ├── web-google-hangouts.png │ │ │ │ │ │ ├── web-google-keep.png │ │ │ │ │ │ ├── web-google-maps.png │ │ │ │ │ │ ├── web-google-photos.png │ │ │ │ │ │ ├── web-google-play-books.png │ │ │ │ │ │ ├── web-google-play-movies.png │ │ │ │ │ │ ├── web-google-play-music.png │ │ │ │ │ │ ├── web-google-play.png │ │ │ │ │ │ ├── web-google-plus.png │ │ │ │ │ │ ├── web-google-sheets.png │ │ │ │ │ │ ├── web-google-slides.png │ │ │ │ │ │ ├── web-google-wallet.png │ │ │ │ │ │ ├── web-google-youtube.png │ │ │ │ │ │ ├── web-google.png │ │ │ │ │ │ ├── web-grooveshark.png │ │ │ │ │ │ ├── web-html.png │ │ │ │ │ │ ├── web-hulu.png │ │ │ │ │ │ ├── web-icq.png │ │ │ │ │ │ ├── web-identica.png │ │ │ │ │ │ ├── web-instagram.png │ │ │ │ │ │ ├── web-irc.png │ │ │ │ │ │ ├── web-jolicloud.png │ │ │ │ │ │ ├── web-khan-academy.png │ │ │ │ │ │ ├── web-kindle.png │ │ │ │ │ │ ├── web-lastfm.png │ │ │ │ │ │ ├── web-lastpass.png │ │ │ │ │ │ ├── web-launchpad.png │ │ │ │ │ │ ├── web-linkedin.png │ │ │ │ │ │ ├── web-mailru.png │ │ │ │ │ │ ├── web-meanwhile.png │ │ │ │ │ │ ├── web-memrise.png │ │ │ │ │ │ ├── web-microsoft-onedrive.png │ │ │ │ │ │ ├── web-microsoft.png │ │ │ │ │ │ ├── web-mint.png │ │ │ │ │ │ ├── web-mxit.png │ │ │ │ │ │ ├── web-myspace.png │ │ │ │ │ │ ├── web-netflix.png │ │ │ │ │ │ ├── web-newsblur.png │ │ │ │ │ │ ├── web-novell.png │ │ │ │ │ │ ├── web-omg-chrome.png │ │ │ │ │ │ ├── web-omgubuntu.png │ │ │ │ │ │ ├── web-onenote.png │ │ │ │ │ │ ├── web-outlook.png │ │ │ │ │ │ ├── web-pandora.png │ │ │ │ │ │ ├── web-paypal.png │ │ │ │ │ │ ├── web-pocket.png │ │ │ │ │ │ ├── web-rdio.png │ │ │ │ │ │ ├── web-reddit.png │ │ │ │ │ │ ├── web-slack.png │ │ │ │ │ │ ├── web-soundcloud.png │ │ │ │ │ │ ├── web-spotify.png │ │ │ │ │ │ ├── web-sunrise-calendar.png │ │ │ │ │ │ ├── web-telegram.png │ │ │ │ │ │ ├── web-trello.png │ │ │ │ │ │ ├── web-tumblr.png │ │ │ │ │ │ ├── web-twitter.png │ │ │ │ │ │ ├── web-viber.png │ │ │ │ │ │ ├── web-vimeo.png │ │ │ │ │ │ ├── web-vk.png │ │ │ │ │ │ ├── web-wikipedia.png │ │ │ │ │ │ ├── web-wolfram-alpha.png │ │ │ │ │ │ ├── web-wordpress.png │ │ │ │ │ │ ├── web-wunderlist.png │ │ │ │ │ │ ├── web-yahoo.png │ │ │ │ │ │ └── web-zephyr.png │ │ │ │ ├── 256x256 │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── os-overview.png │ │ │ │ │ │ ├── system-log-out.png │ │ │ │ │ │ ├── system-restart.png │ │ │ │ │ │ ├── system-run.png │ │ │ │ │ │ ├── system-shutdown.png │ │ │ │ │ │ ├── system-sleep.png │ │ │ │ │ │ └── system-suspend.png │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── 0ad.png │ │ │ │ │ │ ├── 2048.png │ │ │ │ │ │ ├── QtProject-qtcreator.png │ │ │ │ │ │ ├── abiword.png │ │ │ │ │ │ ├── accessories-calculator.png │ │ │ │ │ │ ├── accessories-camera.png │ │ │ │ │ │ ├── accessories-character-map.png │ │ │ │ │ │ ├── accessories-clipboard.png │ │ │ │ │ │ ├── accessories-dictionary.png │ │ │ │ │ │ ├── accessories-document-viewer.png │ │ │ │ │ │ ├── accessories-media-converter.png │ │ │ │ │ │ ├── accessories-painting.png │ │ │ │ │ │ ├── accessories-podcast.png │ │ │ │ │ │ ├── accessories-system-cleaner.png │ │ │ │ │ │ ├── accessories-text-editor.png │ │ │ │ │ │ ├── accessories-thesaurus.png │ │ │ │ │ │ ├── acetoneiso.png │ │ │ │ │ │ ├── acroread.png │ │ │ │ │ │ ├── addressbook.png │ │ │ │ │ │ ├── adobe-air.png │ │ │ │ │ │ ├── aisleriot.png │ │ │ │ │ │ ├── amarok.png │ │ │ │ │ │ ├── android-studio.png │ │ │ │ │ │ ├── anjuta.png │ │ │ │ │ │ ├── anki.png │ │ │ │ │ │ ├── app-launcher.png │ │ │ │ │ │ ├── applets-screenshooter.png │ │ │ │ │ │ ├── aptanastudio.png │ │ │ │ │ │ ├── archive-manager.png │ │ │ │ │ │ ├── ardour.png │ │ │ │ │ │ ├── arduino-ide.png │ │ │ │ │ │ ├── arista.png │ │ │ │ │ │ ├── aseprite.png │ │ │ │ │ │ ├── assistant-qt4.png │ │ │ │ │ │ ├── astahc.png │ │ │ │ │ │ ├── atom.png │ │ │ │ │ │ ├── audacious.png │ │ │ │ │ │ ├── audacity.png │ │ │ │ │ │ ├── audio-equalizer.png │ │ │ │ │ │ ├── authy.png │ │ │ │ │ │ ├── autokey.png │ │ │ │ │ │ ├── avast.png │ │ │ │ │ │ ├── banshee.png │ │ │ │ │ │ ├── battlenet.png │ │ │ │ │ │ ├── birdie.png │ │ │ │ │ │ ├── bitcoin.png │ │ │ │ │ │ ├── bitdefender.png │ │ │ │ │ │ ├── bittorrentsync.png │ │ │ │ │ │ ├── bitwig-studio.png │ │ │ │ │ │ ├── bleachbit.png │ │ │ │ │ │ ├── blender.png │ │ │ │ │ │ ├── bluefish.png │ │ │ │ │ │ ├── bluetooth.png │ │ │ │ │ │ ├── boincmgr.png │ │ │ │ │ │ ├── bokken.png │ │ │ │ │ │ ├── bootloader.png │ │ │ │ │ │ ├── brackets.png │ │ │ │ │ │ ├── budgie.png │ │ │ │ │ │ ├── byobu.png │ │ │ │ │ │ ├── caffeine.png │ │ │ │ │ │ ├── cairo-dock.png │ │ │ │ │ │ ├── calendar.png │ │ │ │ │ │ ├── calibre.png │ │ │ │ │ │ ├── ccc_large.png │ │ │ │ │ │ ├── ccsm.png │ │ │ │ │ │ ├── checkbox.png │ │ │ │ │ │ ├── cheese.png │ │ │ │ │ │ ├── cherrytree.png │ │ │ │ │ │ ├── chess.png │ │ │ │ │ │ ├── chrome-app-list.png │ │ │ │ │ │ ├── chromium-browser-old.png │ │ │ │ │ │ ├── chromium-browser.png │ │ │ │ │ │ ├── clamav.png │ │ │ │ │ │ ├── clementine.png │ │ │ │ │ │ ├── clinica.png │ │ │ │ │ │ ├── clipgrab.png │ │ │ │ │ │ ├── clock.png │ │ │ │ │ │ ├── cmplayer.png │ │ │ │ │ │ ├── codeblocks.png │ │ │ │ │ │ ├── colorhug-ccmx.png │ │ │ │ │ │ ├── colorhug-flash.png │ │ │ │ │ │ ├── colorhug.png │ │ │ │ │ │ ├── comix.png │ │ │ │ │ │ ├── conky-manager.png │ │ │ │ │ │ ├── corebird.png │ │ │ │ │ │ ├── counter-strike.png │ │ │ │ │ │ ├── crossover.png │ │ │ │ │ │ ├── cs-tiling.png │ │ │ │ │ │ ├── curlew.png │ │ │ │ │ │ ├── d-feet.png │ │ │ │ │ │ ├── darktable.png │ │ │ │ │ │ ├── dart.png │ │ │ │ │ │ ├── dasher.png │ │ │ │ │ │ ├── dconf-editor.png │ │ │ │ │ │ ├── deadbeef.png │ │ │ │ │ │ ├── deepin-media-player.png │ │ │ │ │ │ ├── deja-dup.png │ │ │ │ │ │ ├── deluge.png │ │ │ │ │ │ ├── designer-qt4.png │ │ │ │ │ │ ├── desktop-environment-gnome.png │ │ │ │ │ │ ├── desktop-environment-kde.png │ │ │ │ │ │ ├── desktop-environment-lxde.png │ │ │ │ │ │ ├── desktop-environment-mate.png │ │ │ │ │ │ ├── desktop-environment-unity.png │ │ │ │ │ │ ├── desktop-environment-xfce.png │ │ │ │ │ │ ├── desktop-magnifier.png │ │ │ │ │ │ ├── desktop-tweaks.png │ │ │ │ │ │ ├── desura.png │ │ │ │ │ │ ├── devhelp.png │ │ │ │ │ │ ├── dia.png │ │ │ │ │ │ ├── digikam.png │ │ │ │ │ │ ├── direct-connect.png │ │ │ │ │ │ ├── disk-burner.png │ │ │ │ │ │ ├── disk-usage-analyzer.png │ │ │ │ │ │ ├── display.im6.png │ │ │ │ │ │ ├── docky.png │ │ │ │ │ │ ├── dogecoin.png │ │ │ │ │ │ ├── dolphin-emu.png │ │ │ │ │ │ ├── dosbox.png │ │ │ │ │ │ ├── dota2.png │ │ │ │ │ │ ├── doublecmd.png │ │ │ │ │ │ ├── dropbox.png │ │ │ │ │ │ ├── ds-emulator.png │ │ │ │ │ │ ├── dvdrip.png │ │ │ │ │ │ ├── dvdstyler.png │ │ │ │ │ │ ├── earth.png │ │ │ │ │ │ ├── easytag.png │ │ │ │ │ │ ├── eclipse.png │ │ │ │ │ │ ├── eidete.png │ │ │ │ │ │ ├── ekiga.png │ │ │ │ │ │ ├── elegance-colors.png │ │ │ │ │ │ ├── emacs.png │ │ │ │ │ │ ├── emerald.png │ │ │ │ │ │ ├── empathy.png │ │ │ │ │ │ ├── emule.png │ │ │ │ │ │ ├── espeak.png │ │ │ │ │ │ ├── ettercap.png │ │ │ │ │ │ ├── eufloria.png │ │ │ │ │ │ ├── exfalso.png │ │ │ │ │ │ ├── extensions.png │ │ │ │ │ │ ├── fbreader.png │ │ │ │ │ │ ├── fedora-release-notes.png │ │ │ │ │ │ ├── fedora-utils.png │ │ │ │ │ │ ├── fedorautils.png │ │ │ │ │ │ ├── fez.png │ │ │ │ │ │ ├── filebot.png │ │ │ │ │ │ ├── filezilla.png │ │ │ │ │ │ ├── finalterm.png │ │ │ │ │ │ ├── firefox-nightly.png │ │ │ │ │ │ ├── firefox-trunk.png │ │ │ │ │ │ ├── firefox.png │ │ │ │ │ │ ├── firewall.png │ │ │ │ │ │ ├── fitbit.png │ │ │ │ │ │ ├── five-or-more.png │ │ │ │ │ │ ├── flash.png │ │ │ │ │ │ ├── fluxgui.png │ │ │ │ │ │ ├── focuswriter.png │ │ │ │ │ │ ├── fontforge.png │ │ │ │ │ │ ├── four-in-a-row.png │ │ │ │ │ │ ├── freemind.png │ │ │ │ │ │ ├── friends.png │ │ │ │ │ │ ├── frostwire.png │ │ │ │ │ │ ├── gajim.png │ │ │ │ │ │ ├── gameconqueror.png │ │ │ │ │ │ ├── gaupol.png │ │ │ │ │ │ ├── gba.png │ │ │ │ │ │ ├── gbrainy.png │ │ │ │ │ │ ├── gcolor2.png │ │ │ │ │ │ ├── geany.png │ │ │ │ │ │ ├── gelemental.png │ │ │ │ │ │ ├── gensgs.png │ │ │ │ │ │ ├── genymotion.png │ │ │ │ │ │ ├── geogebra.png │ │ │ │ │ │ ├── gfeedline.png │ │ │ │ │ │ ├── ghex.png │ │ │ │ │ │ ├── gimp.png │ │ │ │ │ │ ├── gitg.png │ │ │ │ │ │ ├── gksu-root-terminal.png │ │ │ │ │ │ ├── glade.png │ │ │ │ │ │ ├── glippy.png │ │ │ │ │ │ ├── gloobus-preview.png │ │ │ │ │ │ ├── gmpc.png │ │ │ │ │ │ ├── gmusicbrowser.png │ │ │ │ │ │ ├── gnac.png │ │ │ │ │ │ ├── gnome-boxes.png │ │ │ │ │ │ ├── gnome-break-timer.png │ │ │ │ │ │ ├── gnome-clocks.png │ │ │ │ │ │ ├── gnome-disks.png │ │ │ │ │ │ ├── gnome-do.png │ │ │ │ │ │ ├── gnome-documents.png │ │ │ │ │ │ ├── gnome-klotski.png │ │ │ │ │ │ ├── gnome-music.png │ │ │ │ │ │ ├── gnome-nettool.png │ │ │ │ │ │ ├── gnome-nibbles.png │ │ │ │ │ │ ├── gnome-photos.png │ │ │ │ │ │ ├── gnome-power-statistics.png │ │ │ │ │ │ ├── gnome-robots.png │ │ │ │ │ │ ├── gnome-software.png │ │ │ │ │ │ ├── gnome-sound-recorder.png │ │ │ │ │ │ ├── gnome-subtitles.png │ │ │ │ │ │ ├── gnome-tali.png │ │ │ │ │ │ ├── gnome-tetravex.png │ │ │ │ │ │ ├── gnome-tweak-tool.png │ │ │ │ │ │ ├── gnome-weather.png │ │ │ │ │ │ ├── gnomines.png │ │ │ │ │ │ ├── gnu-r.png │ │ │ │ │ │ ├── gnucash.png │ │ │ │ │ │ ├── gnumeric.png │ │ │ │ │ │ ├── gnupg.png │ │ │ │ │ │ ├── godot.png │ │ │ │ │ │ ├── google-chrome-beta.png │ │ │ │ │ │ ├── google-chrome-old.png │ │ │ │ │ │ ├── google-chrome-unstable.png │ │ │ │ │ │ ├── google-chrome.png │ │ │ │ │ │ ├── google-music-manager.png │ │ │ │ │ │ ├── google-webdesigner.png │ │ │ │ │ │ ├── gparted.png │ │ │ │ │ │ ├── gpick.png │ │ │ │ │ │ ├── gpk-service-pack.png │ │ │ │ │ │ ├── gpodder.png │ │ │ │ │ │ ├── gramps.png │ │ │ │ │ │ ├── grsync.png │ │ │ │ │ │ ├── gstreamer.png │ │ │ │ │ │ ├── gtg.png │ │ │ │ │ │ ├── gthumb.png │ │ │ │ │ │ ├── gtk-recordmydesktop.png │ │ │ │ │ │ ├── gtkpod.png │ │ │ │ │ │ ├── guake.png │ │ │ │ │ │ ├── guayadeque.png │ │ │ │ │ │ ├── gummi.png │ │ │ │ │ │ ├── gvim.png │ │ │ │ │ │ ├── gwibber.png │ │ │ │ │ │ ├── haguichi.png │ │ │ │ │ │ ├── half-life.png │ │ │ │ │ │ ├── half-life2.png │ │ │ │ │ │ ├── hamster.png │ │ │ │ │ │ ├── handbrake.png │ │ │ │ │ │ ├── help-about.png │ │ │ │ │ │ ├── hexchat.png │ │ │ │ │ │ ├── higan.png │ │ │ │ │ │ ├── hipchat.png │ │ │ │ │ │ ├── homebank.png │ │ │ │ │ │ ├── hp-logo.png │ │ │ │ │ │ ├── hplip.png │ │ │ │ │ │ ├── hugin.png │ │ │ │ │ │ ├── hydrogen.png │ │ │ │ │ │ ├── iagno.png │ │ │ │ │ │ ├── ibus-bopomofo.png │ │ │ │ │ │ ├── ibus-pinyin.png │ │ │ │ │ │ ├── ibus.png │ │ │ │ │ │ ├── icedove.png │ │ │ │ │ │ ├── iceweasel.png │ │ │ │ │ │ ├── inkscape.png │ │ │ │ │ │ ├── insync.png │ │ │ │ │ │ ├── intel-linux-graphics-installer.png │ │ │ │ │ │ ├── intellij-idea.png │ │ │ │ │ │ ├── internet-mail.png │ │ │ │ │ │ ├── internet-news-reader.png │ │ │ │ │ │ ├── internet-telephony.png │ │ │ │ │ │ ├── internet-web-browser.png │ │ │ │ │ │ ├── jabber.png │ │ │ │ │ │ ├── jack.png │ │ │ │ │ │ ├── jamin.png │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ ├── jdownloader.png │ │ │ │ │ │ ├── jockey.png │ │ │ │ │ │ ├── jokosher.png │ │ │ │ │ │ ├── juk.png │ │ │ │ │ │ ├── kazam.png │ │ │ │ │ │ ├── keepass.png │ │ │ │ │ │ ├── kile.png │ │ │ │ │ │ ├── kingsoft-presentation.png │ │ │ │ │ │ ├── kingsoft-spreadsheets.png │ │ │ │ │ │ ├── kingsoft-writer.png │ │ │ │ │ │ ├── kmymoney.png │ │ │ │ │ │ ├── komodo.png │ │ │ │ │ │ ├── konqueror.png │ │ │ │ │ │ ├── konversation.png │ │ │ │ │ │ ├── kopete.png │ │ │ │ │ │ ├── krita.png │ │ │ │ │ │ ├── ktorrent.png │ │ │ │ │ │ ├── lazarus.png │ │ │ │ │ │ ├── leafpad.png │ │ │ │ │ │ ├── left-for-dead.png │ │ │ │ │ │ ├── libreoffice-base.png │ │ │ │ │ │ ├── libreoffice-calc.png │ │ │ │ │ │ ├── libreoffice-draw.png │ │ │ │ │ │ ├── libreoffice-impress.png │ │ │ │ │ │ ├── libreoffice-main.png │ │ │ │ │ │ ├── libreoffice-math.png │ │ │ │ │ │ ├── libreoffice-writer.png │ │ │ │ │ │ ├── lightsoff.png │ │ │ │ │ │ ├── lightworks.png │ │ │ │ │ │ ├── lightzone.png │ │ │ │ │ │ ├── linguist-qt4.png │ │ │ │ │ │ ├── linthesia.png │ │ │ │ │ │ ├── lmms.png │ │ │ │ │ │ ├── logviewer.png │ │ │ │ │ │ ├── luminance-hdr.png │ │ │ │ │ │ ├── lutris.png │ │ │ │ │ │ ├── lxmusic.png │ │ │ │ │ │ ├── lyx.png │ │ │ │ │ │ ├── mahjongg.png │ │ │ │ │ │ ├── manaplus.png │ │ │ │ │ │ ├── mathematica.png │ │ │ │ │ │ ├── matlab.png │ │ │ │ │ │ ├── maxthon.png │ │ │ │ │ │ ├── mc.png │ │ │ │ │ │ ├── meld.png │ │ │ │ │ │ ├── mendeley.png │ │ │ │ │ │ ├── menu-editor.png │ │ │ │ │ │ ├── midori.png │ │ │ │ │ │ ├── minecraft.png │ │ │ │ │ │ ├── minitube.png │ │ │ │ │ │ ├── miro.png │ │ │ │ │ │ ├── mixxx.png │ │ │ │ │ │ ├── mkv-gui.png │ │ │ │ │ │ ├── mkvinfo.png │ │ │ │ │ │ ├── moka.png │ │ │ │ │ │ ├── moneydance.png │ │ │ │ │ │ ├── mongodb.png │ │ │ │ │ │ ├── mono-runtime-common.png │ │ │ │ │ │ ├── monodevelop.png │ │ │ │ │ │ ├── mpd.png │ │ │ │ │ │ ├── mplayer.png │ │ │ │ │ │ ├── mpv.png │ │ │ │ │ │ ├── ms-excel.png │ │ │ │ │ │ ├── ms-powerpoint.png │ │ │ │ │ │ ├── ms-word.png │ │ │ │ │ │ ├── multimedia-audio-player.png │ │ │ │ │ │ ├── multimedia-photo-viewer.png │ │ │ │ │ │ ├── multimedia-video-player.png │ │ │ │ │ │ ├── multisystem.png │ │ │ │ │ │ ├── mumble.png │ │ │ │ │ │ ├── muon.png │ │ │ │ │ │ ├── musescore.png │ │ │ │ │ │ ├── musique.png │ │ │ │ │ │ ├── mysql-workbench.png │ │ │ │ │ │ ├── nemiver.png │ │ │ │ │ │ ├── nemo.png │ │ │ │ │ │ ├── nepomuk.png │ │ │ │ │ │ ├── netbeans.png │ │ │ │ │ │ ├── nexuiz.png │ │ │ │ │ │ ├── nicotine.png │ │ │ │ │ │ ├── ninja-ide.png │ │ │ │ │ │ ├── nitrotasks.png │ │ │ │ │ │ ├── notes.png │ │ │ │ │ │ ├── ntfs-config.png │ │ │ │ │ │ ├── nuvolaplayer.png │ │ │ │ │ │ ├── nvidia-settings.png │ │ │ │ │ │ ├── obconf.png │ │ │ │ │ │ ├── octave.png │ │ │ │ │ │ ├── octopi.png │ │ │ │ │ │ ├── onboard.png │ │ │ │ │ │ ├── openshot.png │ │ │ │ │ │ ├── openttd.png │ │ │ │ │ │ ├── opera.png │ │ │ │ │ │ ├── owncloud.png │ │ │ │ │ │ ├── oxygen.png │ │ │ │ │ │ ├── panel-applets.png │ │ │ │ │ │ ├── panel.png │ │ │ │ │ │ ├── parole.png │ │ │ │ │ │ ├── passwords.png │ │ │ │ │ │ ├── patchage.png │ │ │ │ │ │ ├── pdfmod.png │ │ │ │ │ │ ├── pdfshuffler.png │ │ │ │ │ │ ├── pencil.png │ │ │ │ │ │ ├── phpmyadmin.png │ │ │ │ │ │ ├── picard.png │ │ │ │ │ │ ├── pidgin.png │ │ │ │ │ │ ├── pithos.png │ │ │ │ │ │ ├── plank.png │ │ │ │ │ │ ├── plasma.png │ │ │ │ │ │ ├── playonlinux.png │ │ │ │ │ │ ├── plex.png │ │ │ │ │ │ ├── poedit.png │ │ │ │ │ │ ├── polari.png │ │ │ │ │ │ ├── polly.png │ │ │ │ │ │ ├── popcorntime.png │ │ │ │ │ │ ├── portal.png │ │ │ │ │ │ ├── postgresql.png │ │ │ │ │ │ ├── pragha.png │ │ │ │ │ │ ├── preferences-bluetooth.png │ │ │ │ │ │ ├── preferences-color.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-online-accounts.png │ │ │ │ │ │ ├── preferences-desktop-screensaver.png │ │ │ │ │ │ ├── preferences-desktop-theme.png │ │ │ │ │ │ ├── preferences-desktop-user.png │ │ │ │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ │ │ │ ├── preferences-kcalc-constants.png │ │ │ │ │ │ ├── preferences-management-service.png │ │ │ │ │ │ ├── preferences-plugins.png │ │ │ │ │ │ ├── preferences-system-bluetooth-inactive.png │ │ │ │ │ │ ├── preferences-system-brightness-lock.png │ │ │ │ │ │ ├── preferences-system-hotcorners.png │ │ │ │ │ │ ├── preferences-system-login.png │ │ │ │ │ │ ├── preferences-system-network.png │ │ │ │ │ │ ├── preferences-system-notifications.png │ │ │ │ │ │ ├── preferences-system-power.png │ │ │ │ │ │ ├── preferences-system-privacy.png │ │ │ │ │ │ ├── preferences-system-search.png │ │ │ │ │ │ ├── preferences-system-sharing.png │ │ │ │ │ │ ├── preferences-system-sound.png │ │ │ │ │ │ ├── preferences-system-time.png │ │ │ │ │ │ ├── preferences-system-windows.png │ │ │ │ │ │ ├── preferences-system.png │ │ │ │ │ │ ├── preferences-web-browser-cookies.png │ │ │ │ │ │ ├── preferences-web-browser-stylesheets.png │ │ │ │ │ │ ├── psensor.png │ │ │ │ │ │ ├── puddletag.png │ │ │ │ │ │ ├── putty.png │ │ │ │ │ │ ├── pycad.png │ │ │ │ │ │ ├── pycharm.png │ │ │ │ │ │ ├── pyrenamer.png │ │ │ │ │ │ ├── python.png │ │ │ │ │ │ ├── qcad.png │ │ │ │ │ │ ├── qr-creator.png │ │ │ │ │ │ ├── qsynth.png │ │ │ │ │ │ ├── qtconfig-qt4.png │ │ │ │ │ │ ├── qtiplot.png │ │ │ │ │ │ ├── quadrapassel.png │ │ │ │ │ │ ├── quassel.png │ │ │ │ │ │ ├── quiterss.png │ │ │ │ │ │ ├── quodlibet.png │ │ │ │ │ │ ├── qupzilla.png │ │ │ │ │ │ ├── radiotray.png │ │ │ │ │ │ ├── rapid-photo-downloader.png │ │ │ │ │ │ ├── rawtherapee.png │ │ │ │ │ │ ├── reditr.png │ │ │ │ │ │ ├── redshift.png │ │ │ │ │ │ ├── remote-desktop.png │ │ │ │ │ │ ├── retext.png │ │ │ │ │ │ ├── rhythmbox.png │ │ │ │ │ │ ├── rstudio.png │ │ │ │ │ │ ├── rubymine.png │ │ │ │ │ │ ├── rygel.png │ │ │ │ │ │ ├── samba.png │ │ │ │ │ │ ├── screenruler.png │ │ │ │ │ │ ├── scribus.png │ │ │ │ │ │ ├── selinux.png │ │ │ │ │ │ ├── sencha-animator.png │ │ │ │ │ │ ├── serious-sam3-bfe.png │ │ │ │ │ │ ├── session-properties.png │ │ │ │ │ │ ├── shotwell.png │ │ │ │ │ │ ├── shutter.png │ │ │ │ │ │ ├── sigil.png │ │ │ │ │ │ ├── sketchup.png │ │ │ │ │ │ ├── skype.png │ │ │ │ │ │ ├── smuxi.png │ │ │ │ │ │ ├── software-properties.png │ │ │ │ │ │ ├── solaar.png │ │ │ │ │ │ ├── sound-juicer.png │ │ │ │ │ │ ├── sparkleshare.png │ │ │ │ │ │ ├── springseed.png │ │ │ │ │ │ ├── sqldeveloper.png │ │ │ │ │ │ ├── steam.png │ │ │ │ │ │ ├── stellarium.png │ │ │ │ │ │ ├── stormcloud.png │ │ │ │ │ │ ├── subdownloader.png │ │ │ │ │ │ ├── sublime-text.png │ │ │ │ │ │ ├── sudoku.png │ │ │ │ │ │ ├── sunflower.png │ │ │ │ │ │ ├── supertuxkart.png │ │ │ │ │ │ ├── swell-foop.png │ │ │ │ │ │ ├── synapse.png │ │ │ │ │ │ ├── synergy.png │ │ │ │ │ │ ├── system-error.png │ │ │ │ │ │ ├── system-file-manager.png │ │ │ │ │ │ ├── system-help.png │ │ │ │ │ │ ├── system-lock-screen.png │ │ │ │ │ │ ├── system-remixer.png │ │ │ │ │ │ ├── system-software-install.png │ │ │ │ │ │ ├── system-software-package-manager.png │ │ │ │ │ │ ├── system-software-update.png │ │ │ │ │ │ ├── system76.png │ │ │ │ │ │ ├── team-fortress-2.png │ │ │ │ │ │ ├── teamspeak.png │ │ │ │ │ │ ├── teamviewer.png │ │ │ │ │ │ ├── telepathy-kde.png │ │ │ │ │ │ ├── terminator.png │ │ │ │ │ │ ├── texmaker.png │ │ │ │ │ │ ├── texstudio.png │ │ │ │ │ │ ├── texworks.png │ │ │ │ │ │ ├── thunderbird-old.png │ │ │ │ │ │ ├── thunderbird.png │ │ │ │ │ │ ├── tomahawk.png │ │ │ │ │ │ ├── totem.png │ │ │ │ │ │ ├── transmageddon.png │ │ │ │ │ │ ├── transmission.png │ │ │ │ │ │ ├── trillian.png │ │ │ │ │ │ ├── truecrypt.png │ │ │ │ │ │ ├── turpial.png │ │ │ │ │ │ ├── tuxguitar.png │ │ │ │ │ │ ├── tweetdeck.png │ │ │ │ │ │ ├── typecatcher.png │ │ │ │ │ │ ├── uberwriter.png │ │ │ │ │ │ ├── ubuntu-sdk.png │ │ │ │ │ │ ├── ubuntu-tweak.png │ │ │ │ │ │ ├── ubuntuone-music.png │ │ │ │ │ │ ├── ubuntuone.png │ │ │ │ │ │ ├── ufraw.png │ │ │ │ │ │ ├── uget.png │ │ │ │ │ │ ├── umplayer.png │ │ │ │ │ │ ├── unison-gtk.png │ │ │ │ │ │ ├── unity-lens-photos.png │ │ │ │ │ │ ├── unity-scope-gdrive.png │ │ │ │ │ │ ├── unity-tweak-tool.png │ │ │ │ │ │ ├── usb-creator-gtk.png │ │ │ │ │ │ ├── user-info.png │ │ │ │ │ │ ├── utilities-system-monitor.png │ │ │ │ │ │ ├── utilities-terminal.png │ │ │ │ │ │ ├── vala.png │ │ │ │ │ │ ├── varicad.png │ │ │ │ │ │ ├── variety.png │ │ │ │ │ │ ├── venom.png │ │ │ │ │ │ ├── verbiste.png │ │ │ │ │ │ ├── vidalia.png │ │ │ │ │ │ ├── video-editor.png │ │ │ │ │ │ ├── viewnior.png │ │ │ │ │ │ ├── vineyard.png │ │ │ │ │ │ ├── virt-manager.png │ │ │ │ │ │ ├── virtualbox.png │ │ │ │ │ │ ├── vlc.png │ │ │ │ │ │ ├── vmware-player.png │ │ │ │ │ │ ├── vmware-workstation.png │ │ │ │ │ │ ├── vocal.png │ │ │ │ │ │ ├── warsow.png │ │ │ │ │ │ ├── wayland.png │ │ │ │ │ │ ├── webide.png │ │ │ │ │ │ ├── wesnoth-map-editor.png │ │ │ │ │ │ ├── wesnoth.png │ │ │ │ │ │ ├── wine-browser.png │ │ │ │ │ │ ├── wine-folder.png │ │ │ │ │ │ ├── wine-help.png │ │ │ │ │ │ ├── wine-notepad.png │ │ │ │ │ │ ├── wine-uninstaller.png │ │ │ │ │ │ ├── wine-wordpad.png │ │ │ │ │ │ ├── wine.png │ │ │ │ │ │ ├── winecfg.png │ │ │ │ │ │ ├── winetricks.png │ │ │ │ │ │ ├── winff.png │ │ │ │ │ │ ├── wingpanel.png │ │ │ │ │ │ ├── wireframing-app.png │ │ │ │ │ │ ├── wireshark.png │ │ │ │ │ │ ├── workspace-overview.png │ │ │ │ │ │ ├── workspace-switcher-left-bottom.png │ │ │ │ │ │ ├── workspace-switcher-right-bottom.png │ │ │ │ │ │ ├── workspace-switcher-right-top.png │ │ │ │ │ │ ├── workspace-switcher-top-left.png │ │ │ │ │ │ ├── wuala.png │ │ │ │ │ │ ├── xampp.png │ │ │ │ │ │ ├── xbmc.png │ │ │ │ │ │ ├── xchat.png │ │ │ │ │ │ ├── xdiagnose.png │ │ │ │ │ │ ├── xhydra.png │ │ │ │ │ │ ├── xiphos.png │ │ │ │ │ │ ├── xmind.png │ │ │ │ │ │ ├── xnoise.png │ │ │ │ │ │ ├── xonotic.png │ │ │ │ │ │ ├── xorg.png │ │ │ │ │ │ ├── xournal.png │ │ │ │ │ │ ├── xterm.png │ │ │ │ │ │ ├── y-ppa-manager.png │ │ │ │ │ │ ├── yakuake.png │ │ │ │ │ │ ├── yast.png │ │ │ │ │ │ ├── zim.png │ │ │ │ │ │ ├── zotero.png │ │ │ │ │ │ └── zsnes.png │ │ │ │ │ ├── categories │ │ │ │ │ │ ├── applications-accessories.png │ │ │ │ │ │ ├── applications-development.png │ │ │ │ │ │ ├── applications-education.png │ │ │ │ │ │ ├── applications-electronics.png │ │ │ │ │ │ ├── applications-font.png │ │ │ │ │ │ ├── applications-games.png │ │ │ │ │ │ ├── applications-graphics.png │ │ │ │ │ │ ├── applications-haskell.png │ │ │ │ │ │ ├── applications-internet.png │ │ │ │ │ │ ├── applications-java.png │ │ │ │ │ │ ├── applications-mathematics.png │ │ │ │ │ │ ├── applications-monodevelopment.png │ │ │ │ │ │ ├── applications-multimedia.png │ │ │ │ │ │ ├── applications-ocaml.png │ │ │ │ │ │ ├── applications-office.png │ │ │ │ │ │ ├── applications-other.png │ │ │ │ │ │ ├── applications-php.png │ │ │ │ │ │ ├── applications-puzzles.png │ │ │ │ │ │ ├── applications-python.png │ │ │ │ │ │ ├── applications-ruby.png │ │ │ │ │ │ ├── applications-science.png │ │ │ │ │ │ ├── applications-system.png │ │ │ │ │ │ ├── applications-utilities.png │ │ │ │ │ │ ├── preferences-desktop-default-applications.png │ │ │ │ │ │ ├── preferences-desktop-tweaks.png │ │ │ │ │ │ └── preferences-desktop.png │ │ │ │ │ ├── devices │ │ │ │ │ │ ├── audio-card.png │ │ │ │ │ │ ├── camera.png │ │ │ │ │ │ ├── computer.png │ │ │ │ │ │ ├── drive-harddisk-ieee1394.png │ │ │ │ │ │ ├── drive-harddisk.png │ │ │ │ │ │ ├── drive-optical.png │ │ │ │ │ │ ├── drive-removable-media-usb.png │ │ │ │ │ │ ├── drive-removable-media.png │ │ │ │ │ │ ├── input-keyboard.png │ │ │ │ │ │ ├── input-mouse.png │ │ │ │ │ │ ├── input-tablet.png │ │ │ │ │ │ ├── media-flash.png │ │ │ │ │ │ ├── multimedia-player.png │ │ │ │ │ │ ├── network-wired.png │ │ │ │ │ │ ├── nm-device-wireless.png │ │ │ │ │ │ ├── phone.png │ │ │ │ │ │ ├── printer.png │ │ │ │ │ │ └── scanner.png │ │ │ │ │ ├── emblems │ │ │ │ │ │ ├── emblem-default.png │ │ │ │ │ │ ├── emblem-important.png │ │ │ │ │ │ ├── emblem-package.png │ │ │ │ │ │ ├── emblem-readonly.png │ │ │ │ │ │ ├── emblem-shared.png │ │ │ │ │ │ ├── emblem-symbolic-link.png │ │ │ │ │ │ ├── emblem-synchronizing.png │ │ │ │ │ │ ├── emblem-unreadable.png │ │ │ │ │ │ └── emblem-web.png │ │ │ │ │ ├── emotes │ │ │ │ │ │ └── face-smile.png │ │ │ │ │ ├── items │ │ │ │ │ │ ├── os-coroutines.png │ │ │ │ │ │ ├── os-feedback.png │ │ │ │ │ │ ├── os-form_base.png │ │ │ │ │ │ ├── os-form_consent.png │ │ │ │ │ │ ├── os-form_multiple_choice.png │ │ │ │ │ │ ├── os-form_text_display.png │ │ │ │ │ │ ├── os-form_text_input.png │ │ │ │ │ │ ├── os-inline_html.png │ │ │ │ │ │ ├── os-inline_javascript.png │ │ │ │ │ │ ├── os-inline_script-syntax-error.png │ │ │ │ │ │ ├── os-inline_script-syntax-warning.png │ │ │ │ │ │ ├── os-inline_script.png │ │ │ │ │ │ ├── os-joystick.png │ │ │ │ │ │ ├── os-keyboard_response.png │ │ │ │ │ │ ├── os-logger.png │ │ │ │ │ │ ├── os-loop.png │ │ │ │ │ │ ├── os-media_player_mpy.png │ │ │ │ │ │ ├── os-mouse_response.png │ │ │ │ │ │ ├── os-psychopy_gratingstim.png │ │ │ │ │ │ ├── os-psychopy_textstim.png │ │ │ │ │ │ ├── os-pygaze_drift_correct.png │ │ │ │ │ │ ├── os-pygaze_init.png │ │ │ │ │ │ ├── os-pygaze_log.png │ │ │ │ │ │ ├── os-pygaze_roi.png │ │ │ │ │ │ ├── os-pygaze_start_recording.png │ │ │ │ │ │ ├── os-pygaze_stop_recording.png │ │ │ │ │ │ ├── os-pygaze_wait.png │ │ │ │ │ │ ├── os-repeat_cycle.png │ │ │ │ │ │ ├── os-reset_feedback.png │ │ │ │ │ │ ├── os-sampler.png │ │ │ │ │ │ ├── os-sequence.png │ │ │ │ │ │ ├── os-sketchpad.png │ │ │ │ │ │ ├── os-synth.png │ │ │ │ │ │ └── os-touch_response.png │ │ │ │ │ ├── mimetypes │ │ │ │ │ │ ├── application-rss+xml.png │ │ │ │ │ │ ├── application-x-executable.png │ │ │ │ │ │ ├── x-office-address-book.png │ │ │ │ │ │ └── x-office-calendar.png │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── os-color-picker.png │ │ │ │ │ │ ├── os-debug.png │ │ │ │ │ │ ├── os-experiment.png │ │ │ │ │ │ ├── os-finished-error.png │ │ │ │ │ │ ├── os-finished-success.png │ │ │ │ │ │ ├── os-finished-user-interrupt.png │ │ │ │ │ │ ├── os-inspector.png │ │ │ │ │ │ └── os-view-controls.png │ │ │ │ │ ├── places │ │ │ │ │ │ ├── distributor-logo-android.png │ │ │ │ │ │ ├── distributor-logo-antergos.png │ │ │ │ │ │ ├── distributor-logo-archlinux.png │ │ │ │ │ │ ├── distributor-logo-crunchbang.png │ │ │ │ │ │ ├── distributor-logo-debian.png │ │ │ │ │ │ ├── distributor-logo-deepin.png │ │ │ │ │ │ ├── distributor-logo-edubuntu.png │ │ │ │ │ │ ├── distributor-logo-elementary.png │ │ │ │ │ │ ├── distributor-logo-fedora.png │ │ │ │ │ │ ├── distributor-logo-frugalware.png │ │ │ │ │ │ ├── distributor-logo-gentoo.png │ │ │ │ │ │ ├── distributor-logo-kubuntu.png │ │ │ │ │ │ ├── distributor-logo-linux-mint.png │ │ │ │ │ │ ├── distributor-logo-mageia.png │ │ │ │ │ │ ├── distributor-logo-mandriva.png │ │ │ │ │ │ ├── distributor-logo-manjaro.png │ │ │ │ │ │ ├── distributor-logo-opensuse.png │ │ │ │ │ │ ├── distributor-logo-slackware.png │ │ │ │ │ │ ├── distributor-logo-steamos.png │ │ │ │ │ │ ├── distributor-logo-ubuntu-gnome.png │ │ │ │ │ │ ├── distributor-logo-ubuntu-mate.png │ │ │ │ │ │ ├── distributor-logo-ubuntu.png │ │ │ │ │ │ ├── distributor-logo-windows.png │ │ │ │ │ │ ├── folder-remote.png │ │ │ │ │ │ ├── network-workgroup.png │ │ │ │ │ │ ├── user-bookmarks.png │ │ │ │ │ │ ├── user-desktop.png │ │ │ │ │ │ ├── user-trash-full.png │ │ │ │ │ │ └── user-trash.png │ │ │ │ │ ├── status │ │ │ │ │ │ ├── dialog-error.png │ │ │ │ │ │ ├── dialog-info.png │ │ │ │ │ │ ├── dialog-question.png │ │ │ │ │ │ ├── dialog-warning.png │ │ │ │ │ │ ├── security-high.png │ │ │ │ │ │ ├── security-low.png │ │ │ │ │ │ └── security-medium.png │ │ │ │ │ ├── unity │ │ │ │ │ │ └── launcher_bfb.png │ │ │ │ │ └── web │ │ │ │ │ │ ├── web-aim.png │ │ │ │ │ │ ├── web-airdroid.png │ │ │ │ │ │ ├── web-amazon.png │ │ │ │ │ │ ├── web-angry-birds.png │ │ │ │ │ │ ├── web-anydo.png │ │ │ │ │ │ ├── web-blogger.png │ │ │ │ │ │ ├── web-chrome-web-store.png │ │ │ │ │ │ ├── web-circ.png │ │ │ │ │ │ ├── web-copy.png │ │ │ │ │ │ ├── web-deviantart.png │ │ │ │ │ │ ├── web-duolingo.png │ │ │ │ │ │ ├── web-ebay.png │ │ │ │ │ │ ├── web-evernote.png │ │ │ │ │ │ ├── web-facebook-messenger.png │ │ │ │ │ │ ├── web-facebook.png │ │ │ │ │ │ ├── web-fastmail.png │ │ │ │ │ │ ├── web-feedly.png │ │ │ │ │ │ ├── web-flickr.png │ │ │ │ │ │ ├── web-foursquare.png │ │ │ │ │ │ ├── web-gadugadu.png │ │ │ │ │ │ ├── web-github.png │ │ │ │ │ │ ├── web-gizmo.png │ │ │ │ │ │ ├── web-google-apps-script.png │ │ │ │ │ │ ├── web-google-calendar.png │ │ │ │ │ │ ├── web-google-cast.png │ │ │ │ │ │ ├── web-google-docs.png │ │ │ │ │ │ ├── web-google-drawings.png │ │ │ │ │ │ ├── web-google-drive-old.png │ │ │ │ │ │ ├── web-google-drive.png │ │ │ │ │ │ ├── web-google-earth.png │ │ │ │ │ │ ├── web-google-forms.png │ │ │ │ │ │ ├── web-google-fusion-tables.png │ │ │ │ │ │ ├── web-google-gmail-offline.png │ │ │ │ │ │ ├── web-google-gmail.png │ │ │ │ │ │ ├── web-google-hangouts.png │ │ │ │ │ │ ├── web-google-keep.png │ │ │ │ │ │ ├── web-google-maps.png │ │ │ │ │ │ ├── web-google-photos.png │ │ │ │ │ │ ├── web-google-play-books.png │ │ │ │ │ │ ├── web-google-play-movies.png │ │ │ │ │ │ ├── web-google-play-music.png │ │ │ │ │ │ ├── web-google-play.png │ │ │ │ │ │ ├── web-google-plus.png │ │ │ │ │ │ ├── web-google-sheets.png │ │ │ │ │ │ ├── web-google-slides.png │ │ │ │ │ │ ├── web-google-wallet.png │ │ │ │ │ │ ├── web-google-youtube.png │ │ │ │ │ │ ├── web-google.png │ │ │ │ │ │ ├── web-grooveshark.png │ │ │ │ │ │ ├── web-html.png │ │ │ │ │ │ ├── web-hulu.png │ │ │ │ │ │ ├── web-icq.png │ │ │ │ │ │ ├── web-identica.png │ │ │ │ │ │ ├── web-instagram.png │ │ │ │ │ │ ├── web-irc.png │ │ │ │ │ │ ├── web-jolicloud.png │ │ │ │ │ │ ├── web-khan-academy.png │ │ │ │ │ │ ├── web-kindle.png │ │ │ │ │ │ ├── web-lastfm.png │ │ │ │ │ │ ├── web-lastpass.png │ │ │ │ │ │ ├── web-launchpad.png │ │ │ │ │ │ ├── web-linkedin.png │ │ │ │ │ │ ├── web-mailru.png │ │ │ │ │ │ ├── web-meanwhile.png │ │ │ │ │ │ ├── web-memrise.png │ │ │ │ │ │ ├── web-microsoft-onedrive.png │ │ │ │ │ │ ├── web-microsoft.png │ │ │ │ │ │ ├── web-mint.png │ │ │ │ │ │ ├── web-mxit.png │ │ │ │ │ │ ├── web-myspace.png │ │ │ │ │ │ ├── web-netflix.png │ │ │ │ │ │ ├── web-newsblur.png │ │ │ │ │ │ ├── web-novell.png │ │ │ │ │ │ ├── web-omg-chrome.png │ │ │ │ │ │ ├── web-omgubuntu.png │ │ │ │ │ │ ├── web-onenote.png │ │ │ │ │ │ ├── web-outlook.png │ │ │ │ │ │ ├── web-pandora.png │ │ │ │ │ │ ├── web-paypal.png │ │ │ │ │ │ ├── web-pocket.png │ │ │ │ │ │ ├── web-rdio.png │ │ │ │ │ │ ├── web-reddit.png │ │ │ │ │ │ ├── web-slack.png │ │ │ │ │ │ ├── web-soundcloud.png │ │ │ │ │ │ ├── web-spotify.png │ │ │ │ │ │ ├── web-sunrise-calendar.png │ │ │ │ │ │ ├── web-telegram.png │ │ │ │ │ │ ├── web-trello.png │ │ │ │ │ │ ├── web-tumblr.png │ │ │ │ │ │ ├── web-twitter.png │ │ │ │ │ │ ├── web-viber.png │ │ │ │ │ │ ├── web-vimeo.png │ │ │ │ │ │ ├── web-vk.png │ │ │ │ │ │ ├── web-wikipedia.png │ │ │ │ │ │ ├── web-wolfram-alpha.png │ │ │ │ │ │ ├── web-wordpress.png │ │ │ │ │ │ ├── web-wunderlist.png │ │ │ │ │ │ ├── web-yahoo.png │ │ │ │ │ │ └── web-zephyr.png │ │ │ │ ├── 32x32 │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── document-new.png │ │ │ │ │ │ ├── document-open.png │ │ │ │ │ │ ├── document-save.png │ │ │ │ │ │ ├── os-kill.png │ │ │ │ │ │ ├── os-overview.png │ │ │ │ │ │ ├── os-run-browser.png │ │ │ │ │ │ ├── os-run-in-window.png │ │ │ │ │ │ ├── os-run-quick.png │ │ │ │ │ │ ├── os-run.png │ │ │ │ │ │ ├── system-log-out.png │ │ │ │ │ │ ├── system-restart.png │ │ │ │ │ │ ├── system-run.png │ │ │ │ │ │ ├── system-shutdown.png │ │ │ │ │ │ ├── system-sleep.png │ │ │ │ │ │ └── system-suspend.png │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── 0ad.png │ │ │ │ │ │ ├── 2048.png │ │ │ │ │ │ ├── QtProject-qtcreator.png │ │ │ │ │ │ ├── abiword.png │ │ │ │ │ │ ├── accessories-calculator.png │ │ │ │ │ │ ├── accessories-camera.png │ │ │ │ │ │ ├── accessories-character-map.png │ │ │ │ │ │ ├── accessories-clipboard.png │ │ │ │ │ │ ├── accessories-dictionary.png │ │ │ │ │ │ ├── accessories-document-viewer.png │ │ │ │ │ │ ├── accessories-media-converter.png │ │ │ │ │ │ ├── accessories-painting.png │ │ │ │ │ │ ├── accessories-podcast.png │ │ │ │ │ │ ├── accessories-system-cleaner.png │ │ │ │ │ │ ├── accessories-text-editor.png │ │ │ │ │ │ ├── accessories-thesaurus.png │ │ │ │ │ │ ├── acetoneiso.png │ │ │ │ │ │ ├── acroread.png │ │ │ │ │ │ ├── addressbook.png │ │ │ │ │ │ ├── adobe-air.png │ │ │ │ │ │ ├── aisleriot.png │ │ │ │ │ │ ├── amarok.png │ │ │ │ │ │ ├── android-studio.png │ │ │ │ │ │ ├── anjuta.png │ │ │ │ │ │ ├── anki.png │ │ │ │ │ │ ├── app-launcher.png │ │ │ │ │ │ ├── applets-screenshooter.png │ │ │ │ │ │ ├── aptanastudio.png │ │ │ │ │ │ ├── archive-manager.png │ │ │ │ │ │ ├── ardour.png │ │ │ │ │ │ ├── arduino-ide.png │ │ │ │ │ │ ├── arista.png │ │ │ │ │ │ ├── aseprite.png │ │ │ │ │ │ ├── assistant-qt4.png │ │ │ │ │ │ ├── astahc.png │ │ │ │ │ │ ├── atom.png │ │ │ │ │ │ ├── audacious.png │ │ │ │ │ │ ├── audacity.png │ │ │ │ │ │ ├── audio-equalizer.png │ │ │ │ │ │ ├── authy.png │ │ │ │ │ │ ├── autokey.png │ │ │ │ │ │ ├── avast.png │ │ │ │ │ │ ├── banshee.png │ │ │ │ │ │ ├── battlenet.png │ │ │ │ │ │ ├── birdie.png │ │ │ │ │ │ ├── bitcoin.png │ │ │ │ │ │ ├── bitdefender.png │ │ │ │ │ │ ├── bittorrentsync.png │ │ │ │ │ │ ├── bitwig-studio.png │ │ │ │ │ │ ├── bleachbit.png │ │ │ │ │ │ ├── blender.png │ │ │ │ │ │ ├── bluefish.png │ │ │ │ │ │ ├── bluetooth.png │ │ │ │ │ │ ├── boincmgr.png │ │ │ │ │ │ ├── bokken.png │ │ │ │ │ │ ├── bootloader.png │ │ │ │ │ │ ├── brackets.png │ │ │ │ │ │ ├── budgie.png │ │ │ │ │ │ ├── byobu.png │ │ │ │ │ │ ├── caffeine.png │ │ │ │ │ │ ├── cairo-dock.png │ │ │ │ │ │ ├── calendar.png │ │ │ │ │ │ ├── calibre.png │ │ │ │ │ │ ├── ccc_large.png │ │ │ │ │ │ ├── ccsm.png │ │ │ │ │ │ ├── checkbox.png │ │ │ │ │ │ ├── cheese.png │ │ │ │ │ │ ├── cherrytree.png │ │ │ │ │ │ ├── chess.png │ │ │ │ │ │ ├── chrome-app-list.png │ │ │ │ │ │ ├── chromium-browser-old.png │ │ │ │ │ │ ├── chromium-browser.png │ │ │ │ │ │ ├── clamav.png │ │ │ │ │ │ ├── clementine.png │ │ │ │ │ │ ├── clinica.png │ │ │ │ │ │ ├── clipgrab.png │ │ │ │ │ │ ├── clock.png │ │ │ │ │ │ ├── cmplayer.png │ │ │ │ │ │ ├── codeblocks.png │ │ │ │ │ │ ├── colorhug-ccmx.png │ │ │ │ │ │ ├── colorhug-flash.png │ │ │ │ │ │ ├── colorhug.png │ │ │ │ │ │ ├── comix.png │ │ │ │ │ │ ├── conky-manager.png │ │ │ │ │ │ ├── corebird.png │ │ │ │ │ │ ├── counter-strike.png │ │ │ │ │ │ ├── crossover.png │ │ │ │ │ │ ├── cs-tiling.png │ │ │ │ │ │ ├── curlew.png │ │ │ │ │ │ ├── d-feet.png │ │ │ │ │ │ ├── darktable.png │ │ │ │ │ │ ├── dart.png │ │ │ │ │ │ ├── dasher.png │ │ │ │ │ │ ├── dconf-editor.png │ │ │ │ │ │ ├── deadbeef.png │ │ │ │ │ │ ├── deepin-media-player.png │ │ │ │ │ │ ├── deja-dup.png │ │ │ │ │ │ ├── deluge.png │ │ │ │ │ │ ├── designer-qt4.png │ │ │ │ │ │ ├── desktop-environment-gnome.png │ │ │ │ │ │ ├── desktop-environment-kde.png │ │ │ │ │ │ ├── desktop-environment-lxde.png │ │ │ │ │ │ ├── desktop-environment-mate.png │ │ │ │ │ │ ├── desktop-environment-unity.png │ │ │ │ │ │ ├── desktop-environment-xfce.png │ │ │ │ │ │ ├── desktop-magnifier.png │ │ │ │ │ │ ├── desktop-tweaks.png │ │ │ │ │ │ ├── desura.png │ │ │ │ │ │ ├── devhelp.png │ │ │ │ │ │ ├── dia.png │ │ │ │ │ │ ├── digikam.png │ │ │ │ │ │ ├── direct-connect.png │ │ │ │ │ │ ├── disk-burner.png │ │ │ │ │ │ ├── disk-usage-analyzer.png │ │ │ │ │ │ ├── display.im6.png │ │ │ │ │ │ ├── docky.png │ │ │ │ │ │ ├── dogecoin.png │ │ │ │ │ │ ├── dolphin-emu.png │ │ │ │ │ │ ├── dosbox.png │ │ │ │ │ │ ├── dota2.png │ │ │ │ │ │ ├── doublecmd.png │ │ │ │ │ │ ├── dropbox.png │ │ │ │ │ │ ├── ds-emulator.png │ │ │ │ │ │ ├── dvdrip.png │ │ │ │ │ │ ├── dvdstyler.png │ │ │ │ │ │ ├── earth.png │ │ │ │ │ │ ├── easytag.png │ │ │ │ │ │ ├── eclipse.png │ │ │ │ │ │ ├── eidete.png │ │ │ │ │ │ ├── ekiga.png │ │ │ │ │ │ ├── elegance-colors.png │ │ │ │ │ │ ├── emacs.png │ │ │ │ │ │ ├── emerald.png │ │ │ │ │ │ ├── empathy.png │ │ │ │ │ │ ├── emule.png │ │ │ │ │ │ ├── espeak.png │ │ │ │ │ │ ├── ettercap.png │ │ │ │ │ │ ├── eufloria.png │ │ │ │ │ │ ├── exfalso.png │ │ │ │ │ │ ├── extensions.png │ │ │ │ │ │ ├── fbreader.png │ │ │ │ │ │ ├── fedora-release-notes.png │ │ │ │ │ │ ├── fedora-utils.png │ │ │ │ │ │ ├── fedorautils.png │ │ │ │ │ │ ├── fez.png │ │ │ │ │ │ ├── filebot.png │ │ │ │ │ │ ├── filezilla.png │ │ │ │ │ │ ├── finalterm.png │ │ │ │ │ │ ├── firefox-nightly.png │ │ │ │ │ │ ├── firefox-trunk.png │ │ │ │ │ │ ├── firefox.png │ │ │ │ │ │ ├── firewall.png │ │ │ │ │ │ ├── fitbit.png │ │ │ │ │ │ ├── five-or-more.png │ │ │ │ │ │ ├── flash.png │ │ │ │ │ │ ├── fluxgui.png │ │ │ │ │ │ ├── focuswriter.png │ │ │ │ │ │ ├── fontforge.png │ │ │ │ │ │ ├── four-in-a-row.png │ │ │ │ │ │ ├── freemind.png │ │ │ │ │ │ ├── friends.png │ │ │ │ │ │ ├── frostwire.png │ │ │ │ │ │ ├── gajim.png │ │ │ │ │ │ ├── gameconqueror.png │ │ │ │ │ │ ├── gaupol.png │ │ │ │ │ │ ├── gba.png │ │ │ │ │ │ ├── gbrainy.png │ │ │ │ │ │ ├── gcolor2.png │ │ │ │ │ │ ├── geany.png │ │ │ │ │ │ ├── gelemental.png │ │ │ │ │ │ ├── gensgs.png │ │ │ │ │ │ ├── genymotion.png │ │ │ │ │ │ ├── geogebra.png │ │ │ │ │ │ ├── gfeedline.png │ │ │ │ │ │ ├── ghex.png │ │ │ │ │ │ ├── gimp.png │ │ │ │ │ │ ├── gitg.png │ │ │ │ │ │ ├── gksu-root-terminal.png │ │ │ │ │ │ ├── glade.png │ │ │ │ │ │ ├── glippy.png │ │ │ │ │ │ ├── gloobus-preview.png │ │ │ │ │ │ ├── gmpc.png │ │ │ │ │ │ ├── gmusicbrowser.png │ │ │ │ │ │ ├── gnac.png │ │ │ │ │ │ ├── gnome-boxes.png │ │ │ │ │ │ ├── gnome-break-timer.png │ │ │ │ │ │ ├── gnome-clocks.png │ │ │ │ │ │ ├── gnome-disks.png │ │ │ │ │ │ ├── gnome-do.png │ │ │ │ │ │ ├── gnome-documents.png │ │ │ │ │ │ ├── gnome-klotski.png │ │ │ │ │ │ ├── gnome-music.png │ │ │ │ │ │ ├── gnome-nettool.png │ │ │ │ │ │ ├── gnome-nibbles.png │ │ │ │ │ │ ├── gnome-photos.png │ │ │ │ │ │ ├── gnome-power-statistics.png │ │ │ │ │ │ ├── gnome-robots.png │ │ │ │ │ │ ├── gnome-software.png │ │ │ │ │ │ ├── gnome-sound-recorder.png │ │ │ │ │ │ ├── gnome-subtitles.png │ │ │ │ │ │ ├── gnome-tali.png │ │ │ │ │ │ ├── gnome-tetravex.png │ │ │ │ │ │ ├── gnome-tweak-tool.png │ │ │ │ │ │ ├── gnome-weather.png │ │ │ │ │ │ ├── gnomines.png │ │ │ │ │ │ ├── gnu-r.png │ │ │ │ │ │ ├── gnucash.png │ │ │ │ │ │ ├── gnumeric.png │ │ │ │ │ │ ├── gnupg.png │ │ │ │ │ │ ├── godot.png │ │ │ │ │ │ ├── google-chrome-beta.png │ │ │ │ │ │ ├── google-chrome-old.png │ │ │ │ │ │ ├── google-chrome-unstable.png │ │ │ │ │ │ ├── google-chrome.png │ │ │ │ │ │ ├── google-music-manager.png │ │ │ │ │ │ ├── google-webdesigner.png │ │ │ │ │ │ ├── gparted.png │ │ │ │ │ │ ├── gpick.png │ │ │ │ │ │ ├── gpk-service-pack.png │ │ │ │ │ │ ├── gpodder.png │ │ │ │ │ │ ├── gramps.png │ │ │ │ │ │ ├── grsync.png │ │ │ │ │ │ ├── gstreamer.png │ │ │ │ │ │ ├── gtg.png │ │ │ │ │ │ ├── gthumb.png │ │ │ │ │ │ ├── gtk-recordmydesktop.png │ │ │ │ │ │ ├── gtkpod.png │ │ │ │ │ │ ├── guake.png │ │ │ │ │ │ ├── guayadeque.png │ │ │ │ │ │ ├── gummi.png │ │ │ │ │ │ ├── gvim.png │ │ │ │ │ │ ├── gwibber.png │ │ │ │ │ │ ├── haguichi.png │ │ │ │ │ │ ├── half-life.png │ │ │ │ │ │ ├── half-life2.png │ │ │ │ │ │ ├── hamster.png │ │ │ │ │ │ ├── handbrake.png │ │ │ │ │ │ ├── help-about.png │ │ │ │ │ │ ├── hexchat.png │ │ │ │ │ │ ├── higan.png │ │ │ │ │ │ ├── hipchat.png │ │ │ │ │ │ ├── homebank.png │ │ │ │ │ │ ├── hp-logo.png │ │ │ │ │ │ ├── hplip.png │ │ │ │ │ │ ├── hugin.png │ │ │ │ │ │ ├── hydrogen.png │ │ │ │ │ │ ├── iagno.png │ │ │ │ │ │ ├── ibus-bopomofo.png │ │ │ │ │ │ ├── ibus-pinyin.png │ │ │ │ │ │ ├── ibus.png │ │ │ │ │ │ ├── icedove.png │ │ │ │ │ │ ├── iceweasel.png │ │ │ │ │ │ ├── inkscape.png │ │ │ │ │ │ ├── insync.png │ │ │ │ │ │ ├── intel-linux-graphics-installer.png │ │ │ │ │ │ ├── intellij-idea.png │ │ │ │ │ │ ├── internet-mail.png │ │ │ │ │ │ ├── internet-news-reader.png │ │ │ │ │ │ ├── internet-telephony.png │ │ │ │ │ │ ├── internet-web-browser.png │ │ │ │ │ │ ├── jabber.png │ │ │ │ │ │ ├── jack.png │ │ │ │ │ │ ├── jamin.png │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ ├── jdownloader.png │ │ │ │ │ │ ├── jockey.png │ │ │ │ │ │ ├── jokosher.png │ │ │ │ │ │ ├── juk.png │ │ │ │ │ │ ├── kazam.png │ │ │ │ │ │ ├── keepass.png │ │ │ │ │ │ ├── kile.png │ │ │ │ │ │ ├── kingsoft-presentation.png │ │ │ │ │ │ ├── kingsoft-spreadsheets.png │ │ │ │ │ │ ├── kingsoft-writer.png │ │ │ │ │ │ ├── kmymoney.png │ │ │ │ │ │ ├── komodo.png │ │ │ │ │ │ ├── konqueror.png │ │ │ │ │ │ ├── konversation.png │ │ │ │ │ │ ├── kopete.png │ │ │ │ │ │ ├── krita.png │ │ │ │ │ │ ├── ktorrent.png │ │ │ │ │ │ ├── lazarus.png │ │ │ │ │ │ ├── leafpad.png │ │ │ │ │ │ ├── left-for-dead.png │ │ │ │ │ │ ├── libreoffice-base.png │ │ │ │ │ │ ├── libreoffice-calc.png │ │ │ │ │ │ ├── libreoffice-draw.png │ │ │ │ │ │ ├── libreoffice-impress.png │ │ │ │ │ │ ├── libreoffice-main.png │ │ │ │ │ │ ├── libreoffice-math.png │ │ │ │ │ │ ├── libreoffice-writer.png │ │ │ │ │ │ ├── lightsoff.png │ │ │ │ │ │ ├── lightworks.png │ │ │ │ │ │ ├── lightzone.png │ │ │ │ │ │ ├── linguist-qt4.png │ │ │ │ │ │ ├── linthesia.png │ │ │ │ │ │ ├── lmms.png │ │ │ │ │ │ ├── logviewer.png │ │ │ │ │ │ ├── luminance-hdr.png │ │ │ │ │ │ ├── lutris.png │ │ │ │ │ │ ├── lxmusic.png │ │ │ │ │ │ ├── lyx.png │ │ │ │ │ │ ├── mahjongg.png │ │ │ │ │ │ ├── manaplus.png │ │ │ │ │ │ ├── mathematica.png │ │ │ │ │ │ ├── matlab.png │ │ │ │ │ │ ├── maxthon.png │ │ │ │ │ │ ├── mc.png │ │ │ │ │ │ ├── meld.png │ │ │ │ │ │ ├── mendeley.png │ │ │ │ │ │ ├── menu-editor.png │ │ │ │ │ │ ├── midori.png │ │ │ │ │ │ ├── minecraft.png │ │ │ │ │ │ ├── minitube.png │ │ │ │ │ │ ├── miro.png │ │ │ │ │ │ ├── mixxx.png │ │ │ │ │ │ ├── mkv-gui.png │ │ │ │ │ │ ├── mkvinfo.png │ │ │ │ │ │ ├── moka.png │ │ │ │ │ │ ├── moneydance.png │ │ │ │ │ │ ├── mongodb.png │ │ │ │ │ │ ├── mono-runtime-common.png │ │ │ │ │ │ ├── monodevelop.png │ │ │ │ │ │ ├── mpd.png │ │ │ │ │ │ ├── mplayer.png │ │ │ │ │ │ ├── mpv.png │ │ │ │ │ │ ├── ms-excel.png │ │ │ │ │ │ ├── ms-powerpoint.png │ │ │ │ │ │ ├── ms-word.png │ │ │ │ │ │ ├── multimedia-audio-player.png │ │ │ │ │ │ ├── multimedia-photo-viewer.png │ │ │ │ │ │ ├── multimedia-video-player.png │ │ │ │ │ │ ├── multisystem.png │ │ │ │ │ │ ├── mumble.png │ │ │ │ │ │ ├── muon.png │ │ │ │ │ │ ├── musescore.png │ │ │ │ │ │ ├── musique.png │ │ │ │ │ │ ├── mysql-workbench.png │ │ │ │ │ │ ├── nemiver.png │ │ │ │ │ │ ├── nemo.png │ │ │ │ │ │ ├── nepomuk.png │ │ │ │ │ │ ├── netbeans.png │ │ │ │ │ │ ├── nexuiz.png │ │ │ │ │ │ ├── nicotine.png │ │ │ │ │ │ ├── ninja-ide.png │ │ │ │ │ │ ├── nitrotasks.png │ │ │ │ │ │ ├── notes.png │ │ │ │ │ │ ├── ntfs-config.png │ │ │ │ │ │ ├── nuvolaplayer.png │ │ │ │ │ │ ├── nvidia-settings.png │ │ │ │ │ │ ├── obconf.png │ │ │ │ │ │ ├── octave.png │ │ │ │ │ │ ├── octopi.png │ │ │ │ │ │ ├── onboard.png │ │ │ │ │ │ ├── openshot.png │ │ │ │ │ │ ├── openttd.png │ │ │ │ │ │ ├── opera.png │ │ │ │ │ │ ├── owncloud.png │ │ │ │ │ │ ├── oxygen.png │ │ │ │ │ │ ├── panel-applets.png │ │ │ │ │ │ ├── panel.png │ │ │ │ │ │ ├── parole.png │ │ │ │ │ │ ├── passwords.png │ │ │ │ │ │ ├── patchage.png │ │ │ │ │ │ ├── pdfmod.png │ │ │ │ │ │ ├── pdfshuffler.png │ │ │ │ │ │ ├── pencil.png │ │ │ │ │ │ ├── phpmyadmin.png │ │ │ │ │ │ ├── picard.png │ │ │ │ │ │ ├── pidgin.png │ │ │ │ │ │ ├── pithos.png │ │ │ │ │ │ ├── plank.png │ │ │ │ │ │ ├── plasma.png │ │ │ │ │ │ ├── playonlinux.png │ │ │ │ │ │ ├── plex.png │ │ │ │ │ │ ├── poedit.png │ │ │ │ │ │ ├── polari.png │ │ │ │ │ │ ├── polly.png │ │ │ │ │ │ ├── popcorntime.png │ │ │ │ │ │ ├── portal.png │ │ │ │ │ │ ├── postgresql.png │ │ │ │ │ │ ├── pragha.png │ │ │ │ │ │ ├── preferences-bluetooth.png │ │ │ │ │ │ ├── preferences-color.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-online-accounts.png │ │ │ │ │ │ ├── preferences-desktop-screensaver.png │ │ │ │ │ │ ├── preferences-desktop-theme.png │ │ │ │ │ │ ├── preferences-desktop-user.png │ │ │ │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ │ │ │ ├── preferences-kcalc-constants.png │ │ │ │ │ │ ├── preferences-management-service.png │ │ │ │ │ │ ├── preferences-plugins.png │ │ │ │ │ │ ├── preferences-system-bluetooth-inactive.png │ │ │ │ │ │ ├── preferences-system-brightness-lock.png │ │ │ │ │ │ ├── preferences-system-hotcorners.png │ │ │ │ │ │ ├── preferences-system-login.png │ │ │ │ │ │ ├── preferences-system-network.png │ │ │ │ │ │ ├── preferences-system-notifications.png │ │ │ │ │ │ ├── preferences-system-power.png │ │ │ │ │ │ ├── preferences-system-privacy.png │ │ │ │ │ │ ├── preferences-system-search.png │ │ │ │ │ │ ├── preferences-system-sharing.png │ │ │ │ │ │ ├── preferences-system-sound.png │ │ │ │ │ │ ├── preferences-system-time.png │ │ │ │ │ │ ├── preferences-system-windows.png │ │ │ │ │ │ ├── preferences-system.png │ │ │ │ │ │ ├── preferences-web-browser-cookies.png │ │ │ │ │ │ ├── preferences-web-browser-stylesheets.png │ │ │ │ │ │ ├── psensor.png │ │ │ │ │ │ ├── puddletag.png │ │ │ │ │ │ ├── putty.png │ │ │ │ │ │ ├── pycad.png │ │ │ │ │ │ ├── pycharm.png │ │ │ │ │ │ ├── pyrenamer.png │ │ │ │ │ │ ├── python.png │ │ │ │ │ │ ├── qcad.png │ │ │ │ │ │ ├── qr-creator.png │ │ │ │ │ │ ├── qsynth.png │ │ │ │ │ │ ├── qtconfig-qt4.png │ │ │ │ │ │ ├── qtiplot.png │ │ │ │ │ │ ├── quadrapassel.png │ │ │ │ │ │ ├── quassel.png │ │ │ │ │ │ ├── quiterss.png │ │ │ │ │ │ ├── quodlibet.png │ │ │ │ │ │ ├── qupzilla.png │ │ │ │ │ │ ├── radiotray.png │ │ │ │ │ │ ├── rapid-photo-downloader.png │ │ │ │ │ │ ├── rawtherapee.png │ │ │ │ │ │ ├── reditr.png │ │ │ │ │ │ ├── redshift.png │ │ │ │ │ │ ├── remote-desktop.png │ │ │ │ │ │ ├── retext.png │ │ │ │ │ │ ├── rhythmbox.png │ │ │ │ │ │ ├── rstudio.png │ │ │ │ │ │ ├── rubymine.png │ │ │ │ │ │ ├── rygel.png │ │ │ │ │ │ ├── samba.png │ │ │ │ │ │ ├── screenruler.png │ │ │ │ │ │ ├── scribus.png │ │ │ │ │ │ ├── selinux.png │ │ │ │ │ │ ├── sencha-animator.png │ │ │ │ │ │ ├── serious-sam3-bfe.png │ │ │ │ │ │ ├── session-properties.png │ │ │ │ │ │ ├── shotwell.png │ │ │ │ │ │ ├── shutter.png │ │ │ │ │ │ ├── sigil.png │ │ │ │ │ │ ├── sketchup.png │ │ │ │ │ │ ├── skype.png │ │ │ │ │ │ ├── smuxi.png │ │ │ │ │ │ ├── software-properties.png │ │ │ │ │ │ ├── solaar.png │ │ │ │ │ │ ├── sound-juicer.png │ │ │ │ │ │ ├── sparkleshare.png │ │ │ │ │ │ ├── springseed.png │ │ │ │ │ │ ├── sqldeveloper.png │ │ │ │ │ │ ├── steam.png │ │ │ │ │ │ ├── stellarium.png │ │ │ │ │ │ ├── stormcloud.png │ │ │ │ │ │ ├── subdownloader.png │ │ │ │ │ │ ├── sublime-text.png │ │ │ │ │ │ ├── sudoku.png │ │ │ │ │ │ ├── sunflower.png │ │ │ │ │ │ ├── supertuxkart.png │ │ │ │ │ │ ├── swell-foop.png │ │ │ │ │ │ ├── synapse.png │ │ │ │ │ │ ├── synergy.png │ │ │ │ │ │ ├── system-error.png │ │ │ │ │ │ ├── system-file-manager.png │ │ │ │ │ │ ├── system-help.png │ │ │ │ │ │ ├── system-lock-screen.png │ │ │ │ │ │ ├── system-remixer.png │ │ │ │ │ │ ├── system-software-install.png │ │ │ │ │ │ ├── system-software-package-manager.png │ │ │ │ │ │ ├── system-software-update.png │ │ │ │ │ │ ├── system76.png │ │ │ │ │ │ ├── team-fortress-2.png │ │ │ │ │ │ ├── teamspeak.png │ │ │ │ │ │ ├── teamviewer.png │ │ │ │ │ │ ├── telepathy-kde.png │ │ │ │ │ │ ├── terminator.png │ │ │ │ │ │ ├── texmaker.png │ │ │ │ │ │ ├── texstudio.png │ │ │ │ │ │ ├── texworks.png │ │ │ │ │ │ ├── thunderbird-old.png │ │ │ │ │ │ ├── thunderbird.png │ │ │ │ │ │ ├── tomahawk.png │ │ │ │ │ │ ├── totem.png │ │ │ │ │ │ ├── transmageddon.png │ │ │ │ │ │ ├── transmission.png │ │ │ │ │ │ ├── trillian.png │ │ │ │ │ │ ├── truecrypt.png │ │ │ │ │ │ ├── turpial.png │ │ │ │ │ │ ├── tuxguitar.png │ │ │ │ │ │ ├── tweetdeck.png │ │ │ │ │ │ ├── typecatcher.png │ │ │ │ │ │ ├── uberwriter.png │ │ │ │ │ │ ├── ubuntu-sdk.png │ │ │ │ │ │ ├── ubuntu-tweak.png │ │ │ │ │ │ ├── ubuntuone-music.png │ │ │ │ │ │ ├── ubuntuone.png │ │ │ │ │ │ ├── ufraw.png │ │ │ │ │ │ ├── uget.png │ │ │ │ │ │ ├── umplayer.png │ │ │ │ │ │ ├── unison-gtk.png │ │ │ │ │ │ ├── unity-lens-photos.png │ │ │ │ │ │ ├── unity-scope-gdrive.png │ │ │ │ │ │ ├── unity-tweak-tool.png │ │ │ │ │ │ ├── usb-creator-gtk.png │ │ │ │ │ │ ├── user-info.png │ │ │ │ │ │ ├── utilities-system-monitor.png │ │ │ │ │ │ ├── utilities-terminal.png │ │ │ │ │ │ ├── vala.png │ │ │ │ │ │ ├── varicad.png │ │ │ │ │ │ ├── variety.png │ │ │ │ │ │ ├── venom.png │ │ │ │ │ │ ├── verbiste.png │ │ │ │ │ │ ├── vidalia.png │ │ │ │ │ │ ├── video-editor.png │ │ │ │ │ │ ├── viewnior.png │ │ │ │ │ │ ├── vineyard.png │ │ │ │ │ │ ├── virt-manager.png │ │ │ │ │ │ ├── virtualbox.png │ │ │ │ │ │ ├── vlc.png │ │ │ │ │ │ ├── vmware-player.png │ │ │ │ │ │ ├── vmware-workstation.png │ │ │ │ │ │ ├── vocal.png │ │ │ │ │ │ ├── warsow.png │ │ │ │ │ │ ├── wayland.png │ │ │ │ │ │ ├── webide.png │ │ │ │ │ │ ├── wesnoth-map-editor.png │ │ │ │ │ │ ├── wesnoth.png │ │ │ │ │ │ ├── wine-browser.png │ │ │ │ │ │ ├── wine-folder.png │ │ │ │ │ │ ├── wine-help.png │ │ │ │ │ │ ├── wine-notepad.png │ │ │ │ │ │ ├── wine-uninstaller.png │ │ │ │ │ │ ├── wine-wordpad.png │ │ │ │ │ │ ├── wine.png │ │ │ │ │ │ ├── winecfg.png │ │ │ │ │ │ ├── winetricks.png │ │ │ │ │ │ ├── winff.png │ │ │ │ │ │ ├── wingpanel.png │ │ │ │ │ │ ├── wireframing-app.png │ │ │ │ │ │ ├── wireshark.png │ │ │ │ │ │ ├── workspace-overview.png │ │ │ │ │ │ ├── workspace-switcher-left-bottom.png │ │ │ │ │ │ ├── workspace-switcher-right-bottom.png │ │ │ │ │ │ ├── workspace-switcher-right-top.png │ │ │ │ │ │ ├── workspace-switcher-top-left.png │ │ │ │ │ │ ├── wuala.png │ │ │ │ │ │ ├── xampp.png │ │ │ │ │ │ ├── xbmc.png │ │ │ │ │ │ ├── xchat.png │ │ │ │ │ │ ├── xdiagnose.png │ │ │ │ │ │ ├── xhydra.png │ │ │ │ │ │ ├── xiphos.png │ │ │ │ │ │ ├── xmind.png │ │ │ │ │ │ ├── xnoise.png │ │ │ │ │ │ ├── xonotic.png │ │ │ │ │ │ ├── xorg.png │ │ │ │ │ │ ├── xournal.png │ │ │ │ │ │ ├── xterm.png │ │ │ │ │ │ ├── y-ppa-manager.png │ │ │ │ │ │ ├── yakuake.png │ │ │ │ │ │ ├── yast.png │ │ │ │ │ │ ├── zim.png │ │ │ │ │ │ ├── zotero.png │ │ │ │ │ │ └── zsnes.png │ │ │ │ │ ├── categories │ │ │ │ │ │ ├── applications-accessories.png │ │ │ │ │ │ ├── applications-development.png │ │ │ │ │ │ ├── applications-education.png │ │ │ │ │ │ ├── applications-electronics.png │ │ │ │ │ │ ├── applications-font.png │ │ │ │ │ │ ├── applications-games.png │ │ │ │ │ │ ├── applications-graphics.png │ │ │ │ │ │ ├── applications-haskell.png │ │ │ │ │ │ ├── applications-internet.png │ │ │ │ │ │ ├── applications-java.png │ │ │ │ │ │ ├── applications-mathematics.png │ │ │ │ │ │ ├── applications-monodevelopment.png │ │ │ │ │ │ ├── applications-multimedia.png │ │ │ │ │ │ ├── applications-ocaml.png │ │ │ │ │ │ ├── applications-office.png │ │ │ │ │ │ ├── applications-other.png │ │ │ │ │ │ ├── applications-php.png │ │ │ │ │ │ ├── applications-puzzles.png │ │ │ │ │ │ ├── applications-python.png │ │ │ │ │ │ ├── applications-ruby.png │ │ │ │ │ │ ├── applications-science.png │ │ │ │ │ │ ├── applications-system.png │ │ │ │ │ │ ├── applications-utilities.png │ │ │ │ │ │ ├── preferences-desktop-default-applications.png │ │ │ │ │ │ ├── preferences-desktop-tweaks.png │ │ │ │ │ │ └── preferences-desktop.png │ │ │ │ │ ├── cursor │ │ │ │ │ │ └── cursor-pencil.png │ │ │ │ │ ├── devices │ │ │ │ │ │ ├── audio-card.png │ │ │ │ │ │ ├── camera.png │ │ │ │ │ │ ├── computer.png │ │ │ │ │ │ ├── drive-harddisk-ieee1394.png │ │ │ │ │ │ ├── drive-harddisk.png │ │ │ │ │ │ ├── drive-optical.png │ │ │ │ │ │ ├── drive-removable-media-usb.png │ │ │ │ │ │ ├── drive-removable-media.png │ │ │ │ │ │ ├── input-keyboard.png │ │ │ │ │ │ ├── input-mouse.png │ │ │ │ │ │ ├── input-tablet.png │ │ │ │ │ │ ├── media-flash.png │ │ │ │ │ │ ├── multimedia-player.png │ │ │ │ │ │ ├── network-wired.png │ │ │ │ │ │ ├── nm-device-wireless.png │ │ │ │ │ │ ├── phone.png │ │ │ │ │ │ ├── printer.png │ │ │ │ │ │ └── scanner.png │ │ │ │ │ ├── emblems │ │ │ │ │ │ ├── emblem-default.png │ │ │ │ │ │ ├── emblem-important.png │ │ │ │ │ │ ├── emblem-package.png │ │ │ │ │ │ ├── emblem-readonly.png │ │ │ │ │ │ ├── emblem-shared.png │ │ │ │ │ │ ├── emblem-symbolic-link.png │ │ │ │ │ │ ├── emblem-synchronizing.png │ │ │ │ │ │ ├── emblem-unreadable.png │ │ │ │ │ │ └── emblem-web.png │ │ │ │ │ ├── emotes │ │ │ │ │ │ └── face-smile.png │ │ │ │ │ ├── items │ │ │ │ │ │ ├── os-coroutines.png │ │ │ │ │ │ ├── os-feedback.png │ │ │ │ │ │ ├── os-form_base.png │ │ │ │ │ │ ├── os-form_consent.png │ │ │ │ │ │ ├── os-form_multiple_choice.png │ │ │ │ │ │ ├── os-form_text_display.png │ │ │ │ │ │ ├── os-form_text_input.png │ │ │ │ │ │ ├── os-inline_html.png │ │ │ │ │ │ ├── os-inline_javascript.png │ │ │ │ │ │ ├── os-inline_script-syntax-error.png │ │ │ │ │ │ ├── os-inline_script-syntax-warning.png │ │ │ │ │ │ ├── os-inline_script.png │ │ │ │ │ │ ├── os-joystick.png │ │ │ │ │ │ ├── os-keyboard_response.png │ │ │ │ │ │ ├── os-logger.png │ │ │ │ │ │ ├── os-loop.png │ │ │ │ │ │ ├── os-media_player_mpy.png │ │ │ │ │ │ ├── os-mouse_response.png │ │ │ │ │ │ ├── os-psychopy_gratingstim.png │ │ │ │ │ │ ├── os-psychopy_textstim.png │ │ │ │ │ │ ├── os-pygaze_drift_correct.png │ │ │ │ │ │ ├── os-pygaze_init.png │ │ │ │ │ │ ├── os-pygaze_log.png │ │ │ │ │ │ ├── os-pygaze_roi.png │ │ │ │ │ │ ├── os-pygaze_start_recording.png │ │ │ │ │ │ ├── os-pygaze_stop_recording.png │ │ │ │ │ │ ├── os-pygaze_wait.png │ │ │ │ │ │ ├── os-repeat_cycle.png │ │ │ │ │ │ ├── os-reset_feedback.png │ │ │ │ │ │ ├── os-sampler.png │ │ │ │ │ │ ├── os-sequence.png │ │ │ │ │ │ ├── os-sketchpad.png │ │ │ │ │ │ ├── os-synth.png │ │ │ │ │ │ └── os-touch_response.png │ │ │ │ │ ├── mimetypes │ │ │ │ │ │ ├── application-rss+xml.png │ │ │ │ │ │ ├── application-x-executable.png │ │ │ │ │ │ ├── x-office-address-book.png │ │ │ │ │ │ └── x-office-calendar.png │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── os-color-picker.png │ │ │ │ │ │ ├── os-debug.png │ │ │ │ │ │ ├── os-experiment.png │ │ │ │ │ │ ├── os-finished-error.png │ │ │ │ │ │ ├── os-finished-success.png │ │ │ │ │ │ ├── os-finished-user-interrupt.png │ │ │ │ │ │ ├── os-inspector.png │ │ │ │ │ │ ├── os-view-controls.png │ │ │ │ │ │ └── rapunzel.png │ │ │ │ │ ├── places │ │ │ │ │ │ ├── distributor-logo-android.png │ │ │ │ │ │ ├── distributor-logo-antergos.png │ │ │ │ │ │ ├── distributor-logo-archlinux.png │ │ │ │ │ │ ├── distributor-logo-crunchbang.png │ │ │ │ │ │ ├── distributor-logo-debian.png │ │ │ │ │ │ ├── distributor-logo-deepin.png │ │ │ │ │ │ ├── distributor-logo-edubuntu.png │ │ │ │ │ │ ├── distributor-logo-elementary.png │ │ │ │ │ │ ├── distributor-logo-fedora.png │ │ │ │ │ │ ├── distributor-logo-frugalware.png │ │ │ │ │ │ ├── distributor-logo-gentoo.png │ │ │ │ │ │ ├── distributor-logo-kubuntu.png │ │ │ │ │ │ ├── distributor-logo-linux-mint.png │ │ │ │ │ │ ├── distributor-logo-mageia.png │ │ │ │ │ │ ├── distributor-logo-mandriva.png │ │ │ │ │ │ ├── distributor-logo-manjaro.png │ │ │ │ │ │ ├── distributor-logo-opensuse.png │ │ │ │ │ │ ├── distributor-logo-slackware.png │ │ │ │ │ │ ├── distributor-logo-steamos.png │ │ │ │ │ │ ├── distributor-logo-ubuntu-gnome.png │ │ │ │ │ │ ├── distributor-logo-ubuntu-mate.png │ │ │ │ │ │ ├── distributor-logo-ubuntu.png │ │ │ │ │ │ ├── distributor-logo-windows.png │ │ │ │ │ │ ├── folder-remote.png │ │ │ │ │ │ ├── network-workgroup.png │ │ │ │ │ │ ├── user-bookmarks.png │ │ │ │ │ │ ├── user-desktop.png │ │ │ │ │ │ ├── user-trash-full.png │ │ │ │ │ │ └── user-trash.png │ │ │ │ │ ├── sketchpad │ │ │ │ │ │ ├── os-arrow.png │ │ │ │ │ │ ├── os-circle.png │ │ │ │ │ │ ├── os-ellipse.png │ │ │ │ │ │ ├── os-fixdot.png │ │ │ │ │ │ ├── os-gabor.png │ │ │ │ │ │ ├── os-image.png │ │ │ │ │ │ ├── os-line.png │ │ │ │ │ │ ├── os-noise.png │ │ │ │ │ │ ├── os-pointer.png │ │ │ │ │ │ ├── os-rect.png │ │ │ │ │ │ └── os-textline.png │ │ │ │ │ ├── status │ │ │ │ │ │ ├── dialog-error.png │ │ │ │ │ │ ├── dialog-info.png │ │ │ │ │ │ ├── dialog-question.png │ │ │ │ │ │ ├── dialog-warning.png │ │ │ │ │ │ ├── security-high.png │ │ │ │ │ │ ├── security-low.png │ │ │ │ │ │ └── security-medium.png │ │ │ │ │ ├── unity │ │ │ │ │ │ └── launcher_bfb.png │ │ │ │ │ └── web │ │ │ │ │ │ ├── web-aim.png │ │ │ │ │ │ ├── web-airdroid.png │ │ │ │ │ │ ├── web-amazon.png │ │ │ │ │ │ ├── web-angry-birds.png │ │ │ │ │ │ ├── web-anydo.png │ │ │ │ │ │ ├── web-blogger.png │ │ │ │ │ │ ├── web-chrome-web-store.png │ │ │ │ │ │ ├── web-circ.png │ │ │ │ │ │ ├── web-copy.png │ │ │ │ │ │ ├── web-deviantart.png │ │ │ │ │ │ ├── web-duolingo.png │ │ │ │ │ │ ├── web-ebay.png │ │ │ │ │ │ ├── web-evernote.png │ │ │ │ │ │ ├── web-facebook-messenger.png │ │ │ │ │ │ ├── web-facebook.png │ │ │ │ │ │ ├── web-fastmail.png │ │ │ │ │ │ ├── web-feedly.png │ │ │ │ │ │ ├── web-flickr.png │ │ │ │ │ │ ├── web-foursquare.png │ │ │ │ │ │ ├── web-gadugadu.png │ │ │ │ │ │ ├── web-github.png │ │ │ │ │ │ ├── web-gizmo.png │ │ │ │ │ │ ├── web-google-apps-script.png │ │ │ │ │ │ ├── web-google-calendar.png │ │ │ │ │ │ ├── web-google-cast.png │ │ │ │ │ │ ├── web-google-docs.png │ │ │ │ │ │ ├── web-google-drawings.png │ │ │ │ │ │ ├── web-google-drive-old.png │ │ │ │ │ │ ├── web-google-drive.png │ │ │ │ │ │ ├── web-google-earth.png │ │ │ │ │ │ ├── web-google-forms.png │ │ │ │ │ │ ├── web-google-fusion-tables.png │ │ │ │ │ │ ├── web-google-gmail-offline.png │ │ │ │ │ │ ├── web-google-gmail.png │ │ │ │ │ │ ├── web-google-hangouts.png │ │ │ │ │ │ ├── web-google-keep.png │ │ │ │ │ │ ├── web-google-maps.png │ │ │ │ │ │ ├── web-google-photos.png │ │ │ │ │ │ ├── web-google-play-books.png │ │ │ │ │ │ ├── web-google-play-movies.png │ │ │ │ │ │ ├── web-google-play-music.png │ │ │ │ │ │ ├── web-google-play.png │ │ │ │ │ │ ├── web-google-plus.png │ │ │ │ │ │ ├── web-google-sheets.png │ │ │ │ │ │ ├── web-google-slides.png │ │ │ │ │ │ ├── web-google-wallet.png │ │ │ │ │ │ ├── web-google-youtube.png │ │ │ │ │ │ ├── web-google.png │ │ │ │ │ │ ├── web-grooveshark.png │ │ │ │ │ │ ├── web-html.png │ │ │ │ │ │ ├── web-hulu.png │ │ │ │ │ │ ├── web-icq.png │ │ │ │ │ │ ├── web-identica.png │ │ │ │ │ │ ├── web-instagram.png │ │ │ │ │ │ ├── web-irc.png │ │ │ │ │ │ ├── web-jolicloud.png │ │ │ │ │ │ ├── web-khan-academy.png │ │ │ │ │ │ ├── web-kindle.png │ │ │ │ │ │ ├── web-lastfm.png │ │ │ │ │ │ ├── web-lastpass.png │ │ │ │ │ │ ├── web-launchpad.png │ │ │ │ │ │ ├── web-linkedin.png │ │ │ │ │ │ ├── web-mailru.png │ │ │ │ │ │ ├── web-meanwhile.png │ │ │ │ │ │ ├── web-memrise.png │ │ │ │ │ │ ├── web-microsoft-onedrive.png │ │ │ │ │ │ ├── web-microsoft.png │ │ │ │ │ │ ├── web-mint.png │ │ │ │ │ │ ├── web-mxit.png │ │ │ │ │ │ ├── web-myspace.png │ │ │ │ │ │ ├── web-netflix.png │ │ │ │ │ │ ├── web-newsblur.png │ │ │ │ │ │ ├── web-novell.png │ │ │ │ │ │ ├── web-omg-chrome.png │ │ │ │ │ │ ├── web-omgubuntu.png │ │ │ │ │ │ ├── web-onenote.png │ │ │ │ │ │ ├── web-outlook.png │ │ │ │ │ │ ├── web-pandora.png │ │ │ │ │ │ ├── web-paypal.png │ │ │ │ │ │ ├── web-pocket.png │ │ │ │ │ │ ├── web-rdio.png │ │ │ │ │ │ ├── web-reddit.png │ │ │ │ │ │ ├── web-slack.png │ │ │ │ │ │ ├── web-soundcloud.png │ │ │ │ │ │ ├── web-spotify.png │ │ │ │ │ │ ├── web-sunrise-calendar.png │ │ │ │ │ │ ├── web-telegram.png │ │ │ │ │ │ ├── web-trello.png │ │ │ │ │ │ ├── web-tumblr.png │ │ │ │ │ │ ├── web-twitter.png │ │ │ │ │ │ ├── web-viber.png │ │ │ │ │ │ ├── web-vimeo.png │ │ │ │ │ │ ├── web-vk.png │ │ │ │ │ │ ├── web-wikipedia.png │ │ │ │ │ │ ├── web-wolfram-alpha.png │ │ │ │ │ │ ├── web-wordpress.png │ │ │ │ │ │ ├── web-wunderlist.png │ │ │ │ │ │ ├── web-yahoo.png │ │ │ │ │ │ └── web-zephyr.png │ │ │ │ ├── 48x48 │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── document-new.png │ │ │ │ │ │ ├── document-open.png │ │ │ │ │ │ ├── document-save.png │ │ │ │ │ │ ├── os-overview.png │ │ │ │ │ │ ├── system-log-out.png │ │ │ │ │ │ ├── system-restart.png │ │ │ │ │ │ ├── system-run.png │ │ │ │ │ │ ├── system-shutdown.png │ │ │ │ │ │ ├── system-sleep.png │ │ │ │ │ │ └── system-suspend.png │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── 0ad.png │ │ │ │ │ │ ├── 2048.png │ │ │ │ │ │ ├── QtProject-qtcreator.png │ │ │ │ │ │ ├── abiword.png │ │ │ │ │ │ ├── accessories-calculator.png │ │ │ │ │ │ ├── accessories-camera.png │ │ │ │ │ │ ├── accessories-character-map.png │ │ │ │ │ │ ├── accessories-clipboard.png │ │ │ │ │ │ ├── accessories-dictionary.png │ │ │ │ │ │ ├── accessories-document-viewer.png │ │ │ │ │ │ ├── accessories-media-converter.png │ │ │ │ │ │ ├── accessories-painting.png │ │ │ │ │ │ ├── accessories-podcast.png │ │ │ │ │ │ ├── accessories-system-cleaner.png │ │ │ │ │ │ ├── accessories-text-editor.png │ │ │ │ │ │ ├── accessories-thesaurus.png │ │ │ │ │ │ ├── acetoneiso.png │ │ │ │ │ │ ├── acroread.png │ │ │ │ │ │ ├── addressbook.png │ │ │ │ │ │ ├── adobe-air.png │ │ │ │ │ │ ├── aisleriot.png │ │ │ │ │ │ ├── amarok.png │ │ │ │ │ │ ├── android-studio.png │ │ │ │ │ │ ├── anjuta.png │ │ │ │ │ │ ├── anki.png │ │ │ │ │ │ ├── app-launcher.png │ │ │ │ │ │ ├── applets-screenshooter.png │ │ │ │ │ │ ├── aptanastudio.png │ │ │ │ │ │ ├── archive-manager.png │ │ │ │ │ │ ├── ardour.png │ │ │ │ │ │ ├── arduino-ide.png │ │ │ │ │ │ ├── arista.png │ │ │ │ │ │ ├── aseprite.png │ │ │ │ │ │ ├── assistant-qt4.png │ │ │ │ │ │ ├── astahc.png │ │ │ │ │ │ ├── atom.png │ │ │ │ │ │ ├── audacious.png │ │ │ │ │ │ ├── audacity.png │ │ │ │ │ │ ├── audio-equalizer.png │ │ │ │ │ │ ├── authy.png │ │ │ │ │ │ ├── autokey.png │ │ │ │ │ │ ├── avast.png │ │ │ │ │ │ ├── banshee.png │ │ │ │ │ │ ├── battlenet.png │ │ │ │ │ │ ├── birdie.png │ │ │ │ │ │ ├── bitcoin.png │ │ │ │ │ │ ├── bitdefender.png │ │ │ │ │ │ ├── bittorrentsync.png │ │ │ │ │ │ ├── bitwig-studio.png │ │ │ │ │ │ ├── bleachbit.png │ │ │ │ │ │ ├── blender.png │ │ │ │ │ │ ├── bluefish.png │ │ │ │ │ │ ├── bluetooth.png │ │ │ │ │ │ ├── boincmgr.png │ │ │ │ │ │ ├── bokken.png │ │ │ │ │ │ ├── bootloader.png │ │ │ │ │ │ ├── brackets.png │ │ │ │ │ │ ├── budgie.png │ │ │ │ │ │ ├── byobu.png │ │ │ │ │ │ ├── caffeine.png │ │ │ │ │ │ ├── cairo-dock.png │ │ │ │ │ │ ├── calendar.png │ │ │ │ │ │ ├── calibre.png │ │ │ │ │ │ ├── ccc_large.png │ │ │ │ │ │ ├── ccsm.png │ │ │ │ │ │ ├── checkbox.png │ │ │ │ │ │ ├── cheese.png │ │ │ │ │ │ ├── cherrytree.png │ │ │ │ │ │ ├── chess.png │ │ │ │ │ │ ├── chrome-app-list.png │ │ │ │ │ │ ├── chromium-browser-old.png │ │ │ │ │ │ ├── chromium-browser.png │ │ │ │ │ │ ├── clamav.png │ │ │ │ │ │ ├── clementine.png │ │ │ │ │ │ ├── clinica.png │ │ │ │ │ │ ├── clipgrab.png │ │ │ │ │ │ ├── clock.png │ │ │ │ │ │ ├── cmplayer.png │ │ │ │ │ │ ├── codeblocks.png │ │ │ │ │ │ ├── colorhug-ccmx.png │ │ │ │ │ │ ├── colorhug-flash.png │ │ │ │ │ │ ├── colorhug.png │ │ │ │ │ │ ├── comix.png │ │ │ │ │ │ ├── conky-manager.png │ │ │ │ │ │ ├── corebird.png │ │ │ │ │ │ ├── counter-strike.png │ │ │ │ │ │ ├── crossover.png │ │ │ │ │ │ ├── cs-tiling.png │ │ │ │ │ │ ├── curlew.png │ │ │ │ │ │ ├── d-feet.png │ │ │ │ │ │ ├── darktable.png │ │ │ │ │ │ ├── dart.png │ │ │ │ │ │ ├── dasher.png │ │ │ │ │ │ ├── dconf-editor.png │ │ │ │ │ │ ├── deadbeef.png │ │ │ │ │ │ ├── deepin-media-player.png │ │ │ │ │ │ ├── deja-dup.png │ │ │ │ │ │ ├── deluge.png │ │ │ │ │ │ ├── designer-qt4.png │ │ │ │ │ │ ├── desktop-environment-gnome.png │ │ │ │ │ │ ├── desktop-environment-kde.png │ │ │ │ │ │ ├── desktop-environment-lxde.png │ │ │ │ │ │ ├── desktop-environment-mate.png │ │ │ │ │ │ ├── desktop-environment-unity.png │ │ │ │ │ │ ├── desktop-environment-xfce.png │ │ │ │ │ │ ├── desktop-magnifier.png │ │ │ │ │ │ ├── desktop-tweaks.png │ │ │ │ │ │ ├── desura.png │ │ │ │ │ │ ├── devhelp.png │ │ │ │ │ │ ├── dia.png │ │ │ │ │ │ ├── digikam.png │ │ │ │ │ │ ├── direct-connect.png │ │ │ │ │ │ ├── disk-burner.png │ │ │ │ │ │ ├── disk-usage-analyzer.png │ │ │ │ │ │ ├── display.im6.png │ │ │ │ │ │ ├── docky.png │ │ │ │ │ │ ├── dogecoin.png │ │ │ │ │ │ ├── dolphin-emu.png │ │ │ │ │ │ ├── dosbox.png │ │ │ │ │ │ ├── dota2.png │ │ │ │ │ │ ├── doublecmd.png │ │ │ │ │ │ ├── dropbox.png │ │ │ │ │ │ ├── ds-emulator.png │ │ │ │ │ │ ├── dvdrip.png │ │ │ │ │ │ ├── dvdstyler.png │ │ │ │ │ │ ├── earth.png │ │ │ │ │ │ ├── easytag.png │ │ │ │ │ │ ├── eclipse.png │ │ │ │ │ │ ├── eidete.png │ │ │ │ │ │ ├── ekiga.png │ │ │ │ │ │ ├── elegance-colors.png │ │ │ │ │ │ ├── emacs.png │ │ │ │ │ │ ├── emerald.png │ │ │ │ │ │ ├── empathy.png │ │ │ │ │ │ ├── emule.png │ │ │ │ │ │ ├── espeak.png │ │ │ │ │ │ ├── ettercap.png │ │ │ │ │ │ ├── eufloria.png │ │ │ │ │ │ ├── exfalso.png │ │ │ │ │ │ ├── extensions.png │ │ │ │ │ │ ├── fbreader.png │ │ │ │ │ │ ├── fedora-release-notes.png │ │ │ │ │ │ ├── fedora-utils.png │ │ │ │ │ │ ├── fedorautils.png │ │ │ │ │ │ ├── fez.png │ │ │ │ │ │ ├── filebot.png │ │ │ │ │ │ ├── filezilla.png │ │ │ │ │ │ ├── finalterm.png │ │ │ │ │ │ ├── firefox-nightly.png │ │ │ │ │ │ ├── firefox-trunk.png │ │ │ │ │ │ ├── firefox.png │ │ │ │ │ │ ├── firewall.png │ │ │ │ │ │ ├── fitbit.png │ │ │ │ │ │ ├── five-or-more.png │ │ │ │ │ │ ├── flash.png │ │ │ │ │ │ ├── fluxgui.png │ │ │ │ │ │ ├── focuswriter.png │ │ │ │ │ │ ├── fontforge.png │ │ │ │ │ │ ├── four-in-a-row.png │ │ │ │ │ │ ├── freemind.png │ │ │ │ │ │ ├── friends.png │ │ │ │ │ │ ├── frostwire.png │ │ │ │ │ │ ├── gajim.png │ │ │ │ │ │ ├── gameconqueror.png │ │ │ │ │ │ ├── gaupol.png │ │ │ │ │ │ ├── gba.png │ │ │ │ │ │ ├── gbrainy.png │ │ │ │ │ │ ├── gcolor2.png │ │ │ │ │ │ ├── geany.png │ │ │ │ │ │ ├── gelemental.png │ │ │ │ │ │ ├── gensgs.png │ │ │ │ │ │ ├── genymotion.png │ │ │ │ │ │ ├── geogebra.png │ │ │ │ │ │ ├── gfeedline.png │ │ │ │ │ │ ├── ghex.png │ │ │ │ │ │ ├── gimp.png │ │ │ │ │ │ ├── gitg.png │ │ │ │ │ │ ├── gksu-root-terminal.png │ │ │ │ │ │ ├── glade.png │ │ │ │ │ │ ├── glippy.png │ │ │ │ │ │ ├── gloobus-preview.png │ │ │ │ │ │ ├── gmpc.png │ │ │ │ │ │ ├── gmusicbrowser.png │ │ │ │ │ │ ├── gnac.png │ │ │ │ │ │ ├── gnome-boxes.png │ │ │ │ │ │ ├── gnome-break-timer.png │ │ │ │ │ │ ├── gnome-clocks.png │ │ │ │ │ │ ├── gnome-disks.png │ │ │ │ │ │ ├── gnome-do.png │ │ │ │ │ │ ├── gnome-documents.png │ │ │ │ │ │ ├── gnome-klotski.png │ │ │ │ │ │ ├── gnome-music.png │ │ │ │ │ │ ├── gnome-nettool.png │ │ │ │ │ │ ├── gnome-nibbles.png │ │ │ │ │ │ ├── gnome-photos.png │ │ │ │ │ │ ├── gnome-power-statistics.png │ │ │ │ │ │ ├── gnome-robots.png │ │ │ │ │ │ ├── gnome-software.png │ │ │ │ │ │ ├── gnome-sound-recorder.png │ │ │ │ │ │ ├── gnome-subtitles.png │ │ │ │ │ │ ├── gnome-tali.png │ │ │ │ │ │ ├── gnome-tetravex.png │ │ │ │ │ │ ├── gnome-tweak-tool.png │ │ │ │ │ │ ├── gnome-weather.png │ │ │ │ │ │ ├── gnomines.png │ │ │ │ │ │ ├── gnu-r.png │ │ │ │ │ │ ├── gnucash.png │ │ │ │ │ │ ├── gnumeric.png │ │ │ │ │ │ ├── gnupg.png │ │ │ │ │ │ ├── godot.png │ │ │ │ │ │ ├── google-chrome-beta.png │ │ │ │ │ │ ├── google-chrome-old.png │ │ │ │ │ │ ├── google-chrome-unstable.png │ │ │ │ │ │ ├── google-chrome.png │ │ │ │ │ │ ├── google-music-manager.png │ │ │ │ │ │ ├── google-webdesigner.png │ │ │ │ │ │ ├── gparted.png │ │ │ │ │ │ ├── gpick.png │ │ │ │ │ │ ├── gpk-service-pack.png │ │ │ │ │ │ ├── gpodder.png │ │ │ │ │ │ ├── gramps.png │ │ │ │ │ │ ├── grsync.png │ │ │ │ │ │ ├── gstreamer.png │ │ │ │ │ │ ├── gtg.png │ │ │ │ │ │ ├── gthumb.png │ │ │ │ │ │ ├── gtk-recordmydesktop.png │ │ │ │ │ │ ├── gtkpod.png │ │ │ │ │ │ ├── guake.png │ │ │ │ │ │ ├── guayadeque.png │ │ │ │ │ │ ├── gummi.png │ │ │ │ │ │ ├── gvim.png │ │ │ │ │ │ ├── gwibber.png │ │ │ │ │ │ ├── haguichi.png │ │ │ │ │ │ ├── half-life.png │ │ │ │ │ │ ├── half-life2.png │ │ │ │ │ │ ├── hamster.png │ │ │ │ │ │ ├── handbrake.png │ │ │ │ │ │ ├── help-about.png │ │ │ │ │ │ ├── hexchat.png │ │ │ │ │ │ ├── higan.png │ │ │ │ │ │ ├── hipchat.png │ │ │ │ │ │ ├── homebank.png │ │ │ │ │ │ ├── hp-logo.png │ │ │ │ │ │ ├── hplip.png │ │ │ │ │ │ ├── hugin.png │ │ │ │ │ │ ├── hydrogen.png │ │ │ │ │ │ ├── iagno.png │ │ │ │ │ │ ├── ibus-bopomofo.png │ │ │ │ │ │ ├── ibus-pinyin.png │ │ │ │ │ │ ├── ibus.png │ │ │ │ │ │ ├── icedove.png │ │ │ │ │ │ ├── iceweasel.png │ │ │ │ │ │ ├── inkscape.png │ │ │ │ │ │ ├── insync.png │ │ │ │ │ │ ├── intel-linux-graphics-installer.png │ │ │ │ │ │ ├── intellij-idea.png │ │ │ │ │ │ ├── internet-mail.png │ │ │ │ │ │ ├── internet-news-reader.png │ │ │ │ │ │ ├── internet-telephony.png │ │ │ │ │ │ ├── internet-web-browser.png │ │ │ │ │ │ ├── jabber.png │ │ │ │ │ │ ├── jack.png │ │ │ │ │ │ ├── jamin.png │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ ├── jdownloader.png │ │ │ │ │ │ ├── jockey.png │ │ │ │ │ │ ├── jokosher.png │ │ │ │ │ │ ├── juk.png │ │ │ │ │ │ ├── kazam.png │ │ │ │ │ │ ├── keepass.png │ │ │ │ │ │ ├── kile.png │ │ │ │ │ │ ├── kingsoft-presentation.png │ │ │ │ │ │ ├── kingsoft-spreadsheets.png │ │ │ │ │ │ ├── kingsoft-writer.png │ │ │ │ │ │ ├── kmymoney.png │ │ │ │ │ │ ├── komodo.png │ │ │ │ │ │ ├── konqueror.png │ │ │ │ │ │ ├── konversation.png │ │ │ │ │ │ ├── kopete.png │ │ │ │ │ │ ├── krita.png │ │ │ │ │ │ ├── ktorrent.png │ │ │ │ │ │ ├── lazarus.png │ │ │ │ │ │ ├── leafpad.png │ │ │ │ │ │ ├── left-for-dead.png │ │ │ │ │ │ ├── libreoffice-base.png │ │ │ │ │ │ ├── libreoffice-calc.png │ │ │ │ │ │ ├── libreoffice-draw.png │ │ │ │ │ │ ├── libreoffice-impress.png │ │ │ │ │ │ ├── libreoffice-main.png │ │ │ │ │ │ ├── libreoffice-math.png │ │ │ │ │ │ ├── libreoffice-writer.png │ │ │ │ │ │ ├── lightsoff.png │ │ │ │ │ │ ├── lightworks.png │ │ │ │ │ │ ├── lightzone.png │ │ │ │ │ │ ├── linguist-qt4.png │ │ │ │ │ │ ├── linthesia.png │ │ │ │ │ │ ├── lmms.png │ │ │ │ │ │ ├── logviewer.png │ │ │ │ │ │ ├── luminance-hdr.png │ │ │ │ │ │ ├── lutris.png │ │ │ │ │ │ ├── lxmusic.png │ │ │ │ │ │ ├── lyx.png │ │ │ │ │ │ ├── mahjongg.png │ │ │ │ │ │ ├── manaplus.png │ │ │ │ │ │ ├── mathematica.png │ │ │ │ │ │ ├── matlab.png │ │ │ │ │ │ ├── maxthon.png │ │ │ │ │ │ ├── mc.png │ │ │ │ │ │ ├── meld.png │ │ │ │ │ │ ├── mendeley.png │ │ │ │ │ │ ├── menu-editor.png │ │ │ │ │ │ ├── midori.png │ │ │ │ │ │ ├── minecraft.png │ │ │ │ │ │ ├── minitube.png │ │ │ │ │ │ ├── miro.png │ │ │ │ │ │ ├── mixxx.png │ │ │ │ │ │ ├── mkv-gui.png │ │ │ │ │ │ ├── mkvinfo.png │ │ │ │ │ │ ├── moka.png │ │ │ │ │ │ ├── moneydance.png │ │ │ │ │ │ ├── mongodb.png │ │ │ │ │ │ ├── mono-runtime-common.png │ │ │ │ │ │ ├── monodevelop.png │ │ │ │ │ │ ├── mpd.png │ │ │ │ │ │ ├── mplayer.png │ │ │ │ │ │ ├── mpv.png │ │ │ │ │ │ ├── ms-excel.png │ │ │ │ │ │ ├── ms-powerpoint.png │ │ │ │ │ │ ├── ms-word.png │ │ │ │ │ │ ├── multimedia-audio-player.png │ │ │ │ │ │ ├── multimedia-photo-viewer.png │ │ │ │ │ │ ├── multimedia-video-player.png │ │ │ │ │ │ ├── multisystem.png │ │ │ │ │ │ ├── mumble.png │ │ │ │ │ │ ├── muon.png │ │ │ │ │ │ ├── musescore.png │ │ │ │ │ │ ├── musique.png │ │ │ │ │ │ ├── mysql-workbench.png │ │ │ │ │ │ ├── nemiver.png │ │ │ │ │ │ ├── nemo.png │ │ │ │ │ │ ├── nepomuk.png │ │ │ │ │ │ ├── netbeans.png │ │ │ │ │ │ ├── nexuiz.png │ │ │ │ │ │ ├── nicotine.png │ │ │ │ │ │ ├── ninja-ide.png │ │ │ │ │ │ ├── nitrotasks.png │ │ │ │ │ │ ├── notes.png │ │ │ │ │ │ ├── ntfs-config.png │ │ │ │ │ │ ├── nuvolaplayer.png │ │ │ │ │ │ ├── nvidia-settings.png │ │ │ │ │ │ ├── obconf.png │ │ │ │ │ │ ├── octave.png │ │ │ │ │ │ ├── octopi.png │ │ │ │ │ │ ├── onboard.png │ │ │ │ │ │ ├── openshot.png │ │ │ │ │ │ ├── openttd.png │ │ │ │ │ │ ├── opera.png │ │ │ │ │ │ ├── owncloud.png │ │ │ │ │ │ ├── oxygen.png │ │ │ │ │ │ ├── panel-applets.png │ │ │ │ │ │ ├── panel.png │ │ │ │ │ │ ├── parole.png │ │ │ │ │ │ ├── passwords.png │ │ │ │ │ │ ├── patchage.png │ │ │ │ │ │ ├── pdfmod.png │ │ │ │ │ │ ├── pdfshuffler.png │ │ │ │ │ │ ├── pencil.png │ │ │ │ │ │ ├── phpmyadmin.png │ │ │ │ │ │ ├── picard.png │ │ │ │ │ │ ├── pidgin.png │ │ │ │ │ │ ├── pithos.png │ │ │ │ │ │ ├── plank.png │ │ │ │ │ │ ├── plasma.png │ │ │ │ │ │ ├── playonlinux.png │ │ │ │ │ │ ├── plex.png │ │ │ │ │ │ ├── poedit.png │ │ │ │ │ │ ├── polari.png │ │ │ │ │ │ ├── polly.png │ │ │ │ │ │ ├── popcorntime.png │ │ │ │ │ │ ├── portal.png │ │ │ │ │ │ ├── postgresql.png │ │ │ │ │ │ ├── pragha.png │ │ │ │ │ │ ├── preferences-bluetooth.png │ │ │ │ │ │ ├── preferences-color.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-online-accounts.png │ │ │ │ │ │ ├── preferences-desktop-screensaver.png │ │ │ │ │ │ ├── preferences-desktop-theme.png │ │ │ │ │ │ ├── preferences-desktop-user.png │ │ │ │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ │ │ │ ├── preferences-kcalc-constants.png │ │ │ │ │ │ ├── preferences-management-service.png │ │ │ │ │ │ ├── preferences-plugins.png │ │ │ │ │ │ ├── preferences-system-bluetooth-inactive.png │ │ │ │ │ │ ├── preferences-system-brightness-lock.png │ │ │ │ │ │ ├── preferences-system-hotcorners.png │ │ │ │ │ │ ├── preferences-system-login.png │ │ │ │ │ │ ├── preferences-system-network.png │ │ │ │ │ │ ├── preferences-system-notifications.png │ │ │ │ │ │ ├── preferences-system-power.png │ │ │ │ │ │ ├── preferences-system-privacy.png │ │ │ │ │ │ ├── preferences-system-search.png │ │ │ │ │ │ ├── preferences-system-sharing.png │ │ │ │ │ │ ├── preferences-system-sound.png │ │ │ │ │ │ ├── preferences-system-time.png │ │ │ │ │ │ ├── preferences-system-windows.png │ │ │ │ │ │ ├── preferences-system.png │ │ │ │ │ │ ├── preferences-web-browser-cookies.png │ │ │ │ │ │ ├── preferences-web-browser-stylesheets.png │ │ │ │ │ │ ├── psensor.png │ │ │ │ │ │ ├── puddletag.png │ │ │ │ │ │ ├── putty.png │ │ │ │ │ │ ├── pycad.png │ │ │ │ │ │ ├── pycharm.png │ │ │ │ │ │ ├── pyrenamer.png │ │ │ │ │ │ ├── python.png │ │ │ │ │ │ ├── qcad.png │ │ │ │ │ │ ├── qr-creator.png │ │ │ │ │ │ ├── qsynth.png │ │ │ │ │ │ ├── qtconfig-qt4.png │ │ │ │ │ │ ├── qtiplot.png │ │ │ │ │ │ ├── quadrapassel.png │ │ │ │ │ │ ├── quassel.png │ │ │ │ │ │ ├── quiterss.png │ │ │ │ │ │ ├── quodlibet.png │ │ │ │ │ │ ├── qupzilla.png │ │ │ │ │ │ ├── radiotray.png │ │ │ │ │ │ ├── rapid-photo-downloader.png │ │ │ │ │ │ ├── rawtherapee.png │ │ │ │ │ │ ├── reditr.png │ │ │ │ │ │ ├── redshift.png │ │ │ │ │ │ ├── remote-desktop.png │ │ │ │ │ │ ├── retext.png │ │ │ │ │ │ ├── rhythmbox.png │ │ │ │ │ │ ├── rstudio.png │ │ │ │ │ │ ├── rubymine.png │ │ │ │ │ │ ├── rygel.png │ │ │ │ │ │ ├── samba.png │ │ │ │ │ │ ├── screenruler.png │ │ │ │ │ │ ├── scribus.png │ │ │ │ │ │ ├── selinux.png │ │ │ │ │ │ ├── sencha-animator.png │ │ │ │ │ │ ├── serious-sam3-bfe.png │ │ │ │ │ │ ├── session-properties.png │ │ │ │ │ │ ├── shotwell.png │ │ │ │ │ │ ├── shutter.png │ │ │ │ │ │ ├── sigil.png │ │ │ │ │ │ ├── sketchup.png │ │ │ │ │ │ ├── skype.png │ │ │ │ │ │ ├── smuxi.png │ │ │ │ │ │ ├── software-properties.png │ │ │ │ │ │ ├── solaar.png │ │ │ │ │ │ ├── sound-juicer.png │ │ │ │ │ │ ├── sparkleshare.png │ │ │ │ │ │ ├── springseed.png │ │ │ │ │ │ ├── sqldeveloper.png │ │ │ │ │ │ ├── steam.png │ │ │ │ │ │ ├── stellarium.png │ │ │ │ │ │ ├── stormcloud.png │ │ │ │ │ │ ├── subdownloader.png │ │ │ │ │ │ ├── sublime-text.png │ │ │ │ │ │ ├── sudoku.png │ │ │ │ │ │ ├── sunflower.png │ │ │ │ │ │ ├── supertuxkart.png │ │ │ │ │ │ ├── swell-foop.png │ │ │ │ │ │ ├── synapse.png │ │ │ │ │ │ ├── synergy.png │ │ │ │ │ │ ├── system-error.png │ │ │ │ │ │ ├── system-file-manager.png │ │ │ │ │ │ ├── system-help.png │ │ │ │ │ │ ├── system-lock-screen.png │ │ │ │ │ │ ├── system-remixer.png │ │ │ │ │ │ ├── system-software-install.png │ │ │ │ │ │ ├── system-software-package-manager.png │ │ │ │ │ │ ├── system-software-update.png │ │ │ │ │ │ ├── system76.png │ │ │ │ │ │ ├── team-fortress-2.png │ │ │ │ │ │ ├── teamspeak.png │ │ │ │ │ │ ├── teamviewer.png │ │ │ │ │ │ ├── telepathy-kde.png │ │ │ │ │ │ ├── terminator.png │ │ │ │ │ │ ├── texmaker.png │ │ │ │ │ │ ├── texstudio.png │ │ │ │ │ │ ├── texworks.png │ │ │ │ │ │ ├── thunderbird-old.png │ │ │ │ │ │ ├── thunderbird.png │ │ │ │ │ │ ├── tomahawk.png │ │ │ │ │ │ ├── totem.png │ │ │ │ │ │ ├── transmageddon.png │ │ │ │ │ │ ├── transmission.png │ │ │ │ │ │ ├── trillian.png │ │ │ │ │ │ ├── truecrypt.png │ │ │ │ │ │ ├── turpial.png │ │ │ │ │ │ ├── tuxguitar.png │ │ │ │ │ │ ├── tweetdeck.png │ │ │ │ │ │ ├── typecatcher.png │ │ │ │ │ │ ├── uberwriter.png │ │ │ │ │ │ ├── ubuntu-sdk.png │ │ │ │ │ │ ├── ubuntu-tweak.png │ │ │ │ │ │ ├── ubuntuone-music.png │ │ │ │ │ │ ├── ubuntuone.png │ │ │ │ │ │ ├── ufraw.png │ │ │ │ │ │ ├── uget.png │ │ │ │ │ │ ├── umplayer.png │ │ │ │ │ │ ├── unison-gtk.png │ │ │ │ │ │ ├── unity-lens-photos.png │ │ │ │ │ │ ├── unity-scope-gdrive.png │ │ │ │ │ │ ├── unity-tweak-tool.png │ │ │ │ │ │ ├── usb-creator-gtk.png │ │ │ │ │ │ ├── user-info.png │ │ │ │ │ │ ├── utilities-system-monitor.png │ │ │ │ │ │ ├── utilities-terminal.png │ │ │ │ │ │ ├── vala.png │ │ │ │ │ │ ├── varicad.png │ │ │ │ │ │ ├── variety.png │ │ │ │ │ │ ├── venom.png │ │ │ │ │ │ ├── verbiste.png │ │ │ │ │ │ ├── vidalia.png │ │ │ │ │ │ ├── video-editor.png │ │ │ │ │ │ ├── viewnior.png │ │ │ │ │ │ ├── vineyard.png │ │ │ │ │ │ ├── virt-manager.png │ │ │ │ │ │ ├── virtualbox.png │ │ │ │ │ │ ├── vlc.png │ │ │ │ │ │ ├── vmware-player.png │ │ │ │ │ │ ├── vmware-workstation.png │ │ │ │ │ │ ├── vocal.png │ │ │ │ │ │ ├── warsow.png │ │ │ │ │ │ ├── wayland.png │ │ │ │ │ │ ├── webide.png │ │ │ │ │ │ ├── wesnoth-map-editor.png │ │ │ │ │ │ ├── wesnoth.png │ │ │ │ │ │ ├── wine-browser.png │ │ │ │ │ │ ├── wine-folder.png │ │ │ │ │ │ ├── wine-help.png │ │ │ │ │ │ ├── wine-notepad.png │ │ │ │ │ │ ├── wine-uninstaller.png │ │ │ │ │ │ ├── wine-wordpad.png │ │ │ │ │ │ ├── wine.png │ │ │ │ │ │ ├── winecfg.png │ │ │ │ │ │ ├── winetricks.png │ │ │ │ │ │ ├── winff.png │ │ │ │ │ │ ├── wingpanel.png │ │ │ │ │ │ ├── wireframing-app.png │ │ │ │ │ │ ├── wireshark.png │ │ │ │ │ │ ├── workspace-overview.png │ │ │ │ │ │ ├── workspace-switcher-left-bottom.png │ │ │ │ │ │ ├── workspace-switcher-right-bottom.png │ │ │ │ │ │ ├── workspace-switcher-right-top.png │ │ │ │ │ │ ├── workspace-switcher-top-left.png │ │ │ │ │ │ ├── wuala.png │ │ │ │ │ │ ├── xampp.png │ │ │ │ │ │ ├── xbmc.png │ │ │ │ │ │ ├── xchat.png │ │ │ │ │ │ ├── xdiagnose.png │ │ │ │ │ │ ├── xhydra.png │ │ │ │ │ │ ├── xiphos.png │ │ │ │ │ │ ├── xmind.png │ │ │ │ │ │ ├── xnoise.png │ │ │ │ │ │ ├── xonotic.png │ │ │ │ │ │ ├── xorg.png │ │ │ │ │ │ ├── xournal.png │ │ │ │ │ │ ├── xterm.png │ │ │ │ │ │ ├── y-ppa-manager.png │ │ │ │ │ │ ├── yakuake.png │ │ │ │ │ │ ├── yast.png │ │ │ │ │ │ ├── zim.png │ │ │ │ │ │ ├── zotero.png │ │ │ │ │ │ └── zsnes.png │ │ │ │ │ ├── categories │ │ │ │ │ │ ├── applications-accessories.png │ │ │ │ │ │ ├── applications-development.png │ │ │ │ │ │ ├── applications-education.png │ │ │ │ │ │ ├── applications-electronics.png │ │ │ │ │ │ ├── applications-font.png │ │ │ │ │ │ ├── applications-games.png │ │ │ │ │ │ ├── applications-graphics.png │ │ │ │ │ │ ├── applications-haskell.png │ │ │ │ │ │ ├── applications-internet.png │ │ │ │ │ │ ├── applications-java.png │ │ │ │ │ │ ├── applications-mathematics.png │ │ │ │ │ │ ├── applications-monodevelopment.png │ │ │ │ │ │ ├── applications-multimedia.png │ │ │ │ │ │ ├── applications-ocaml.png │ │ │ │ │ │ ├── applications-office.png │ │ │ │ │ │ ├── applications-other.png │ │ │ │ │ │ ├── applications-php.png │ │ │ │ │ │ ├── applications-puzzles.png │ │ │ │ │ │ ├── applications-python.png │ │ │ │ │ │ ├── applications-ruby.png │ │ │ │ │ │ ├── applications-science.png │ │ │ │ │ │ ├── applications-system.png │ │ │ │ │ │ ├── applications-utilities.png │ │ │ │ │ │ ├── preferences-desktop-default-applications.png │ │ │ │ │ │ ├── preferences-desktop-tweaks.png │ │ │ │ │ │ └── preferences-desktop.png │ │ │ │ │ ├── devices │ │ │ │ │ │ ├── audio-card.png │ │ │ │ │ │ ├── camera.png │ │ │ │ │ │ ├── computer.png │ │ │ │ │ │ ├── drive-harddisk-ieee1394.png │ │ │ │ │ │ ├── drive-harddisk.png │ │ │ │ │ │ ├── drive-optical.png │ │ │ │ │ │ ├── drive-removable-media-usb.png │ │ │ │ │ │ ├── drive-removable-media.png │ │ │ │ │ │ ├── input-keyboard.png │ │ │ │ │ │ ├── input-mouse.png │ │ │ │ │ │ ├── input-tablet.png │ │ │ │ │ │ ├── media-flash.png │ │ │ │ │ │ ├── multimedia-player.png │ │ │ │ │ │ ├── network-wired.png │ │ │ │ │ │ ├── nm-device-wireless.png │ │ │ │ │ │ ├── phone.png │ │ │ │ │ │ ├── printer.png │ │ │ │ │ │ └── scanner.png │ │ │ │ │ ├── emblems │ │ │ │ │ │ ├── emblem-default.png │ │ │ │ │ │ ├── emblem-important.png │ │ │ │ │ │ ├── emblem-package.png │ │ │ │ │ │ ├── emblem-readonly.png │ │ │ │ │ │ ├── emblem-shared.png │ │ │ │ │ │ ├── emblem-symbolic-link.png │ │ │ │ │ │ ├── emblem-synchronizing.png │ │ │ │ │ │ ├── emblem-unreadable.png │ │ │ │ │ │ └── emblem-web.png │ │ │ │ │ ├── emotes │ │ │ │ │ │ └── face-smile.png │ │ │ │ │ ├── items │ │ │ │ │ │ ├── os-coroutines.png │ │ │ │ │ │ ├── os-feedback.png │ │ │ │ │ │ ├── os-form_base.png │ │ │ │ │ │ ├── os-form_consent.png │ │ │ │ │ │ ├── os-form_multiple_choice.png │ │ │ │ │ │ ├── os-form_text_display.png │ │ │ │ │ │ ├── os-form_text_input.png │ │ │ │ │ │ ├── os-inline_html.png │ │ │ │ │ │ ├── os-inline_javascript.png │ │ │ │ │ │ ├── os-inline_script-syntax-error.png │ │ │ │ │ │ ├── os-inline_script-syntax-warning.png │ │ │ │ │ │ ├── os-inline_script.png │ │ │ │ │ │ ├── os-joystick.png │ │ │ │ │ │ ├── os-keyboard_response.png │ │ │ │ │ │ ├── os-logger.png │ │ │ │ │ │ ├── os-loop.png │ │ │ │ │ │ ├── os-media_player_mpy.png │ │ │ │ │ │ ├── os-mouse_response.png │ │ │ │ │ │ ├── os-psychopy_gratingstim.png │ │ │ │ │ │ ├── os-psychopy_textstim.png │ │ │ │ │ │ ├── os-pygaze_drift_correct.png │ │ │ │ │ │ ├── os-pygaze_init.png │ │ │ │ │ │ ├── os-pygaze_log.png │ │ │ │ │ │ ├── os-pygaze_roi.png │ │ │ │ │ │ ├── os-pygaze_start_recording.png │ │ │ │ │ │ ├── os-pygaze_stop_recording.png │ │ │ │ │ │ ├── os-pygaze_wait.png │ │ │ │ │ │ ├── os-repeat_cycle.png │ │ │ │ │ │ ├── os-reset_feedback.png │ │ │ │ │ │ ├── os-sampler.png │ │ │ │ │ │ ├── os-sequence.png │ │ │ │ │ │ ├── os-sketchpad.png │ │ │ │ │ │ ├── os-synth.png │ │ │ │ │ │ └── os-touch_response.png │ │ │ │ │ ├── mimetypes │ │ │ │ │ │ ├── application-rss+xml.png │ │ │ │ │ │ ├── application-x-executable.png │ │ │ │ │ │ ├── x-office-address-book.png │ │ │ │ │ │ └── x-office-calendar.png │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── os-color-picker.png │ │ │ │ │ │ ├── os-debug.png │ │ │ │ │ │ ├── os-experiment.png │ │ │ │ │ │ ├── os-finished-error.png │ │ │ │ │ │ ├── os-finished-success.png │ │ │ │ │ │ ├── os-finished-user-interrupt.png │ │ │ │ │ │ ├── os-inspector.png │ │ │ │ │ │ └── os-view-controls.png │ │ │ │ │ ├── places │ │ │ │ │ │ ├── distributor-logo-android.png │ │ │ │ │ │ ├── distributor-logo-antergos.png │ │ │ │ │ │ ├── distributor-logo-archlinux.png │ │ │ │ │ │ ├── distributor-logo-crunchbang.png │ │ │ │ │ │ ├── distributor-logo-debian.png │ │ │ │ │ │ ├── distributor-logo-deepin.png │ │ │ │ │ │ ├── distributor-logo-edubuntu.png │ │ │ │ │ │ ├── distributor-logo-elementary.png │ │ │ │ │ │ ├── distributor-logo-fedora.png │ │ │ │ │ │ ├── distributor-logo-frugalware.png │ │ │ │ │ │ ├── distributor-logo-gentoo.png │ │ │ │ │ │ ├── distributor-logo-kubuntu.png │ │ │ │ │ │ ├── distributor-logo-linux-mint.png │ │ │ │ │ │ ├── distributor-logo-mageia.png │ │ │ │ │ │ ├── distributor-logo-mandriva.png │ │ │ │ │ │ ├── distributor-logo-manjaro.png │ │ │ │ │ │ ├── distributor-logo-opensuse.png │ │ │ │ │ │ ├── distributor-logo-slackware.png │ │ │ │ │ │ ├── distributor-logo-steamos.png │ │ │ │ │ │ ├── distributor-logo-ubuntu-gnome.png │ │ │ │ │ │ ├── distributor-logo-ubuntu-mate.png │ │ │ │ │ │ ├── distributor-logo-ubuntu.png │ │ │ │ │ │ ├── distributor-logo-windows.png │ │ │ │ │ │ ├── folder-remote.png │ │ │ │ │ │ ├── network-workgroup.png │ │ │ │ │ │ ├── user-bookmarks.png │ │ │ │ │ │ ├── user-desktop.png │ │ │ │ │ │ ├── user-trash-full.png │ │ │ │ │ │ └── user-trash.png │ │ │ │ │ ├── status │ │ │ │ │ │ ├── dialog-error.png │ │ │ │ │ │ ├── dialog-info.png │ │ │ │ │ │ ├── dialog-question.png │ │ │ │ │ │ ├── dialog-warning.png │ │ │ │ │ │ ├── security-high.png │ │ │ │ │ │ ├── security-low.png │ │ │ │ │ │ └── security-medium.png │ │ │ │ │ ├── unity │ │ │ │ │ │ └── launcher_bfb.png │ │ │ │ │ └── web │ │ │ │ │ │ ├── web-aim.png │ │ │ │ │ │ ├── web-airdroid.png │ │ │ │ │ │ ├── web-amazon.png │ │ │ │ │ │ ├── web-angry-birds.png │ │ │ │ │ │ ├── web-anydo.png │ │ │ │ │ │ ├── web-blogger.png │ │ │ │ │ │ ├── web-chrome-web-store.png │ │ │ │ │ │ ├── web-circ.png │ │ │ │ │ │ ├── web-copy.png │ │ │ │ │ │ ├── web-deviantart.png │ │ │ │ │ │ ├── web-duolingo.png │ │ │ │ │ │ ├── web-ebay.png │ │ │ │ │ │ ├── web-evernote.png │ │ │ │ │ │ ├── web-facebook-messenger.png │ │ │ │ │ │ ├── web-facebook.png │ │ │ │ │ │ ├── web-fastmail.png │ │ │ │ │ │ ├── web-feedly.png │ │ │ │ │ │ ├── web-flickr.png │ │ │ │ │ │ ├── web-foursquare.png │ │ │ │ │ │ ├── web-gadugadu.png │ │ │ │ │ │ ├── web-github.png │ │ │ │ │ │ ├── web-gizmo.png │ │ │ │ │ │ ├── web-google-apps-script.png │ │ │ │ │ │ ├── web-google-calendar.png │ │ │ │ │ │ ├── web-google-cast.png │ │ │ │ │ │ ├── web-google-docs.png │ │ │ │ │ │ ├── web-google-drawings.png │ │ │ │ │ │ ├── web-google-drive-old.png │ │ │ │ │ │ ├── web-google-drive.png │ │ │ │ │ │ ├── web-google-earth.png │ │ │ │ │ │ ├── web-google-forms.png │ │ │ │ │ │ ├── web-google-fusion-tables.png │ │ │ │ │ │ ├── web-google-gmail-offline.png │ │ │ │ │ │ ├── web-google-gmail.png │ │ │ │ │ │ ├── web-google-hangouts.png │ │ │ │ │ │ ├── web-google-keep.png │ │ │ │ │ │ ├── web-google-maps.png │ │ │ │ │ │ ├── web-google-photos.png │ │ │ │ │ │ ├── web-google-play-books.png │ │ │ │ │ │ ├── web-google-play-movies.png │ │ │ │ │ │ ├── web-google-play-music.png │ │ │ │ │ │ ├── web-google-play.png │ │ │ │ │ │ ├── web-google-plus.png │ │ │ │ │ │ ├── web-google-sheets.png │ │ │ │ │ │ ├── web-google-slides.png │ │ │ │ │ │ ├── web-google-wallet.png │ │ │ │ │ │ ├── web-google-youtube.png │ │ │ │ │ │ ├── web-google.png │ │ │ │ │ │ ├── web-grooveshark.png │ │ │ │ │ │ ├── web-html.png │ │ │ │ │ │ ├── web-hulu.png │ │ │ │ │ │ ├── web-icq.png │ │ │ │ │ │ ├── web-identica.png │ │ │ │ │ │ ├── web-instagram.png │ │ │ │ │ │ ├── web-irc.png │ │ │ │ │ │ ├── web-jolicloud.png │ │ │ │ │ │ ├── web-khan-academy.png │ │ │ │ │ │ ├── web-kindle.png │ │ │ │ │ │ ├── web-lastfm.png │ │ │ │ │ │ ├── web-lastpass.png │ │ │ │ │ │ ├── web-launchpad.png │ │ │ │ │ │ ├── web-linkedin.png │ │ │ │ │ │ ├── web-mailru.png │ │ │ │ │ │ ├── web-meanwhile.png │ │ │ │ │ │ ├── web-memrise.png │ │ │ │ │ │ ├── web-microsoft-onedrive.png │ │ │ │ │ │ ├── web-microsoft.png │ │ │ │ │ │ ├── web-mint.png │ │ │ │ │ │ ├── web-mxit.png │ │ │ │ │ │ ├── web-myspace.png │ │ │ │ │ │ ├── web-netflix.png │ │ │ │ │ │ ├── web-newsblur.png │ │ │ │ │ │ ├── web-novell.png │ │ │ │ │ │ ├── web-omg-chrome.png │ │ │ │ │ │ ├── web-omgubuntu.png │ │ │ │ │ │ ├── web-onenote.png │ │ │ │ │ │ ├── web-outlook.png │ │ │ │ │ │ ├── web-pandora.png │ │ │ │ │ │ ├── web-paypal.png │ │ │ │ │ │ ├── web-pocket.png │ │ │ │ │ │ ├── web-rdio.png │ │ │ │ │ │ ├── web-reddit.png │ │ │ │ │ │ ├── web-slack.png │ │ │ │ │ │ ├── web-soundcloud.png │ │ │ │ │ │ ├── web-spotify.png │ │ │ │ │ │ ├── web-sunrise-calendar.png │ │ │ │ │ │ ├── web-telegram.png │ │ │ │ │ │ ├── web-trello.png │ │ │ │ │ │ ├── web-tumblr.png │ │ │ │ │ │ ├── web-twitter.png │ │ │ │ │ │ ├── web-viber.png │ │ │ │ │ │ ├── web-vimeo.png │ │ │ │ │ │ ├── web-vk.png │ │ │ │ │ │ ├── web-wikipedia.png │ │ │ │ │ │ ├── web-wolfram-alpha.png │ │ │ │ │ │ ├── web-wordpress.png │ │ │ │ │ │ ├── web-wunderlist.png │ │ │ │ │ │ ├── web-yahoo.png │ │ │ │ │ │ └── web-zephyr.png │ │ │ │ ├── 64x64 │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── os-overview.png │ │ │ │ │ │ ├── system-log-out.png │ │ │ │ │ │ ├── system-restart.png │ │ │ │ │ │ ├── system-run.png │ │ │ │ │ │ ├── system-shutdown.png │ │ │ │ │ │ ├── system-sleep.png │ │ │ │ │ │ └── system-suspend.png │ │ │ │ │ ├── apps │ │ │ │ │ │ ├── 0ad.png │ │ │ │ │ │ ├── 2048.png │ │ │ │ │ │ ├── QtProject-qtcreator.png │ │ │ │ │ │ ├── abiword.png │ │ │ │ │ │ ├── accessories-calculator.png │ │ │ │ │ │ ├── accessories-camera.png │ │ │ │ │ │ ├── accessories-character-map.png │ │ │ │ │ │ ├── accessories-clipboard.png │ │ │ │ │ │ ├── accessories-dictionary.png │ │ │ │ │ │ ├── accessories-document-viewer.png │ │ │ │ │ │ ├── accessories-media-converter.png │ │ │ │ │ │ ├── accessories-painting.png │ │ │ │ │ │ ├── accessories-podcast.png │ │ │ │ │ │ ├── accessories-system-cleaner.png │ │ │ │ │ │ ├── accessories-text-editor.png │ │ │ │ │ │ ├── accessories-thesaurus.png │ │ │ │ │ │ ├── acetoneiso.png │ │ │ │ │ │ ├── acroread.png │ │ │ │ │ │ ├── addressbook.png │ │ │ │ │ │ ├── adobe-air.png │ │ │ │ │ │ ├── aisleriot.png │ │ │ │ │ │ ├── amarok.png │ │ │ │ │ │ ├── android-studio.png │ │ │ │ │ │ ├── anjuta.png │ │ │ │ │ │ ├── anki.png │ │ │ │ │ │ ├── app-launcher.png │ │ │ │ │ │ ├── applets-screenshooter.png │ │ │ │ │ │ ├── aptanastudio.png │ │ │ │ │ │ ├── archive-manager.png │ │ │ │ │ │ ├── ardour.png │ │ │ │ │ │ ├── arduino-ide.png │ │ │ │ │ │ ├── arista.png │ │ │ │ │ │ ├── aseprite.png │ │ │ │ │ │ ├── assistant-qt4.png │ │ │ │ │ │ ├── astahc.png │ │ │ │ │ │ ├── atom.png │ │ │ │ │ │ ├── audacious.png │ │ │ │ │ │ ├── audacity.png │ │ │ │ │ │ ├── audio-equalizer.png │ │ │ │ │ │ ├── authy.png │ │ │ │ │ │ ├── autokey.png │ │ │ │ │ │ ├── avast.png │ │ │ │ │ │ ├── banshee.png │ │ │ │ │ │ ├── battlenet.png │ │ │ │ │ │ ├── birdie.png │ │ │ │ │ │ ├── bitcoin.png │ │ │ │ │ │ ├── bitdefender.png │ │ │ │ │ │ ├── bittorrentsync.png │ │ │ │ │ │ ├── bitwig-studio.png │ │ │ │ │ │ ├── bleachbit.png │ │ │ │ │ │ ├── blender.png │ │ │ │ │ │ ├── bluefish.png │ │ │ │ │ │ ├── bluetooth.png │ │ │ │ │ │ ├── boincmgr.png │ │ │ │ │ │ ├── bokken.png │ │ │ │ │ │ ├── bootloader.png │ │ │ │ │ │ ├── brackets.png │ │ │ │ │ │ ├── budgie.png │ │ │ │ │ │ ├── byobu.png │ │ │ │ │ │ ├── caffeine.png │ │ │ │ │ │ ├── cairo-dock.png │ │ │ │ │ │ ├── calendar.png │ │ │ │ │ │ ├── calibre.png │ │ │ │ │ │ ├── ccc_large.png │ │ │ │ │ │ ├── ccsm.png │ │ │ │ │ │ ├── checkbox.png │ │ │ │ │ │ ├── cheese.png │ │ │ │ │ │ ├── cherrytree.png │ │ │ │ │ │ ├── chess.png │ │ │ │ │ │ ├── chrome-app-list.png │ │ │ │ │ │ ├── chromium-browser-old.png │ │ │ │ │ │ ├── chromium-browser.png │ │ │ │ │ │ ├── clamav.png │ │ │ │ │ │ ├── clementine.png │ │ │ │ │ │ ├── clinica.png │ │ │ │ │ │ ├── clipgrab.png │ │ │ │ │ │ ├── clock.png │ │ │ │ │ │ ├── cmplayer.png │ │ │ │ │ │ ├── codeblocks.png │ │ │ │ │ │ ├── colorhug-ccmx.png │ │ │ │ │ │ ├── colorhug-flash.png │ │ │ │ │ │ ├── colorhug.png │ │ │ │ │ │ ├── comix.png │ │ │ │ │ │ ├── conky-manager.png │ │ │ │ │ │ ├── corebird.png │ │ │ │ │ │ ├── counter-strike.png │ │ │ │ │ │ ├── crossover.png │ │ │ │ │ │ ├── cs-tiling.png │ │ │ │ │ │ ├── curlew.png │ │ │ │ │ │ ├── d-feet.png │ │ │ │ │ │ ├── darktable.png │ │ │ │ │ │ ├── dart.png │ │ │ │ │ │ ├── dasher.png │ │ │ │ │ │ ├── dconf-editor.png │ │ │ │ │ │ ├── deadbeef.png │ │ │ │ │ │ ├── deepin-media-player.png │ │ │ │ │ │ ├── deja-dup.png │ │ │ │ │ │ ├── deluge.png │ │ │ │ │ │ ├── designer-qt4.png │ │ │ │ │ │ ├── desktop-environment-gnome.png │ │ │ │ │ │ ├── desktop-environment-kde.png │ │ │ │ │ │ ├── desktop-environment-lxde.png │ │ │ │ │ │ ├── desktop-environment-mate.png │ │ │ │ │ │ ├── desktop-environment-unity.png │ │ │ │ │ │ ├── desktop-environment-xfce.png │ │ │ │ │ │ ├── desktop-magnifier.png │ │ │ │ │ │ ├── desktop-tweaks.png │ │ │ │ │ │ ├── desura.png │ │ │ │ │ │ ├── devhelp.png │ │ │ │ │ │ ├── dia.png │ │ │ │ │ │ ├── digikam.png │ │ │ │ │ │ ├── direct-connect.png │ │ │ │ │ │ ├── disk-burner.png │ │ │ │ │ │ ├── disk-usage-analyzer.png │ │ │ │ │ │ ├── display.im6.png │ │ │ │ │ │ ├── docky.png │ │ │ │ │ │ ├── dogecoin.png │ │ │ │ │ │ ├── dolphin-emu.png │ │ │ │ │ │ ├── dosbox.png │ │ │ │ │ │ ├── dota2.png │ │ │ │ │ │ ├── doublecmd.png │ │ │ │ │ │ ├── dropbox.png │ │ │ │ │ │ ├── ds-emulator.png │ │ │ │ │ │ ├── dvdrip.png │ │ │ │ │ │ ├── dvdstyler.png │ │ │ │ │ │ ├── earth.png │ │ │ │ │ │ ├── easytag.png │ │ │ │ │ │ ├── eclipse.png │ │ │ │ │ │ ├── eidete.png │ │ │ │ │ │ ├── ekiga.png │ │ │ │ │ │ ├── elegance-colors.png │ │ │ │ │ │ ├── emacs.png │ │ │ │ │ │ ├── emerald.png │ │ │ │ │ │ ├── empathy.png │ │ │ │ │ │ ├── emule.png │ │ │ │ │ │ ├── espeak.png │ │ │ │ │ │ ├── ettercap.png │ │ │ │ │ │ ├── eufloria.png │ │ │ │ │ │ ├── exfalso.png │ │ │ │ │ │ ├── extensions.png │ │ │ │ │ │ ├── fbreader.png │ │ │ │ │ │ ├── fedora-release-notes.png │ │ │ │ │ │ ├── fedora-utils.png │ │ │ │ │ │ ├── fedorautils.png │ │ │ │ │ │ ├── fez.png │ │ │ │ │ │ ├── filebot.png │ │ │ │ │ │ ├── filezilla.png │ │ │ │ │ │ ├── finalterm.png │ │ │ │ │ │ ├── firefox-nightly.png │ │ │ │ │ │ ├── firefox-trunk.png │ │ │ │ │ │ ├── firefox.png │ │ │ │ │ │ ├── firewall.png │ │ │ │ │ │ ├── fitbit.png │ │ │ │ │ │ ├── five-or-more.png │ │ │ │ │ │ ├── flash.png │ │ │ │ │ │ ├── fluxgui.png │ │ │ │ │ │ ├── focuswriter.png │ │ │ │ │ │ ├── fontforge.png │ │ │ │ │ │ ├── four-in-a-row.png │ │ │ │ │ │ ├── freemind.png │ │ │ │ │ │ ├── friends.png │ │ │ │ │ │ ├── frostwire.png │ │ │ │ │ │ ├── gajim.png │ │ │ │ │ │ ├── gameconqueror.png │ │ │ │ │ │ ├── gaupol.png │ │ │ │ │ │ ├── gba.png │ │ │ │ │ │ ├── gbrainy.png │ │ │ │ │ │ ├── gcolor2.png │ │ │ │ │ │ ├── geany.png │ │ │ │ │ │ ├── gelemental.png │ │ │ │ │ │ ├── gensgs.png │ │ │ │ │ │ ├── genymotion.png │ │ │ │ │ │ ├── geogebra.png │ │ │ │ │ │ ├── gfeedline.png │ │ │ │ │ │ ├── ghex.png │ │ │ │ │ │ ├── gimp.png │ │ │ │ │ │ ├── gitg.png │ │ │ │ │ │ ├── gksu-root-terminal.png │ │ │ │ │ │ ├── glade.png │ │ │ │ │ │ ├── glippy.png │ │ │ │ │ │ ├── gloobus-preview.png │ │ │ │ │ │ ├── gmpc.png │ │ │ │ │ │ ├── gmusicbrowser.png │ │ │ │ │ │ ├── gnac.png │ │ │ │ │ │ ├── gnome-boxes.png │ │ │ │ │ │ ├── gnome-break-timer.png │ │ │ │ │ │ ├── gnome-clocks.png │ │ │ │ │ │ ├── gnome-disks.png │ │ │ │ │ │ ├── gnome-do.png │ │ │ │ │ │ ├── gnome-documents.png │ │ │ │ │ │ ├── gnome-klotski.png │ │ │ │ │ │ ├── gnome-music.png │ │ │ │ │ │ ├── gnome-nettool.png │ │ │ │ │ │ ├── gnome-nibbles.png │ │ │ │ │ │ ├── gnome-photos.png │ │ │ │ │ │ ├── gnome-power-statistics.png │ │ │ │ │ │ ├── gnome-robots.png │ │ │ │ │ │ ├── gnome-software.png │ │ │ │ │ │ ├── gnome-sound-recorder.png │ │ │ │ │ │ ├── gnome-subtitles.png │ │ │ │ │ │ ├── gnome-tali.png │ │ │ │ │ │ ├── gnome-tetravex.png │ │ │ │ │ │ ├── gnome-tweak-tool.png │ │ │ │ │ │ ├── gnome-weather.png │ │ │ │ │ │ ├── gnomines.png │ │ │ │ │ │ ├── gnu-r.png │ │ │ │ │ │ ├── gnucash.png │ │ │ │ │ │ ├── gnumeric.png │ │ │ │ │ │ ├── gnupg.png │ │ │ │ │ │ ├── godot.png │ │ │ │ │ │ ├── google-chrome-beta.png │ │ │ │ │ │ ├── google-chrome-old.png │ │ │ │ │ │ ├── google-chrome-unstable.png │ │ │ │ │ │ ├── google-chrome.png │ │ │ │ │ │ ├── google-music-manager.png │ │ │ │ │ │ ├── google-webdesigner.png │ │ │ │ │ │ ├── gparted.png │ │ │ │ │ │ ├── gpick.png │ │ │ │ │ │ ├── gpk-service-pack.png │ │ │ │ │ │ ├── gpodder.png │ │ │ │ │ │ ├── gramps.png │ │ │ │ │ │ ├── grsync.png │ │ │ │ │ │ ├── gstreamer.png │ │ │ │ │ │ ├── gtg.png │ │ │ │ │ │ ├── gthumb.png │ │ │ │ │ │ ├── gtk-recordmydesktop.png │ │ │ │ │ │ ├── gtkpod.png │ │ │ │ │ │ ├── guake.png │ │ │ │ │ │ ├── guayadeque.png │ │ │ │ │ │ ├── gummi.png │ │ │ │ │ │ ├── gvim.png │ │ │ │ │ │ ├── gwibber.png │ │ │ │ │ │ ├── haguichi.png │ │ │ │ │ │ ├── half-life.png │ │ │ │ │ │ ├── half-life2.png │ │ │ │ │ │ ├── hamster.png │ │ │ │ │ │ ├── handbrake.png │ │ │ │ │ │ ├── help-about.png │ │ │ │ │ │ ├── hexchat.png │ │ │ │ │ │ ├── higan.png │ │ │ │ │ │ ├── hipchat.png │ │ │ │ │ │ ├── homebank.png │ │ │ │ │ │ ├── hp-logo.png │ │ │ │ │ │ ├── hplip.png │ │ │ │ │ │ ├── hugin.png │ │ │ │ │ │ ├── hydrogen.png │ │ │ │ │ │ ├── iagno.png │ │ │ │ │ │ ├── ibus-bopomofo.png │ │ │ │ │ │ ├── ibus-pinyin.png │ │ │ │ │ │ ├── ibus.png │ │ │ │ │ │ ├── icedove.png │ │ │ │ │ │ ├── iceweasel.png │ │ │ │ │ │ ├── inkscape.png │ │ │ │ │ │ ├── insync.png │ │ │ │ │ │ ├── intel-linux-graphics-installer.png │ │ │ │ │ │ ├── intellij-idea.png │ │ │ │ │ │ ├── internet-mail.png │ │ │ │ │ │ ├── internet-news-reader.png │ │ │ │ │ │ ├── internet-telephony.png │ │ │ │ │ │ ├── internet-web-browser.png │ │ │ │ │ │ ├── jabber.png │ │ │ │ │ │ ├── jack.png │ │ │ │ │ │ ├── jamin.png │ │ │ │ │ │ ├── java.png │ │ │ │ │ │ ├── jdownloader.png │ │ │ │ │ │ ├── jockey.png │ │ │ │ │ │ ├── jokosher.png │ │ │ │ │ │ ├── juk.png │ │ │ │ │ │ ├── kazam.png │ │ │ │ │ │ ├── keepass.png │ │ │ │ │ │ ├── kile.png │ │ │ │ │ │ ├── kingsoft-presentation.png │ │ │ │ │ │ ├── kingsoft-spreadsheets.png │ │ │ │ │ │ ├── kingsoft-writer.png │ │ │ │ │ │ ├── kmymoney.png │ │ │ │ │ │ ├── komodo.png │ │ │ │ │ │ ├── konqueror.png │ │ │ │ │ │ ├── konversation.png │ │ │ │ │ │ ├── kopete.png │ │ │ │ │ │ ├── krita.png │ │ │ │ │ │ ├── ktorrent.png │ │ │ │ │ │ ├── lazarus.png │ │ │ │ │ │ ├── leafpad.png │ │ │ │ │ │ ├── left-for-dead.png │ │ │ │ │ │ ├── libreoffice-base.png │ │ │ │ │ │ ├── libreoffice-calc.png │ │ │ │ │ │ ├── libreoffice-draw.png │ │ │ │ │ │ ├── libreoffice-impress.png │ │ │ │ │ │ ├── libreoffice-main.png │ │ │ │ │ │ ├── libreoffice-math.png │ │ │ │ │ │ ├── libreoffice-writer.png │ │ │ │ │ │ ├── lightsoff.png │ │ │ │ │ │ ├── lightworks.png │ │ │ │ │ │ ├── lightzone.png │ │ │ │ │ │ ├── linguist-qt4.png │ │ │ │ │ │ ├── linthesia.png │ │ │ │ │ │ ├── lmms.png │ │ │ │ │ │ ├── logviewer.png │ │ │ │ │ │ ├── luminance-hdr.png │ │ │ │ │ │ ├── lutris.png │ │ │ │ │ │ ├── lxmusic.png │ │ │ │ │ │ ├── lyx.png │ │ │ │ │ │ ├── mahjongg.png │ │ │ │ │ │ ├── manaplus.png │ │ │ │ │ │ ├── mathematica.png │ │ │ │ │ │ ├── matlab.png │ │ │ │ │ │ ├── maxthon.png │ │ │ │ │ │ ├── mc.png │ │ │ │ │ │ ├── meld.png │ │ │ │ │ │ ├── mendeley.png │ │ │ │ │ │ ├── menu-editor.png │ │ │ │ │ │ ├── midori.png │ │ │ │ │ │ ├── minecraft.png │ │ │ │ │ │ ├── minitube.png │ │ │ │ │ │ ├── miro.png │ │ │ │ │ │ ├── mixxx.png │ │ │ │ │ │ ├── mkv-gui.png │ │ │ │ │ │ ├── mkvinfo.png │ │ │ │ │ │ ├── moka.png │ │ │ │ │ │ ├── moneydance.png │ │ │ │ │ │ ├── mongodb.png │ │ │ │ │ │ ├── mono-runtime-common.png │ │ │ │ │ │ ├── monodevelop.png │ │ │ │ │ │ ├── mpd.png │ │ │ │ │ │ ├── mplayer.png │ │ │ │ │ │ ├── mpv.png │ │ │ │ │ │ ├── ms-excel.png │ │ │ │ │ │ ├── ms-powerpoint.png │ │ │ │ │ │ ├── ms-word.png │ │ │ │ │ │ ├── multimedia-audio-player.png │ │ │ │ │ │ ├── multimedia-photo-viewer.png │ │ │ │ │ │ ├── multimedia-video-player.png │ │ │ │ │ │ ├── multisystem.png │ │ │ │ │ │ ├── mumble.png │ │ │ │ │ │ ├── muon.png │ │ │ │ │ │ ├── musescore.png │ │ │ │ │ │ ├── musique.png │ │ │ │ │ │ ├── mysql-workbench.png │ │ │ │ │ │ ├── nemiver.png │ │ │ │ │ │ ├── nemo.png │ │ │ │ │ │ ├── nepomuk.png │ │ │ │ │ │ ├── netbeans.png │ │ │ │ │ │ ├── nexuiz.png │ │ │ │ │ │ ├── nicotine.png │ │ │ │ │ │ ├── ninja-ide.png │ │ │ │ │ │ ├── nitrotasks.png │ │ │ │ │ │ ├── notes.png │ │ │ │ │ │ ├── ntfs-config.png │ │ │ │ │ │ ├── nuvolaplayer.png │ │ │ │ │ │ ├── nvidia-settings.png │ │ │ │ │ │ ├── obconf.png │ │ │ │ │ │ ├── octave.png │ │ │ │ │ │ ├── octopi.png │ │ │ │ │ │ ├── onboard.png │ │ │ │ │ │ ├── openshot.png │ │ │ │ │ │ ├── openttd.png │ │ │ │ │ │ ├── opera.png │ │ │ │ │ │ ├── owncloud.png │ │ │ │ │ │ ├── oxygen.png │ │ │ │ │ │ ├── panel-applets.png │ │ │ │ │ │ ├── panel.png │ │ │ │ │ │ ├── parole.png │ │ │ │ │ │ ├── passwords.png │ │ │ │ │ │ ├── patchage.png │ │ │ │ │ │ ├── pdfmod.png │ │ │ │ │ │ ├── pdfshuffler.png │ │ │ │ │ │ ├── pencil.png │ │ │ │ │ │ ├── phpmyadmin.png │ │ │ │ │ │ ├── picard.png │ │ │ │ │ │ ├── pidgin.png │ │ │ │ │ │ ├── pithos.png │ │ │ │ │ │ ├── plank.png │ │ │ │ │ │ ├── plasma.png │ │ │ │ │ │ ├── playonlinux.png │ │ │ │ │ │ ├── plex.png │ │ │ │ │ │ ├── poedit.png │ │ │ │ │ │ ├── polari.png │ │ │ │ │ │ ├── polly.png │ │ │ │ │ │ ├── popcorntime.png │ │ │ │ │ │ ├── portal.png │ │ │ │ │ │ ├── postgresql.png │ │ │ │ │ │ ├── pragha.png │ │ │ │ │ │ ├── preferences-bluetooth.png │ │ │ │ │ │ ├── preferences-color.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-online-accounts.png │ │ │ │ │ │ ├── preferences-desktop-screensaver.png │ │ │ │ │ │ ├── preferences-desktop-theme.png │ │ │ │ │ │ ├── preferences-desktop-user.png │ │ │ │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ │ │ │ ├── preferences-kcalc-constants.png │ │ │ │ │ │ ├── preferences-management-service.png │ │ │ │ │ │ ├── preferences-plugins.png │ │ │ │ │ │ ├── preferences-system-bluetooth-inactive.png │ │ │ │ │ │ ├── preferences-system-brightness-lock.png │ │ │ │ │ │ ├── preferences-system-hotcorners.png │ │ │ │ │ │ ├── preferences-system-login.png │ │ │ │ │ │ ├── preferences-system-network.png │ │ │ │ │ │ ├── preferences-system-notifications.png │ │ │ │ │ │ ├── preferences-system-power.png │ │ │ │ │ │ ├── preferences-system-privacy.png │ │ │ │ │ │ ├── preferences-system-search.png │ │ │ │ │ │ ├── preferences-system-sharing.png │ │ │ │ │ │ ├── preferences-system-sound.png │ │ │ │ │ │ ├── preferences-system-time.png │ │ │ │ │ │ ├── preferences-system-windows.png │ │ │ │ │ │ ├── preferences-system.png │ │ │ │ │ │ ├── preferences-web-browser-cookies.png │ │ │ │ │ │ ├── preferences-web-browser-stylesheets.png │ │ │ │ │ │ ├── psensor.png │ │ │ │ │ │ ├── puddletag.png │ │ │ │ │ │ ├── putty.png │ │ │ │ │ │ ├── pycad.png │ │ │ │ │ │ ├── pycharm.png │ │ │ │ │ │ ├── pyrenamer.png │ │ │ │ │ │ ├── python.png │ │ │ │ │ │ ├── qcad.png │ │ │ │ │ │ ├── qr-creator.png │ │ │ │ │ │ ├── qsynth.png │ │ │ │ │ │ ├── qtconfig-qt4.png │ │ │ │ │ │ ├── qtiplot.png │ │ │ │ │ │ ├── quadrapassel.png │ │ │ │ │ │ ├── quassel.png │ │ │ │ │ │ ├── quiterss.png │ │ │ │ │ │ ├── quodlibet.png │ │ │ │ │ │ ├── qupzilla.png │ │ │ │ │ │ ├── radiotray.png │ │ │ │ │ │ ├── rapid-photo-downloader.png │ │ │ │ │ │ ├── rawtherapee.png │ │ │ │ │ │ ├── reditr.png │ │ │ │ │ │ ├── redshift.png │ │ │ │ │ │ ├── remote-desktop.png │ │ │ │ │ │ ├── retext.png │ │ │ │ │ │ ├── rhythmbox.png │ │ │ │ │ │ ├── rstudio.png │ │ │ │ │ │ ├── rubymine.png │ │ │ │ │ │ ├── rygel.png │ │ │ │ │ │ ├── samba.png │ │ │ │ │ │ ├── screenruler.png │ │ │ │ │ │ ├── scribus.png │ │ │ │ │ │ ├── selinux.png │ │ │ │ │ │ ├── sencha-animator.png │ │ │ │ │ │ ├── serious-sam3-bfe.png │ │ │ │ │ │ ├── session-properties.png │ │ │ │ │ │ ├── shotwell.png │ │ │ │ │ │ ├── shutter.png │ │ │ │ │ │ ├── sigil.png │ │ │ │ │ │ ├── sketchup.png │ │ │ │ │ │ ├── skype.png │ │ │ │ │ │ ├── smuxi.png │ │ │ │ │ │ ├── software-properties.png │ │ │ │ │ │ ├── solaar.png │ │ │ │ │ │ ├── sound-juicer.png │ │ │ │ │ │ ├── sparkleshare.png │ │ │ │ │ │ ├── springseed.png │ │ │ │ │ │ ├── sqldeveloper.png │ │ │ │ │ │ ├── steam.png │ │ │ │ │ │ ├── stellarium.png │ │ │ │ │ │ ├── stormcloud.png │ │ │ │ │ │ ├── subdownloader.png │ │ │ │ │ │ ├── sublime-text.png │ │ │ │ │ │ ├── sudoku.png │ │ │ │ │ │ ├── sunflower.png │ │ │ │ │ │ ├── supertuxkart.png │ │ │ │ │ │ ├── swell-foop.png │ │ │ │ │ │ ├── synapse.png │ │ │ │ │ │ ├── synergy.png │ │ │ │ │ │ ├── system-error.png │ │ │ │ │ │ ├── system-file-manager.png │ │ │ │ │ │ ├── system-help.png │ │ │ │ │ │ ├── system-lock-screen.png │ │ │ │ │ │ ├── system-remixer.png │ │ │ │ │ │ ├── system-software-install.png │ │ │ │ │ │ ├── system-software-package-manager.png │ │ │ │ │ │ ├── system-software-update.png │ │ │ │ │ │ ├── system76.png │ │ │ │ │ │ ├── team-fortress-2.png │ │ │ │ │ │ ├── teamspeak.png │ │ │ │ │ │ ├── teamviewer.png │ │ │ │ │ │ ├── telepathy-kde.png │ │ │ │ │ │ ├── terminator.png │ │ │ │ │ │ ├── texmaker.png │ │ │ │ │ │ ├── texstudio.png │ │ │ │ │ │ ├── texworks.png │ │ │ │ │ │ ├── thunderbird-old.png │ │ │ │ │ │ ├── thunderbird.png │ │ │ │ │ │ ├── tomahawk.png │ │ │ │ │ │ ├── totem.png │ │ │ │ │ │ ├── transmageddon.png │ │ │ │ │ │ ├── transmission.png │ │ │ │ │ │ ├── trillian.png │ │ │ │ │ │ ├── truecrypt.png │ │ │ │ │ │ ├── turpial.png │ │ │ │ │ │ ├── tuxguitar.png │ │ │ │ │ │ ├── tweetdeck.png │ │ │ │ │ │ ├── typecatcher.png │ │ │ │ │ │ ├── uberwriter.png │ │ │ │ │ │ ├── ubuntu-sdk.png │ │ │ │ │ │ ├── ubuntu-tweak.png │ │ │ │ │ │ ├── ubuntuone-music.png │ │ │ │ │ │ ├── ubuntuone.png │ │ │ │ │ │ ├── ufraw.png │ │ │ │ │ │ ├── uget.png │ │ │ │ │ │ ├── umplayer.png │ │ │ │ │ │ ├── unison-gtk.png │ │ │ │ │ │ ├── unity-lens-photos.png │ │ │ │ │ │ ├── unity-scope-gdrive.png │ │ │ │ │ │ ├── unity-tweak-tool.png │ │ │ │ │ │ ├── usb-creator-gtk.png │ │ │ │ │ │ ├── user-info.png │ │ │ │ │ │ ├── utilities-system-monitor.png │ │ │ │ │ │ ├── utilities-terminal.png │ │ │ │ │ │ ├── vala.png │ │ │ │ │ │ ├── varicad.png │ │ │ │ │ │ ├── variety.png │ │ │ │ │ │ ├── venom.png │ │ │ │ │ │ ├── verbiste.png │ │ │ │ │ │ ├── vidalia.png │ │ │ │ │ │ ├── video-editor.png │ │ │ │ │ │ ├── viewnior.png │ │ │ │ │ │ ├── vineyard.png │ │ │ │ │ │ ├── virt-manager.png │ │ │ │ │ │ ├── virtualbox.png │ │ │ │ │ │ ├── vlc.png │ │ │ │ │ │ ├── vmware-player.png │ │ │ │ │ │ ├── vmware-workstation.png │ │ │ │ │ │ ├── vocal.png │ │ │ │ │ │ ├── warsow.png │ │ │ │ │ │ ├── wayland.png │ │ │ │ │ │ ├── webide.png │ │ │ │ │ │ ├── wesnoth-map-editor.png │ │ │ │ │ │ ├── wesnoth.png │ │ │ │ │ │ ├── wine-browser.png │ │ │ │ │ │ ├── wine-folder.png │ │ │ │ │ │ ├── wine-help.png │ │ │ │ │ │ ├── wine-notepad.png │ │ │ │ │ │ ├── wine-uninstaller.png │ │ │ │ │ │ ├── wine-wordpad.png │ │ │ │ │ │ ├── wine.png │ │ │ │ │ │ ├── winecfg.png │ │ │ │ │ │ ├── winetricks.png │ │ │ │ │ │ ├── winff.png │ │ │ │ │ │ ├── wingpanel.png │ │ │ │ │ │ ├── wireframing-app.png │ │ │ │ │ │ ├── wireshark.png │ │ │ │ │ │ ├── workspace-overview.png │ │ │ │ │ │ ├── workspace-switcher-left-bottom.png │ │ │ │ │ │ ├── workspace-switcher-right-bottom.png │ │ │ │ │ │ ├── workspace-switcher-right-top.png │ │ │ │ │ │ ├── workspace-switcher-top-left.png │ │ │ │ │ │ ├── wuala.png │ │ │ │ │ │ ├── xampp.png │ │ │ │ │ │ ├── xbmc.png │ │ │ │ │ │ ├── xchat.png │ │ │ │ │ │ ├── xdiagnose.png │ │ │ │ │ │ ├── xhydra.png │ │ │ │ │ │ ├── xiphos.png │ │ │ │ │ │ ├── xmind.png │ │ │ │ │ │ ├── xnoise.png │ │ │ │ │ │ ├── xonotic.png │ │ │ │ │ │ ├── xorg.png │ │ │ │ │ │ ├── xournal.png │ │ │ │ │ │ ├── xterm.png │ │ │ │ │ │ ├── y-ppa-manager.png │ │ │ │ │ │ ├── yakuake.png │ │ │ │ │ │ ├── yast.png │ │ │ │ │ │ ├── zim.png │ │ │ │ │ │ ├── zotero.png │ │ │ │ │ │ └── zsnes.png │ │ │ │ │ ├── categories │ │ │ │ │ │ ├── applications-accessories.png │ │ │ │ │ │ ├── applications-development.png │ │ │ │ │ │ ├── applications-education.png │ │ │ │ │ │ ├── applications-electronics.png │ │ │ │ │ │ ├── applications-font.png │ │ │ │ │ │ ├── applications-games.png │ │ │ │ │ │ ├── applications-graphics.png │ │ │ │ │ │ ├── applications-haskell.png │ │ │ │ │ │ ├── applications-internet.png │ │ │ │ │ │ ├── applications-java.png │ │ │ │ │ │ ├── applications-mathematics.png │ │ │ │ │ │ ├── applications-monodevelopment.png │ │ │ │ │ │ ├── applications-multimedia.png │ │ │ │ │ │ ├── applications-ocaml.png │ │ │ │ │ │ ├── applications-office.png │ │ │ │ │ │ ├── applications-other.png │ │ │ │ │ │ ├── applications-php.png │ │ │ │ │ │ ├── applications-puzzles.png │ │ │ │ │ │ ├── applications-python.png │ │ │ │ │ │ ├── applications-ruby.png │ │ │ │ │ │ ├── applications-science.png │ │ │ │ │ │ ├── applications-system.png │ │ │ │ │ │ ├── applications-utilities.png │ │ │ │ │ │ ├── preferences-desktop-default-applications.png │ │ │ │ │ │ ├── preferences-desktop-tweaks.png │ │ │ │ │ │ └── preferences-desktop.png │ │ │ │ │ ├── devices │ │ │ │ │ │ ├── audio-card.png │ │ │ │ │ │ ├── camera.png │ │ │ │ │ │ ├── computer.png │ │ │ │ │ │ ├── drive-harddisk-ieee1394.png │ │ │ │ │ │ ├── drive-harddisk.png │ │ │ │ │ │ ├── drive-optical.png │ │ │ │ │ │ ├── drive-removable-media-usb.png │ │ │ │ │ │ ├── drive-removable-media.png │ │ │ │ │ │ ├── input-keyboard.png │ │ │ │ │ │ ├── input-mouse.png │ │ │ │ │ │ ├── input-tablet.png │ │ │ │ │ │ ├── media-flash.png │ │ │ │ │ │ ├── multimedia-player.png │ │ │ │ │ │ ├── network-wired.png │ │ │ │ │ │ ├── nm-device-wireless.png │ │ │ │ │ │ ├── phone.png │ │ │ │ │ │ ├── printer.png │ │ │ │ │ │ └── scanner.png │ │ │ │ │ ├── emblems │ │ │ │ │ │ ├── emblem-default.png │ │ │ │ │ │ ├── emblem-important.png │ │ │ │ │ │ ├── emblem-package.png │ │ │ │ │ │ ├── emblem-readonly.png │ │ │ │ │ │ ├── emblem-shared.png │ │ │ │ │ │ ├── emblem-symbolic-link.png │ │ │ │ │ │ ├── emblem-synchronizing.png │ │ │ │ │ │ ├── emblem-unreadable.png │ │ │ │ │ │ └── emblem-web.png │ │ │ │ │ ├── emotes │ │ │ │ │ │ └── face-smile.png │ │ │ │ │ ├── items │ │ │ │ │ │ ├── os-coroutines.png │ │ │ │ │ │ ├── os-feedback.png │ │ │ │ │ │ ├── os-form_base.png │ │ │ │ │ │ ├── os-form_consent.png │ │ │ │ │ │ ├── os-form_multiple_choice.png │ │ │ │ │ │ ├── os-form_text_display.png │ │ │ │ │ │ ├── os-form_text_input.png │ │ │ │ │ │ ├── os-inline_html.png │ │ │ │ │ │ ├── os-inline_javascript.png │ │ │ │ │ │ ├── os-inline_script-syntax-error.png │ │ │ │ │ │ ├── os-inline_script-syntax-warning.png │ │ │ │ │ │ ├── os-inline_script.png │ │ │ │ │ │ ├── os-joystick.png │ │ │ │ │ │ ├── os-keyboard_response.png │ │ │ │ │ │ ├── os-logger.png │ │ │ │ │ │ ├── os-loop.png │ │ │ │ │ │ ├── os-media_player_mpy.png │ │ │ │ │ │ ├── os-mouse_response.png │ │ │ │ │ │ ├── os-psychopy_gratingstim.png │ │ │ │ │ │ ├── os-psychopy_textstim.png │ │ │ │ │ │ ├── os-pygaze_drift_correct.png │ │ │ │ │ │ ├── os-pygaze_init.png │ │ │ │ │ │ ├── os-pygaze_log.png │ │ │ │ │ │ ├── os-pygaze_roi.png │ │ │ │ │ │ ├── os-pygaze_start_recording.png │ │ │ │ │ │ ├── os-pygaze_stop_recording.png │ │ │ │ │ │ ├── os-pygaze_wait.png │ │ │ │ │ │ ├── os-repeat_cycle.png │ │ │ │ │ │ ├── os-reset_feedback.png │ │ │ │ │ │ ├── os-sampler.png │ │ │ │ │ │ ├── os-sequence.png │ │ │ │ │ │ ├── os-sketchpad.png │ │ │ │ │ │ ├── os-synth.png │ │ │ │ │ │ └── os-touch_response.png │ │ │ │ │ ├── mimetypes │ │ │ │ │ │ ├── application-rss+xml.png │ │ │ │ │ │ ├── application-x-executable.png │ │ │ │ │ │ ├── x-office-address-book.png │ │ │ │ │ │ └── x-office-calendar.png │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── os-color-picker.png │ │ │ │ │ │ ├── os-debug.png │ │ │ │ │ │ ├── os-experiment.png │ │ │ │ │ │ ├── os-finished-error.png │ │ │ │ │ │ ├── os-finished-success.png │ │ │ │ │ │ ├── os-finished-user-interrupt.png │ │ │ │ │ │ ├── os-inspector.png │ │ │ │ │ │ └── os-view-controls.png │ │ │ │ │ ├── places │ │ │ │ │ │ ├── distributor-logo-android.png │ │ │ │ │ │ ├── distributor-logo-antergos.png │ │ │ │ │ │ ├── distributor-logo-archlinux.png │ │ │ │ │ │ ├── distributor-logo-crunchbang.png │ │ │ │ │ │ ├── distributor-logo-debian.png │ │ │ │ │ │ ├── distributor-logo-deepin.png │ │ │ │ │ │ ├── distributor-logo-edubuntu.png │ │ │ │ │ │ ├── distributor-logo-elementary.png │ │ │ │ │ │ ├── distributor-logo-fedora.png │ │ │ │ │ │ ├── distributor-logo-frugalware.png │ │ │ │ │ │ ├── distributor-logo-gentoo.png │ │ │ │ │ │ ├── distributor-logo-kubuntu.png │ │ │ │ │ │ ├── distributor-logo-linux-mint.png │ │ │ │ │ │ ├── distributor-logo-mageia.png │ │ │ │ │ │ ├── distributor-logo-mandriva.png │ │ │ │ │ │ ├── distributor-logo-manjaro.png │ │ │ │ │ │ ├── distributor-logo-opensuse.png │ │ │ │ │ │ ├── distributor-logo-slackware.png │ │ │ │ │ │ ├── distributor-logo-steamos.png │ │ │ │ │ │ ├── distributor-logo-ubuntu-gnome.png │ │ │ │ │ │ ├── distributor-logo-ubuntu-mate.png │ │ │ │ │ │ ├── distributor-logo-ubuntu.png │ │ │ │ │ │ ├── distributor-logo-windows.png │ │ │ │ │ │ ├── folder-remote.png │ │ │ │ │ │ ├── network-workgroup.png │ │ │ │ │ │ ├── user-bookmarks.png │ │ │ │ │ │ ├── user-desktop.png │ │ │ │ │ │ ├── user-trash-full.png │ │ │ │ │ │ └── user-trash.png │ │ │ │ │ ├── status │ │ │ │ │ │ ├── dialog-error.png │ │ │ │ │ │ ├── dialog-info.png │ │ │ │ │ │ ├── dialog-question.png │ │ │ │ │ │ ├── dialog-warning.png │ │ │ │ │ │ ├── security-high.png │ │ │ │ │ │ ├── security-low.png │ │ │ │ │ │ └── security-medium.png │ │ │ │ │ ├── unity │ │ │ │ │ │ └── launcher_bfb.png │ │ │ │ │ └── web │ │ │ │ │ │ ├── web-aim.png │ │ │ │ │ │ ├── web-airdroid.png │ │ │ │ │ │ ├── web-amazon.png │ │ │ │ │ │ ├── web-angry-birds.png │ │ │ │ │ │ ├── web-anydo.png │ │ │ │ │ │ ├── web-blogger.png │ │ │ │ │ │ ├── web-chrome-web-store.png │ │ │ │ │ │ ├── web-circ.png │ │ │ │ │ │ ├── web-copy.png │ │ │ │ │ │ ├── web-deviantart.png │ │ │ │ │ │ ├── web-duolingo.png │ │ │ │ │ │ ├── web-ebay.png │ │ │ │ │ │ ├── web-evernote.png │ │ │ │ │ │ ├── web-facebook-messenger.png │ │ │ │ │ │ ├── web-facebook.png │ │ │ │ │ │ ├── web-fastmail.png │ │ │ │ │ │ ├── web-feedly.png │ │ │ │ │ │ ├── web-flickr.png │ │ │ │ │ │ ├── web-foursquare.png │ │ │ │ │ │ ├── web-gadugadu.png │ │ │ │ │ │ ├── web-github.png │ │ │ │ │ │ ├── web-gizmo.png │ │ │ │ │ │ ├── web-google-apps-script.png │ │ │ │ │ │ ├── web-google-calendar.png │ │ │ │ │ │ ├── web-google-cast.png │ │ │ │ │ │ ├── web-google-docs.png │ │ │ │ │ │ ├── web-google-drawings.png │ │ │ │ │ │ ├── web-google-drive-old.png │ │ │ │ │ │ ├── web-google-drive.png │ │ │ │ │ │ ├── web-google-earth.png │ │ │ │ │ │ ├── web-google-forms.png │ │ │ │ │ │ ├── web-google-fusion-tables.png │ │ │ │ │ │ ├── web-google-gmail-offline.png │ │ │ │ │ │ ├── web-google-gmail.png │ │ │ │ │ │ ├── web-google-hangouts.png │ │ │ │ │ │ ├── web-google-keep.png │ │ │ │ │ │ ├── web-google-maps.png │ │ │ │ │ │ ├── web-google-photos.png │ │ │ │ │ │ ├── web-google-play-books.png │ │ │ │ │ │ ├── web-google-play-movies.png │ │ │ │ │ │ ├── web-google-play-music.png │ │ │ │ │ │ ├── web-google-play.png │ │ │ │ │ │ ├── web-google-plus.png │ │ │ │ │ │ ├── web-google-sheets.png │ │ │ │ │ │ ├── web-google-slides.png │ │ │ │ │ │ ├── web-google-wallet.png │ │ │ │ │ │ ├── web-google-youtube.png │ │ │ │ │ │ ├── web-google.png │ │ │ │ │ │ ├── web-grooveshark.png │ │ │ │ │ │ ├── web-html.png │ │ │ │ │ │ ├── web-hulu.png │ │ │ │ │ │ ├── web-icq.png │ │ │ │ │ │ ├── web-identica.png │ │ │ │ │ │ ├── web-instagram.png │ │ │ │ │ │ ├── web-irc.png │ │ │ │ │ │ ├── web-jolicloud.png │ │ │ │ │ │ ├── web-khan-academy.png │ │ │ │ │ │ ├── web-kindle.png │ │ │ │ │ │ ├── web-lastfm.png │ │ │ │ │ │ ├── web-lastpass.png │ │ │ │ │ │ ├── web-launchpad.png │ │ │ │ │ │ ├── web-linkedin.png │ │ │ │ │ │ ├── web-mailru.png │ │ │ │ │ │ ├── web-meanwhile.png │ │ │ │ │ │ ├── web-memrise.png │ │ │ │ │ │ ├── web-microsoft-onedrive.png │ │ │ │ │ │ ├── web-microsoft.png │ │ │ │ │ │ ├── web-mint.png │ │ │ │ │ │ ├── web-mxit.png │ │ │ │ │ │ ├── web-myspace.png │ │ │ │ │ │ ├── web-netflix.png │ │ │ │ │ │ ├── web-newsblur.png │ │ │ │ │ │ ├── web-novell.png │ │ │ │ │ │ ├── web-omg-chrome.png │ │ │ │ │ │ ├── web-omgubuntu.png │ │ │ │ │ │ ├── web-onenote.png │ │ │ │ │ │ ├── web-outlook.png │ │ │ │ │ │ ├── web-pandora.png │ │ │ │ │ │ ├── web-paypal.png │ │ │ │ │ │ ├── web-pocket.png │ │ │ │ │ │ ├── web-rdio.png │ │ │ │ │ │ ├── web-reddit.png │ │ │ │ │ │ ├── web-slack.png │ │ │ │ │ │ ├── web-soundcloud.png │ │ │ │ │ │ ├── web-spotify.png │ │ │ │ │ │ ├── web-sunrise-calendar.png │ │ │ │ │ │ ├── web-telegram.png │ │ │ │ │ │ ├── web-trello.png │ │ │ │ │ │ ├── web-tumblr.png │ │ │ │ │ │ ├── web-twitter.png │ │ │ │ │ │ ├── web-viber.png │ │ │ │ │ │ ├── web-vimeo.png │ │ │ │ │ │ ├── web-vk.png │ │ │ │ │ │ ├── web-wikipedia.png │ │ │ │ │ │ ├── web-wolfram-alpha.png │ │ │ │ │ │ ├── web-wordpress.png │ │ │ │ │ │ ├── web-wunderlist.png │ │ │ │ │ │ ├── web-yahoo.png │ │ │ │ │ │ └── web-zephyr.png │ │ │ │ └── index.theme │ │ │ ├── __theme__.py │ │ │ ├── background.png │ │ │ ├── icon_map.csv │ │ │ ├── markdown.css │ │ │ └── stylesheet.qss │ │ ├── fallback.png │ │ └── monokai │ │ │ ├── __theme__.py │ │ │ ├── markdown.css │ │ │ └── stylesheet.qss │ ├── ts │ │ ├── ar.ts │ │ ├── bn.ts │ │ ├── de.ts │ │ ├── es.ts │ │ ├── fr.ts │ │ ├── he.ts │ │ ├── hi.ts │ │ ├── id.ts │ │ ├── it.ts │ │ ├── ja.ts │ │ ├── ko.ts │ │ ├── nl.ts │ │ ├── pt.ts │ │ ├── ru.ts │ │ ├── tr.ts │ │ ├── translatables.ts │ │ ├── yue.ts │ │ └── zh.ts │ └── ui │ │ ├── dialogs │ │ ├── gabor_settings.ui │ │ ├── loop_wizard_dialog.ui │ │ ├── noise_settings.ui │ │ ├── polar_coordinates.ui │ │ └── text_input_dialog.ui │ │ ├── misc │ │ ├── main_window.ui │ │ └── opensesamerun.ui │ │ └── widgets │ │ ├── backend_settings.ui │ │ ├── font_widget.ui │ │ ├── font_widget_horizontal.ui │ │ ├── general_properties.ui │ │ ├── general_script_editor.ui │ │ ├── logger.ui │ │ ├── loop_widget.ui │ │ ├── plugin_info.ui │ │ ├── pool_widget.ui │ │ ├── preferences_widget.ui │ │ ├── sketchpad.ui │ │ ├── user_hint_widget.ui │ │ └── webbrowser_widget.ui ├── runners │ ├── __init__.py │ ├── base_runner.py │ ├── external_runner.py │ ├── inprocess_runner.py │ └── multiprocess_runner.py ├── sketchpad_elements │ ├── __init__.py │ ├── _arrow.py │ ├── _base_element.py │ ├── _base_line_arrow.py │ ├── _base_rect_ellipse.py │ ├── _circle.py │ ├── _ellipse.py │ ├── _fixdot.py │ ├── _gabor.py │ ├── _image.py │ ├── _line.py │ ├── _noise.py │ ├── _rect.py │ └── _textline.py ├── validators │ ├── __init__.py │ ├── _base_validator.py │ ├── _cond_validator.py │ ├── _duration_validator.py │ └── _timeout_validator.py └── widgets │ ├── __init__.py │ ├── backend_settings.py │ ├── base_preferences_widget.py │ ├── base_widget.py │ ├── color_edit.py │ ├── credits_widget.py │ ├── font_widget.py │ ├── general_header_widget.py │ ├── general_properties.py │ ├── general_script_editor.py │ ├── header_widget.py │ ├── item_context_menu.py │ ├── item_view_button.py │ ├── logger_widget.py │ ├── loop_widget.py │ ├── pool_widget.py │ ├── preferences_widget.py │ ├── qtitem_splitter.py │ ├── sampler_widget.py │ ├── sketchpad_element_button.py │ ├── sketchpad_graphics_view.py │ ├── sketchpad_widget.py │ ├── synth_widget.py │ ├── tab_bar.py │ ├── tab_widget.py │ ├── toolbar_items.py │ ├── toolbar_items_item.py │ ├── toolbar_items_label.py │ ├── tree_append_button.py │ ├── tree_append_menu.py │ ├── tree_base_item.py │ ├── tree_general_item.py │ ├── tree_item_item.py │ ├── tree_overview.py │ ├── tree_recursion_error_item.py │ ├── tree_unused_items_item.py │ ├── unused_items_context_menu.py │ ├── unused_widget.py │ └── webbrowser.py ├── mime ├── opensesame.desktop ├── opensesame.svg └── x-opensesame-experiment.xml ├── openexp ├── __init__.py ├── _canvas │ ├── __init__.py │ ├── _arrow │ │ ├── __init__.py │ │ ├── arrow.py │ │ ├── legacy.py │ │ ├── psycho.py │ │ └── xpyriment.py │ ├── _circle │ │ ├── __init__.py │ │ ├── circle.py │ │ ├── legacy.py │ │ ├── psycho.py │ │ └── xpyriment.py │ ├── _element │ │ ├── __init__.py │ │ ├── element.py │ │ ├── group.py │ │ ├── legacy.py │ │ ├── psycho.py │ │ └── xpyriment.py │ ├── _ellipse │ │ ├── __init__.py │ │ ├── ellipse.py │ │ ├── legacy.py │ │ ├── psycho.py │ │ └── xpyriment.py │ ├── _fixdot │ │ ├── __init__.py │ │ ├── fixdot.py │ │ ├── legacy.py │ │ ├── psycho.py │ │ └── xpyriment.py │ ├── _gabor │ │ ├── __init__.py │ │ ├── gabor.py │ │ ├── legacy.py │ │ ├── psycho.py │ │ └── xpyriment.py │ ├── _image │ │ ├── __init__.py │ │ ├── image.py │ │ ├── legacy.py │ │ ├── psycho.py │ │ └── xpyriment.py │ ├── _line │ │ ├── __init__.py │ │ ├── legacy.py │ │ ├── line.py │ │ ├── psycho.py │ │ └── xpyriment.py │ ├── _noise_patch │ │ ├── __init__.py │ │ ├── legacy.py │ │ ├── noise_patch.py │ │ ├── psycho.py │ │ └── xpyriment.py │ ├── _polygon │ │ ├── __init__.py │ │ ├── legacy.py │ │ ├── polygon.py │ │ ├── psycho.py │ │ └── xpyriment.py │ ├── _rect │ │ ├── __init__.py │ │ ├── legacy.py │ │ ├── psycho.py │ │ ├── rect.py │ │ └── xpyriment.py │ ├── _richtext │ │ ├── __init__.py │ │ ├── legacy.py │ │ ├── psycho.py │ │ ├── richtext.py │ │ └── xpyriment.py │ ├── _text │ │ ├── __init__.py │ │ ├── legacy.py │ │ └── text.py │ ├── canvas.py │ ├── legacy.py │ ├── psycho.py │ └── xpyriment.py ├── _clock │ ├── __init__.py │ ├── clock.py │ ├── legacy.py │ └── psycho.py ├── _color │ ├── __init__.py │ ├── color.py │ ├── legacy.py │ └── psycho.py ├── _coordinates │ ├── __init__.py │ ├── coordinates.py │ ├── legacy.py │ ├── psycho.py │ └── xpyriment.py ├── _keyboard │ ├── __init__.py │ ├── keybabel.py │ ├── keyboard.py │ ├── legacy.py │ └── psycho.py ├── _log │ ├── __init__.py │ ├── csv.py │ └── log.py ├── _mouse │ ├── __init__.py │ ├── legacy.py │ ├── mouse.py │ ├── psycho.py │ └── xpyriment.py ├── _sampler │ ├── __init__.py │ ├── legacy.py │ ├── psycho.py │ └── sampler.py ├── backend.py ├── canvas.py ├── canvas_elements.py ├── clock.py ├── color.py ├── keyboard.py ├── log.py ├── mouse.py ├── resources.py ├── resources │ ├── Roboto-Regular.ttf │ ├── RobotoCondensed-Regular.ttf │ ├── RobotoMono-Regular.ttf │ ├── RobotoSlab-Regular.ttf │ ├── arabic.ttf │ ├── backend_info.yaml │ ├── hebrew.ttf │ ├── hindi.ttf │ ├── mono.ttf │ ├── sans.ttf │ ├── serif.ttf │ └── widgets │ │ ├── gray │ │ ├── box-checked-large.png │ │ ├── box-checked.png │ │ ├── box-unchecked-large.png │ │ └── box-unchecked.png │ │ └── interaction.ogg ├── sampler.py └── synth.py ├── opensesame ├── opensesame_extensions └── core │ ├── __init__.py │ ├── after_experiment │ ├── __init__.py │ ├── after_experiment.py │ ├── finished.md │ └── locale │ │ ├── ar │ │ └── finished.md │ │ ├── bn │ │ └── finished.md │ │ ├── de │ │ └── finished.md │ │ ├── es │ │ └── finished.md │ │ ├── fr │ │ └── finished.md │ │ ├── he │ │ └── finished.md │ │ ├── hi │ │ └── finished.md │ │ ├── id │ │ └── finished.md │ │ ├── it │ │ └── finished.md │ │ ├── ja │ │ └── finished.md │ │ ├── ko │ │ └── finished.md │ │ ├── nl │ │ └── finished.md │ │ ├── pt │ │ └── finished.md │ │ ├── ru │ │ └── finished.md │ │ ├── tr │ │ └── finished.md │ │ ├── yue │ │ └── finished.md │ │ └── zh │ │ └── finished.md │ ├── analytics │ ├── __init__.py │ └── analytics.py │ ├── automatic_backup │ ├── __init__.py │ └── automatic_backup.py │ ├── bug_report │ ├── __init__.py │ ├── bug_report.py │ ├── failure.md │ ├── locale │ │ ├── ar │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── bn │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── de │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── es │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── fr │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── he │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── hi │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── id │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── it │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── ja │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── ko │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── nl │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── pt │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── ru │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── tr │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ ├── yue │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ │ └── zh │ │ │ ├── failure.md │ │ │ ├── report.md │ │ │ └── success.md │ ├── report.md │ └── success.md │ ├── command_palette │ ├── __init__.py │ └── command_palette.py │ ├── example_experiments │ ├── __init__.py │ ├── example_experiments.py │ └── examples │ │ ├── attentional_blink │ │ ├── experiment.osexp │ │ └── quickrun.csv │ │ ├── attentional_capture │ │ ├── experiment.osexp │ │ └── quickrun.csv │ │ ├── gaze_cuing │ │ ├── experiment.osexp │ │ └── quickrun.csv │ │ ├── implicit_association_test │ │ ├── experiment.osexp │ │ └── quickrun.csv │ │ ├── lexical_decision │ │ ├── experiment.osexp │ │ └── quickrun.csv │ │ └── stop_signal_task │ │ ├── experiment.osexp │ │ └── quickrun.csv │ ├── file_handler │ ├── __init__.py │ └── file_handler.py │ ├── get_started │ ├── __init__.py │ ├── get_started.md │ ├── get_started.py │ └── locale │ │ ├── ar │ │ └── get_started.md │ │ ├── bn │ │ └── get_started.md │ │ ├── de │ │ └── get_started.md │ │ ├── es │ │ └── get_started.md │ │ ├── fr │ │ └── get_started.md │ │ ├── he │ │ └── get_started.md │ │ ├── hi │ │ └── get_started.md │ │ ├── id │ │ └── get_started.md │ │ ├── it │ │ └── get_started.md │ │ ├── ja │ │ └── get_started.md │ │ ├── ko │ │ └── get_started.md │ │ ├── nl │ │ └── get_started.md │ │ ├── pt │ │ └── get_started.md │ │ ├── ru │ │ └── get_started.md │ │ ├── tr │ │ └── get_started.md │ │ ├── yue │ │ └── get_started.md │ │ └── zh │ │ └── get_started.md │ ├── help │ ├── __init__.py │ ├── help.py │ ├── locale │ │ ├── ar │ │ │ └── offline_help.md │ │ ├── bn │ │ │ └── offline_help.md │ │ ├── de │ │ │ └── offline_help.md │ │ ├── es │ │ │ └── offline_help.md │ │ ├── fr │ │ │ └── offline_help.md │ │ ├── he │ │ │ └── offline_help.md │ │ ├── hi │ │ │ └── offline_help.md │ │ ├── id │ │ │ └── offline_help.md │ │ ├── it │ │ │ └── offline_help.md │ │ ├── ja │ │ │ └── offline_help.md │ │ ├── ko │ │ │ └── offline_help.md │ │ ├── nl │ │ │ └── offline_help.md │ │ ├── pt │ │ │ └── offline_help.md │ │ ├── ru │ │ │ └── offline_help.md │ │ ├── tr │ │ │ └── offline_help.md │ │ ├── yue │ │ │ └── offline_help.md │ │ └── zh │ │ │ └── offline_help.md │ ├── offline_help.md │ └── psychopy_sitemap.yaml │ ├── jupyter_console │ ├── __init__.py │ ├── jupyter_console.py │ ├── jupyter_tabwidget │ │ ├── __init__.py │ │ ├── console_cornerwidget.py │ │ ├── console_tabwidget.py │ │ ├── constants.py │ │ ├── jupyter_console.py │ │ └── transparent_jupyter_widget.py │ └── preferences.ui │ ├── notifications │ ├── __init__.py │ └── notifications.py │ ├── opensesame_4_notifications │ ├── __init__.py │ ├── locale │ │ ├── ar │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── bn │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── de │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── es │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── fr │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── he │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── hi │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── id │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── it │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── ja │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── ko │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── nl │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── pt │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── ru │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── tr │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ ├── yue │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ │ └── zh │ │ │ ├── new-experiment.md │ │ │ └── old-experiment.md │ ├── new-experiment.md │ ├── old-experiment.md │ └── opensesame_4_notifications.py │ ├── preload_items │ ├── __init__.py │ └── preload_items.py │ ├── pyqode_manager │ ├── __init__.py │ ├── preferences.ui │ ├── pyqode_manager.py │ └── pyqode_preferences.py │ ├── quick_selector │ ├── __init__.py │ └── quick_selector.py │ ├── quick_switcher │ ├── __init__.py │ └── quick_switcher.py │ ├── restore_ui_elements │ ├── __init__.py │ └── restore_ui_elements.py │ ├── subprocess_manager │ ├── __init__.py │ └── subprocess_manager.py │ ├── system_check │ ├── __init__.py │ └── system_check.py │ ├── tab_to_dockwidget │ ├── __init__.py │ ├── tab_to_dockwidget.py │ └── tab_to_dockwidget_docktab.py │ ├── toolbar_menu │ ├── __init__.py │ ├── locale │ │ ├── ar │ │ │ └── system-information.md │ │ ├── bn │ │ │ └── system-information.md │ │ ├── de │ │ │ └── system-information.md │ │ ├── es │ │ │ └── system-information.md │ │ ├── fr │ │ │ └── system-information.md │ │ ├── he │ │ │ └── system-information.md │ │ ├── hi │ │ │ └── system-information.md │ │ ├── id │ │ │ └── system-information.md │ │ ├── it │ │ │ └── system-information.md │ │ ├── ja │ │ │ └── system-information.md │ │ ├── ko │ │ │ └── system-information.md │ │ ├── nl │ │ │ └── system-information.md │ │ ├── pt │ │ │ └── system-information.md │ │ ├── ru │ │ │ └── system-information.md │ │ ├── tr │ │ │ └── system-information.md │ │ ├── yue │ │ │ └── system-information.md │ │ └── zh │ │ │ └── system-information.md │ ├── system-information.md │ └── toolbar_menu.py │ ├── undo_manager │ ├── __init__.py │ ├── undo_manager.py │ └── undo_stack.py │ └── variable_inspector │ ├── __init__.py │ ├── variable_inspector.py │ ├── variable_inspector.ui │ ├── variable_inspector_cell.py │ ├── variable_inspector_dockwidget.py │ └── variable_inspector_widget.py ├── opensesame_plugins └── core │ ├── __init__.py │ ├── advanced_delay │ ├── __init__.py │ ├── advanced_delay.md │ ├── advanced_delay.py │ └── locale │ │ ├── ar │ │ └── advanced_delay.md │ │ ├── bn │ │ └── advanced_delay.md │ │ ├── de │ │ └── advanced_delay.md │ │ ├── es │ │ └── advanced_delay.md │ │ ├── fr │ │ └── advanced_delay.md │ │ ├── he │ │ └── advanced_delay.md │ │ ├── hi │ │ └── advanced_delay.md │ │ ├── id │ │ └── advanced_delay.md │ │ ├── it │ │ └── advanced_delay.md │ │ ├── ja │ │ └── advanced_delay.md │ │ ├── ko │ │ └── advanced_delay.md │ │ ├── nl │ │ └── advanced_delay.md │ │ ├── pt │ │ └── advanced_delay.md │ │ ├── ru │ │ └── advanced_delay.md │ │ ├── tr │ │ └── advanced_delay.md │ │ ├── yue │ │ └── advanced_delay.md │ │ └── zh │ │ └── advanced_delay.md │ ├── coroutines │ ├── __init__.py │ ├── coroutines.py │ └── oscoroutines │ │ ├── __init__.py │ │ ├── _base_task.py │ │ ├── _coroutines.py │ │ ├── _inline_task.py │ │ ├── _item_task.py │ │ ├── _items_adapter.py │ │ ├── _qtcoroutines.py │ │ └── _tree_overview_adapter.py │ ├── form_base │ ├── __init__.py │ └── form_base.py │ ├── form_consent │ ├── __init__.py │ └── form_consent.py │ ├── form_multiple_choice │ ├── __init__.py │ └── form_multiple_choice.py │ ├── form_text_display │ ├── __init__.py │ └── form_text_display.py │ ├── form_text_input │ ├── __init__.py │ └── form_text_input.py │ ├── joystick │ ├── __init__.py │ ├── _libjoystick │ │ ├── __init__.py │ │ ├── basejoystick.py │ │ └── legacy.py │ ├── joystick.md │ ├── joystick.png │ ├── joystick.py │ ├── joystick_large.png │ ├── libjoystick.py │ └── locale │ │ ├── ar │ │ └── joystick.md │ │ ├── bn │ │ └── joystick.md │ │ ├── de │ │ └── joystick.md │ │ ├── es │ │ └── joystick.md │ │ ├── fr │ │ └── joystick.md │ │ ├── he │ │ └── joystick.md │ │ ├── hi │ │ └── joystick.md │ │ ├── id │ │ └── joystick.md │ │ ├── it │ │ └── joystick.md │ │ ├── ja │ │ └── joystick.md │ │ ├── ko │ │ └── joystick.md │ │ ├── nl │ │ └── joystick.md │ │ ├── pt │ │ └── joystick.md │ │ ├── ru │ │ └── joystick.md │ │ ├── tr │ │ └── joystick.md │ │ ├── yue │ │ └── joystick.md │ │ └── zh │ │ └── joystick.md │ ├── notepad │ ├── __init__.py │ ├── locale │ │ ├── ar │ │ │ └── notepad.md │ │ ├── bn │ │ │ └── notepad.md │ │ ├── de │ │ │ └── notepad.md │ │ ├── es │ │ │ └── notepad.md │ │ ├── fr │ │ │ └── notepad.md │ │ ├── he │ │ │ └── notepad.md │ │ ├── hi │ │ │ └── notepad.md │ │ ├── id │ │ │ └── notepad.md │ │ ├── it │ │ │ └── notepad.md │ │ ├── ja │ │ │ └── notepad.md │ │ ├── ko │ │ │ └── notepad.md │ │ ├── nl │ │ │ └── notepad.md │ │ ├── pt │ │ │ └── notepad.md │ │ ├── ru │ │ │ └── notepad.md │ │ ├── tr │ │ │ └── notepad.md │ │ ├── yue │ │ │ └── notepad.md │ │ └── zh │ │ │ └── notepad.md │ ├── notepad.md │ └── notepad.py │ ├── quest_staircase_init │ ├── __init__.py │ ├── locale │ │ ├── ar │ │ │ └── quest_staircase_init.md │ │ ├── bn │ │ │ └── quest_staircase_init.md │ │ ├── de │ │ │ └── quest_staircase_init.md │ │ ├── es │ │ │ └── quest_staircase_init.md │ │ ├── fr │ │ │ └── quest_staircase_init.md │ │ ├── he │ │ │ └── quest_staircase_init.md │ │ ├── hi │ │ │ └── quest_staircase_init.md │ │ ├── id │ │ │ └── quest_staircase_init.md │ │ ├── it │ │ │ └── quest_staircase_init.md │ │ ├── ja │ │ │ └── quest_staircase_init.md │ │ ├── ko │ │ │ └── quest_staircase_init.md │ │ ├── nl │ │ │ └── quest_staircase_init.md │ │ ├── pt │ │ │ └── quest_staircase_init.md │ │ ├── ru │ │ │ └── quest_staircase_init.md │ │ ├── tr │ │ │ └── quest_staircase_init.md │ │ ├── yue │ │ │ └── quest_staircase_init.md │ │ └── zh │ │ │ └── quest_staircase_init.md │ ├── quest_staircase_init.md │ ├── quest_staircase_init.png │ ├── quest_staircase_init.py │ └── quest_staircase_init_large.png │ ├── quest_staircase_next │ ├── __init__.py │ ├── locale │ │ ├── ar │ │ │ └── quest_staircase_next.md │ │ ├── bn │ │ │ └── quest_staircase_next.md │ │ ├── de │ │ │ └── quest_staircase_next.md │ │ ├── es │ │ │ └── quest_staircase_next.md │ │ ├── fr │ │ │ └── quest_staircase_next.md │ │ ├── he │ │ │ └── quest_staircase_next.md │ │ ├── hi │ │ │ └── quest_staircase_next.md │ │ ├── id │ │ │ └── quest_staircase_next.md │ │ ├── it │ │ │ └── quest_staircase_next.md │ │ ├── ja │ │ │ └── quest_staircase_next.md │ │ ├── ko │ │ │ └── quest_staircase_next.md │ │ ├── nl │ │ │ └── quest_staircase_next.md │ │ ├── pt │ │ │ └── quest_staircase_next.md │ │ ├── ru │ │ │ └── quest_staircase_next.md │ │ ├── tr │ │ │ └── quest_staircase_next.md │ │ ├── yue │ │ │ └── quest_staircase_next.md │ │ └── zh │ │ │ └── quest_staircase_next.md │ ├── quest_staircase_next.md │ ├── quest_staircase_next.png │ ├── quest_staircase_next.py │ └── quest_staircase_next_large.png │ ├── repeat_cycle │ ├── __init__.py │ ├── locale │ │ ├── ar │ │ │ └── repeat_cycle.md │ │ ├── bn │ │ │ └── repeat_cycle.md │ │ ├── de │ │ │ └── repeat_cycle.md │ │ ├── es │ │ │ └── repeat_cycle.md │ │ ├── fr │ │ │ └── repeat_cycle.md │ │ ├── he │ │ │ └── repeat_cycle.md │ │ ├── hi │ │ │ └── repeat_cycle.md │ │ ├── id │ │ │ └── repeat_cycle.md │ │ ├── it │ │ │ └── repeat_cycle.md │ │ ├── ja │ │ │ └── repeat_cycle.md │ │ ├── ko │ │ │ └── repeat_cycle.md │ │ ├── nl │ │ │ └── repeat_cycle.md │ │ ├── pt │ │ │ └── repeat_cycle.md │ │ ├── ru │ │ │ └── repeat_cycle.md │ │ ├── tr │ │ │ └── repeat_cycle.md │ │ ├── yue │ │ │ └── repeat_cycle.md │ │ └── zh │ │ │ └── repeat_cycle.md │ ├── repeat_cycle.md │ └── repeat_cycle.py │ ├── reset_feedback │ ├── __init__.py │ ├── locale │ │ ├── ar │ │ │ └── reset_feedback.md │ │ ├── bn │ │ │ └── reset_feedback.md │ │ ├── de │ │ │ └── reset_feedback.md │ │ ├── es │ │ │ └── reset_feedback.md │ │ ├── fr │ │ │ └── reset_feedback.md │ │ ├── he │ │ │ └── reset_feedback.md │ │ ├── hi │ │ │ └── reset_feedback.md │ │ ├── id │ │ │ └── reset_feedback.md │ │ ├── it │ │ │ └── reset_feedback.md │ │ ├── ja │ │ │ └── reset_feedback.md │ │ ├── ko │ │ │ └── reset_feedback.md │ │ ├── nl │ │ │ └── reset_feedback.md │ │ ├── pt │ │ │ └── reset_feedback.md │ │ ├── ru │ │ │ └── reset_feedback.md │ │ ├── tr │ │ │ └── reset_feedback.md │ │ ├── yue │ │ │ └── reset_feedback.md │ │ └── zh │ │ │ └── reset_feedback.md │ ├── reset_feedback.md │ └── reset_feedback.py │ ├── srbox │ ├── __init__.py │ ├── libsrbox.py │ ├── srbox.png │ ├── srbox.py │ └── srbox_large.png │ └── touch_response │ ├── __init__.py │ ├── locale │ ├── ar │ │ └── touch_response.md │ ├── bn │ │ └── touch_response.md │ ├── de │ │ └── touch_response.md │ ├── es │ │ └── touch_response.md │ ├── fr │ │ └── touch_response.md │ ├── he │ │ └── touch_response.md │ ├── hi │ │ └── touch_response.md │ ├── id │ │ └── touch_response.md │ ├── it │ │ └── touch_response.md │ ├── ja │ │ └── touch_response.md │ ├── ko │ │ └── touch_response.md │ ├── nl │ │ └── touch_response.md │ ├── pt │ │ └── touch_response.md │ ├── ru │ │ └── touch_response.md │ ├── tr │ │ └── touch_response.md │ ├── yue │ │ └── touch_response.md │ └── zh │ │ └── touch_response.md │ ├── touch_response.md │ └── touch_response.py ├── pyproject.toml ├── readme.md ├── tests ├── data │ ├── __pool__ │ │ ├── os-color-picker.png │ │ ├── test.csv │ │ ├── test.xlsx │ │ ├── test_colors.png │ │ ├── test_images.png │ │ ├── test_patches.png │ │ ├── test_shapes.png │ │ └── test_text.png │ ├── loop_test.osexp │ ├── response_test.osexp │ ├── scriptfile.osexp │ ├── sketchpad_test.osexp │ └── targzfile.osexp ├── test_color.py ├── test_compilable.py ├── test_headless.py ├── test_inline_script.py ├── test_readandwrite.py ├── test_response.py ├── test_syntax.py └── test_translations.py └── translation_tools ├── check-ts.py ├── collect-translatables.py ├── generate-ts.py ├── readme.md ├── translate-md.py ├── translate-ts.py ├── translation_utils.py ├── translations-checked.json └── translations.json /libqtopensesame/resources/chinese-japanese-korean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/chinese-japanese-korean.ttf -------------------------------------------------------------------------------- /libqtopensesame/resources/einstein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/einstein.png -------------------------------------------------------------------------------- /libqtopensesame/resources/einstein@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/einstein@2x.png -------------------------------------------------------------------------------- /libqtopensesame/resources/help/locale/he/missing.md: -------------------------------------------------------------------------------- 1 | # לא נמצא! 2 | 3 | אופס, העמוד שביקשת לא נמצא! אבל אל תדאג. אתה יכול למצוא את כל העזרה שאתה צריך באינטרנט, ב- . 4 | 5 | שיהיה לך יום טוב! -------------------------------------------------------------------------------- /libqtopensesame/resources/help/locale/hi/missing.md: -------------------------------------------------------------------------------- 1 | # नहीं मिला! 2 | 3 | फिरक्की, वह पृष्ठ जो आप ने अनुरोध किया था, नहीं मिला! लेकिन चिंता मत करें। आप पर ऑनलाइन सभी मदद पा सकते हैं। 4 | 5 | आपका दिन अच्छा बीते! -------------------------------------------------------------------------------- /libqtopensesame/resources/help/locale/ja/missing.md: -------------------------------------------------------------------------------- 1 | # 見つかりません! 2 | 3 | おっと、お探しのページが見つかりませんでした!でも心配しないでください。すべてのヘルプがオンラインで利用できます。。 4 | 5 | 良い一日をお過ごしください! -------------------------------------------------------------------------------- /libqtopensesame/resources/help/locale/ko/missing.md: -------------------------------------------------------------------------------- 1 | # 찾을 수 없음! 2 | 3 | 이런, 요청하신 페이지를 찾을 수 없습니다! 하지만 걱정하지 마세요. 다음 웹사이트에서 필요한 모든 도움을 온라인으로 찾으실 수 있습니다. . 4 | 5 | 좋은 하루 되세요! -------------------------------------------------------------------------------- /libqtopensesame/resources/help/locale/yue/missing.md: -------------------------------------------------------------------------------- 1 | # 找唔到! 2 | 3 | 唉,您要嘅網頁搵唔到喎! 但唔使擔心。 您可以喺網上找到所有需要嘅幫助,就喺。 4 | 5 | 祝您過得好啲! -------------------------------------------------------------------------------- /libqtopensesame/resources/help/locale/yue/new_item_warning.md: -------------------------------------------------------------------------------- 1 | # 請注意! 2 | 3 | 當創建新項目時觸發了一個警告。 4 | 5 | - 這可能表示您正在使用為較舊版本的OpenSesame編寫的插件。 6 | - 警告可能觸發錯誤報告("哎呀,我又做錯了...");您可以通過禁用`bug_report`擴展來禁用這些警告。 7 | - 已將詳細警告信息打印到調試窗口。 -------------------------------------------------------------------------------- /libqtopensesame/resources/help/locale/zh/missing.md: -------------------------------------------------------------------------------- 1 | # 未找到! 2 | 3 | 哎呀,您请求的页面未找到! 但是不用担心。您可以在 上找到所有您需要的在线帮助。 4 | 5 | 祝您今天过得愉快! -------------------------------------------------------------------------------- /libqtopensesame/resources/help/locale/zh/new_item_warning.md: -------------------------------------------------------------------------------- 1 | # 请注意! 2 | 3 | 在创建新项目时触发了一个警告。 4 | 5 | - 这可能表明您正在使用为旧版OpenSesame编写的插件。 6 | - 警告可能触发错误报告(“哎哟,我又犯了一个错 ...”);您可以通过禁用`bug_report`扩展来禁用这些警告。 7 | - 详细的警告信息已打印到调试窗口。 -------------------------------------------------------------------------------- /libqtopensesame/resources/help/missing.md: -------------------------------------------------------------------------------- 1 | # Not found! 2 | 3 | Oops, the page that you requested was not found! But don't worry. You can find all the help you need on-line, at . 4 | 5 | Have a good day! 6 | -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/ar.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/ar.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/bn.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/bn.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/de.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/es.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/fr.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/he.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/he.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/hi.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/hi.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/id.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/id.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/it.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/ja.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/ja.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/ko.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/nl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/nl.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/pt.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/pt.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/ru.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/tr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/tr.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/yue.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/yue.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/locale/zh.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/locale/zh.qm -------------------------------------------------------------------------------- /libqtopensesame/resources/opensesame.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/opensesame.icns -------------------------------------------------------------------------------- /libqtopensesame/resources/opensesame.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/opensesame.ico -------------------------------------------------------------------------------- /libqtopensesame/resources/opensesamerun.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/opensesamerun.ico -------------------------------------------------------------------------------- /libqtopensesame/resources/sounds/bark.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/sounds/bark.ogg -------------------------------------------------------------------------------- /libqtopensesame/resources/sounds/drip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/sounds/drip.ogg -------------------------------------------------------------------------------- /libqtopensesame/resources/sounds/glass.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/sounds/glass.ogg -------------------------------------------------------------------------------- /libqtopensesame/resources/sounds/notify1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/sounds/notify1.ogg -------------------------------------------------------------------------------- /libqtopensesame/resources/sounds/notify2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/sounds/notify2.ogg -------------------------------------------------------------------------------- /libqtopensesame/resources/sounds/notify3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/sounds/notify3.ogg -------------------------------------------------------------------------------- /libqtopensesame/resources/sounds/phase.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/sounds/phase.ogg -------------------------------------------------------------------------------- /libqtopensesame/resources/sounds/sonar.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/sounds/sonar.ogg -------------------------------------------------------------------------------- /libqtopensesame/resources/templates/quickrun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/templates/quickrun.csv -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/add.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/dialog-no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/dialog-no.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/dialog-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/dialog-ok.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/edit-copy.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/edit-cut.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/edit-find.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/edit-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/edit-flag.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/edit-redo.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/edit-undo.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/event-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/event-new.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/go-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/go-bottom.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/go-down.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/go-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/go-first.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/go-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/go-home.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/go-jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/go-jump.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/go-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/go-last.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/go-next.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/go-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/go-top.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/go-up.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/gtk-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/gtk-ok.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/gtk-yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/gtk-yes.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/help-faq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/help-faq.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/help-hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/help-hint.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/list-add.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/mail-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/mail-move.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/mail-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/mail-send.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/mail-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/mail-sent.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/node-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/node-add.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/node-cusp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/node-cusp.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/node-join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/node-join.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/node-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/node-line.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/open-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/open-menu.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/remove.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/tag-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/tag-new.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/zoom-in.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/actions/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/actions/zoom-out.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/apps/apport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/apps/apport.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/apps/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/apps/calendar.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/apps/geary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/apps/geary.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/apps/help-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/apps/help-browser.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/apps/other-driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/apps/other-driver.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/apps/system-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/apps/system-error.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/apps/system-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/apps/system-users.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/apps/web-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/apps/web-browser.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/devices/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/devices/printer.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/mimetypes/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/mimetypes/text.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/battery-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/battery-low.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/gpm-ups-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/gpm-ups-000.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/gpm-ups-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/gpm-ups-020.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/gpm-ups-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/gpm-ups-040.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/gpm-ups-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/gpm-ups-060.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/gpm-ups-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/gpm-ups-080.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/gpm-ups-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/gpm-ups-100.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/gsm-3g-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/gsm-3g-full.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/gsm-3g-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/gsm-3g-high.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/gsm-3g-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/gsm-3g-low.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/gsm-3g-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/gsm-3g-none.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/network-vpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/network-vpn.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/nm-adhoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/nm-adhoc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/nm-signal-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/nm-signal-0.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/panel/nm-vpn-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/panel/nm-vpn-lock.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/places/folder-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/places/folder-tag.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/places/folder.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/places/mail-inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/places/mail-inbox.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/places/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/places/playlist.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/places/user-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/places/user-home.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/status/starred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/status/starred.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/status/user-away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/status/user-away.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/16x16/status/user-busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/16x16/status/user-busy.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/add.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/dialog-no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/dialog-no.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/dialog-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/dialog-ok.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/edit-copy.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/edit-cut.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/edit-find.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/edit-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/edit-flag.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/edit-redo.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/edit-undo.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/event-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/event-new.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/go-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/go-bottom.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/go-down.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/go-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/go-first.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/go-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/go-home.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/go-jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/go-jump.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/go-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/go-last.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/go-next.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/go-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/go-top.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/go-up.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/gtk-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/gtk-ok.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/gtk-yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/gtk-yes.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/help-faq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/help-faq.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/help-hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/help-hint.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/list-add.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/mail-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/mail-move.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/mail-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/mail-send.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/mail-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/mail-sent.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/node-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/node-add.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/node-cusp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/node-cusp.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/node-join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/node-join.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/node-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/node-line.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/open-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/open-menu.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/remove.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/tag-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/tag-new.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/zoom-in.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/actions/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/actions/zoom-out.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/apps/apport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/apps/apport.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/apps/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/apps/calendar.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/apps/geary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/apps/geary.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/apps/help-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/apps/help-browser.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/apps/other-driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/apps/other-driver.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/apps/system-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/apps/system-error.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/apps/system-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/apps/system-users.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/apps/web-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/apps/web-browser.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/devices/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/devices/printer.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/mimetypes/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/mimetypes/text.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/battery-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/battery-low.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/gpm-ups-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/gpm-ups-000.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/gpm-ups-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/gpm-ups-020.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/gpm-ups-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/gpm-ups-040.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/gpm-ups-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/gpm-ups-060.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/gpm-ups-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/gpm-ups-080.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/gpm-ups-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/gpm-ups-100.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/gsm-3g-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/gsm-3g-full.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/gsm-3g-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/gsm-3g-high.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/gsm-3g-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/gsm-3g-low.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/gsm-3g-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/gsm-3g-none.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/network-vpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/network-vpn.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/nm-adhoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/nm-adhoc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/nm-signal-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/nm-signal-0.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/panel/nm-vpn-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/panel/nm-vpn-lock.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/places/folder-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/places/folder-tag.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/places/folder.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/places/mail-inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/places/mail-inbox.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/places/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/places/playlist.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/places/user-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/places/user-home.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/status/starred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/status/starred.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/status/user-away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/status/user-away.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/24x24/status/user-busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/24x24/status/user-busy.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/add.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/dialog-no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/dialog-no.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/dialog-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/dialog-ok.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/edit-copy.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/edit-cut.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/edit-find.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/edit-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/edit-flag.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/edit-redo.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/edit-undo.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/event-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/event-new.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/go-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/go-bottom.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/go-down.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/go-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/go-first.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/go-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/go-home.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/go-jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/go-jump.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/go-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/go-last.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/go-next.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/go-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/go-top.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/go-up.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/gtk-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/gtk-ok.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/gtk-yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/gtk-yes.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/help-faq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/help-faq.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/help-hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/help-hint.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/list-add.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/mail-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/mail-move.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/mail-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/mail-send.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/mail-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/mail-sent.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/node-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/node-add.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/node-cusp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/node-cusp.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/node-join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/node-join.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/node-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/node-line.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/open-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/open-menu.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/remove.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/tag-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/tag-new.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/zoom-in.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/actions/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/actions/zoom-out.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/apps/apport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/apps/apport.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/apps/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/apps/calendar.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/apps/geary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/apps/geary.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/apps/help-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/apps/help-browser.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/apps/other-driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/apps/other-driver.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/apps/system-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/apps/system-error.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/apps/system-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/apps/system-users.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/apps/web-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/apps/web-browser.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/devices/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/devices/printer.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/mimetypes/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/mimetypes/text.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/battery-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/battery-low.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/gpm-ups-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/gpm-ups-000.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/gpm-ups-020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/gpm-ups-020.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/gpm-ups-040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/gpm-ups-040.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/gpm-ups-060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/gpm-ups-060.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/gpm-ups-080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/gpm-ups-080.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/gpm-ups-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/gpm-ups-100.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/gsm-3g-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/gsm-3g-full.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/gsm-3g-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/gsm-3g-high.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/gsm-3g-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/gsm-3g-low.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/gsm-3g-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/gsm-3g-none.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/network-vpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/network-vpn.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/nm-adhoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/nm-adhoc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/nm-signal-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/nm-signal-0.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/panel/nm-vpn-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/panel/nm-vpn-lock.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/places/folder-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/places/folder-tag.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/places/folder.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/places/mail-inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/places/mail-inbox.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/places/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/places/playlist.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/places/user-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/places/user-home.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/status/starred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/status/starred.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/status/user-away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/status/user-away.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/Faba/32x32/status/user-busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/Faba/32x32/status/user-busy.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/0ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/0ad.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/2048.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/amarok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/amarok.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/anjuta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/anjuta.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/anki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/anki.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/ardour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/ardour.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/arista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/arista.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/astahc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/astahc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/atom.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/authy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/authy.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/avast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/avast.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/birdie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/birdie.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/bokken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/bokken.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/budgie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/budgie.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/byobu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/byobu.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/ccsm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/ccsm.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/cheese.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/chess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/chess.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/clamav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/clamav.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/clock.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/comix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/comix.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/curlew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/curlew.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/d-feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/d-feet.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/dart.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/dasher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/dasher.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/deluge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/deluge.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/desura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/desura.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/dia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/dia.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/docky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/docky.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/dosbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/dosbox.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/dota2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/dota2.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/dvdrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/dvdrip.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/earth.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/eidete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/eidete.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/ekiga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/ekiga.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/emacs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/emacs.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/emule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/emule.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/espeak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/espeak.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/fez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/fez.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/fitbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/fitbit.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/flash.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gajim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gajim.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gaupol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gaupol.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gba.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/geany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/geany.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gensgs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gensgs.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/ghex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/ghex.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gimp.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gitg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gitg.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/glade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/glade.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/glippy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/glippy.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gmpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gmpc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gnac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gnac.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gnu-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gnu-r.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gnupg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gnupg.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/godot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/godot.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gpick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gpick.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gramps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gramps.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/grsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/grsync.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gtg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gtg.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gthumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gthumb.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gtkpod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gtkpod.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/guake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/guake.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gummi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gummi.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gvim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/gvim.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/higan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/higan.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/hplip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/hplip.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/hugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/hugin.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/iagno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/iagno.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/ibus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/ibus.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/insync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/insync.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/jabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/jabber.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/jack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/jack.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/jamin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/jamin.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/java.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/jockey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/jockey.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/juk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/juk.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/kazam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/kazam.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/kile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/kile.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/komodo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/komodo.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/kopete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/kopete.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/krita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/krita.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/lmms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/lmms.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/lutris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/lutris.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/lyx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/lyx.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/matlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/matlab.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/mc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/meld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/meld.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/midori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/midori.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/miro.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/mixxx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/mixxx.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/moka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/moka.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/mpd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/mpd.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/mpv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/mpv.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/mumble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/mumble.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/muon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/muon.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/nemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/nemo.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/nexuiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/nexuiz.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/notes.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/obconf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/obconf.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/octave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/octave.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/octopi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/octopi.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/opera.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/oxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/oxygen.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/panel.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/parole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/parole.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/pdfmod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/pdfmod.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/pencil.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/picard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/picard.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/pidgin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/pidgin.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/pithos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/pithos.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/plank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/plank.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/plasma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/plasma.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/plex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/plex.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/poedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/poedit.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/polari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/polari.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/polly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/polly.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/portal.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/pragha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/pragha.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/putty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/putty.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/pycad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/pycad.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/python.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/qcad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/qcad.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/qsynth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/qsynth.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/reditr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/reditr.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/retext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/retext.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/rygel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/rygel.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/samba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/samba.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/sigil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/sigil.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/skype.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/smuxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/smuxi.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/solaar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/solaar.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/steam.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/sudoku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/sudoku.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/totem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/totem.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/ufraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/ufraw.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/uget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/uget.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/vala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/vala.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/venom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/venom.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/vlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/vlc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/vocal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/vocal.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/warsow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/warsow.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/webide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/webide.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/wine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/wine.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/winff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/winff.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/wuala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/wuala.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xampp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xampp.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xbmc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xbmc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xchat.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xhydra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xhydra.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xiphos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xiphos.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xmind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xmind.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xnoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xnoise.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xorg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xorg.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xterm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/xterm.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/yast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/yast.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/zim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/zim.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/zotero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/zotero.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/zsnes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/apps/zsnes.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/web/web-aim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/web/web-aim.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/web/web-icq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/web/web-icq.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/web/web-irc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/web/web-irc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/16x16/web/web-vk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/16x16/web/web-vk.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/0ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/0ad.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/2048.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/anki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/anki.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/atom.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/ccsm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/ccsm.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/dart.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/dia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/dia.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/fez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/fez.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/gba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/gba.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/ghex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/ghex.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/gimp.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/gitg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/gitg.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/gmpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/gmpc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/gnac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/gnac.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/gtg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/gtg.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/gvim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/gvim.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/ibus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/ibus.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/jack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/jack.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/java.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/juk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/juk.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/kile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/kile.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/lmms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/lmms.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/lyx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/lyx.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/mc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/meld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/meld.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/miro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/miro.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/moka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/moka.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/mpd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/mpd.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/mpv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/mpv.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/muon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/muon.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/nemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/nemo.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/plex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/plex.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/qcad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/qcad.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/uget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/uget.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/vala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/vala.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/vlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/vlc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/wine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/wine.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/xbmc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/xbmc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/xorg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/xorg.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/yast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/yast.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/zim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/256x256/apps/zim.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/0ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/0ad.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/2048.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/amarok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/amarok.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/anjuta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/anjuta.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/anki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/anki.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/ardour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/ardour.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/dia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/dia.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/fez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/fez.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/gba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/gba.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/gtg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/gtg.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/juk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/juk.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/lyx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/lyx.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/mc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/mpd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/mpd.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/mpv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/mpv.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/vlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/vlc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/zim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/32x32/apps/zim.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/0ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/0ad.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/dia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/dia.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/fez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/fez.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/gba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/gba.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/gtg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/gtg.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/juk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/juk.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/lyx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/lyx.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/mc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/mpd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/mpd.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/mpv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/mpv.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/vlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/vlc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/zim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/48x48/apps/zim.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/0ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/0ad.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/dia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/dia.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/fez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/fez.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/gba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/gba.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/gtg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/gtg.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/juk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/juk.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/lyx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/lyx.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/mc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/mpd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/mpd.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/mpv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/mpv.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/vlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/vlc.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/zim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/MokaSesame/64x64/apps/zim.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/default/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/default/background.png -------------------------------------------------------------------------------- /libqtopensesame/resources/theme/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/libqtopensesame/resources/theme/fallback.png -------------------------------------------------------------------------------- /openexp/resources/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/Roboto-Regular.ttf -------------------------------------------------------------------------------- /openexp/resources/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /openexp/resources/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /openexp/resources/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /openexp/resources/arabic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/arabic.ttf -------------------------------------------------------------------------------- /openexp/resources/hebrew.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/hebrew.ttf -------------------------------------------------------------------------------- /openexp/resources/hindi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/hindi.ttf -------------------------------------------------------------------------------- /openexp/resources/mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/mono.ttf -------------------------------------------------------------------------------- /openexp/resources/sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/sans.ttf -------------------------------------------------------------------------------- /openexp/resources/serif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/serif.ttf -------------------------------------------------------------------------------- /openexp/resources/widgets/gray/box-checked-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/widgets/gray/box-checked-large.png -------------------------------------------------------------------------------- /openexp/resources/widgets/gray/box-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/widgets/gray/box-checked.png -------------------------------------------------------------------------------- /openexp/resources/widgets/gray/box-unchecked-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/widgets/gray/box-unchecked-large.png -------------------------------------------------------------------------------- /openexp/resources/widgets/gray/box-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/widgets/gray/box-unchecked.png -------------------------------------------------------------------------------- /openexp/resources/widgets/interaction.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/openexp/resources/widgets/interaction.ogg -------------------------------------------------------------------------------- /opensesame_extensions/core/after_experiment/__init__.py: -------------------------------------------------------------------------------- 1 | """Handles the end of an experimental run""" 2 | 3 | icon = "applications-accessories" 4 | -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/failure.md: -------------------------------------------------------------------------------- 1 | # Bug report not sent 2 | 3 | The bug report could not be sent. Are you connected to the internet? 4 | -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/ar/failure.md: -------------------------------------------------------------------------------- 1 | # تقرير الخلل لم يتم إرساله 2 | 3 | تعذر إرسال تقرير الخلل. هل أنت متصل بالإنترنت؟ -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/ar/success.md: -------------------------------------------------------------------------------- 1 | # تقرير الخطأ المرسل 2 | 3 | تم إرسال تقرير الخطأ الخاص بك. شكرًا لمساعدتك في تحسين OpenSesame. -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/bn/failure.md: -------------------------------------------------------------------------------- 1 | # বাগ রিপোর্ট পাঠানো হয়নি 2 | 3 | বাগ রিপোর্ট পাঠানো যাচ্ছে না। আপনি কি ইন্টারনেটের সাথে সংযুক্ত? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/bn/success.md: -------------------------------------------------------------------------------- 1 | # বাগ রিপোর্ট পাঠানো হয়েছে 2 | 3 | আপনার বাগ রিপোর্ট পাঠানো হয়েছে। ওপেনসেসামি উন্নত করায় আপনার সহায়তা দেওয়ার জন্য ধন্যবাদ। -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/de/failure.md: -------------------------------------------------------------------------------- 1 | # Fehlerbericht nicht gesendet 2 | 3 | Der Fehlerbericht konnte nicht gesendet werden. Sind Sie mit dem Internet verbunden? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/de/success.md: -------------------------------------------------------------------------------- 1 | # Fehlerbericht gesendet 2 | 3 | Ihr Fehlerbericht wurde gesendet. Vielen Dank für Ihre Hilfe, um OpenSesame zu verbessern. -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/es/failure.md: -------------------------------------------------------------------------------- 1 | # Informe de error no enviado 2 | 3 | El informe de error no pudo ser enviado. ¿Estás conectado a Internet? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/es/success.md: -------------------------------------------------------------------------------- 1 | # Informe de error enviado 2 | 3 | Su informe de error ha sido enviado. Gracias por ayudar a mejorar OpenSesame. -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/fr/failure.md: -------------------------------------------------------------------------------- 1 | # Rapport de bug non envoyé 2 | 3 | Le rapport de bug n'a pas pu être envoyé. Êtes-vous connecté à Internet ? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/fr/success.md: -------------------------------------------------------------------------------- 1 | # Rapport de bug envoyé 2 | 3 | Votre rapport de bug a été envoyé. Merci de nous aider à améliorer OpenSesame. -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/he/failure.md: -------------------------------------------------------------------------------- 1 | #דווח על באג לא נשלח 2 | 3 | לא ניתן היה לשלוח את דווח הבאג. האם אתה מחובר לאינטרנט? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/he/success.md: -------------------------------------------------------------------------------- 1 | #דווח תקלה נשלח 2 | 3 | דווח התקלה שלך נשלח. תודה שעוזר לשפר את OpenSesame. -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/hi/failure.md: -------------------------------------------------------------------------------- 1 | # बग रिपोर्ट नहीं भेजी गई 2 | 3 | बग रिपोर्ट नहीं भेजी जा सकी। क्या आप इंटरनेट से जुड़े हुए हैं? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/hi/success.md: -------------------------------------------------------------------------------- 1 | # बग रिपोर्ट भेजी गई 2 | 3 | आपकी बग रिपोर्ट भेज दी गई है। OpenSesame को बेहतर बनाने में आपकी मदद के लिए धन्यवाद। -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/id/failure.md: -------------------------------------------------------------------------------- 1 | # Laporan bug tidak terkirim 2 | 3 | Laporan bug tidak bisa dikirim. Apakah Anda terhubung ke internet? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/id/success.md: -------------------------------------------------------------------------------- 1 | # Laporan bug terkirim 2 | 3 | Laporan bug Anda telah terkirim. Terima kasih telah membantu meningkatkan OpenSesame. -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/it/failure.md: -------------------------------------------------------------------------------- 1 | # Segnalazione errore non inviata 2 | 3 | La segnalazione del bug non è stata inviata. Sei connesso a internet? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/it/success.md: -------------------------------------------------------------------------------- 1 | # Segnalazione bug inviata 2 | 3 | La tua segnalazione di bug è stata inviata. Grazie per aver contribuito a migliorare OpenSesame. -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/ja/failure.md: -------------------------------------------------------------------------------- 1 | # バグレポートが送信されません 2 | 3 | バグレポートが送信できませんでした。インターネットに接続されていますか? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/ja/success.md: -------------------------------------------------------------------------------- 1 | # バグレポートが送信されました 2 | 3 | あなたのバグレポートが送信されました。OpenSesameの改善にご協力いただきありがとうございます。 -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/ko/failure.md: -------------------------------------------------------------------------------- 1 | # 버그 리포트 전송 실패 2 | 3 | 버그 리포트를 전송할 수 없습니다. 인터넷에 연결되어 있습니까? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/ko/success.md: -------------------------------------------------------------------------------- 1 | # 버그 리포트 전송됨 2 | 3 | 버그 리포트가 전송되었습니다. OpenSesame 개선에 도움을 주셔서 감사합니다. -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/nl/failure.md: -------------------------------------------------------------------------------- 1 | # Bugrapport niet verzonden 2 | 3 | Het bugrapport kon niet worden verzonden. Ben je verbonden met het internet? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/nl/success.md: -------------------------------------------------------------------------------- 1 | # Bugrapport verzonden 2 | 3 | Uw bugrapport is verzonden. Bedankt voor uw hulp bij het verbeteren van OpenSesame. -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/pt/failure.md: -------------------------------------------------------------------------------- 1 | # Relatório de erro não enviado 2 | 3 | O relatório de erro não pôde ser enviado. Você está conectado à internet? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/pt/success.md: -------------------------------------------------------------------------------- 1 | # Relatório de erro enviado 2 | 3 | Seu relatório de erro foi enviado. Obrigado por ajudar a melhorar o OpenSesame. -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/ru/failure.md: -------------------------------------------------------------------------------- 1 | # Отчет об ошибке не отправлен 2 | 3 | Отчет об ошибке не может быть отправлен. Вы подключены к интернету? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/ru/success.md: -------------------------------------------------------------------------------- 1 | # Отчет об ошибке отправлен 2 | 3 | Ваш отчет об ошибке был отправлен. Спасибо за вашу помощь в улучшении OpenSesame. -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/tr/failure.md: -------------------------------------------------------------------------------- 1 | # Hata raporu gönderilemedi 2 | 3 | Hata raporu gönderilemedi. İnternete bağlı mısınız? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/tr/success.md: -------------------------------------------------------------------------------- 1 | # Hata raporu gönderildi 2 | 3 | Hata raporunuz gönderildi. OpenSesame'yi geliştirmemize yardımcı olduğunuz için teşekkür ederiz. -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/yue/failure.md: -------------------------------------------------------------------------------- 1 | # 問題報告未發送 2 | 3 | 問題報告無法發送。你有冇連接到互聯網? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/yue/success.md: -------------------------------------------------------------------------------- 1 | # 已傳送的錯誤報告 2 | 3 | 您的錯誤報告已經傳送。感謝您幫助改善OpenSesame。 -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/zh/failure.md: -------------------------------------------------------------------------------- 1 | # 错误报告未发送 2 | 3 | 错误报告无法发送。您已连接到互联网吗? -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/locale/zh/success.md: -------------------------------------------------------------------------------- 1 | # 错误报告已发送 2 | 3 | 您的错误报告已发送。感谢您帮助改进OpenSesame。 -------------------------------------------------------------------------------- /opensesame_extensions/core/bug_report/success.md: -------------------------------------------------------------------------------- 1 | # Bug report sent 2 | 3 | Your bug report has been sent. Thank you for helping to improve OpenSesame. 4 | -------------------------------------------------------------------------------- /opensesame_extensions/core/notifications/__init__.py: -------------------------------------------------------------------------------- 1 | """Pretty notifications for OpenSesame""" 2 | 3 | label = "Notifications" 4 | author = "Daniel Schreij" 5 | priority = 999999 6 | modes = ["default", "ide"] 7 | -------------------------------------------------------------------------------- /opensesame_extensions/core/restore_ui_elements/__init__.py: -------------------------------------------------------------------------------- 1 | """Show toolbars and menu when they are hidden""" 2 | 3 | label = "Show toolbars and menu when they are hidden" 4 | modes = ["default"] 5 | -------------------------------------------------------------------------------- /opensesame_extensions/core/subprocess_manager/__init__.py: -------------------------------------------------------------------------------- 1 | """Manages subprocesses""" 2 | 3 | icon = "process-working" 4 | settings = { 5 | "subprocess_manager_show_ended": False 6 | } 7 | modes = ["ide", "default"] 8 | -------------------------------------------------------------------------------- /opensesame_extensions/core/system_check/__init__.py: -------------------------------------------------------------------------------- 1 | """Checks the system and provides warnings if necessary""" 2 | -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/ar/system-information.md: -------------------------------------------------------------------------------- 1 | ## نظام 2 | 3 | - النظام: %(system)s 4 | - الهيكل: %(architecture)s 5 | 6 | ## الوحدات والحزم 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/bn/system-information.md: -------------------------------------------------------------------------------- 1 | ## সিস্টেম 2 | 3 | - সিস্টেম: %(system)s 4 | - আর্কিটেকচার: %(architecture)s 5 | 6 | ## মডিউল ও প্যাকেজগুলি 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/de/system-information.md: -------------------------------------------------------------------------------- 1 | ## System 2 | 3 | - System: %(system)s 4 | - Architektur: %(architecture)s 5 | 6 | ## Module und Pakete 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/es/system-information.md: -------------------------------------------------------------------------------- 1 | ## Sistema 2 | 3 | - Sistema: %(system)s 4 | - Arquitectura: %(architecture)s 5 | 6 | ## Módulos y paquetes 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/fr/system-information.md: -------------------------------------------------------------------------------- 1 | ## Système 2 | 3 | - Système : %(system)s 4 | - Architecture : %(architecture)s 5 | 6 | ## Modules et paquets 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/he/system-information.md: -------------------------------------------------------------------------------- 1 | ## מערכת 2 | 3 | - מערכת: %(system)s 4 | - ארכיטקטורה: %(architecture)s 5 | 6 | ## מודולים וחבילות 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/hi/system-information.md: -------------------------------------------------------------------------------- 1 | ## सिस्टम 2 | 3 | - सिस्टम: %(system)s 4 | - वास्तुकला: %(architecture)s 5 | 6 | ## मॉड्यूल और पैकेज 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/id/system-information.md: -------------------------------------------------------------------------------- 1 | ## Sistem 2 | 3 | - Sistem: %(system)s 4 | - Arsitektur: %(architecture)s 5 | 6 | ## Modul dan paket 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/it/system-information.md: -------------------------------------------------------------------------------- 1 | ## Sistema 2 | 3 | - Sistema: %(system)s 4 | - Architettura: %(architecture)s 5 | 6 | ## Moduli e pacchetti 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/ja/system-information.md: -------------------------------------------------------------------------------- 1 | ## システム 2 | 3 | - システム: %(system)s 4 | - アーキテクチャ: %(architecture)s 5 | 6 | ## モジュールとパッケージ 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/ko/system-information.md: -------------------------------------------------------------------------------- 1 | ## 시스템 2 | 3 | - 시스템: %(system)s 4 | - 아키텍처: %(architecture)s 5 | 6 | ## 모듈 및 패키지 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/nl/system-information.md: -------------------------------------------------------------------------------- 1 | ## Systeem 2 | 3 | - Systeem: %(system)s 4 | - Architectuur: %(architecture)s 5 | 6 | ## Modules en pakketten 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/pt/system-information.md: -------------------------------------------------------------------------------- 1 | ## Sistema 2 | 3 | - Sistema: %(system)s 4 | - Arquitetura: %(architecture)s 5 | 6 | ## Módulos e pacotes 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/ru/system-information.md: -------------------------------------------------------------------------------- 1 | ## Система 2 | 3 | - Система: %(system)s 4 | - Архитектура: %(architecture)s 5 | 6 | ## Модули и пакеты 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/tr/system-information.md: -------------------------------------------------------------------------------- 1 | ## Sistem 2 | 3 | - Sistem: %(system)s 4 | - Mimari: %(architecture)s 5 | 6 | ## Modüller ve paketler 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/yue/system-information.md: -------------------------------------------------------------------------------- 1 | ## 系統 2 | 3 | - 系統: %(system)s 4 | - 架構: %(architecture)s 5 | 6 | ## 模組及套件 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/locale/zh/system-information.md: -------------------------------------------------------------------------------- 1 | ## 系统 2 | 3 | - 系统:%(system)s 4 | - 架构:%(architecture)s 5 | 6 | ## 模块和包 7 | 8 | %(modules)s -------------------------------------------------------------------------------- /opensesame_extensions/core/toolbar_menu/system-information.md: -------------------------------------------------------------------------------- 1 | ## System 2 | 3 | - System: %(system)s 4 | - Architecture: %(architecture)s 5 | 6 | ## Modules and packages 7 | 8 | %(modules)s 9 | -------------------------------------------------------------------------------- /opensesame_plugins/core/__init__.py: -------------------------------------------------------------------------------- 1 | """OpenSesame core plug-ins""" 2 | 3 | from libopensesame.metadata import __version__ 4 | -------------------------------------------------------------------------------- /opensesame_plugins/core/coroutines/__init__.py: -------------------------------------------------------------------------------- 1 | """Run items simultaneously""" 2 | 3 | category = 'Flow control' 4 | icon = 'os-coroutines' 5 | priority = 80 6 | -------------------------------------------------------------------------------- /opensesame_plugins/core/joystick/joystick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/opensesame_plugins/core/joystick/joystick.png -------------------------------------------------------------------------------- /opensesame_plugins/core/joystick/joystick_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/opensesame_plugins/core/joystick/joystick_large.png -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/ar/notepad.md: -------------------------------------------------------------------------------- 1 | # دفتر الملاحظات 2 | 3 | دفتر الملاحظات هو مكون بسيط يتيح لك تذييل تجربتك. إنه لا يوفر أي وظيفة حقيقية. -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/bn/notepad.md: -------------------------------------------------------------------------------- 1 | # নোটপ্যাড 2 | 3 | নোটপ্যাড একটি সাধারণ প্লাগ-ইন যা আপনাকে আপনার পরীক্ষা তথ্য দেওয়ার সুযোগ দেয়। এটি কোনও বাস্তব কার্যকারিতা প্রদান করে না। -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/de/notepad.md: -------------------------------------------------------------------------------- 1 | # Notizblock 2 | 3 | Der Notizblock ist ein einfaches Plug-in, mit dem Sie Ihr Experiment kommentieren können. Es bietet keine wirkliche Funktionalität. -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/es/notepad.md: -------------------------------------------------------------------------------- 1 | # Bloc de notas 2 | 3 | El bloc de notas es un complemento simple que te permite anotar tu experimento. No ofrece ninguna funcionalidad real. -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/fr/notepad.md: -------------------------------------------------------------------------------- 1 | # Bloc-notes 2 | 3 | Le bloc-notes est un plug-in simple qui vous permet d'annoter votre expérience. Il n'offre aucune fonctionnalité réelle. -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/he/notepad.md: -------------------------------------------------------------------------------- 1 | # פנקס 2 | 3 | הפנקס הוא תוסף פשוט שמאפשר לך לתת הערות לניסוי שלך. זה לא מציע פונקציונליות אמיתית. -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/hi/notepad.md: -------------------------------------------------------------------------------- 1 | # नोटपैड 2 | 3 | नोटपैड एक सरल प्लग-इन है जो आपको अपने प्रयोग को टिप्पणी करने की अनुमति देता है। यह किसी वास्तविक कार्यक्षमता प्रदान नहीं करता है। -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/id/notepad.md: -------------------------------------------------------------------------------- 1 | # Catatan 2 | 3 | Catatan adalah plugin sederhana yang memungkinkan Anda membuat anotasi pada eksperimen Anda. Ini tidak menawarkan fungsi nyata. -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/it/notepad.md: -------------------------------------------------------------------------------- 1 | # Blocco note 2 | 3 | Il blocco note è un semplice plug-in che ti permette di annotare il tuo esperimento. Non offre alcuna reale funzionalità. -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/ja/notepad.md: -------------------------------------------------------------------------------- 1 | # ノートパッド 2 | 3 | ノートパッドは、実験に注釈を追加できるシンプルなプラグインです。実際の機能は提供しません。 -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/ko/notepad.md: -------------------------------------------------------------------------------- 1 | # 메모장 2 | 3 | 메모장은 실험에 주석을 달 수 있게 해주는 간단한 플러그인입니다. 실제 기능은 제공하지 않습니다. -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/nl/notepad.md: -------------------------------------------------------------------------------- 1 | # Kladblok 2 | 3 | Het kladblok is een eenvoudige plug-in die u toestaat om aantekeningen te maken bij uw experiment. Het biedt geen echte functionaliteit. -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/pt/notepad.md: -------------------------------------------------------------------------------- 1 | # Bloco de notas 2 | 3 | O bloco de notas é um plug-in simples que permite anotar o seu experimento. Ele não oferece nenhuma funcionalidade real. -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/ru/notepad.md: -------------------------------------------------------------------------------- 1 | # Блокнот 2 | 3 | Блокнот - это простой плагин, который позволяет вам добавлять комментарии к вашему эксперименту. Он не предоставляет никакой реальной функциональности. -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/tr/notepad.md: -------------------------------------------------------------------------------- 1 | # Not Defteri 2 | 3 | Not defteri, deneyinizi açıklamalar eklemenize izin veren basit bir eklentidir. Gerçek bir işlevsellik sunmaz. -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/yue/notepad.md: -------------------------------------------------------------------------------- 1 | #記事本 2 | 3 | 記事本係一個簡單嘅插件,可以讓您為實驗做註釋。佢唔提供任何實際功能。 -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/locale/zh/notepad.md: -------------------------------------------------------------------------------- 1 | # 记事本 2 | 3 | 记事本是一个简单的插件,允许您为您的实验添加注释。它没有提供任何实际功能。 -------------------------------------------------------------------------------- /opensesame_plugins/core/notepad/notepad.md: -------------------------------------------------------------------------------- 1 | # Notepad 2 | 3 | The notepad is a simple plug-in that allows you to annotate your experiment. It does not offer any real functionality. 4 | -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/ar/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # بدء سلم السعي 2 | 3 | يقوم بتهيئة إجراء جديد لسلم السعي في Quest. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/bn/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # কুয়েস্ট স্টেয়ারকেস init 2 | 3 | একটি নতুন কুয়েস্ট স্টেয়ারকেস পদ্ধতি চালু করে। -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/de/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # Quest Staircase init 2 | 3 | Initialisiert ein neues Quest Staircase Verfahren. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/es/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # Inicialización de la escalera Quest 2 | 3 | Inicializa un nuevo procedimiento de escalera Quest. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/fr/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # Initialisation de Quest staircase 2 | 3 | Initialise une nouvelle procédure d'escalier Quest. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/he/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # אתחול שלב המדרגה של Quest 2 | 3 | מאתחל פרוצדורת שלב מדרגות Quest חדשה. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/hi/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # Quest स्टेयरकेस init 2 | 3 | एक नई क्वेस्ट स्टेयरकेस प्रक्रिया को आरंभ करता है। -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/id/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # Inisiasi tangga Quest 2 | 3 | Menginisiasi prosedur tangga Quest yang baru. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/it/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # Inizializzazione della procedura a scala Quest 2 | 3 | Inizializza una nuova procedura a scala Quest. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/ja/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # Quest 階段化 init 2 | 新しい Quest 階段化手続きを初期化します。 -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/ko/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # Quest 스테어케이스 초기화 2 | 3 | 새로운 Quest 스테어케이스 절차를 초기화합니다. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/nl/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # Quest-trap init 2 | 3 | Initialiseert een nieuwe Quest-trap procedure. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/pt/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # Inicialização da escada Quest 2 | 3 | Inicializa um novo procedimento de escada Quest. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/ru/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # Инициализация Quest лестничной процедуры 2 | 3 | Инициализирует новую процедуру лестницы Quest. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/tr/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # Quest merdiven prosedürü başlatma 2 | 3 | Yeni bir Quest merdiven prosedürü başlatır. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/yue/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # 啟始Quest梯級程序 2 | 3 | 啟始一個新嘅Quest梯級程序。 -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/locale/zh/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # Quest 阶梯初始化 2 | 3 | 初始化一个新的 Quest 阶梯程序。 -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/quest_staircase_init.md: -------------------------------------------------------------------------------- 1 | # Quest staircase init 2 | 3 | Initializes a new Quest staircase procedure. 4 | -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_init/quest_staircase_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/opensesame_plugins/core/quest_staircase_init/quest_staircase_init.png -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/ar/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # Quest سلم التالي 2 | 3 | يعالج الرد ويحدث قيمة اختبار Quest. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/bn/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # কুয়েস্ট স্টেয়ারকেস পরবর্তী 2 | 3 | প্রতিক্রিয়া প্রক্রিয়া করে এবং কুয়েস্ট টেস্ট মানটি আপডেট করে। -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/de/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # Quest Staircase weiter 2 | 3 | Verarbeitet eine Antwort und aktualisiert den Quest-Testwert. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/es/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # Quest escalera siguiente 2 | 3 | Procesa una respuesta y actualiza el valor de prueba de Quest. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/fr/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # Quest staircase suivant 2 | 3 | Traite une réponse et met à jour la valeur du test Quest. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/he/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # קווסט מדרגות הבא 2 | 3 | מעבד תגובה ומעדכן את ערך הבדיקה בקווסט. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/hi/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # क़्वेस्ट सीढ़ी अगला 2 | 3 | प्रतिक्रिया प्रक्रमित करता है और क़ में अपडेट करता है। -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/id/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # Quest tangga berikutnya 2 | 3 | Memproses tanggapan dan memperbarui nilai tes Quest. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/it/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # Quest scala successiva 2 | 3 | Elabora una risposta e aggiorna il valore del test Quest. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/ja/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | #Quest階段次へ 2 | 3 | 応答を処理し、Questテスト値を更新します。 -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/ko/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # Quest 계단 다음 2 | 3 | 응답을 처리하고 Quest 테스트 값을 업데이트합니다. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/nl/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # Quest trapsgewijze volgende 2 | 3 | Verwerkt een respons en werkt de Quest toetswaarde bij. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/pt/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # Quest escada próximo 2 | 3 | Processa uma resposta e atualiza o valor do teste Quest. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/ru/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # Обработка следующей ступени Quest 2 | 3 | Обрабатывает ответ и обновляет тестовое значение Quest. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/tr/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # Quest merdiven sonraki 2 | 3 | Bir yanıtı işler ve Quest test değerini günceller. -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/yue/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # Quest 樓梯 下一步 2 | 3 | 處理回應並更新 Quest 測試值。 -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/locale/zh/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # Quest阶梯下一步 2 | 3 | 处理响应并更新Quest测试值。 -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/quest_staircase_next.md: -------------------------------------------------------------------------------- 1 | # Quest staircase next 2 | 3 | Processes a response and updates the Quest test value. 4 | -------------------------------------------------------------------------------- /opensesame_plugins/core/quest_staircase_next/quest_staircase_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/opensesame_plugins/core/quest_staircase_next/quest_staircase_next.png -------------------------------------------------------------------------------- /opensesame_plugins/core/srbox/srbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/opensesame_plugins/core/srbox/srbox.png -------------------------------------------------------------------------------- /opensesame_plugins/core/srbox/srbox_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/opensesame_plugins/core/srbox/srbox_large.png -------------------------------------------------------------------------------- /tests/data/__pool__/os-color-picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/tests/data/__pool__/os-color-picker.png -------------------------------------------------------------------------------- /tests/data/__pool__/test.csv: -------------------------------------------------------------------------------- 1 | word,category 2 | dog,w 3 | deg,p 4 | cat,w 5 | cit,p 6 | -------------------------------------------------------------------------------- /tests/data/__pool__/test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/tests/data/__pool__/test.xlsx -------------------------------------------------------------------------------- /tests/data/__pool__/test_colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/tests/data/__pool__/test_colors.png -------------------------------------------------------------------------------- /tests/data/__pool__/test_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/tests/data/__pool__/test_images.png -------------------------------------------------------------------------------- /tests/data/__pool__/test_patches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/tests/data/__pool__/test_patches.png -------------------------------------------------------------------------------- /tests/data/__pool__/test_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/tests/data/__pool__/test_shapes.png -------------------------------------------------------------------------------- /tests/data/__pool__/test_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/tests/data/__pool__/test_text.png -------------------------------------------------------------------------------- /tests/data/sketchpad_test.osexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/tests/data/sketchpad_test.osexp -------------------------------------------------------------------------------- /tests/data/targzfile.osexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cogsci/OpenSesame/c8188620d41ae07fe37103841a85e8831dbf3234/tests/data/targzfile.osexp --------------------------------------------------------------------------------