├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── python-package.yml ├── .gitignore ├── CHANGELOG.md ├── MANIFEST.in ├── README.md ├── debian-crenametoix ├── changelog ├── compat ├── control ├── copyright ├── files ├── install ├── rules └── source │ └── format ├── debian ├── changelog ├── compat ├── control ├── copyright ├── install ├── rules └── source │ └── format ├── l10n ├── de.po ├── en.po ├── es.po ├── l10n.csv ├── pt.po ├── ru.po └── uk.po ├── pyproject.toml ├── tests ├── __init__.py └── test_rename.py ├── tools ├── convert-l10n.py ├── convert-l10n.sh └── prepare.py ├── tox.ini └── usr ├── bin ├── crenametoix └── renametoix ├── lib └── renametoix │ ├── crenametoix.py │ ├── plugins │ ├── __init__.py │ ├── doc.py │ └── geo.py │ ├── renametoix.png │ ├── renametoix.py │ └── renametoix.ui └── share ├── applications └── renametoix.desktop └── icons └── hicolor └── scalable └── apps └── renametoix.svg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | exclude tests/*.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/README.md -------------------------------------------------------------------------------- /debian-crenametoix/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/debian-crenametoix/changelog -------------------------------------------------------------------------------- /debian-crenametoix/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian-crenametoix/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/debian-crenametoix/control -------------------------------------------------------------------------------- /debian-crenametoix/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/debian-crenametoix/copyright -------------------------------------------------------------------------------- /debian-crenametoix/files: -------------------------------------------------------------------------------- 1 | crenametoix_1.2.1_source.buildinfo misc optional 2 | -------------------------------------------------------------------------------- /debian-crenametoix/install: -------------------------------------------------------------------------------- 1 | usr 2 | -------------------------------------------------------------------------------- /debian-crenametoix/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/debian-crenametoix/rules -------------------------------------------------------------------------------- /debian-crenametoix/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- 1 | usr 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /l10n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/l10n/de.po -------------------------------------------------------------------------------- /l10n/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/l10n/en.po -------------------------------------------------------------------------------- /l10n/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/l10n/es.po -------------------------------------------------------------------------------- /l10n/l10n.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/l10n/l10n.csv -------------------------------------------------------------------------------- /l10n/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/l10n/pt.po -------------------------------------------------------------------------------- /l10n/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/l10n/ru.po -------------------------------------------------------------------------------- /l10n/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/l10n/uk.po -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/tests/test_rename.py -------------------------------------------------------------------------------- /tools/convert-l10n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/tools/convert-l10n.py -------------------------------------------------------------------------------- /tools/convert-l10n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/tools/convert-l10n.sh -------------------------------------------------------------------------------- /tools/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/tools/prepare.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/tox.ini -------------------------------------------------------------------------------- /usr/bin/crenametoix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/usr/bin/crenametoix -------------------------------------------------------------------------------- /usr/bin/renametoix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/usr/bin/renametoix -------------------------------------------------------------------------------- /usr/lib/renametoix/crenametoix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/usr/lib/renametoix/crenametoix.py -------------------------------------------------------------------------------- /usr/lib/renametoix/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/renametoix/plugins/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/usr/lib/renametoix/plugins/doc.py -------------------------------------------------------------------------------- /usr/lib/renametoix/plugins/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/usr/lib/renametoix/plugins/geo.py -------------------------------------------------------------------------------- /usr/lib/renametoix/renametoix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/usr/lib/renametoix/renametoix.png -------------------------------------------------------------------------------- /usr/lib/renametoix/renametoix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/usr/lib/renametoix/renametoix.py -------------------------------------------------------------------------------- /usr/lib/renametoix/renametoix.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/usr/lib/renametoix/renametoix.ui -------------------------------------------------------------------------------- /usr/share/applications/renametoix.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/usr/share/applications/renametoix.desktop -------------------------------------------------------------------------------- /usr/share/icons/hicolor/scalable/apps/renametoix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-bentofreire/renametoix/HEAD/usr/share/icons/hicolor/scalable/apps/renametoix.svg --------------------------------------------------------------------------------