├── .gitignore ├── README ├── data ├── agnostics.desktop.in ├── agnostics.ui ├── icons │ └── hicolor │ │ ├── 16x16 │ │ └── apps │ │ │ └── agnostics.png │ │ ├── 24x24 │ │ └── apps │ │ │ └── agnostics.png │ │ ├── 32x32 │ │ └── apps │ │ │ └── agnostics.png │ │ ├── 48x48 │ │ └── apps │ │ │ └── agnostics.png │ │ ├── 64x64 │ │ └── apps │ │ │ └── agnostics.png │ │ ├── 96x96 │ │ └── apps │ │ │ └── agnostics.png │ │ └── scalable │ │ └── apps │ │ └── agnostics.svg ├── meson.build ├── sd_bench.fio └── sdtest.sh ├── debian ├── changelog ├── control ├── copyright ├── rules └── source │ ├── format │ └── options ├── meson.build ├── po ├── POTFILES.in ├── en_GB.po ├── hy.po ├── it.po ├── ko.po ├── linggen ├── lt.po ├── meson.build ├── pl.po ├── sk.po └── zh_CN.po └── src ├── agnostics.c └── meson.build /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/README -------------------------------------------------------------------------------- /data/agnostics.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/data/agnostics.desktop.in -------------------------------------------------------------------------------- /data/agnostics.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/data/agnostics.ui -------------------------------------------------------------------------------- /data/icons/hicolor/16x16/apps/agnostics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/data/icons/hicolor/16x16/apps/agnostics.png -------------------------------------------------------------------------------- /data/icons/hicolor/24x24/apps/agnostics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/data/icons/hicolor/24x24/apps/agnostics.png -------------------------------------------------------------------------------- /data/icons/hicolor/32x32/apps/agnostics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/data/icons/hicolor/32x32/apps/agnostics.png -------------------------------------------------------------------------------- /data/icons/hicolor/48x48/apps/agnostics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/data/icons/hicolor/48x48/apps/agnostics.png -------------------------------------------------------------------------------- /data/icons/hicolor/64x64/apps/agnostics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/data/icons/hicolor/64x64/apps/agnostics.png -------------------------------------------------------------------------------- /data/icons/hicolor/96x96/apps/agnostics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/data/icons/hicolor/96x96/apps/agnostics.png -------------------------------------------------------------------------------- /data/icons/hicolor/scalable/apps/agnostics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/data/icons/hicolor/scalable/apps/agnostics.svg -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/sd_bench.fio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/data/sd_bench.fio -------------------------------------------------------------------------------- /data/sdtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/data/sdtest.sh -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/source/options: -------------------------------------------------------------------------------- 1 | tar-ignore=builddir/* 2 | -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/meson.build -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/po/hy.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/linggen: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ls -1 *.po | cut -d . -f 1 > LINGUAS 3 | -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | run_command('linggen') 2 | i18n.gettext(meson.project_name(), preset: 'glib') 3 | -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /src/agnostics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/src/agnostics.c -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi-ui/agnostics/HEAD/src/meson.build --------------------------------------------------------------------------------