├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── circle.yml ├── data ├── com.github.bilelmoussaoui.nautilus-folder-icons.metainfo.xml.in ├── meson.build └── screenshots │ └── screenshot1.png ├── meson.build ├── meson_options.txt ├── po ├── LINGUAS ├── POTFILES ├── com.github.bilelmoussaoui.nautilus-folder-icons.pot ├── es_ES.po ├── fr_FR.po ├── ja_JP.po ├── meson.build ├── nl_NL.po ├── pt_BR.po └── pt_PT.po ├── src ├── folder-icons.py.in ├── utils.py └── widgets.py └── tests ├── test_code_format.py └── test_utils.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/circle.yml -------------------------------------------------------------------------------- /data/com.github.bilelmoussaoui.nautilus-folder-icons.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/data/com.github.bilelmoussaoui.nautilus-folder-icons.metainfo.xml.in -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/data/screenshots/screenshot1.png -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/meson_options.txt -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/com.github.bilelmoussaoui.nautilus-folder-icons.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/po/com.github.bilelmoussaoui.nautilus-folder-icons.pot -------------------------------------------------------------------------------- /po/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/po/es_ES.po -------------------------------------------------------------------------------- /po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/po/fr_FR.po -------------------------------------------------------------------------------- /po/ja_JP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/po/ja_JP.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name(), preset: 'glib') 2 | -------------------------------------------------------------------------------- /po/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/po/nl_NL.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/po/pt_PT.po -------------------------------------------------------------------------------- /src/folder-icons.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/src/folder-icons.py.in -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/src/widgets.py -------------------------------------------------------------------------------- /tests/test_code_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/tests/test_code_format.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilelmoussaoui/nautilus-folder-icons/HEAD/tests/test_utils.py --------------------------------------------------------------------------------