├── .gitignore ├── screenshot.png ├── linux └── theme │ ├── pixmaps │ └── dctheme │ │ ├── 16x16 │ │ ├── actions │ │ │ ├── go-up.png │ │ │ ├── view-sort-ascending.png │ │ │ └── view-sort-descending.png │ │ └── places │ │ │ └── folder-virtual.png │ │ ├── 22x22 │ │ ├── actions │ │ │ ├── cm_exit.png │ │ │ ├── go-next.png │ │ │ ├── go-up.png │ │ │ ├── cm_about.png │ │ │ ├── cm_newtab.png │ │ │ ├── cm_search.png │ │ │ ├── list-add.png │ │ │ ├── cm_briefview.png │ │ │ ├── cm_closetab.png │ │ │ ├── cm_helpindex.png │ │ │ ├── cm_makedir.png │ │ │ ├── cm_markminus.png │ │ │ ├── cm_markplus.png │ │ │ ├── cm_nexttab.png │ │ │ ├── cm_options.png │ │ │ ├── cm_packfiles.png │ │ │ ├── cm_prevtab.png │ │ │ ├── cm_quickview.png │ │ │ ├── cm_refresh.png │ │ │ ├── cm_runterm.png │ │ │ ├── cm_syncdirs.png │ │ │ ├── cm_treeview.png │ │ │ ├── go-previous.png │ │ │ ├── list-remove.png │ │ │ ├── view-refresh.png │ │ │ ├── cm_columnsview.png │ │ │ ├── cm_editcomment.png │ │ │ ├── cm_filespliter.png │ │ │ ├── cm_markinvert.png │ │ │ ├── cm_markmarkall.png │ │ │ ├── cm_multirename.png │ │ │ ├── cm_testarchive.png │ │ │ ├── system_search.png │ │ │ ├── cm_calculatespace.png │ │ │ ├── cm_checksumcalc.png │ │ │ ├── cm_checksumverify.png │ │ │ ├── cm_closealltabs.png │ │ │ ├── cm_extractfiles.png │ │ │ ├── cm_fileproperties.png │ │ │ ├── cm_reverseorder.png │ │ │ ├── cm_showsysfiles.png │ │ │ ├── cm_thumbnailsview.png │ │ │ ├── cm_visithomepage.png │ │ │ ├── cm_comparecontents.png │ │ │ ├── cm_configdirhotlist.png │ │ │ ├── cm_copynamestoclip.png │ │ │ ├── cm_viewhistorynext.png │ │ │ ├── cm_viewhistoryprev.png │ │ │ ├── view-sort-ascending.png │ │ │ ├── cm_comparedirectories.png │ │ │ ├── cm_copyfullnamestoclip.png │ │ │ ├── cm_setfileproperties.png │ │ │ ├── cm_settaboptionnormal.png │ │ │ ├── cm_targetequalsource.png │ │ │ ├── view-sort-descending.png │ │ │ ├── cm_horizontalfilepanels.png │ │ │ └── cm_markcurrentextension.png │ │ └── devices │ │ │ └── drive-harddisk.png │ │ └── index.theme │ └── doublecmd.xml ├── mac-os └── theme │ ├── pixmaps │ └── dctheme │ │ ├── 16x16 │ │ ├── actions │ │ │ ├── go-up.png │ │ │ ├── view-sort-ascending.png │ │ │ └── view-sort-descending.png │ │ └── places │ │ │ └── folder-virtual.png │ │ ├── 22x22 │ │ ├── actions │ │ │ ├── go-up.png │ │ │ ├── cm_about.png │ │ │ ├── cm_exit.png │ │ │ ├── go-next.png │ │ │ ├── list-add.png │ │ │ ├── cm_closetab.png │ │ │ ├── cm_makedir.png │ │ │ ├── cm_markplus.png │ │ │ ├── cm_newtab.png │ │ │ ├── cm_nexttab.png │ │ │ ├── cm_options.png │ │ │ ├── cm_prevtab.png │ │ │ ├── cm_refresh.png │ │ │ ├── cm_runterm.png │ │ │ ├── cm_search.png │ │ │ ├── cm_syncdirs.png │ │ │ ├── cm_treeview.png │ │ │ ├── go-previous.png │ │ │ ├── list-remove.png │ │ │ ├── cm_briefview.png │ │ │ ├── cm_helpindex.png │ │ │ ├── cm_markinvert.png │ │ │ ├── cm_markminus.png │ │ │ ├── cm_packfiles.png │ │ │ ├── cm_quickview.png │ │ │ ├── system_search.png │ │ │ ├── view-refresh.png │ │ │ ├── cm_checksumcalc.png │ │ │ ├── cm_closealltabs.png │ │ │ ├── cm_columnsview.png │ │ │ ├── cm_editcomment.png │ │ │ ├── cm_extractfiles.png │ │ │ ├── cm_filespliter.png │ │ │ ├── cm_markmarkall.png │ │ │ ├── cm_multirename.png │ │ │ ├── cm_reverseorder.png │ │ │ ├── cm_showsysfiles.png │ │ │ ├── cm_testarchive.png │ │ │ ├── cm_visithomepage.png │ │ │ ├── cm_calculatespace.png │ │ │ ├── cm_checksumverify.png │ │ │ ├── cm_comparecontents.png │ │ │ ├── cm_copynamestoclip.png │ │ │ ├── cm_fileproperties.png │ │ │ ├── cm_thumbnailsview.png │ │ │ ├── cm_viewhistorynext.png │ │ │ ├── cm_viewhistoryprev.png │ │ │ ├── cm_comparedirectories.png │ │ │ ├── cm_configdirhotlist.png │ │ │ ├── cm_setfileproperties.png │ │ │ ├── cm_settaboptionnormal.png │ │ │ ├── cm_targetequalsource.png │ │ │ ├── view-sort-ascending.png │ │ │ ├── view-sort-descending.png │ │ │ ├── cm_copyfullnamestoclip.png │ │ │ ├── cm_horizontalfilepanels.png │ │ │ └── cm_markcurrentextension.png │ │ └── devices │ │ │ └── drive-harddisk.png │ │ └── index.theme │ └── doublecmd.xml ├── LICENSE.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.iml 3 | .idea 4 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/screenshot.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/16x16/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/16x16/actions/go-up.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_exit.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/go-next.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/go-up.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/16x16/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/16x16/actions/go-up.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/go-up.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_about.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_newtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_newtab.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_search.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/list-add.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_about.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_exit.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/go-next.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/list-add.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_briefview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_briefview.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_closetab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_closetab.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_helpindex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_helpindex.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_makedir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_makedir.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_markminus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_markminus.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_markplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_markplus.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_nexttab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_nexttab.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_options.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_packfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_packfiles.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_prevtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_prevtab.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_quickview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_quickview.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_refresh.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_runterm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_runterm.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_syncdirs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_syncdirs.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_treeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_treeview.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/go-previous.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/list-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/list-remove.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/view-refresh.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_closetab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_closetab.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_makedir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_makedir.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_markplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_markplus.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_newtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_newtab.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_nexttab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_nexttab.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_options.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_prevtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_prevtab.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_refresh.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_runterm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_runterm.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_search.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_syncdirs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_syncdirs.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_treeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_treeview.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/go-previous.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/list-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/list-remove.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/16x16/places/folder-virtual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/16x16/places/folder-virtual.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_columnsview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_columnsview.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_editcomment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_editcomment.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_filespliter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_filespliter.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_markinvert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_markinvert.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_markmarkall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_markmarkall.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_multirename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_multirename.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_testarchive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_testarchive.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/system_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/system_search.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/devices/drive-harddisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/devices/drive-harddisk.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/16x16/places/folder-virtual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/16x16/places/folder-virtual.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_briefview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_briefview.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_helpindex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_helpindex.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_markinvert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_markinvert.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_markminus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_markminus.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_packfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_packfiles.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_quickview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_quickview.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/system_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/system_search.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/view-refresh.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_calculatespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_calculatespace.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_checksumcalc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_checksumcalc.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_checksumverify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_checksumverify.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_closealltabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_closealltabs.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_extractfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_extractfiles.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_fileproperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_fileproperties.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_reverseorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_reverseorder.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_showsysfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_showsysfiles.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_thumbnailsview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_thumbnailsview.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_visithomepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_visithomepage.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_checksumcalc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_checksumcalc.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_closealltabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_closealltabs.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_columnsview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_columnsview.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_editcomment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_editcomment.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_extractfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_extractfiles.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_filespliter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_filespliter.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_markmarkall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_markmarkall.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_multirename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_multirename.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_reverseorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_reverseorder.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_showsysfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_showsysfiles.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_testarchive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_testarchive.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_visithomepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_visithomepage.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/devices/drive-harddisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/devices/drive-harddisk.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/16x16/actions/view-sort-ascending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/16x16/actions/view-sort-ascending.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_comparecontents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_comparecontents.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_configdirhotlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_configdirhotlist.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_copynamestoclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_copynamestoclip.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_viewhistorynext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_viewhistorynext.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_viewhistoryprev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_viewhistoryprev.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/view-sort-ascending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/view-sort-ascending.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_calculatespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_calculatespace.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_checksumverify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_checksumverify.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_comparecontents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_comparecontents.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_copynamestoclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_copynamestoclip.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_fileproperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_fileproperties.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_thumbnailsview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_thumbnailsview.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_viewhistorynext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_viewhistorynext.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_viewhistoryprev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_viewhistoryprev.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/16x16/actions/view-sort-descending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/16x16/actions/view-sort-descending.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_comparedirectories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_comparedirectories.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_copyfullnamestoclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_copyfullnamestoclip.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_setfileproperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_setfileproperties.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_settaboptionnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_settaboptionnormal.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_targetequalsource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_targetequalsource.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/view-sort-descending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/view-sort-descending.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/16x16/actions/view-sort-ascending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/16x16/actions/view-sort-ascending.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/16x16/actions/view-sort-descending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/16x16/actions/view-sort-descending.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_comparedirectories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_comparedirectories.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_configdirhotlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_configdirhotlist.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_setfileproperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_setfileproperties.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_settaboptionnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_settaboptionnormal.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_targetequalsource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_targetequalsource.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/view-sort-ascending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/view-sort-ascending.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/view-sort-descending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/view-sort-descending.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_horizontalfilepanels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_horizontalfilepanels.png -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/22x22/actions/cm_markcurrentextension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/linux/theme/pixmaps/dctheme/22x22/actions/cm_markcurrentextension.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_copyfullnamestoclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_copyfullnamestoclip.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_horizontalfilepanels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_horizontalfilepanels.png -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/22x22/actions/cm_markcurrentextension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kstenschke/doublemac-theme/HEAD/mac-os/theme/pixmaps/dctheme/22x22/actions/cm_markcurrentextension.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | LICENSE 2 | 3 | Doublemac-theme was created by Kay Stenschke and is licensed 4 | under a Creative Commons Attribution-Share Alike 3.0 Unported License [1]. 5 | 6 | [1] http://creativecommons.org/licenses/by-sa/3.0/ 7 | 8 | TITLE: doublemac-theme 9 | DESCRIPTION: icon theme for Double Commander 10 | AUTHOR: Kay Stenschke 11 | SITE: https://github.com/kstenschke/doublemac-theme 12 | -------------------------------------------------------------------------------- /linux/theme/doublecmd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | False 5 | 6 | 7 | False 8 | True 9 | 10 | 11 | 12 | 13 | Pascal sources 14 | *.pas;*.pp 15 | 32768 16 | 17 | 18 | 19 | Pascal binaries 20 | *.ppu;*.o;*.dcu 21 | 16711680 22 | 23 | 24 | 25 | Specified Executables 26 | * 27 | 55758 28 | -rwxrwxr*x 29 | 30 | 31 | Executables 32 | * 33 | 32768 34 | -*x* 35 | 36 | 37 | 38 | 39 | 32 40 | True 41 | 42 | 43 | -------------------------------------------------------------------------------- /mac-os/theme/doublecmd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | False 5 | 6 | 7 | False 8 | True 9 | 10 | 11 | 12 | 13 | Pascal sources 14 | *.pas;*.pp 15 | 32768 16 | 17 | 18 | 19 | Pascal binaries 20 | *.ppu;*.o;*.dcu 21 | 16711680 22 | 23 | 24 | 25 | Specified Executables 26 | * 27 | 55758 28 | -rwxrwxr*x 29 | 30 | 31 | Executables 32 | * 33 | 32768 34 | -*x* 35 | 36 | 37 | 38 | 39 | 32 40 | True 41 | 42 | 43 | -------------------------------------------------------------------------------- /linux/theme/pixmaps/dctheme/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=DCTheme 3 | Comment=Double Commander default theme 4 | Directories=8x8/emblems,16x16/actions,16x16/apps,16x16/devices,16x16/emblems,16x16/mimetypes,16x16/places,22x22/actions,22x22/apps,22x22/devices,22x22/emblems,22x22/mimetypes,22x22/places,32x32/actions,32x32/apps,32x32/devices,32x32/emblems,32x32/mimetypes,32x32/places,48x48/actions,48x48/mimetypes 5 | 6 | [8x8/emblems] 7 | Size=8 8 | Context=Emblems 9 | Type=Threshold 10 | 11 | [16x16/actions] 12 | Size=16 13 | Context=Actions 14 | Type=Threshold 15 | 16 | [16x16/apps] 17 | Size=16 18 | Context=Applications 19 | Type=Threshold 20 | 21 | [16x16/devices] 22 | Size=16 23 | Context=Devices 24 | Type=Threshold 25 | 26 | [16x16/emblems] 27 | Size=16 28 | Context=Emblems 29 | Type=Threshold 30 | 31 | [16x16/mimetypes] 32 | Size=16 33 | Context=MimeTypes 34 | Type=Threshold 35 | 36 | [16x16/places] 37 | Size=16 38 | Context=Places 39 | Type=Threshold 40 | 41 | [22x22/actions] 42 | Size=22 43 | Context=Actions 44 | Type=Threshold 45 | 46 | [22x22/apps] 47 | Size=22 48 | Context=Applications 49 | Type=Fixed 50 | 51 | [22x22/devices] 52 | Size=22 53 | Context=Devices 54 | Type=Threshold 55 | 56 | [22x22/emblems] 57 | Size=22 58 | Context=Emblems 59 | Type=Threshold 60 | 61 | [22x22/mimetypes] 62 | Size=22 63 | Context=MimeTypes 64 | Type=Threshold 65 | 66 | [22x22/places] 67 | Size=22 68 | Context=Places 69 | Type=Threshold 70 | 71 | [32x32/actions] 72 | Size=32 73 | Context=Actions 74 | Type=Threshold 75 | 76 | [32x32/apps] 77 | Size=32 78 | Context=Applications 79 | Type=Threshold 80 | 81 | [32x32/devices] 82 | Size=32 83 | Context=Devices 84 | Type=Threshold 85 | 86 | [32x32/emblems] 87 | Size=32 88 | Context=Emblems 89 | Type=Threshold 90 | 91 | [32x32/mimetypes] 92 | Size=32 93 | Context=MimeTypes 94 | Type=Threshold 95 | 96 | [32x32/places] 97 | Size=32 98 | Context=Places 99 | Type=Threshold 100 | 101 | [48x48/actions] 102 | Size=48 103 | Context=Actions 104 | Type=Threshold 105 | 106 | [48x48/mimetypes] 107 | Size=48 108 | Context=MimeTypes 109 | Type=Threshold 110 | -------------------------------------------------------------------------------- /mac-os/theme/pixmaps/dctheme/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=DCTheme 3 | Comment=Double Commander default theme 4 | Directories=8x8/emblems,16x16/actions,16x16/apps,16x16/devices,16x16/emblems,16x16/mimetypes,16x16/places,22x22/actions,22x22/apps,22x22/devices,22x22/emblems,22x22/mimetypes,22x22/places,32x32/actions,32x32/apps,32x32/devices,32x32/emblems,32x32/mimetypes,32x32/places,48x48/actions,48x48/mimetypes 5 | 6 | [8x8/emblems] 7 | Size=8 8 | Context=Emblems 9 | Type=Threshold 10 | 11 | [16x16/actions] 12 | Size=16 13 | Context=Actions 14 | Type=Threshold 15 | 16 | [16x16/apps] 17 | Size=16 18 | Context=Applications 19 | Type=Threshold 20 | 21 | [16x16/devices] 22 | Size=16 23 | Context=Devices 24 | Type=Threshold 25 | 26 | [16x16/emblems] 27 | Size=16 28 | Context=Emblems 29 | Type=Threshold 30 | 31 | [16x16/mimetypes] 32 | Size=16 33 | Context=MimeTypes 34 | Type=Threshold 35 | 36 | [16x16/places] 37 | Size=16 38 | Context=Places 39 | Type=Threshold 40 | 41 | [22x22/actions] 42 | Size=22 43 | Context=Actions 44 | Type=Threshold 45 | 46 | [22x22/apps] 47 | Size=22 48 | Context=Applications 49 | Type=Fixed 50 | 51 | [22x22/devices] 52 | Size=22 53 | Context=Devices 54 | Type=Threshold 55 | 56 | [22x22/emblems] 57 | Size=22 58 | Context=Emblems 59 | Type=Threshold 60 | 61 | [22x22/mimetypes] 62 | Size=22 63 | Context=MimeTypes 64 | Type=Threshold 65 | 66 | [22x22/places] 67 | Size=22 68 | Context=Places 69 | Type=Threshold 70 | 71 | [32x32/actions] 72 | Size=32 73 | Context=Actions 74 | Type=Threshold 75 | 76 | [32x32/apps] 77 | Size=32 78 | Context=Applications 79 | Type=Threshold 80 | 81 | [32x32/devices] 82 | Size=32 83 | Context=Devices 84 | Type=Threshold 85 | 86 | [32x32/emblems] 87 | Size=32 88 | Context=Emblems 89 | Type=Threshold 90 | 91 | [32x32/mimetypes] 92 | Size=32 93 | Context=MimeTypes 94 | Type=Threshold 95 | 96 | [32x32/places] 97 | Size=32 98 | Context=Places 99 | Type=Threshold 100 | 101 | [48x48/actions] 102 | Size=48 103 | Context=Actions 104 | Type=Threshold 105 | 106 | [48x48/mimetypes] 107 | Size=48 108 | Context=MimeTypes 109 | Type=Threshold 110 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | "DoubleMac" icon theme for Double Commander 2 | =========================================== 3 | 4 | Icon theme for [Double Commander](http://doublecmd.sourceforge.net/) matching the visual style of Mac OS (with an adaptation of the look on e.g. Linux Mint) 5 | 6 | ![DoubleMac](https://github.com/kstenschke/doublemac-theme/blob/master/screenshot.png?raw=true) 7 | 8 | 9 | Installation 10 | ------------ 11 | 12 | #### On Mac OS 13 | 1. Open the package contents of your Double Commander application and browse to: `Contents > MacOS` 14 | 2. Paste (overwrite existing files) all files from `theme` directory 15 | 3. Within Double Commander (`Configuration > Options > Toolbar`) set the toolbar height to 32 and icons to 22x22 pixel size 16 | 17 | #### On Linux 18 | 1. Open the Double Commander directory with root privileges in your files browser (e.g. Nautilus on Ubuntu / Nemo on Linux Mint, etc.), e.g. in `/usr/share/doublecmd` 19 | 2. Paste (overwrite existing files) all files from `dctheme` directory 20 | 3. Within Double Commander (`Configuration > Options > Toolbar`) set the toolbar height to 32 and icons to 22x22 pixel size 21 | 22 | 23 | Notices 24 | ------- 25 | 26 | * This theme does not cover 100% of the icons Double Commander contains. 27 | 28 | 29 | Authors and license 30 | ------------------- 31 | 32 | This icon theme was created in 2016-2017 by Kay Stenschke. 33 | 34 | Licensed under the [Creative Commons (Attribution-Share Alike 3.0 Unported) License](https://creativecommons.org/licenses/by-sa/3.0/). 35 | You should have received a copy of the license along with this work. If not, see . 36 | 37 | The following icons from third party sources were used in- or adapted for creating this theme: 38 | (icons that are not mentioned were created anew for this theme or adapted from the icons included with 39 | Double Commander's default icon theme) 40 | 41 | | Filename | Icon Set / Author | License | 42 | | ------------------------------------- | ---------------------------------------------------- | --------------------------------------------------------- | 43 | | cm_about | Google Material Design icons | [Creative Commons (Attribution-Share Alike 3.0 Unported)](https://creativecommons.org/licenses/by-sa/3.0/) | 44 | | cm_calculatespace | Glyphs by Artyom Khamitov | [Creative Commons (Attribution 3.0 Unported)](https://creativecommons.org/licenses/by/3.0/) | 45 | | cm_copyfullnamestoclip.png | Gentleface.com / Wireframe mono icons | Creative Commons (Attribution-Noncommercial 3.0 Unported) | 46 | | cm_editcomment.png | Splashyfish by Dat Nguyen | Free for commercial use | 47 | | cm_extractfiles, cm_packfiles | Elysium Icons by HazelDev | Creative Commons (Attribution 3.0 Unported) | 48 | | cm_multirename.png | GlyphPack by Design Revision | Free for commercial use | 49 | | cm_options | Streamline - Free by Webalys http://www.webalys.com | Free for commercial use | 50 | | cm_exit, cm_refreshd.png, cm_qickview | Ionicons | [MIT License](https://opensource.org/licenses/mit-license.php) | 51 | | cm_search.png | 16x16 Free Application Icons by Victor Petrovich | Creative Commons (Attribution 3.0 Unported) | 52 | | cm_visithomepage.png | Github Octicons | MIT License | 53 | | drive-harddisk | Hbons Discovery | Creative Commons (Attribution-Share Alike 3.0 Unported) | 54 | | system_search.png | Basic icon element by Chaunt is Industries | Creative Commons (Attribution 3.0 Unported) | 55 | --------------------------------------------------------------------------------