├── .github ├── pull_request_template.md └── workflows │ ├── CI.yml │ └── linting.yml ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── COPYING ├── CREDITS ├── README.md ├── RecApp-screenshot.png ├── com.github.amikha1lov.RecApp.yaml ├── data ├── com.github.amikha1lov.RecApp-symbolic.png ├── com.github.amikha1lov.RecApp.appdata.xml.in ├── com.github.amikha1lov.RecApp.desktop.in ├── com.github.amikha1lov.RecApp.gschema.xml ├── com.github.amikha1lov.RecApp.svg ├── convert-icons-linux.sh ├── meson.build ├── old │ └── com.github.amikha1lov.RecApp.png └── resources │ ├── about.ui │ ├── icons │ ├── data_icons_display-symbolic.svg │ ├── data_icons_selection-symbolic.svg │ └── data_icons_window-symbolic.svg │ ├── meson.build │ ├── preferences.ui │ ├── primary-menu.ui │ ├── recapp.gresource.xml │ ├── selectlocation.ui │ ├── shortcuts.ui │ ├── sounds │ └── chime.ogg │ ├── style.css │ └── window.ui ├── meson.build ├── po ├── LINGUAS ├── POTFILES ├── com.github.amikha1lov.RecApp.pot ├── de.po ├── es.po ├── it.po ├── meson.build ├── nl.po ├── ru.po └── tr.po ├── rpm └── recapp.spec ├── screenshots ├── RecApp-screenshot.png ├── RecApp-screenshot2.png └── RecApp-screenshot3.png └── src ├── __init__.py ├── about.py ├── main.py ├── meson.build ├── preferences.py ├── recapp.in ├── recapp_constants.py ├── recording.py ├── shortcuts.py └── window.py /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/CREDITS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/README.md -------------------------------------------------------------------------------- /RecApp-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/RecApp-screenshot.png -------------------------------------------------------------------------------- /com.github.amikha1lov.RecApp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/com.github.amikha1lov.RecApp.yaml -------------------------------------------------------------------------------- /data/com.github.amikha1lov.RecApp-symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/com.github.amikha1lov.RecApp-symbolic.png -------------------------------------------------------------------------------- /data/com.github.amikha1lov.RecApp.appdata.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/com.github.amikha1lov.RecApp.appdata.xml.in -------------------------------------------------------------------------------- /data/com.github.amikha1lov.RecApp.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/com.github.amikha1lov.RecApp.desktop.in -------------------------------------------------------------------------------- /data/com.github.amikha1lov.RecApp.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/com.github.amikha1lov.RecApp.gschema.xml -------------------------------------------------------------------------------- /data/com.github.amikha1lov.RecApp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/com.github.amikha1lov.RecApp.svg -------------------------------------------------------------------------------- /data/convert-icons-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/convert-icons-linux.sh -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/old/com.github.amikha1lov.RecApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/old/com.github.amikha1lov.RecApp.png -------------------------------------------------------------------------------- /data/resources/about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/resources/about.ui -------------------------------------------------------------------------------- /data/resources/icons/data_icons_display-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/resources/icons/data_icons_display-symbolic.svg -------------------------------------------------------------------------------- /data/resources/icons/data_icons_selection-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/resources/icons/data_icons_selection-symbolic.svg -------------------------------------------------------------------------------- /data/resources/icons/data_icons_window-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/resources/icons/data_icons_window-symbolic.svg -------------------------------------------------------------------------------- /data/resources/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/resources/meson.build -------------------------------------------------------------------------------- /data/resources/preferences.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/resources/preferences.ui -------------------------------------------------------------------------------- /data/resources/primary-menu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/resources/primary-menu.ui -------------------------------------------------------------------------------- /data/resources/recapp.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/resources/recapp.gresource.xml -------------------------------------------------------------------------------- /data/resources/selectlocation.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/resources/selectlocation.ui -------------------------------------------------------------------------------- /data/resources/shortcuts.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/resources/shortcuts.ui -------------------------------------------------------------------------------- /data/resources/sounds/chime.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/resources/sounds/chime.ogg -------------------------------------------------------------------------------- /data/resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/resources/style.css -------------------------------------------------------------------------------- /data/resources/window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/data/resources/window.ui -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/meson.build -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | de 2 | es 3 | it 4 | nl 5 | ru 6 | tr 7 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/com.github.amikha1lov.RecApp.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/po/com.github.amikha1lov.RecApp.pot -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/po/de.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/po/es.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/po/it.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('com.github.amikha1lov.RecApp', preset: 'glib') 2 | -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/po/tr.po -------------------------------------------------------------------------------- /rpm/recapp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/rpm/recapp.spec -------------------------------------------------------------------------------- /screenshots/RecApp-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/screenshots/RecApp-screenshot.png -------------------------------------------------------------------------------- /screenshots/RecApp-screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/screenshots/RecApp-screenshot2.png -------------------------------------------------------------------------------- /screenshots/RecApp-screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/screenshots/RecApp-screenshot3.png -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /src/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/src/about.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/src/main.py -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/src/preferences.py -------------------------------------------------------------------------------- /src/recapp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/src/recapp.in -------------------------------------------------------------------------------- /src/recapp_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/src/recapp_constants.py -------------------------------------------------------------------------------- /src/recording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/src/recording.py -------------------------------------------------------------------------------- /src/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/src/shortcuts.py -------------------------------------------------------------------------------- /src/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amikha1lov/RecApp/HEAD/src/window.py --------------------------------------------------------------------------------