├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── COPYING ├── README.md ├── data ├── icons │ ├── hicolor │ │ ├── scalable │ │ │ └── apps │ │ │ │ └── net.sapples.LiveCaptions.svg │ │ └── symbolic │ │ │ └── apps │ │ │ └── net.sapples.LiveCaptions-symbolic.svg │ └── meson.build ├── meson.build ├── net.sapples.LiveCaptions.appdata.xml.in ├── net.sapples.LiveCaptions.desktop.in └── net.sapples.LiveCaptions.gschema.xml ├── flake.lock ├── flake.nix ├── icon.png ├── meson.build ├── po ├── LINGUAS ├── POTFILES └── meson.build ├── screenshot.png ├── screenshots ├── 0.png └── 1.png └── src ├── asrproc.c ├── asrproc.h ├── audiocap-internal.h ├── audiocap-pa.c ├── audiocap-pw.c ├── audiocap.c ├── audiocap.h ├── common.h ├── computer-chip-symbolic.svg ├── dbus-interface.c ├── dbus-interface.h ├── dbus-interface.xml ├── delete-symbolic.svg ├── entry-clear-symbolic.svg ├── export-symbolic.svg ├── history.c ├── history.h ├── line-gen.c ├── line-gen.h ├── livecaptions-application.c ├── livecaptions-application.h ├── livecaptions-history-window.c ├── livecaptions-history-window.h ├── livecaptions-history-window.ui ├── livecaptions-settings.c ├── livecaptions-settings.h ├── livecaptions-settings.ui ├── livecaptions-welcome.c ├── livecaptions-welcome.h ├── livecaptions-welcome.ui ├── livecaptions-window.c ├── livecaptions-window.h ├── livecaptions-window.ui ├── livecaptions.gresource.xml ├── main.c ├── meson.build ├── microphone2-symbolic.svg ├── profanity-filter.c ├── profanity-filter.h ├── refresh-symbolic.svg ├── settings-symbolic.svg ├── slow-icon-symbolic.svg ├── slowest-icon-symbolic.svg ├── style.css ├── window-helper.c └── window-helper.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/README.md -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/apps/net.sapples.LiveCaptions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/data/icons/hicolor/scalable/apps/net.sapples.LiveCaptions.svg -------------------------------------------------------------------------------- /data/icons/hicolor/symbolic/apps/net.sapples.LiveCaptions-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/data/icons/hicolor/symbolic/apps/net.sapples.LiveCaptions-symbolic.svg -------------------------------------------------------------------------------- /data/icons/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/data/icons/meson.build -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/net.sapples.LiveCaptions.appdata.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/data/net.sapples.LiveCaptions.appdata.xml.in -------------------------------------------------------------------------------- /data/net.sapples.LiveCaptions.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/data/net.sapples.LiveCaptions.desktop.in -------------------------------------------------------------------------------- /data/net.sapples.LiveCaptions.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/data/net.sapples.LiveCaptions.gschema.xml -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/flake.nix -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/icon.png -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/meson.build -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('livecaptions', preset: 'glib') 2 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/screenshot.png -------------------------------------------------------------------------------- /screenshots/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/screenshots/0.png -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /src/asrproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/asrproc.c -------------------------------------------------------------------------------- /src/asrproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/asrproc.h -------------------------------------------------------------------------------- /src/audiocap-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/audiocap-internal.h -------------------------------------------------------------------------------- /src/audiocap-pa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/audiocap-pa.c -------------------------------------------------------------------------------- /src/audiocap-pw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/audiocap-pw.c -------------------------------------------------------------------------------- /src/audiocap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/audiocap.c -------------------------------------------------------------------------------- /src/audiocap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/audiocap.h -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/common.h -------------------------------------------------------------------------------- /src/computer-chip-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/computer-chip-symbolic.svg -------------------------------------------------------------------------------- /src/dbus-interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/dbus-interface.c -------------------------------------------------------------------------------- /src/dbus-interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/dbus-interface.h -------------------------------------------------------------------------------- /src/dbus-interface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/dbus-interface.xml -------------------------------------------------------------------------------- /src/delete-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/delete-symbolic.svg -------------------------------------------------------------------------------- /src/entry-clear-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/entry-clear-symbolic.svg -------------------------------------------------------------------------------- /src/export-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/export-symbolic.svg -------------------------------------------------------------------------------- /src/history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/history.c -------------------------------------------------------------------------------- /src/history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/history.h -------------------------------------------------------------------------------- /src/line-gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/line-gen.c -------------------------------------------------------------------------------- /src/line-gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/line-gen.h -------------------------------------------------------------------------------- /src/livecaptions-application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions-application.c -------------------------------------------------------------------------------- /src/livecaptions-application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions-application.h -------------------------------------------------------------------------------- /src/livecaptions-history-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions-history-window.c -------------------------------------------------------------------------------- /src/livecaptions-history-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions-history-window.h -------------------------------------------------------------------------------- /src/livecaptions-history-window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions-history-window.ui -------------------------------------------------------------------------------- /src/livecaptions-settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions-settings.c -------------------------------------------------------------------------------- /src/livecaptions-settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions-settings.h -------------------------------------------------------------------------------- /src/livecaptions-settings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions-settings.ui -------------------------------------------------------------------------------- /src/livecaptions-welcome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions-welcome.c -------------------------------------------------------------------------------- /src/livecaptions-welcome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions-welcome.h -------------------------------------------------------------------------------- /src/livecaptions-welcome.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions-welcome.ui -------------------------------------------------------------------------------- /src/livecaptions-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions-window.c -------------------------------------------------------------------------------- /src/livecaptions-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions-window.h -------------------------------------------------------------------------------- /src/livecaptions-window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions-window.ui -------------------------------------------------------------------------------- /src/livecaptions.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/livecaptions.gresource.xml -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/main.c -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/microphone2-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/microphone2-symbolic.svg -------------------------------------------------------------------------------- /src/profanity-filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/profanity-filter.c -------------------------------------------------------------------------------- /src/profanity-filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/profanity-filter.h -------------------------------------------------------------------------------- /src/refresh-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/refresh-symbolic.svg -------------------------------------------------------------------------------- /src/settings-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/settings-symbolic.svg -------------------------------------------------------------------------------- /src/slow-icon-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/slow-icon-symbolic.svg -------------------------------------------------------------------------------- /src/slowest-icon-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/slowest-icon-symbolic.svg -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/style.css -------------------------------------------------------------------------------- /src/window-helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/window-helper.c -------------------------------------------------------------------------------- /src/window-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abb128/LiveCaptions/HEAD/src/window-helper.h --------------------------------------------------------------------------------