├── .github └── workflows │ └── build.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── CMakeLists.txt ├── HACKING.md ├── LICENSE ├── Makefile ├── README.md ├── TRANSLATORS.md ├── cmake ├── cmake_uninstall.cmake.in └── modules │ ├── COPYING-CMAKE-SCRIPTS │ ├── FindLibintl.cmake │ └── GettextTranslate.cmake ├── conf ├── dfcrc ├── fr │ └── dfcrc └── nl │ └── dfcrc ├── man ├── dfc.1 ├── fr │ └── dfc.1 └── nl │ └── dfc.1 ├── po ├── CMakeLists.txt ├── LINGUAS ├── Makevars ├── POTFILES.in ├── fr.po ├── nl.po └── sv.po ├── res └── screenshot.png └── src ├── dfc.c ├── dfc.h ├── dotfile.c ├── dotfile.h ├── export ├── csv.c ├── display.h ├── export.h ├── html.c ├── json.c ├── tex.c └── text.c ├── extern.h ├── list.c ├── list.h ├── platform ├── services-bsd.c ├── services-linux.c ├── services-solaris.c └── services.h ├── util.c └── util.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.directory 2 | *.swp 3 | *.patch 4 | build 5 | po/dfc.pot 6 | -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/HACKING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/README.md -------------------------------------------------------------------------------- /TRANSLATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/TRANSLATORS.md -------------------------------------------------------------------------------- /cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /cmake/modules/COPYING-CMAKE-SCRIPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/cmake/modules/COPYING-CMAKE-SCRIPTS -------------------------------------------------------------------------------- /cmake/modules/FindLibintl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/cmake/modules/FindLibintl.cmake -------------------------------------------------------------------------------- /cmake/modules/GettextTranslate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/cmake/modules/GettextTranslate.cmake -------------------------------------------------------------------------------- /conf/dfcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/conf/dfcrc -------------------------------------------------------------------------------- /conf/fr/dfcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/conf/fr/dfcrc -------------------------------------------------------------------------------- /conf/nl/dfcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/conf/nl/dfcrc -------------------------------------------------------------------------------- /man/dfc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/man/dfc.1 -------------------------------------------------------------------------------- /man/fr/dfc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/man/fr/dfc.1 -------------------------------------------------------------------------------- /man/nl/dfc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/man/nl/dfc.1 -------------------------------------------------------------------------------- /po/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | GettextTranslate() 2 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | fr nl -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/po/Makevars -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/po/sv.po -------------------------------------------------------------------------------- /res/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/res/screenshot.png -------------------------------------------------------------------------------- /src/dfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/dfc.c -------------------------------------------------------------------------------- /src/dfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/dfc.h -------------------------------------------------------------------------------- /src/dotfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/dotfile.c -------------------------------------------------------------------------------- /src/dotfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/dotfile.h -------------------------------------------------------------------------------- /src/export/csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/export/csv.c -------------------------------------------------------------------------------- /src/export/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/export/display.h -------------------------------------------------------------------------------- /src/export/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/export/export.h -------------------------------------------------------------------------------- /src/export/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/export/html.c -------------------------------------------------------------------------------- /src/export/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/export/json.c -------------------------------------------------------------------------------- /src/export/tex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/export/tex.c -------------------------------------------------------------------------------- /src/export/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/export/text.c -------------------------------------------------------------------------------- /src/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/extern.h -------------------------------------------------------------------------------- /src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/list.c -------------------------------------------------------------------------------- /src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/list.h -------------------------------------------------------------------------------- /src/platform/services-bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/platform/services-bsd.c -------------------------------------------------------------------------------- /src/platform/services-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/platform/services-linux.c -------------------------------------------------------------------------------- /src/platform/services-solaris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/platform/services-solaris.c -------------------------------------------------------------------------------- /src/platform/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/platform/services.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinh/dfc/HEAD/src/util.h --------------------------------------------------------------------------------