├── LICENSE ├── README.md ├── TextAdept LICENSE ├── init.lua ├── lexers ├── mas.lua └── myproj.lua ├── modules ├── ctrl_tab_mru │ └── init.lua ├── export │ └── init.lua ├── goto_nearest │ └── init.lua ├── htmltoolbar │ └── init.lua ├── listtoolbar │ ├── ctaglist.lua │ ├── filebrowser.lua │ ├── init.lua │ ├── projlist.lua │ └── recentprojlist.lua ├── log.lua ├── project │ ├── init.lua │ ├── proj_buffer.lua │ ├── proj_cmd.lua │ ├── proj_ctags.lua │ ├── proj_data.lua │ ├── proj_diff.lua │ ├── proj_menu.lua │ ├── proj_results.lua │ ├── proj_ui.lua │ └── proj_vcs.lua ├── quicktype │ └── init.lua ├── results │ ├── init.lua │ ├── printresults.lua │ └── searchresults.lua ├── textadept │ ├── keys.lua │ ├── keys_osx.lua │ ├── keys_winlin.lua │ ├── macros.lua │ └── menu.lua ├── toolbar │ ├── actions.lua │ ├── configtb.lua │ ├── constants.lua │ ├── controls.lua │ ├── dialogs.lua │ ├── init.lua │ └── minimap.lua └── util │ └── init.lua ├── screencapt ├── tatoolbar_off.png └── tatoolbar_on.png ├── snippets ├── ansi_c.for0.txt ├── ansi_c.for1.txt ├── ansi_c.ford.txt ├── getd.txt ├── getdt.txt └── gett.txt ├── tatoolbar └── src │ ├── ta_debug.c │ ├── ta_debug.h │ ├── ta_filediff.c │ ├── ta_filediff.h │ ├── ta_glue.c │ ├── ta_toolbar.c │ ├── ta_toolbar.h │ └── textadept.c ├── themes ├── colors.lua └── ggg.lua ├── toolbar ├── bar-ch-dark │ ├── cfg-back2__TB1.png │ ├── cfg-back__LR1.png │ ├── cfg-separator-h__LR1.png │ ├── cfg-tab-back.png │ ├── closed-back.png │ ├── colors.cfg │ ├── group-vscroll-back__L3R4TB4.png │ ├── group-vscroll-bar-hilight__L4R5TB5.png │ ├── group-vscroll-bar__L4R5TB5.png │ ├── open-back.png │ ├── res-back.png │ ├── stat-back__LR7.png │ ├── toolbar.cfg │ ├── ttb-back.png │ ├── ttb-back2-same.png │ ├── ttb-back2.png │ ├── ttb-button-active-drop__LTB4R18.png │ ├── ttb-button-active__LRTB4.png │ ├── ttb-button-disabled__LRTB4.png │ ├── ttb-button-hilight-drop__LTB4R18.png │ ├── ttb-button-hilight__LRTB4.png │ ├── ttb-button-normal-drop__LTB4R18.png │ ├── ttb-button-normal__LRTB4.png │ ├── ttb-button-press-drop__LTB4R18.png │ ├── ttb-button-press__LRTB4.png │ ├── ttb-check-hilight.png │ ├── ttb-check-normal.png │ ├── ttb-check-press.png │ ├── ttb-check-selected.png │ ├── ttb-checkbox-hilight.png │ ├── ttb-checkbox-normal.png │ ├── ttb-checkbox-press.png │ ├── ttb-checkbox-selected.png │ ├── ttb-close-hilight.png │ ├── ttb-close-normal.png │ ├── ttb-close-press.png │ ├── ttb-combo-list__LRTB1.png │ ├── ttb-combo-selected__LRTB1.png │ ├── ttb-dialog-border__LRTB1.png │ ├── ttb-edit-disabled__LRTB4.png │ ├── ttb-edit-focus-disabled__LRTB4.png │ ├── ttb-edit-focus__LRTB4.png │ ├── ttb-edit-normal__LRTB4.png │ ├── ttb-hscroll-back__LRTB1.png │ ├── ttb-radio-hilight.png │ ├── ttb-radio-normal.png │ ├── ttb-radio-press.png │ ├── ttb-radio-selected.png │ ├── ttb-scroll-box__LRTB1.png │ ├── ttb-separator-h.png │ ├── ttb-separator-v.png │ ├── ttb-tab-active-close__L12R26.png │ ├── ttb-tab-active__LR12.png │ ├── ttb-tab-background.png │ ├── ttb-tab-close-hilight.png │ ├── ttb-tab-close-normal.png │ ├── ttb-tab-disabled-close__L12R26.png │ ├── ttb-tab-disabled__LR12.png │ ├── ttb-tab-hilight-close__L12R26.png │ ├── ttb-tab-hilight__LR12.png │ ├── ttb-tab-hsr.png │ ├── ttb-tab-modified.png │ ├── ttb-tab-normal-close__L12R26.png │ ├── ttb-tab-normal__LR12.png │ ├── ttb-tab-sl-normal.png │ ├── ttb-tab-sr-hilight.png │ ├── ttb-tab-sr-normal.png │ ├── ttb-vback.png │ ├── ttb-vback2.png │ └── ttb-vscroll-back__LRTB1.png ├── bar-sm-light │ ├── cfg-back2__TB1.png │ ├── cfg-back__LR1.png │ ├── cfg-separator-h__LR1.png │ ├── cfg-tab-back.png │ ├── closed-back.png │ ├── colors.cfg │ ├── group-vscroll-back__L3R4TB4.png │ ├── group-vscroll-bar-hilight__L2R5TB5.png │ ├── group-vscroll-bar__L2R5TB5.png │ ├── open-back.png │ ├── res-back.png │ ├── stat-back__LR7.png │ ├── toolbar.cfg │ ├── ttb-back.png │ ├── ttb-back2.png │ ├── ttb-button-active-drop__LTB4R18.png │ ├── ttb-button-active__LRTB4.png │ ├── ttb-button-disabled__LRTB4.png │ ├── ttb-button-hilight-drop__LTB4R18.png │ ├── ttb-button-hilight__LRTB4.png │ ├── ttb-button-normal-drop__LTB4R18.png │ ├── ttb-button-normal__LRTB4.png │ ├── ttb-button-press-drop__LTB4R18.png │ ├── ttb-button-press__LRTB4.png │ ├── ttb-check-hilight.png │ ├── ttb-check-normal.png │ ├── ttb-check-press.png │ ├── ttb-check-selected.png │ ├── ttb-checkbox-hilight.png │ ├── ttb-checkbox-normal.png │ ├── ttb-checkbox-press.png │ ├── ttb-checkbox-selected.png │ ├── ttb-close-hilight.png │ ├── ttb-close-normal.png │ ├── ttb-close-press.png │ ├── ttb-combo-list__LRTB1.png │ ├── ttb-combo-selected__LRTB1.png │ ├── ttb-dialog-border__LRTB1.png │ ├── ttb-edit-disabled__LRTB4.png │ ├── ttb-edit-focus-disabled__LRTB4.png │ ├── ttb-edit-focus__LRTB4.png │ ├── ttb-edit-normal__LRTB4.png │ ├── ttb-hscroll-back__LRTB1.png │ ├── ttb-radio-hilight.png │ ├── ttb-radio-normal.png │ ├── ttb-radio-press.png │ ├── ttb-radio-selected.png │ ├── ttb-scroll-box__LRTB1.png │ ├── ttb-separator-h__LR2.png │ ├── ttb-separator-v__TB2.png │ ├── ttb-tab-active-close__LR9.png │ ├── ttb-tab-active__LR9.png │ ├── ttb-tab-background.png │ ├── ttb-tab-close-hilight.png │ ├── ttb-tab-close-normal.png │ ├── ttb-tab-disabled-close__LR9.png │ ├── ttb-tab-disabled__LR9.png │ ├── ttb-tab-hilight-close__LR9.png │ ├── ttb-tab-hilight__LR9.png │ ├── ttb-tab-modified.png │ ├── ttb-tab-normal-close__LR9.png │ ├── ttb-tab-normal__LR9.png │ ├── ttb-tab-sl-hilight.png │ ├── ttb-tab-sl-normal.png │ ├── ttb-tab-sr-hilight.png │ ├── ttb-tab-sr-normal.png │ ├── ttb-vback.png │ ├── ttb-vback2.png │ └── ttb-vscroll-back__LRTB1.png ├── bar-th-dark │ ├── cfg-back2__TB1.png │ ├── cfg-back__LR1.png │ ├── cfg-separator-h__LR1.png │ ├── cfg-tab-back.png │ ├── closed-back.png │ ├── colors.cfg │ ├── group-vscroll-back__L3R4TB4.png │ ├── group-vscroll-bar-hilight__L4R5TB5.png │ ├── group-vscroll-bar__L4R5TB5.png │ ├── open-back.png │ ├── res-back.png │ ├── stat-back__LR7.png │ ├── toolbar.cfg │ ├── ttb-back.png │ ├── ttb-back2-same.png │ ├── ttb-back2.png │ ├── ttb-button-active-drop__LTB4R18.png │ ├── ttb-button-active__LRTB4.png │ ├── ttb-button-disabled__LRTB4.png │ ├── ttb-button-hilight-drop__LTB4R18.png │ ├── ttb-button-hilight__LRTB4.png │ ├── ttb-button-normal-drop__LTB4R18.png │ ├── ttb-button-normal__LRTB4.png │ ├── ttb-button-press-drop__LTB4R18.png │ ├── ttb-button-press__LRTB4.png │ ├── ttb-check-hilight.png │ ├── ttb-check-normal.png │ ├── ttb-check-press.png │ ├── ttb-check-selected.png │ ├── ttb-checkbox-hilight.png │ ├── ttb-checkbox-normal.png │ ├── ttb-checkbox-press.png │ ├── ttb-checkbox-selected.png │ ├── ttb-close-hilight.png │ ├── ttb-close-normal.png │ ├── ttb-close-press.png │ ├── ttb-combo-list__LRTB1.png │ ├── ttb-combo-selected__LRTB1.png │ ├── ttb-dialog-border__LRTB1.png │ ├── ttb-edit-disabled__LRTB4.png │ ├── ttb-edit-focus-disabled__LRTB4.png │ ├── ttb-edit-focus__LRTB4.png │ ├── ttb-edit-normal__LRTB4.png │ ├── ttb-hscroll-back__LRTB1.png │ ├── ttb-radio-hilight.png │ ├── ttb-radio-normal.png │ ├── ttb-radio-press.png │ ├── ttb-radio-selected.png │ ├── ttb-scroll-box__LRTB1.png │ ├── ttb-separator-h.png │ ├── ttb-separator-v.png │ ├── ttb-tab-active-close__L23R35.png │ ├── ttb-tab-active__LR23.png │ ├── ttb-tab-background.png │ ├── ttb-tab-close-hilight.png │ ├── ttb-tab-close-normal.png │ ├── ttb-tab-disabled-close__L23R35.png │ ├── ttb-tab-disabled__LR23.png │ ├── ttb-tab-hilight-close__L23R35.png │ ├── ttb-tab-hilight__LR23.png │ ├── ttb-tab-modified.png │ ├── ttb-tab-normal-close__L23R35.png │ ├── ttb-tab-normal__LR23.png │ ├── ttb-tab-sl-hilight.png │ ├── ttb-tab-sl-normal.png │ ├── ttb-tab-sr-hilight.png │ ├── ttb-tab-sr-normal.png │ ├── ttb-vback.png │ ├── ttb-vback2-same.png │ ├── ttb-vback2.png │ └── ttb-vscroll-back__LRTB1.png ├── icons │ ├── dark │ │ ├── add-files-to-archive.png │ │ ├── add-folder-to-archive.png │ │ ├── application-exit.png │ │ ├── appointment-new.png │ │ ├── bookmark-new.png │ │ ├── colorh.png │ │ ├── colorn.png │ │ ├── colorp.png │ │ ├── contact-new.png │ │ ├── dialog-apply.png │ │ ├── dialog-ok.png │ │ ├── document-export.png │ │ ├── document-import.png │ │ ├── document-new.png │ │ ├── document-open-recent.png │ │ ├── document-open.png │ │ ├── document-page-setup.png │ │ ├── document-print-preview.png │ │ ├── document-print.png │ │ ├── document-properties.png │ │ ├── document-revert.png │ │ ├── document-save-as.png │ │ ├── document-save.png │ │ ├── document-send.png │ │ ├── edit-clear.png │ │ ├── edit-copy.png │ │ ├── edit-cut.png │ │ ├── edit-find-replace.png │ │ ├── edit-find.png │ │ ├── edit-paste.png │ │ ├── edit-redo.png │ │ ├── edit-select-all.png │ │ ├── edit-undo.png │ │ ├── extract-archive.png │ │ ├── folder-copy.png │ │ ├── folder-move.png │ │ ├── folder-new.png │ │ ├── format-indent-less.png │ │ ├── format-indent-more.png │ │ ├── format-justify-center.png │ │ ├── format-justify-fill.png │ │ ├── format-justify-left.png │ │ ├── format-justify-right.png │ │ ├── format-text-bold.png │ │ ├── format-text-direction-ltr.png │ │ ├── format-text-direction-rtl.png │ │ ├── format-text-italic.png │ │ ├── format-text-strikethrough.png │ │ ├── format-text-underline.png │ │ ├── gnome-app-install-star.png │ │ ├── go-bottom.png │ │ ├── go-down.png │ │ ├── go-first.png │ │ ├── go-home.png │ │ ├── go-jump.png │ │ ├── go-last.png │ │ ├── go-next.png │ │ ├── go-previous.png │ │ ├── go-top.png │ │ ├── go-up.png │ │ ├── gtk-edit.png │ │ ├── gtk-no.png │ │ ├── gtk-yes.png │ │ ├── help-about.png │ │ ├── help-contents.png │ │ ├── insert-image.png │ │ ├── insert-link.png │ │ ├── insert-text.png │ │ ├── internet-radio-new.png │ │ ├── list-add.png │ │ ├── list-colapse.png │ │ ├── list-colapse2-hilight.png │ │ ├── list-colapse2.png │ │ ├── list-expand.png │ │ ├── list-expand2-hilight.png │ │ ├── list-expand2.png │ │ ├── list-remove.png │ │ ├── lock.png │ │ ├── lpi-bug.png │ │ ├── lpi-help.png │ │ ├── lpi-translate.png │ │ ├── mail-attachment.png │ │ ├── mail-forward.png │ │ ├── mail-inbox.png │ │ ├── mail-mark-important.png │ │ ├── mail-mark-junk.png │ │ ├── mail-mark-notjunk.png │ │ ├── mail-mark-read.png │ │ ├── mail-mark-unread.png │ │ ├── mail-message-new.png │ │ ├── mail-outbox.png │ │ ├── mail-reply-all.png │ │ ├── mail-reply-sender.png │ │ ├── mail-send-receive.png │ │ ├── mail-send.png │ │ ├── media-eject.png │ │ ├── media-import-audio-cd.png │ │ ├── media-optical-audio-new.png │ │ ├── media-optical-burn.png │ │ ├── media-optical-copy.png │ │ ├── media-playback-pause.png │ │ ├── media-playback-start.png │ │ ├── media-playback-stop.png │ │ ├── media-playlist-repeat.png │ │ ├── media-playlist-shuffle.png │ │ ├── media-record.png │ │ ├── media-skip-backward.png │ │ ├── media-skip-forward.png │ │ ├── mod-case.png │ │ ├── mod-increm.png │ │ ├── mod-regexp.png │ │ ├── mod-word.png │ │ ├── music-library.png │ │ ├── object-flip-horizontal.png │ │ ├── object-flip-vertical.png │ │ ├── object-rotate-left.png │ │ ├── object-rotate-right.png │ │ ├── package-available-locked.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-new.png │ │ ├── package-purge.png │ │ ├── package-reinstall.png │ │ ├── package-remove.png │ │ ├── package-supported.png │ │ ├── package-upgrade.png │ │ ├── podcast-new.png │ │ ├── process-stop.png │ │ ├── resize-tr-hilight.png │ │ ├── resize-tr.png │ │ ├── system-lock-screen.png │ │ ├── system-log-out.png │ │ ├── system-restart-panel.png │ │ ├── system-run.png │ │ ├── system-search.png │ │ ├── system-shutdown-panel.png │ │ ├── system-shutdown-restart-panel.png │ │ ├── system-shutdown.png │ │ ├── system-upgrade.png │ │ ├── t_def.png │ │ ├── t_func.png │ │ ├── t_struct.png │ │ ├── t_type.png │ │ ├── t_var.png │ │ ├── tab-new.png │ │ ├── tag-new.png │ │ ├── tools-check-spelling.png │ │ ├── transparent.png │ │ ├── ttb-proj-c.png │ │ ├── ttb-proj-e.png │ │ ├── ttb-proj-o.png │ │ ├── view-fullscreen.png │ │ ├── view-list-compact-symbolic.png │ │ ├── view-list-details-symbolic.png │ │ ├── view-list-icons-symbolic.png │ │ ├── view-refresh.png │ │ ├── view-restore.png │ │ ├── view-sort-ascending.png │ │ ├── view-sort-descending.png │ │ ├── visualization.png │ │ ├── window-close.png │ │ ├── window-new.png │ │ ├── zoom-fit.png │ │ ├── zoom-in.png │ │ ├── zoom-original.png │ │ └── zoom-out.png │ ├── light │ │ ├── add-files-to-archive.png │ │ ├── add-folder-to-archive.png │ │ ├── application-exit.png │ │ ├── appointment-new.png │ │ ├── bookmark-new.png │ │ ├── colorh.png │ │ ├── colorn.png │ │ ├── colorp.png │ │ ├── contact-new.png │ │ ├── dialog-apply.png │ │ ├── dialog-ok.png │ │ ├── document-export.png │ │ ├── document-import.png │ │ ├── document-new.png │ │ ├── document-open-recent.png │ │ ├── document-open.png │ │ ├── document-page-setup.png │ │ ├── document-print-preview.png │ │ ├── document-print.png │ │ ├── document-properties.png │ │ ├── document-revert.png │ │ ├── document-save-as.png │ │ ├── document-save.png │ │ ├── document-send.png │ │ ├── edit-clear.png │ │ ├── edit-copy.png │ │ ├── edit-cut.png │ │ ├── edit-find-replace.png │ │ ├── edit-find.png │ │ ├── edit-paste.png │ │ ├── edit-redo.png │ │ ├── edit-select-all.png │ │ ├── edit-undo.png │ │ ├── extract-archive.png │ │ ├── folder-copy.png │ │ ├── folder-move.png │ │ ├── folder-new.png │ │ ├── format-indent-less.png │ │ ├── format-indent-more.png │ │ ├── format-justify-center.png │ │ ├── format-justify-fill.png │ │ ├── format-justify-left.png │ │ ├── format-justify-right.png │ │ ├── format-text-bold.png │ │ ├── format-text-direction-ltr.png │ │ ├── format-text-direction-rtl.png │ │ ├── format-text-italic.png │ │ ├── format-text-strikethrough.png │ │ ├── format-text-underline.png │ │ ├── gnome-app-install-star.png │ │ ├── go-bottom.png │ │ ├── go-down.png │ │ ├── go-first.png │ │ ├── go-home.png │ │ ├── go-jump.png │ │ ├── go-last.png │ │ ├── go-next.png │ │ ├── go-previous.png │ │ ├── go-top.png │ │ ├── go-up.png │ │ ├── gtk-edit.png │ │ ├── gtk-no.png │ │ ├── gtk-yes.png │ │ ├── help-about.png │ │ ├── help-contents.png │ │ ├── insert-image.png │ │ ├── insert-link.png │ │ ├── insert-text.png │ │ ├── internet-radio-new.png │ │ ├── list-add.png │ │ ├── list-colapse.png │ │ ├── list-colapse2-hilight.png │ │ ├── list-colapse2.png │ │ ├── list-expand.png │ │ ├── list-expand2-hilight.png │ │ ├── list-expand2.png │ │ ├── list-remove.png │ │ ├── lock.png │ │ ├── lpi-bug.png │ │ ├── lpi-help.png │ │ ├── lpi-translate.png │ │ ├── mail-attachment.png │ │ ├── mail-forward.png │ │ ├── mail-inbox.png │ │ ├── mail-mark-important.png │ │ ├── mail-mark-junk.png │ │ ├── mail-mark-notjunk.png │ │ ├── mail-mark-read.png │ │ ├── mail-mark-unread.png │ │ ├── mail-message-new.png │ │ ├── mail-outbox.png │ │ ├── mail-reply-all.png │ │ ├── mail-reply-sender.png │ │ ├── mail-send-receive.png │ │ ├── mail-send.png │ │ ├── media-eject.png │ │ ├── media-import-audio-cd.png │ │ ├── media-optical-audio-new.png │ │ ├── media-optical-burn.png │ │ ├── media-optical-copy.png │ │ ├── media-playback-pause.png │ │ ├── media-playback-start.png │ │ ├── media-playback-stop.png │ │ ├── media-playlist-repeat.png │ │ ├── media-playlist-shuffle.png │ │ ├── media-record.png │ │ ├── media-skip-backward.png │ │ ├── media-skip-forward.png │ │ ├── mod-case.png │ │ ├── mod-increm.png │ │ ├── mod-regexp.png │ │ ├── mod-word.png │ │ ├── music-library.png │ │ ├── object-flip-horizontal.png │ │ ├── object-flip-vertical.png │ │ ├── object-rotate-left.png │ │ ├── object-rotate-right.png │ │ ├── package-available-locked.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-new.png │ │ ├── package-purge.png │ │ ├── package-reinstall.png │ │ ├── package-remove.png │ │ ├── package-supported.png │ │ ├── package-upgrade.png │ │ ├── podcast-new.png │ │ ├── process-stop.png │ │ ├── resize-tr-hilight.png │ │ ├── resize-tr.png │ │ ├── system-lock-screen.png │ │ ├── system-log-out.png │ │ ├── system-restart-panel.png │ │ ├── system-run.png │ │ ├── system-search.png │ │ ├── system-shutdown-panel.png │ │ ├── system-shutdown-restart-panel.png │ │ ├── system-shutdown.png │ │ ├── system-upgrade.png │ │ ├── t_def.png │ │ ├── t_func.png │ │ ├── t_struct.png │ │ ├── t_type.png │ │ ├── t_var.png │ │ ├── tab-new.png │ │ ├── tag-new.png │ │ ├── tools-check-spelling.png │ │ ├── transparent.png │ │ ├── ttb-proj-c.png │ │ ├── ttb-proj-e.png │ │ ├── ttb-proj-o.png │ │ ├── view-fullscreen.png │ │ ├── view-list-compact-symbolic.png │ │ ├── view-list-details-symbolic.png │ │ ├── view-list-icons-symbolic.png │ │ ├── view-refresh.png │ │ ├── view-restore.png │ │ ├── view-sort-ascending.png │ │ ├── view-sort-descending.png │ │ ├── visualization.png │ │ ├── window-close.png │ │ ├── window-new.png │ │ ├── zoom-fit.png │ │ ├── zoom-in.png │ │ ├── zoom-original.png │ │ └── zoom-out.png │ ├── mime │ │ ├── application-msword.png │ │ ├── application-pdf.png │ │ ├── application-pgp-keys.png │ │ ├── application-rss+xml.png │ │ ├── application-vnd.oasis.opendocument.formula.png │ │ ├── application-vnd.scribus.png │ │ ├── application-x-ace.png │ │ ├── application-x-archive.png │ │ ├── application-x-bittorrent.png │ │ ├── application-x-cd-image.png │ │ ├── application-x-cue.png │ │ ├── application-x-executable.png │ │ ├── application-x-flash-video.png │ │ ├── application-x-glade.png │ │ ├── application-x-php.png │ │ ├── application-x-rar.png │ │ ├── application-x-ruby.png │ │ ├── application-x-sln.png │ │ ├── application-x-tar.png │ │ ├── application-x-theme.png │ │ ├── application-x-zip.png │ │ ├── audio-x-generic.png │ │ ├── audio-x-mp3-playlist.png │ │ ├── authors.png │ │ ├── empty.png │ │ ├── encrypted.png │ │ ├── extension.png │ │ ├── font-x-generic.png │ │ ├── image-bmp.png │ │ ├── image-gif.png │ │ ├── image-jpeg.png │ │ ├── image-png.png │ │ ├── image-tiff.png │ │ ├── image-x-eps.png │ │ ├── image-x-generic.png │ │ ├── image-x-ico.png │ │ ├── image-x-psd.png │ │ ├── image-x-xcf.png │ │ ├── message.png │ │ ├── multipart-encrypted.png │ │ ├── package-x-generic.png │ │ ├── phatch-actionlist.png │ │ ├── text-css.png │ │ ├── text-html.png │ │ ├── text-plain.png │ │ ├── text-richtext.png │ │ ├── text-x-bak.png │ │ ├── text-x-bibtex.png │ │ ├── text-x-c++.png │ │ ├── text-x-c++hdr.png │ │ ├── text-x-c.png │ │ ├── text-x-changelog.png │ │ ├── text-x-chdr.png │ │ ├── text-x-copying.png │ │ ├── text-x-ctag.png │ │ ├── text-x-generic-template.png │ │ ├── text-x-install.png │ │ ├── text-x-java.png │ │ ├── text-x-javascript.png │ │ ├── text-x-lua.png │ │ ├── text-x-makefile.png │ │ ├── text-x-python.png │ │ ├── text-x-readme.png │ │ ├── text-x-script.png │ │ ├── text-x-source.png │ │ ├── text-x-sql.png │ │ ├── text-x-tex.png │ │ ├── text-xml.png │ │ ├── unknown.png │ │ ├── vcalendar.png │ │ ├── video-x-generic.png │ │ ├── x-dia-diagram.png │ │ ├── x-office-address-book.png │ │ ├── x-office-document.png │ │ ├── x-office-drawing.png │ │ ├── x-office-presentation.png │ │ └── x-office-spreadsheet.png │ └── readme.txt └── win10-light │ ├── cfg-back2__LRTB1.png │ ├── cfg-back__LR1.png │ ├── cfg-separator-h__LR1.png │ ├── cfg-tab-back__LR1.png │ ├── closed-back.png │ ├── colors.cfg │ ├── group-vscroll-back__L3R4TB4.png │ ├── group-vscroll-bar-hilight__L2R5TB5.png │ ├── group-vscroll-bar__L2R5TB5.png │ ├── open-back.png │ ├── res-back.png │ ├── stat-back__LR7.png │ ├── toolbar.cfg │ ├── ttb-back.png │ ├── ttb-back2.png │ ├── ttb-button-active-drop__LTB4R22.png │ ├── ttb-button-active__LRTB4.png │ ├── ttb-button-disabled.png │ ├── ttb-button-hilight-drop__LTB4R22.png │ ├── ttb-button-hilight__LRTB4.png │ ├── ttb-button-normal-drop__LTB4R22.png │ ├── ttb-button-normal__LRTB4.png │ ├── ttb-button-press-drop__LTB4R22.png │ ├── ttb-button-press__LRTB4.png │ ├── ttb-check-hilight.png │ ├── ttb-check-normal.png │ ├── ttb-check-press.png │ ├── ttb-check-selected.png │ ├── ttb-checkbox-hilight.png │ ├── ttb-checkbox-normal.png │ ├── ttb-checkbox-press.png │ ├── ttb-checkbox-selected.png │ ├── ttb-close-hilight.png │ ├── ttb-close-normal.png │ ├── ttb-close-press.png │ ├── ttb-combo-list__LRTB1.png │ ├── ttb-combo-selected__LRTB1.png │ ├── ttb-dialog-border__LRTB1.png │ ├── ttb-edit-disabled__LRTB4.png │ ├── ttb-edit-focus-disabled__LRTB4.png │ ├── ttb-edit-focus__LRTB4.png │ ├── ttb-edit-normal__LRTB4.png │ ├── ttb-hscroll-back__LRTB1.png │ ├── ttb-radio-hilight.png │ ├── ttb-radio-normal.png │ ├── ttb-radio-press.png │ ├── ttb-radio-selected.png │ ├── ttb-scroll-box__LRTB1.png │ ├── ttb-separator-h__LR2.png │ ├── ttb-separator-v__TB2.png │ ├── ttb-tab-active-close__LR9.png │ ├── ttb-tab-active__LR9.png │ ├── ttb-tab-background.png │ ├── ttb-tab-close-hilight.png │ ├── ttb-tab-close-normal.png │ ├── ttb-tab-disabled-close__LR9.png │ ├── ttb-tab-disabled__LR9.png │ ├── ttb-tab-hilight-close__LR9.png │ ├── ttb-tab-hilight__LR9.png │ ├── ttb-tab-modified.png │ ├── ttb-tab-normal-close__LR9.png │ ├── ttb-tab-normal__LR9.png │ ├── ttb-tab-sl-hilight.png │ ├── ttb-tab-sl-normal.png │ ├── ttb-tab-sr-hilight.png │ ├── ttb-tab-sr-normal.png │ ├── ttb-vback.png │ ├── ttb-vback2.png │ └── ttb-vscroll-back__LRTB1.png └── toolbar_config /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2016-2022 Gabriel Dubatti 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /TextAdept LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2007-2022 Mitchell 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /modules/log.lua: -------------------------------------------------------------------------------- 1 | local log_ev={} 2 | 3 | function log_event(event) 4 | local line= os.date('%c')..": "..event.."\n" 5 | log_ev[#log_ev+1]= line 6 | end 7 | 8 | keys[Util.KEY_CTRL..Util.KEY_SHIFT.."f5"] = function() 9 | Proj.go_file(nil) --new file 10 | log_event("DUMP\n") 11 | for i=1,#log_ev do 12 | buffer:append_text(log_ev[i]) 13 | end 14 | buffer:set_save_point() 15 | end 16 | 17 | log_event("LOG_START") 18 | 19 | function log_event_call(event) 20 | return function() log_event(event) end 21 | end 22 | 23 | events.connect(events.RESET_AFTER, log_event_call("RESET_AFTER")) 24 | events.connect(events.INITIALIZED, log_event_call("INITIALIZED")) 25 | -------------------------------------------------------------------------------- /modules/textadept/macros.lua: -------------------------------------------------------------------------------- 1 | --ignore the default macro module -------------------------------------------------------------------------------- /screencapt/tatoolbar_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/screencapt/tatoolbar_off.png -------------------------------------------------------------------------------- /screencapt/tatoolbar_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/screencapt/tatoolbar_on.png -------------------------------------------------------------------------------- /snippets/ansi_c.for0.txt: -------------------------------------------------------------------------------- 1 | for( %1(i)= %2(0); %1 < %3(SIZE_); %1++){ 2 | %0 3 | } -------------------------------------------------------------------------------- /snippets/ansi_c.for1.txt: -------------------------------------------------------------------------------- 1 | for( %1(i)= %2(1); %1 <= %3(MAX_); %1++){ 2 | %0 3 | } -------------------------------------------------------------------------------- /snippets/ansi_c.ford.txt: -------------------------------------------------------------------------------- 1 | for( %1(i)= %2(MAX_); %1 >= %3(1); %1--){ 2 | %0 3 | } -------------------------------------------------------------------------------- /snippets/getd.txt: -------------------------------------------------------------------------------- 1 | % -------------------------------------------------------------------------------- /snippets/getdt.txt: -------------------------------------------------------------------------------- 1 | % -------------------------------------------------------------------------------- /snippets/gett.txt: -------------------------------------------------------------------------------- 1 | % -------------------------------------------------------------------------------- /tatoolbar/src/ta_debug.h: -------------------------------------------------------------------------------- 1 | // Copyright 2016-2022 Gabriel Dubatti. See LICENSE. 2 | /* 3 | ta_debug.h 4 | ========== 5 | */ 6 | #ifndef __TA_DEBUG__ 7 | #define __TA_DEBUG__ 8 | 9 | #define SAVE_DEBUG 10 | 11 | #ifdef SAVE_DEBUG 12 | //DEBUG ON 13 | int SAVE_DEBUG_OPEN( void ); 14 | void SAVE_DEBUG_CLOSE( void ); 15 | void SAVE_DEBUG_KEEPCLOSED( int wasclosed ); 16 | void SAVE_DEBUG_STR( char * txt ); 17 | void SAVE_DEBUG_STR_INT( char * info, int v ); 18 | void SAVE_DEBUG_TB_HW( struct toolbar_data *T, char * info ); 19 | void SAVE_DEBUG_TB0_HW( struct toolbar_data *T, char * info ); 20 | #else 21 | //DEBUG OFF 22 | #define SAVE_DEBUG_OPEN() 23 | #define SAVE_DEBUG_CLOSE() 24 | #define SAVE_DEBUG_KEEPCLOSED(wasclosed) 25 | #define SAVE_DEBUG_STR(txt) 26 | #define SAVE_DEBUG_STR_INT(info,v) 27 | #define SAVE_DEBUG_TB_HW(T,info) 28 | #define SAVE_DEBUG_TB0_HW(T,info) 29 | #endif 30 | 31 | #endif 32 | -------------------------------------------------------------------------------- /tatoolbar/src/ta_filediff.h: -------------------------------------------------------------------------------- 1 | // Copyright 2016-2022 Gabriel Dubatti. See LICENSE. 2 | /* 3 | ta_filediff.h 4 | ============= 5 | TA file diff 6 | */ 7 | #ifndef __TA_FILEDIFF__ 8 | #define __TA_FILEDIFF__ 9 | 10 | #define MAXFILEDIFF 2 11 | 12 | struct line_info { 13 | struct line_info * next; 14 | 15 | char * line; 16 | int linesz; 17 | unsigned long hash; 18 | 19 | int linenum; //this file line number 20 | 21 | int otherline; // 0 if this line is only in this file 22 | // > 0 other file line number (same text) 23 | // < 0 other file line number (when only one line changed in both sides) 24 | }; 25 | 26 | //load a file to compare (filenum= 1...MAXFILEDIFF) 27 | void fdiff_setfile( int filenum, const char * filecontent ); 28 | 29 | typedef void t_pushint( int val ); 30 | 31 | //get file differences as an int array 32 | void fdiff_getdiff( int filenum, int dlist, t_pushint pfunc ); 33 | 34 | //get string differences as an int array 35 | void fdiff_strdiff( const char *s1, const char *s2, t_pushint pfunc ); 36 | 37 | //free all filediff memory 38 | void fdiff_killall( void ); 39 | 40 | #endif 41 | -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/cfg-back2__TB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/cfg-back2__TB1.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/cfg-back__LR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/cfg-back__LR1.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/cfg-separator-h__LR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/cfg-separator-h__LR1.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/cfg-tab-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/cfg-tab-back.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/closed-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/closed-back.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/colors.cfg: -------------------------------------------------------------------------------- 1 | color.text_fore:0x454950 2 | color.text_back:0x0C0C0B 3 | color.caret:0xC1F4FD 4 | color.curr_line_back:0x181818 5 | color.selection_fore:0x21201D 6 | color.selection_back:0x454950 7 | color.hilight:0x2273A8 8 | color.placeholder:0x2273A8 9 | color.find:0x2273A8 10 | color.calltips_fore:0x8499A8 11 | color.calltips_back:0xC1F4FD 12 | color.linenum_fore:0x8499A8 13 | color.linenum_back:0x21201D 14 | color.markers:0xA6A595 15 | color.markers_sel:0x8499A8 16 | color.bookmark:0x78660D 17 | color.warning:0x3BC0FA 18 | color.error:0x3F54FB 19 | color.indentguide:0x545C66 20 | color.prj_sel_bar_nof:0x15181B 21 | color.prj_sel_bar:0x272D33 22 | color.prj_open_mark:0x6A715E 23 | color.comment:0xA6A595 24 | color.variable:0x3F54FB 25 | color.constant:0x2586FE 26 | color.number:0x2586FE 27 | color.type:0x2586FE 28 | color.class:0x3BC0FA 29 | color.label:0x3BC0FA 30 | color.preprocessor:0x3BC0FA 31 | color.string:0x85C095 32 | color.regex:0x9BA58B 33 | color.brace_ok:0x9BA58B 34 | color.function:0x73468F 35 | color.keyword:0x73468F 36 | color.embedded:0x2273A8 37 | color.operator:0x454950 38 | color.yellow:0x00D7D7 39 | color.red:0x3F54FB 40 | color.green:0x85C095 -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/group-vscroll-back__L3R4TB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/group-vscroll-back__L3R4TB4.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/group-vscroll-bar-hilight__L4R5TB5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/group-vscroll-bar-hilight__L4R5TB5.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/group-vscroll-bar__L4R5TB5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/group-vscroll-bar__L4R5TB5.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/open-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/open-back.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/res-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/res-back.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/stat-back__LR7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/stat-back__LR7.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-back.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-back2-same.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-back2-same.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-back2.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-button-active-drop__LTB4R18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-button-active-drop__LTB4R18.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-button-active__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-button-active__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-button-disabled__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-button-disabled__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-button-hilight-drop__LTB4R18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-button-hilight-drop__LTB4R18.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-button-hilight__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-button-hilight__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-button-normal-drop__LTB4R18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-button-normal-drop__LTB4R18.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-button-normal__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-button-normal__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-button-press-drop__LTB4R18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-button-press-drop__LTB4R18.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-button-press__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-button-press__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-check-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-check-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-check-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-check-normal.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-check-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-check-press.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-check-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-check-selected.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-checkbox-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-checkbox-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-checkbox-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-checkbox-normal.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-checkbox-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-checkbox-press.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-checkbox-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-checkbox-selected.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-close-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-close-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-close-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-close-normal.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-close-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-close-press.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-combo-list__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-combo-list__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-combo-selected__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-combo-selected__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-dialog-border__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-dialog-border__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-edit-disabled__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-edit-disabled__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-edit-focus-disabled__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-edit-focus-disabled__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-edit-focus__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-edit-focus__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-edit-normal__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-edit-normal__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-hscroll-back__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-hscroll-back__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-radio-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-radio-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-radio-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-radio-normal.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-radio-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-radio-press.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-radio-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-radio-selected.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-scroll-box__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-scroll-box__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-separator-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-separator-h.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-separator-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-separator-v.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-active-close__L12R26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-active-close__L12R26.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-active__LR12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-active__LR12.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-background.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-close-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-close-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-close-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-close-normal.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-disabled-close__L12R26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-disabled-close__L12R26.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-disabled__LR12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-disabled__LR12.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-hilight-close__L12R26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-hilight-close__L12R26.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-hilight__LR12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-hilight__LR12.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-hsr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-hsr.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-modified.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-normal-close__L12R26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-normal-close__L12R26.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-normal__LR12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-normal__LR12.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-sl-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-sl-normal.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-sr-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-sr-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-tab-sr-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-tab-sr-normal.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-vback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-vback.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-vback2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-vback2.png -------------------------------------------------------------------------------- /toolbar/bar-ch-dark/ttb-vscroll-back__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-ch-dark/ttb-vscroll-back__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/cfg-back2__TB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/cfg-back2__TB1.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/cfg-back__LR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/cfg-back__LR1.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/cfg-separator-h__LR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/cfg-separator-h__LR1.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/cfg-tab-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/cfg-tab-back.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/closed-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/closed-back.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/colors.cfg: -------------------------------------------------------------------------------- 1 | color.text_fore:0x101000 2 | color.text_back:0xd6e7ff 3 | color.caret:0x362b00 4 | color.curr_line_back:0xf5f9ff 5 | color.selection_fore:0x905090 6 | color.selection_back:0x88acdf 7 | color.hilight:0x88B7FF 8 | color.placeholder:0x88acdf 9 | color.find:0xa8ccff 10 | color.calltips_fore:0x0a70ff 11 | color.calltips_back:0x362b00 12 | color.linenum_fore:0x0a70ff 13 | color.linenum_back:0xb8dcff 14 | color.markers:0x6D6D3E 15 | color.markers_sel:0x0a70ff 16 | color.bookmark:0x015aee 17 | color.warning:0x0089b5 18 | color.error:0x2f32dc 19 | color.indentguide:0x837b65 20 | color.prj_sel_bar_nof:0x88acdf 21 | color.prj_sel_bar:0xa8ccff 22 | color.prj_open_mark:0x404040 23 | color.comment:0x6D6D3E 24 | color.variable:0x2f32dc 25 | color.constant:0x164bcb 26 | color.number:0x164bcb 27 | color.type:0x164bcb 28 | color.class:0x0089b5 29 | color.label:0x0089b5 30 | color.preprocessor:0x0089b5 31 | color.string:0x006030 32 | color.regex:0x98a12a 33 | color.brace_ok:0x98a12a 34 | color.function:0x800000 35 | color.keyword:0x800000 36 | color.embedded:0x8236d3 37 | color.operator:0x101000 38 | color.yellow:0x7FFFFF 39 | color.red:0x9999FF 40 | color.green:0x7AE584 -------------------------------------------------------------------------------- /toolbar/bar-sm-light/group-vscroll-back__L3R4TB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/group-vscroll-back__L3R4TB4.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/group-vscroll-bar-hilight__L2R5TB5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/group-vscroll-bar-hilight__L2R5TB5.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/group-vscroll-bar__L2R5TB5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/group-vscroll-bar__L2R5TB5.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/open-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/open-back.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/res-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/res-back.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/stat-back__LR7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/stat-back__LR7.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-back.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-back2.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-button-active-drop__LTB4R18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-button-active-drop__LTB4R18.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-button-active__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-button-active__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-button-disabled__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-button-disabled__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-button-hilight-drop__LTB4R18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-button-hilight-drop__LTB4R18.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-button-hilight__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-button-hilight__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-button-normal-drop__LTB4R18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-button-normal-drop__LTB4R18.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-button-normal__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-button-normal__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-button-press-drop__LTB4R18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-button-press-drop__LTB4R18.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-button-press__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-button-press__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-check-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-check-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-check-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-check-normal.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-check-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-check-press.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-check-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-check-selected.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-checkbox-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-checkbox-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-checkbox-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-checkbox-normal.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-checkbox-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-checkbox-press.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-checkbox-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-checkbox-selected.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-close-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-close-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-close-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-close-normal.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-close-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-close-press.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-combo-list__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-combo-list__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-combo-selected__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-combo-selected__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-dialog-border__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-dialog-border__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-edit-disabled__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-edit-disabled__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-edit-focus-disabled__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-edit-focus-disabled__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-edit-focus__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-edit-focus__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-edit-normal__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-edit-normal__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-hscroll-back__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-hscroll-back__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-radio-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-radio-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-radio-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-radio-normal.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-radio-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-radio-press.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-radio-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-radio-selected.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-scroll-box__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-scroll-box__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-separator-h__LR2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-separator-h__LR2.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-separator-v__TB2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-separator-v__TB2.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-active-close__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-active-close__LR9.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-active__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-active__LR9.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-background.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-close-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-close-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-close-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-close-normal.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-disabled-close__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-disabled-close__LR9.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-disabled__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-disabled__LR9.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-hilight-close__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-hilight-close__LR9.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-hilight__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-hilight__LR9.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-modified.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-normal-close__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-normal-close__LR9.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-normal__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-normal__LR9.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-sl-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-sl-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-sl-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-sl-normal.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-sr-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-sr-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-tab-sr-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-tab-sr-normal.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-vback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-vback.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-vback2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-vback2.png -------------------------------------------------------------------------------- /toolbar/bar-sm-light/ttb-vscroll-back__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-sm-light/ttb-vscroll-back__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/cfg-back2__TB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/cfg-back2__TB1.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/cfg-back__LR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/cfg-back__LR1.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/cfg-separator-h__LR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/cfg-separator-h__LR1.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/cfg-tab-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/cfg-tab-back.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/closed-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/closed-back.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/colors.cfg: -------------------------------------------------------------------------------- 1 | color.text_fore:0xB1B1B1 2 | color.text_back:0x181412 3 | color.caret:0xffffff 4 | color.curr_line_back:0x383838 5 | color.selection_fore:0x000000 6 | color.selection_back:0x6C6C6C 7 | color.hilight:0x3c64be 8 | color.placeholder:0x3c64be 9 | color.find:0x3c64be 10 | color.calltips_fore:0xe0e0e0 11 | color.calltips_back:0xffffff 12 | color.linenum_fore:0xA4A4A4 13 | color.linenum_back:0x000000 14 | color.markers:0xA6A595 15 | color.markers_sel:0xe0e0e0 16 | color.bookmark:0xd2b36f 17 | color.warning:0x31a3fd 18 | color.error:0x2001fb 19 | color.indentguide:0xb0b0b0 20 | color.prj_sel_bar_nof:0x222222 21 | color.prj_sel_bar:0x505050 22 | color.prj_open_mark:0x8B8B00 23 | color.comment:0x9AA66E 24 | color.variable:0x2001fb 25 | color.constant:0x246dfc 26 | color.number:0x246dfc 27 | color.type:0x246dfc 28 | color.class:0x31a3fd 29 | color.label:0x31a3fd 30 | color.preprocessor:0x31a3fd 31 | color.string:0x59c6a1 32 | color.regex:0xb7c776 33 | color.brace_ok:0xb7c776 34 | color.function:0xc381d3 35 | color.keyword:0xc381d3 36 | color.embedded:0x3c64be 37 | color.operator:0x5A5A5A 38 | color.yellow:0x007E7E 39 | color.red:0x18007A 40 | color.green:0x008C00 -------------------------------------------------------------------------------- /toolbar/bar-th-dark/group-vscroll-back__L3R4TB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/group-vscroll-back__L3R4TB4.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/group-vscroll-bar-hilight__L4R5TB5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/group-vscroll-bar-hilight__L4R5TB5.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/group-vscroll-bar__L4R5TB5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/group-vscroll-bar__L4R5TB5.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/open-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/open-back.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/res-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/res-back.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/stat-back__LR7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/stat-back__LR7.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-back.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-back2-same.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-back2-same.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-back2.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-button-active-drop__LTB4R18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-button-active-drop__LTB4R18.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-button-active__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-button-active__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-button-disabled__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-button-disabled__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-button-hilight-drop__LTB4R18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-button-hilight-drop__LTB4R18.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-button-hilight__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-button-hilight__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-button-normal-drop__LTB4R18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-button-normal-drop__LTB4R18.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-button-normal__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-button-normal__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-button-press-drop__LTB4R18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-button-press-drop__LTB4R18.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-button-press__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-button-press__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-check-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-check-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-check-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-check-normal.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-check-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-check-press.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-check-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-check-selected.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-checkbox-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-checkbox-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-checkbox-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-checkbox-normal.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-checkbox-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-checkbox-press.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-checkbox-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-checkbox-selected.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-close-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-close-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-close-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-close-normal.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-close-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-close-press.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-combo-list__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-combo-list__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-combo-selected__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-combo-selected__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-dialog-border__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-dialog-border__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-edit-disabled__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-edit-disabled__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-edit-focus-disabled__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-edit-focus-disabled__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-edit-focus__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-edit-focus__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-edit-normal__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-edit-normal__LRTB4.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-hscroll-back__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-hscroll-back__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-radio-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-radio-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-radio-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-radio-normal.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-radio-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-radio-press.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-radio-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-radio-selected.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-scroll-box__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-scroll-box__LRTB1.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-separator-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-separator-h.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-separator-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-separator-v.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-active-close__L23R35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-active-close__L23R35.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-active__LR23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-active__LR23.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-background.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-close-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-close-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-close-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-close-normal.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-disabled-close__L23R35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-disabled-close__L23R35.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-disabled__LR23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-disabled__LR23.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-hilight-close__L23R35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-hilight-close__L23R35.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-hilight__LR23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-hilight__LR23.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-modified.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-normal-close__L23R35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-normal-close__L23R35.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-normal__LR23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-normal__LR23.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-sl-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-sl-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-sl-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-sl-normal.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-sr-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-sr-hilight.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-tab-sr-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-tab-sr-normal.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-vback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-vback.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-vback2-same.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-vback2-same.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-vback2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-vback2.png -------------------------------------------------------------------------------- /toolbar/bar-th-dark/ttb-vscroll-back__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/bar-th-dark/ttb-vscroll-back__LRTB1.png -------------------------------------------------------------------------------- /toolbar/icons/dark/add-files-to-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/add-files-to-archive.png -------------------------------------------------------------------------------- /toolbar/icons/dark/add-folder-to-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/add-folder-to-archive.png -------------------------------------------------------------------------------- /toolbar/icons/dark/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/application-exit.png -------------------------------------------------------------------------------- /toolbar/icons/dark/appointment-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/appointment-new.png -------------------------------------------------------------------------------- /toolbar/icons/dark/bookmark-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/bookmark-new.png -------------------------------------------------------------------------------- /toolbar/icons/dark/colorh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/colorh.png -------------------------------------------------------------------------------- /toolbar/icons/dark/colorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/colorn.png -------------------------------------------------------------------------------- /toolbar/icons/dark/colorp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/colorp.png -------------------------------------------------------------------------------- /toolbar/icons/dark/contact-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/contact-new.png -------------------------------------------------------------------------------- /toolbar/icons/dark/dialog-apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/dialog-apply.png -------------------------------------------------------------------------------- /toolbar/icons/dark/dialog-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/dialog-ok.png -------------------------------------------------------------------------------- /toolbar/icons/dark/document-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/document-export.png -------------------------------------------------------------------------------- /toolbar/icons/dark/document-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/document-import.png -------------------------------------------------------------------------------- /toolbar/icons/dark/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/document-new.png -------------------------------------------------------------------------------- /toolbar/icons/dark/document-open-recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/document-open-recent.png -------------------------------------------------------------------------------- /toolbar/icons/dark/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/document-open.png -------------------------------------------------------------------------------- /toolbar/icons/dark/document-page-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/document-page-setup.png -------------------------------------------------------------------------------- /toolbar/icons/dark/document-print-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/document-print-preview.png -------------------------------------------------------------------------------- /toolbar/icons/dark/document-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/document-print.png -------------------------------------------------------------------------------- /toolbar/icons/dark/document-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/document-properties.png -------------------------------------------------------------------------------- /toolbar/icons/dark/document-revert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/document-revert.png -------------------------------------------------------------------------------- /toolbar/icons/dark/document-save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/document-save-as.png -------------------------------------------------------------------------------- /toolbar/icons/dark/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/document-save.png -------------------------------------------------------------------------------- /toolbar/icons/dark/document-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/document-send.png -------------------------------------------------------------------------------- /toolbar/icons/dark/edit-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/edit-clear.png -------------------------------------------------------------------------------- /toolbar/icons/dark/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/edit-copy.png -------------------------------------------------------------------------------- /toolbar/icons/dark/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/edit-cut.png -------------------------------------------------------------------------------- /toolbar/icons/dark/edit-find-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/edit-find-replace.png -------------------------------------------------------------------------------- /toolbar/icons/dark/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/edit-find.png -------------------------------------------------------------------------------- /toolbar/icons/dark/edit-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/edit-paste.png -------------------------------------------------------------------------------- /toolbar/icons/dark/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/edit-redo.png -------------------------------------------------------------------------------- /toolbar/icons/dark/edit-select-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/edit-select-all.png -------------------------------------------------------------------------------- /toolbar/icons/dark/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/edit-undo.png -------------------------------------------------------------------------------- /toolbar/icons/dark/extract-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/extract-archive.png -------------------------------------------------------------------------------- /toolbar/icons/dark/folder-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/folder-copy.png -------------------------------------------------------------------------------- /toolbar/icons/dark/folder-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/folder-move.png -------------------------------------------------------------------------------- /toolbar/icons/dark/folder-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/folder-new.png -------------------------------------------------------------------------------- /toolbar/icons/dark/format-indent-less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/format-indent-less.png -------------------------------------------------------------------------------- /toolbar/icons/dark/format-indent-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/format-indent-more.png -------------------------------------------------------------------------------- /toolbar/icons/dark/format-justify-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/format-justify-center.png -------------------------------------------------------------------------------- /toolbar/icons/dark/format-justify-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/format-justify-fill.png -------------------------------------------------------------------------------- /toolbar/icons/dark/format-justify-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/format-justify-left.png -------------------------------------------------------------------------------- /toolbar/icons/dark/format-justify-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/format-justify-right.png -------------------------------------------------------------------------------- /toolbar/icons/dark/format-text-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/format-text-bold.png -------------------------------------------------------------------------------- /toolbar/icons/dark/format-text-direction-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/format-text-direction-ltr.png -------------------------------------------------------------------------------- /toolbar/icons/dark/format-text-direction-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/format-text-direction-rtl.png -------------------------------------------------------------------------------- /toolbar/icons/dark/format-text-italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/format-text-italic.png -------------------------------------------------------------------------------- /toolbar/icons/dark/format-text-strikethrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/format-text-strikethrough.png -------------------------------------------------------------------------------- /toolbar/icons/dark/format-text-underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/format-text-underline.png -------------------------------------------------------------------------------- /toolbar/icons/dark/gnome-app-install-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/gnome-app-install-star.png -------------------------------------------------------------------------------- /toolbar/icons/dark/go-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/go-bottom.png -------------------------------------------------------------------------------- /toolbar/icons/dark/go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/go-down.png -------------------------------------------------------------------------------- /toolbar/icons/dark/go-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/go-first.png -------------------------------------------------------------------------------- /toolbar/icons/dark/go-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/go-home.png -------------------------------------------------------------------------------- /toolbar/icons/dark/go-jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/go-jump.png -------------------------------------------------------------------------------- /toolbar/icons/dark/go-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/go-last.png -------------------------------------------------------------------------------- /toolbar/icons/dark/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/go-next.png -------------------------------------------------------------------------------- /toolbar/icons/dark/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/go-previous.png -------------------------------------------------------------------------------- /toolbar/icons/dark/go-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/go-top.png -------------------------------------------------------------------------------- /toolbar/icons/dark/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/go-up.png -------------------------------------------------------------------------------- /toolbar/icons/dark/gtk-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/gtk-edit.png -------------------------------------------------------------------------------- /toolbar/icons/dark/gtk-no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/gtk-no.png -------------------------------------------------------------------------------- /toolbar/icons/dark/gtk-yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/gtk-yes.png -------------------------------------------------------------------------------- /toolbar/icons/dark/help-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/help-about.png -------------------------------------------------------------------------------- /toolbar/icons/dark/help-contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/help-contents.png -------------------------------------------------------------------------------- /toolbar/icons/dark/insert-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/insert-image.png -------------------------------------------------------------------------------- /toolbar/icons/dark/insert-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/insert-link.png -------------------------------------------------------------------------------- /toolbar/icons/dark/insert-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/insert-text.png -------------------------------------------------------------------------------- /toolbar/icons/dark/internet-radio-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/internet-radio-new.png -------------------------------------------------------------------------------- /toolbar/icons/dark/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/list-add.png -------------------------------------------------------------------------------- /toolbar/icons/dark/list-colapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/list-colapse.png -------------------------------------------------------------------------------- /toolbar/icons/dark/list-colapse2-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/list-colapse2-hilight.png -------------------------------------------------------------------------------- /toolbar/icons/dark/list-colapse2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/list-colapse2.png -------------------------------------------------------------------------------- /toolbar/icons/dark/list-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/list-expand.png -------------------------------------------------------------------------------- /toolbar/icons/dark/list-expand2-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/list-expand2-hilight.png -------------------------------------------------------------------------------- /toolbar/icons/dark/list-expand2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/list-expand2.png -------------------------------------------------------------------------------- /toolbar/icons/dark/list-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/list-remove.png -------------------------------------------------------------------------------- /toolbar/icons/dark/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/lock.png -------------------------------------------------------------------------------- /toolbar/icons/dark/lpi-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/lpi-bug.png -------------------------------------------------------------------------------- /toolbar/icons/dark/lpi-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/lpi-help.png -------------------------------------------------------------------------------- /toolbar/icons/dark/lpi-translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/lpi-translate.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mail-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mail-attachment.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mail-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mail-forward.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mail-inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mail-inbox.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mail-mark-important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mail-mark-important.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mail-mark-junk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mail-mark-junk.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mail-mark-notjunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mail-mark-notjunk.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mail-mark-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mail-mark-read.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mail-mark-unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mail-mark-unread.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mail-message-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mail-message-new.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mail-outbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mail-outbox.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mail-reply-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mail-reply-all.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mail-reply-sender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mail-reply-sender.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mail-send-receive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mail-send-receive.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mail-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mail-send.png -------------------------------------------------------------------------------- /toolbar/icons/dark/media-eject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/media-eject.png -------------------------------------------------------------------------------- /toolbar/icons/dark/media-import-audio-cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/media-import-audio-cd.png -------------------------------------------------------------------------------- /toolbar/icons/dark/media-optical-audio-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/media-optical-audio-new.png -------------------------------------------------------------------------------- /toolbar/icons/dark/media-optical-burn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/media-optical-burn.png -------------------------------------------------------------------------------- /toolbar/icons/dark/media-optical-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/media-optical-copy.png -------------------------------------------------------------------------------- /toolbar/icons/dark/media-playback-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/media-playback-pause.png -------------------------------------------------------------------------------- /toolbar/icons/dark/media-playback-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/media-playback-start.png -------------------------------------------------------------------------------- /toolbar/icons/dark/media-playback-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/media-playback-stop.png -------------------------------------------------------------------------------- /toolbar/icons/dark/media-playlist-repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/media-playlist-repeat.png -------------------------------------------------------------------------------- /toolbar/icons/dark/media-playlist-shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/media-playlist-shuffle.png -------------------------------------------------------------------------------- /toolbar/icons/dark/media-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/media-record.png -------------------------------------------------------------------------------- /toolbar/icons/dark/media-skip-backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/media-skip-backward.png -------------------------------------------------------------------------------- /toolbar/icons/dark/media-skip-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/media-skip-forward.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mod-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mod-case.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mod-increm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mod-increm.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mod-regexp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mod-regexp.png -------------------------------------------------------------------------------- /toolbar/icons/dark/mod-word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/mod-word.png -------------------------------------------------------------------------------- /toolbar/icons/dark/music-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/music-library.png -------------------------------------------------------------------------------- /toolbar/icons/dark/object-flip-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/object-flip-horizontal.png -------------------------------------------------------------------------------- /toolbar/icons/dark/object-flip-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/object-flip-vertical.png -------------------------------------------------------------------------------- /toolbar/icons/dark/object-rotate-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/object-rotate-left.png -------------------------------------------------------------------------------- /toolbar/icons/dark/object-rotate-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/object-rotate-right.png -------------------------------------------------------------------------------- /toolbar/icons/dark/package-available-locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/package-available-locked.png -------------------------------------------------------------------------------- /toolbar/icons/dark/package-available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/package-available.png -------------------------------------------------------------------------------- /toolbar/icons/dark/package-broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/package-broken.png -------------------------------------------------------------------------------- /toolbar/icons/dark/package-downgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/package-downgrade.png -------------------------------------------------------------------------------- /toolbar/icons/dark/package-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/package-install.png -------------------------------------------------------------------------------- /toolbar/icons/dark/package-installed-locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/package-installed-locked.png -------------------------------------------------------------------------------- /toolbar/icons/dark/package-installed-outdated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/package-installed-outdated.png -------------------------------------------------------------------------------- /toolbar/icons/dark/package-installed-updated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/package-installed-updated.png -------------------------------------------------------------------------------- /toolbar/icons/dark/package-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/package-new.png -------------------------------------------------------------------------------- /toolbar/icons/dark/package-purge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/package-purge.png -------------------------------------------------------------------------------- /toolbar/icons/dark/package-reinstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/package-reinstall.png -------------------------------------------------------------------------------- /toolbar/icons/dark/package-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/package-remove.png -------------------------------------------------------------------------------- /toolbar/icons/dark/package-supported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/package-supported.png -------------------------------------------------------------------------------- /toolbar/icons/dark/package-upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/package-upgrade.png -------------------------------------------------------------------------------- /toolbar/icons/dark/podcast-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/podcast-new.png -------------------------------------------------------------------------------- /toolbar/icons/dark/process-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/process-stop.png -------------------------------------------------------------------------------- /toolbar/icons/dark/resize-tr-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/resize-tr-hilight.png -------------------------------------------------------------------------------- /toolbar/icons/dark/resize-tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/resize-tr.png -------------------------------------------------------------------------------- /toolbar/icons/dark/system-lock-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/system-lock-screen.png -------------------------------------------------------------------------------- /toolbar/icons/dark/system-log-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/system-log-out.png -------------------------------------------------------------------------------- /toolbar/icons/dark/system-restart-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/system-restart-panel.png -------------------------------------------------------------------------------- /toolbar/icons/dark/system-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/system-run.png -------------------------------------------------------------------------------- /toolbar/icons/dark/system-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/system-search.png -------------------------------------------------------------------------------- /toolbar/icons/dark/system-shutdown-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/system-shutdown-panel.png -------------------------------------------------------------------------------- /toolbar/icons/dark/system-shutdown-restart-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/system-shutdown-restart-panel.png -------------------------------------------------------------------------------- /toolbar/icons/dark/system-shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/system-shutdown.png -------------------------------------------------------------------------------- /toolbar/icons/dark/system-upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/system-upgrade.png -------------------------------------------------------------------------------- /toolbar/icons/dark/t_def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/t_def.png -------------------------------------------------------------------------------- /toolbar/icons/dark/t_func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/t_func.png -------------------------------------------------------------------------------- /toolbar/icons/dark/t_struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/t_struct.png -------------------------------------------------------------------------------- /toolbar/icons/dark/t_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/t_type.png -------------------------------------------------------------------------------- /toolbar/icons/dark/t_var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/t_var.png -------------------------------------------------------------------------------- /toolbar/icons/dark/tab-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/tab-new.png -------------------------------------------------------------------------------- /toolbar/icons/dark/tag-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/tag-new.png -------------------------------------------------------------------------------- /toolbar/icons/dark/tools-check-spelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/tools-check-spelling.png -------------------------------------------------------------------------------- /toolbar/icons/dark/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/transparent.png -------------------------------------------------------------------------------- /toolbar/icons/dark/ttb-proj-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/ttb-proj-c.png -------------------------------------------------------------------------------- /toolbar/icons/dark/ttb-proj-e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/ttb-proj-e.png -------------------------------------------------------------------------------- /toolbar/icons/dark/ttb-proj-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/ttb-proj-o.png -------------------------------------------------------------------------------- /toolbar/icons/dark/view-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/view-fullscreen.png -------------------------------------------------------------------------------- /toolbar/icons/dark/view-list-compact-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/view-list-compact-symbolic.png -------------------------------------------------------------------------------- /toolbar/icons/dark/view-list-details-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/view-list-details-symbolic.png -------------------------------------------------------------------------------- /toolbar/icons/dark/view-list-icons-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/view-list-icons-symbolic.png -------------------------------------------------------------------------------- /toolbar/icons/dark/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/view-refresh.png -------------------------------------------------------------------------------- /toolbar/icons/dark/view-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/view-restore.png -------------------------------------------------------------------------------- /toolbar/icons/dark/view-sort-ascending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/view-sort-ascending.png -------------------------------------------------------------------------------- /toolbar/icons/dark/view-sort-descending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/view-sort-descending.png -------------------------------------------------------------------------------- /toolbar/icons/dark/visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/visualization.png -------------------------------------------------------------------------------- /toolbar/icons/dark/window-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/window-close.png -------------------------------------------------------------------------------- /toolbar/icons/dark/window-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/window-new.png -------------------------------------------------------------------------------- /toolbar/icons/dark/zoom-fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/zoom-fit.png -------------------------------------------------------------------------------- /toolbar/icons/dark/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/zoom-in.png -------------------------------------------------------------------------------- /toolbar/icons/dark/zoom-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/zoom-original.png -------------------------------------------------------------------------------- /toolbar/icons/dark/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/dark/zoom-out.png -------------------------------------------------------------------------------- /toolbar/icons/light/add-files-to-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/add-files-to-archive.png -------------------------------------------------------------------------------- /toolbar/icons/light/add-folder-to-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/add-folder-to-archive.png -------------------------------------------------------------------------------- /toolbar/icons/light/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/application-exit.png -------------------------------------------------------------------------------- /toolbar/icons/light/appointment-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/appointment-new.png -------------------------------------------------------------------------------- /toolbar/icons/light/bookmark-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/bookmark-new.png -------------------------------------------------------------------------------- /toolbar/icons/light/colorh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/colorh.png -------------------------------------------------------------------------------- /toolbar/icons/light/colorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/colorn.png -------------------------------------------------------------------------------- /toolbar/icons/light/colorp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/colorp.png -------------------------------------------------------------------------------- /toolbar/icons/light/contact-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/contact-new.png -------------------------------------------------------------------------------- /toolbar/icons/light/dialog-apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/dialog-apply.png -------------------------------------------------------------------------------- /toolbar/icons/light/dialog-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/dialog-ok.png -------------------------------------------------------------------------------- /toolbar/icons/light/document-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/document-export.png -------------------------------------------------------------------------------- /toolbar/icons/light/document-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/document-import.png -------------------------------------------------------------------------------- /toolbar/icons/light/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/document-new.png -------------------------------------------------------------------------------- /toolbar/icons/light/document-open-recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/document-open-recent.png -------------------------------------------------------------------------------- /toolbar/icons/light/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/document-open.png -------------------------------------------------------------------------------- /toolbar/icons/light/document-page-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/document-page-setup.png -------------------------------------------------------------------------------- /toolbar/icons/light/document-print-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/document-print-preview.png -------------------------------------------------------------------------------- /toolbar/icons/light/document-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/document-print.png -------------------------------------------------------------------------------- /toolbar/icons/light/document-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/document-properties.png -------------------------------------------------------------------------------- /toolbar/icons/light/document-revert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/document-revert.png -------------------------------------------------------------------------------- /toolbar/icons/light/document-save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/document-save-as.png -------------------------------------------------------------------------------- /toolbar/icons/light/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/document-save.png -------------------------------------------------------------------------------- /toolbar/icons/light/document-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/document-send.png -------------------------------------------------------------------------------- /toolbar/icons/light/edit-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/edit-clear.png -------------------------------------------------------------------------------- /toolbar/icons/light/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/edit-copy.png -------------------------------------------------------------------------------- /toolbar/icons/light/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/edit-cut.png -------------------------------------------------------------------------------- /toolbar/icons/light/edit-find-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/edit-find-replace.png -------------------------------------------------------------------------------- /toolbar/icons/light/edit-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/edit-find.png -------------------------------------------------------------------------------- /toolbar/icons/light/edit-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/edit-paste.png -------------------------------------------------------------------------------- /toolbar/icons/light/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/edit-redo.png -------------------------------------------------------------------------------- /toolbar/icons/light/edit-select-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/edit-select-all.png -------------------------------------------------------------------------------- /toolbar/icons/light/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/edit-undo.png -------------------------------------------------------------------------------- /toolbar/icons/light/extract-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/extract-archive.png -------------------------------------------------------------------------------- /toolbar/icons/light/folder-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/folder-copy.png -------------------------------------------------------------------------------- /toolbar/icons/light/folder-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/folder-move.png -------------------------------------------------------------------------------- /toolbar/icons/light/folder-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/folder-new.png -------------------------------------------------------------------------------- /toolbar/icons/light/format-indent-less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/format-indent-less.png -------------------------------------------------------------------------------- /toolbar/icons/light/format-indent-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/format-indent-more.png -------------------------------------------------------------------------------- /toolbar/icons/light/format-justify-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/format-justify-center.png -------------------------------------------------------------------------------- /toolbar/icons/light/format-justify-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/format-justify-fill.png -------------------------------------------------------------------------------- /toolbar/icons/light/format-justify-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/format-justify-left.png -------------------------------------------------------------------------------- /toolbar/icons/light/format-justify-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/format-justify-right.png -------------------------------------------------------------------------------- /toolbar/icons/light/format-text-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/format-text-bold.png -------------------------------------------------------------------------------- /toolbar/icons/light/format-text-direction-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/format-text-direction-ltr.png -------------------------------------------------------------------------------- /toolbar/icons/light/format-text-direction-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/format-text-direction-rtl.png -------------------------------------------------------------------------------- /toolbar/icons/light/format-text-italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/format-text-italic.png -------------------------------------------------------------------------------- /toolbar/icons/light/format-text-strikethrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/format-text-strikethrough.png -------------------------------------------------------------------------------- /toolbar/icons/light/format-text-underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/format-text-underline.png -------------------------------------------------------------------------------- /toolbar/icons/light/gnome-app-install-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/gnome-app-install-star.png -------------------------------------------------------------------------------- /toolbar/icons/light/go-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/go-bottom.png -------------------------------------------------------------------------------- /toolbar/icons/light/go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/go-down.png -------------------------------------------------------------------------------- /toolbar/icons/light/go-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/go-first.png -------------------------------------------------------------------------------- /toolbar/icons/light/go-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/go-home.png -------------------------------------------------------------------------------- /toolbar/icons/light/go-jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/go-jump.png -------------------------------------------------------------------------------- /toolbar/icons/light/go-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/go-last.png -------------------------------------------------------------------------------- /toolbar/icons/light/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/go-next.png -------------------------------------------------------------------------------- /toolbar/icons/light/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/go-previous.png -------------------------------------------------------------------------------- /toolbar/icons/light/go-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/go-top.png -------------------------------------------------------------------------------- /toolbar/icons/light/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/go-up.png -------------------------------------------------------------------------------- /toolbar/icons/light/gtk-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/gtk-edit.png -------------------------------------------------------------------------------- /toolbar/icons/light/gtk-no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/gtk-no.png -------------------------------------------------------------------------------- /toolbar/icons/light/gtk-yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/gtk-yes.png -------------------------------------------------------------------------------- /toolbar/icons/light/help-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/help-about.png -------------------------------------------------------------------------------- /toolbar/icons/light/help-contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/help-contents.png -------------------------------------------------------------------------------- /toolbar/icons/light/insert-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/insert-image.png -------------------------------------------------------------------------------- /toolbar/icons/light/insert-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/insert-link.png -------------------------------------------------------------------------------- /toolbar/icons/light/insert-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/insert-text.png -------------------------------------------------------------------------------- /toolbar/icons/light/internet-radio-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/internet-radio-new.png -------------------------------------------------------------------------------- /toolbar/icons/light/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/list-add.png -------------------------------------------------------------------------------- /toolbar/icons/light/list-colapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/list-colapse.png -------------------------------------------------------------------------------- /toolbar/icons/light/list-colapse2-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/list-colapse2-hilight.png -------------------------------------------------------------------------------- /toolbar/icons/light/list-colapse2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/list-colapse2.png -------------------------------------------------------------------------------- /toolbar/icons/light/list-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/list-expand.png -------------------------------------------------------------------------------- /toolbar/icons/light/list-expand2-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/list-expand2-hilight.png -------------------------------------------------------------------------------- /toolbar/icons/light/list-expand2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/list-expand2.png -------------------------------------------------------------------------------- /toolbar/icons/light/list-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/list-remove.png -------------------------------------------------------------------------------- /toolbar/icons/light/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/lock.png -------------------------------------------------------------------------------- /toolbar/icons/light/lpi-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/lpi-bug.png -------------------------------------------------------------------------------- /toolbar/icons/light/lpi-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/lpi-help.png -------------------------------------------------------------------------------- /toolbar/icons/light/lpi-translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/lpi-translate.png -------------------------------------------------------------------------------- /toolbar/icons/light/mail-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mail-attachment.png -------------------------------------------------------------------------------- /toolbar/icons/light/mail-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mail-forward.png -------------------------------------------------------------------------------- /toolbar/icons/light/mail-inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mail-inbox.png -------------------------------------------------------------------------------- /toolbar/icons/light/mail-mark-important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mail-mark-important.png -------------------------------------------------------------------------------- /toolbar/icons/light/mail-mark-junk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mail-mark-junk.png -------------------------------------------------------------------------------- /toolbar/icons/light/mail-mark-notjunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mail-mark-notjunk.png -------------------------------------------------------------------------------- /toolbar/icons/light/mail-mark-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mail-mark-read.png -------------------------------------------------------------------------------- /toolbar/icons/light/mail-mark-unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mail-mark-unread.png -------------------------------------------------------------------------------- /toolbar/icons/light/mail-message-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mail-message-new.png -------------------------------------------------------------------------------- /toolbar/icons/light/mail-outbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mail-outbox.png -------------------------------------------------------------------------------- /toolbar/icons/light/mail-reply-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mail-reply-all.png -------------------------------------------------------------------------------- /toolbar/icons/light/mail-reply-sender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mail-reply-sender.png -------------------------------------------------------------------------------- /toolbar/icons/light/mail-send-receive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mail-send-receive.png -------------------------------------------------------------------------------- /toolbar/icons/light/mail-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mail-send.png -------------------------------------------------------------------------------- /toolbar/icons/light/media-eject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/media-eject.png -------------------------------------------------------------------------------- /toolbar/icons/light/media-import-audio-cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/media-import-audio-cd.png -------------------------------------------------------------------------------- /toolbar/icons/light/media-optical-audio-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/media-optical-audio-new.png -------------------------------------------------------------------------------- /toolbar/icons/light/media-optical-burn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/media-optical-burn.png -------------------------------------------------------------------------------- /toolbar/icons/light/media-optical-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/media-optical-copy.png -------------------------------------------------------------------------------- /toolbar/icons/light/media-playback-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/media-playback-pause.png -------------------------------------------------------------------------------- /toolbar/icons/light/media-playback-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/media-playback-start.png -------------------------------------------------------------------------------- /toolbar/icons/light/media-playback-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/media-playback-stop.png -------------------------------------------------------------------------------- /toolbar/icons/light/media-playlist-repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/media-playlist-repeat.png -------------------------------------------------------------------------------- /toolbar/icons/light/media-playlist-shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/media-playlist-shuffle.png -------------------------------------------------------------------------------- /toolbar/icons/light/media-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/media-record.png -------------------------------------------------------------------------------- /toolbar/icons/light/media-skip-backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/media-skip-backward.png -------------------------------------------------------------------------------- /toolbar/icons/light/media-skip-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/media-skip-forward.png -------------------------------------------------------------------------------- /toolbar/icons/light/mod-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mod-case.png -------------------------------------------------------------------------------- /toolbar/icons/light/mod-increm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mod-increm.png -------------------------------------------------------------------------------- /toolbar/icons/light/mod-regexp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mod-regexp.png -------------------------------------------------------------------------------- /toolbar/icons/light/mod-word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/mod-word.png -------------------------------------------------------------------------------- /toolbar/icons/light/music-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/music-library.png -------------------------------------------------------------------------------- /toolbar/icons/light/object-flip-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/object-flip-horizontal.png -------------------------------------------------------------------------------- /toolbar/icons/light/object-flip-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/object-flip-vertical.png -------------------------------------------------------------------------------- /toolbar/icons/light/object-rotate-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/object-rotate-left.png -------------------------------------------------------------------------------- /toolbar/icons/light/object-rotate-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/object-rotate-right.png -------------------------------------------------------------------------------- /toolbar/icons/light/package-available-locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/package-available-locked.png -------------------------------------------------------------------------------- /toolbar/icons/light/package-available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/package-available.png -------------------------------------------------------------------------------- /toolbar/icons/light/package-broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/package-broken.png -------------------------------------------------------------------------------- /toolbar/icons/light/package-downgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/package-downgrade.png -------------------------------------------------------------------------------- /toolbar/icons/light/package-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/package-install.png -------------------------------------------------------------------------------- /toolbar/icons/light/package-installed-locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/package-installed-locked.png -------------------------------------------------------------------------------- /toolbar/icons/light/package-installed-outdated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/package-installed-outdated.png -------------------------------------------------------------------------------- /toolbar/icons/light/package-installed-updated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/package-installed-updated.png -------------------------------------------------------------------------------- /toolbar/icons/light/package-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/package-new.png -------------------------------------------------------------------------------- /toolbar/icons/light/package-purge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/package-purge.png -------------------------------------------------------------------------------- /toolbar/icons/light/package-reinstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/package-reinstall.png -------------------------------------------------------------------------------- /toolbar/icons/light/package-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/package-remove.png -------------------------------------------------------------------------------- /toolbar/icons/light/package-supported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/package-supported.png -------------------------------------------------------------------------------- /toolbar/icons/light/package-upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/package-upgrade.png -------------------------------------------------------------------------------- /toolbar/icons/light/podcast-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/podcast-new.png -------------------------------------------------------------------------------- /toolbar/icons/light/process-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/process-stop.png -------------------------------------------------------------------------------- /toolbar/icons/light/resize-tr-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/resize-tr-hilight.png -------------------------------------------------------------------------------- /toolbar/icons/light/resize-tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/resize-tr.png -------------------------------------------------------------------------------- /toolbar/icons/light/system-lock-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/system-lock-screen.png -------------------------------------------------------------------------------- /toolbar/icons/light/system-log-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/system-log-out.png -------------------------------------------------------------------------------- /toolbar/icons/light/system-restart-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/system-restart-panel.png -------------------------------------------------------------------------------- /toolbar/icons/light/system-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/system-run.png -------------------------------------------------------------------------------- /toolbar/icons/light/system-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/system-search.png -------------------------------------------------------------------------------- /toolbar/icons/light/system-shutdown-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/system-shutdown-panel.png -------------------------------------------------------------------------------- /toolbar/icons/light/system-shutdown-restart-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/system-shutdown-restart-panel.png -------------------------------------------------------------------------------- /toolbar/icons/light/system-shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/system-shutdown.png -------------------------------------------------------------------------------- /toolbar/icons/light/system-upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/system-upgrade.png -------------------------------------------------------------------------------- /toolbar/icons/light/t_def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/t_def.png -------------------------------------------------------------------------------- /toolbar/icons/light/t_func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/t_func.png -------------------------------------------------------------------------------- /toolbar/icons/light/t_struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/t_struct.png -------------------------------------------------------------------------------- /toolbar/icons/light/t_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/t_type.png -------------------------------------------------------------------------------- /toolbar/icons/light/t_var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/t_var.png -------------------------------------------------------------------------------- /toolbar/icons/light/tab-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/tab-new.png -------------------------------------------------------------------------------- /toolbar/icons/light/tag-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/tag-new.png -------------------------------------------------------------------------------- /toolbar/icons/light/tools-check-spelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/tools-check-spelling.png -------------------------------------------------------------------------------- /toolbar/icons/light/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/transparent.png -------------------------------------------------------------------------------- /toolbar/icons/light/ttb-proj-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/ttb-proj-c.png -------------------------------------------------------------------------------- /toolbar/icons/light/ttb-proj-e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/ttb-proj-e.png -------------------------------------------------------------------------------- /toolbar/icons/light/ttb-proj-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/ttb-proj-o.png -------------------------------------------------------------------------------- /toolbar/icons/light/view-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/view-fullscreen.png -------------------------------------------------------------------------------- /toolbar/icons/light/view-list-compact-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/view-list-compact-symbolic.png -------------------------------------------------------------------------------- /toolbar/icons/light/view-list-details-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/view-list-details-symbolic.png -------------------------------------------------------------------------------- /toolbar/icons/light/view-list-icons-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/view-list-icons-symbolic.png -------------------------------------------------------------------------------- /toolbar/icons/light/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/view-refresh.png -------------------------------------------------------------------------------- /toolbar/icons/light/view-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/view-restore.png -------------------------------------------------------------------------------- /toolbar/icons/light/view-sort-ascending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/view-sort-ascending.png -------------------------------------------------------------------------------- /toolbar/icons/light/view-sort-descending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/view-sort-descending.png -------------------------------------------------------------------------------- /toolbar/icons/light/visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/visualization.png -------------------------------------------------------------------------------- /toolbar/icons/light/window-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/window-close.png -------------------------------------------------------------------------------- /toolbar/icons/light/window-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/window-new.png -------------------------------------------------------------------------------- /toolbar/icons/light/zoom-fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/zoom-fit.png -------------------------------------------------------------------------------- /toolbar/icons/light/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/zoom-in.png -------------------------------------------------------------------------------- /toolbar/icons/light/zoom-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/zoom-original.png -------------------------------------------------------------------------------- /toolbar/icons/light/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/light/zoom-out.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-msword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-msword.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-pdf.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-pgp-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-pgp-keys.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-rss+xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-rss+xml.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-vnd.oasis.opendocument.formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-vnd.oasis.opendocument.formula.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-vnd.scribus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-vnd.scribus.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-ace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-ace.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-archive.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-bittorrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-bittorrent.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-cd-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-cd-image.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-cue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-cue.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-executable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-executable.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-flash-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-flash-video.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-glade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-glade.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-php.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-rar.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-ruby.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-sln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-sln.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-tar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-tar.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-theme.png -------------------------------------------------------------------------------- /toolbar/icons/mime/application-x-zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/application-x-zip.png -------------------------------------------------------------------------------- /toolbar/icons/mime/audio-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/audio-x-generic.png -------------------------------------------------------------------------------- /toolbar/icons/mime/audio-x-mp3-playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/audio-x-mp3-playlist.png -------------------------------------------------------------------------------- /toolbar/icons/mime/authors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/authors.png -------------------------------------------------------------------------------- /toolbar/icons/mime/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/empty.png -------------------------------------------------------------------------------- /toolbar/icons/mime/encrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/encrypted.png -------------------------------------------------------------------------------- /toolbar/icons/mime/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/extension.png -------------------------------------------------------------------------------- /toolbar/icons/mime/font-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/font-x-generic.png -------------------------------------------------------------------------------- /toolbar/icons/mime/image-bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/image-bmp.png -------------------------------------------------------------------------------- /toolbar/icons/mime/image-gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/image-gif.png -------------------------------------------------------------------------------- /toolbar/icons/mime/image-jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/image-jpeg.png -------------------------------------------------------------------------------- /toolbar/icons/mime/image-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/image-png.png -------------------------------------------------------------------------------- /toolbar/icons/mime/image-tiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/image-tiff.png -------------------------------------------------------------------------------- /toolbar/icons/mime/image-x-eps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/image-x-eps.png -------------------------------------------------------------------------------- /toolbar/icons/mime/image-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/image-x-generic.png -------------------------------------------------------------------------------- /toolbar/icons/mime/image-x-ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/image-x-ico.png -------------------------------------------------------------------------------- /toolbar/icons/mime/image-x-psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/image-x-psd.png -------------------------------------------------------------------------------- /toolbar/icons/mime/image-x-xcf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/image-x-xcf.png -------------------------------------------------------------------------------- /toolbar/icons/mime/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/message.png -------------------------------------------------------------------------------- /toolbar/icons/mime/multipart-encrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/multipart-encrypted.png -------------------------------------------------------------------------------- /toolbar/icons/mime/package-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/package-x-generic.png -------------------------------------------------------------------------------- /toolbar/icons/mime/phatch-actionlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/phatch-actionlist.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-css.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-html.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-plain.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-richtext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-richtext.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-bak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-bak.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-bibtex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-bibtex.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-c++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-c++.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-c++hdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-c++hdr.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-c.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-changelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-changelog.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-chdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-chdr.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-copying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-copying.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-ctag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-ctag.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-generic-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-generic-template.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-install.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-java.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-javascript.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-lua.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-makefile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-makefile.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-python.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-readme.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-script.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-source.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-sql.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-x-tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-x-tex.png -------------------------------------------------------------------------------- /toolbar/icons/mime/text-xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/text-xml.png -------------------------------------------------------------------------------- /toolbar/icons/mime/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/unknown.png -------------------------------------------------------------------------------- /toolbar/icons/mime/vcalendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/vcalendar.png -------------------------------------------------------------------------------- /toolbar/icons/mime/video-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/video-x-generic.png -------------------------------------------------------------------------------- /toolbar/icons/mime/x-dia-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/x-dia-diagram.png -------------------------------------------------------------------------------- /toolbar/icons/mime/x-office-address-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/x-office-address-book.png -------------------------------------------------------------------------------- /toolbar/icons/mime/x-office-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/x-office-document.png -------------------------------------------------------------------------------- /toolbar/icons/mime/x-office-drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/x-office-drawing.png -------------------------------------------------------------------------------- /toolbar/icons/mime/x-office-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/x-office-presentation.png -------------------------------------------------------------------------------- /toolbar/icons/mime/x-office-spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/icons/mime/x-office-spreadsheet.png -------------------------------------------------------------------------------- /toolbar/icons/readme.txt: -------------------------------------------------------------------------------- 1 | ABOUT THE ICONS: 2 | ================ 3 | Some icons taken from MateFaenza and MateFaenzaDark project. 4 | 5 | https://github.com/mate-desktop/mate-icon-theme-faenza 6 | -------------------------------------------------------------------------------- /toolbar/win10-light/cfg-back2__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/cfg-back2__LRTB1.png -------------------------------------------------------------------------------- /toolbar/win10-light/cfg-back__LR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/cfg-back__LR1.png -------------------------------------------------------------------------------- /toolbar/win10-light/cfg-separator-h__LR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/cfg-separator-h__LR1.png -------------------------------------------------------------------------------- /toolbar/win10-light/cfg-tab-back__LR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/cfg-tab-back__LR1.png -------------------------------------------------------------------------------- /toolbar/win10-light/closed-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/closed-back.png -------------------------------------------------------------------------------- /toolbar/win10-light/group-vscroll-back__L3R4TB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/group-vscroll-back__L3R4TB4.png -------------------------------------------------------------------------------- /toolbar/win10-light/group-vscroll-bar-hilight__L2R5TB5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/group-vscroll-bar-hilight__L2R5TB5.png -------------------------------------------------------------------------------- /toolbar/win10-light/group-vscroll-bar__L2R5TB5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/group-vscroll-bar__L2R5TB5.png -------------------------------------------------------------------------------- /toolbar/win10-light/open-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/open-back.png -------------------------------------------------------------------------------- /toolbar/win10-light/res-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/res-back.png -------------------------------------------------------------------------------- /toolbar/win10-light/stat-back__LR7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/stat-back__LR7.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-back.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-back2.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-button-active-drop__LTB4R22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-button-active-drop__LTB4R22.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-button-active__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-button-active__LRTB4.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-button-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-button-disabled.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-button-hilight-drop__LTB4R22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-button-hilight-drop__LTB4R22.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-button-hilight__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-button-hilight__LRTB4.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-button-normal-drop__LTB4R22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-button-normal-drop__LTB4R22.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-button-normal__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-button-normal__LRTB4.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-button-press-drop__LTB4R22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-button-press-drop__LTB4R22.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-button-press__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-button-press__LRTB4.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-check-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-check-hilight.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-check-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-check-normal.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-check-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-check-press.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-check-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-check-selected.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-checkbox-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-checkbox-hilight.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-checkbox-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-checkbox-normal.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-checkbox-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-checkbox-press.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-checkbox-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-checkbox-selected.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-close-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-close-hilight.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-close-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-close-normal.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-close-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-close-press.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-combo-list__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-combo-list__LRTB1.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-combo-selected__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-combo-selected__LRTB1.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-dialog-border__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-dialog-border__LRTB1.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-edit-disabled__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-edit-disabled__LRTB4.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-edit-focus-disabled__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-edit-focus-disabled__LRTB4.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-edit-focus__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-edit-focus__LRTB4.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-edit-normal__LRTB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-edit-normal__LRTB4.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-hscroll-back__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-hscroll-back__LRTB1.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-radio-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-radio-hilight.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-radio-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-radio-normal.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-radio-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-radio-press.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-radio-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-radio-selected.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-scroll-box__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-scroll-box__LRTB1.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-separator-h__LR2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-separator-h__LR2.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-separator-v__TB2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-separator-v__TB2.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-active-close__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-active-close__LR9.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-active__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-active__LR9.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-background.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-close-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-close-hilight.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-close-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-close-normal.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-disabled-close__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-disabled-close__LR9.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-disabled__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-disabled__LR9.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-hilight-close__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-hilight-close__LR9.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-hilight__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-hilight__LR9.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-modified.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-normal-close__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-normal-close__LR9.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-normal__LR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-normal__LR9.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-sl-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-sl-hilight.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-sl-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-sl-normal.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-sr-hilight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-sr-hilight.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-tab-sr-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-tab-sr-normal.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-vback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-vback.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-vback2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-vback2.png -------------------------------------------------------------------------------- /toolbar/win10-light/ttb-vscroll-back__LRTB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabdub/ta-tweaks/358c1cd7813905c0b30f5feacb99cdfb483af3bc/toolbar/win10-light/ttb-vscroll-back__LRTB1.png --------------------------------------------------------------------------------