├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── contrib ├── config.sample ├── fzf-wrapper.sh ├── ranger-wrapper.sh └── systemd │ └── xdg-desktop-portal-termfilechooser.service.in ├── include ├── config.h ├── filechooser.h ├── logger.h └── xdpw.h ├── meson.build ├── meson_options.txt ├── org.freedesktop.impl.portal.desktop.termfilechooser.service.in ├── src ├── core │ ├── config.c │ ├── logger.c │ ├── main.c │ └── request.c └── filechooser │ └── filechooser.c ├── termfilechooser.portal └── xdg-desktop-portal-termfilechooser.5.scd /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/README.md -------------------------------------------------------------------------------- /contrib/config.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/contrib/config.sample -------------------------------------------------------------------------------- /contrib/fzf-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/contrib/fzf-wrapper.sh -------------------------------------------------------------------------------- /contrib/ranger-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/contrib/ranger-wrapper.sh -------------------------------------------------------------------------------- /contrib/systemd/xdg-desktop-portal-termfilechooser.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/contrib/systemd/xdg-desktop-portal-termfilechooser.service.in -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/include/config.h -------------------------------------------------------------------------------- /include/filechooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/include/filechooser.h -------------------------------------------------------------------------------- /include/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/include/logger.h -------------------------------------------------------------------------------- /include/xdpw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/include/xdpw.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/meson_options.txt -------------------------------------------------------------------------------- /org.freedesktop.impl.portal.desktop.termfilechooser.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/org.freedesktop.impl.portal.desktop.termfilechooser.service.in -------------------------------------------------------------------------------- /src/core/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/src/core/config.c -------------------------------------------------------------------------------- /src/core/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/src/core/logger.c -------------------------------------------------------------------------------- /src/core/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/src/core/main.c -------------------------------------------------------------------------------- /src/core/request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/src/core/request.c -------------------------------------------------------------------------------- /src/filechooser/filechooser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/src/filechooser/filechooser.c -------------------------------------------------------------------------------- /termfilechooser.portal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/termfilechooser.portal -------------------------------------------------------------------------------- /xdg-desktop-portal-termfilechooser.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GermainZ/xdg-desktop-portal-termfilechooser/HEAD/xdg-desktop-portal-termfilechooser.5.scd --------------------------------------------------------------------------------