├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── catts-screenshot.jpg ├── cleanup.sh ├── cmake ├── FindVala.cmake ├── Makefile ├── ParseArguments.cmake ├── README ├── README.Vala.rst ├── Tests.cmake ├── Translations.cmake ├── ValaPrecompile.cmake └── ValaVersion.cmake ├── demo ├── elementary-os-catts-task-switcher.gif └── elementary-os-default-task-switcher.gif ├── src ├── Main.vala └── Widgets │ └── RoundedActor.vala ├── test.sh ├── vapi ├── libmutter-6.deps ├── libmutter-6.vapi ├── libmutter.deps ├── libmutter.vapi └── xfixes-4.0.vapi └── wallpapers ├── catts-wallpaper-4k-by-margo-de-weerdt-small-technology-foundation.jpg ├── catts-wallpaper-4k-even-shallower-depth-of-field-by-margo-de-weerdt-and-aral-balkan-small-technology-foundation.jpg └── catts-wallpaper-4k-shallow-depth-of-field-by-margo-de-weerdt-and-aral-balkan-small-technology-foundation.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | assets 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/README.md -------------------------------------------------------------------------------- /catts-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/catts-screenshot.jpg -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/cleanup.sh -------------------------------------------------------------------------------- /cmake/FindVala.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/cmake/FindVala.cmake -------------------------------------------------------------------------------- /cmake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/cmake/Makefile -------------------------------------------------------------------------------- /cmake/ParseArguments.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/cmake/ParseArguments.cmake -------------------------------------------------------------------------------- /cmake/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/cmake/README -------------------------------------------------------------------------------- /cmake/README.Vala.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/cmake/README.Vala.rst -------------------------------------------------------------------------------- /cmake/Tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/cmake/Tests.cmake -------------------------------------------------------------------------------- /cmake/Translations.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/cmake/Translations.cmake -------------------------------------------------------------------------------- /cmake/ValaPrecompile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/cmake/ValaPrecompile.cmake -------------------------------------------------------------------------------- /cmake/ValaVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/cmake/ValaVersion.cmake -------------------------------------------------------------------------------- /demo/elementary-os-catts-task-switcher.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/demo/elementary-os-catts-task-switcher.gif -------------------------------------------------------------------------------- /demo/elementary-os-default-task-switcher.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/demo/elementary-os-default-task-switcher.gif -------------------------------------------------------------------------------- /src/Main.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/src/Main.vala -------------------------------------------------------------------------------- /src/Widgets/RoundedActor.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/src/Widgets/RoundedActor.vala -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/test.sh -------------------------------------------------------------------------------- /vapi/libmutter-6.deps: -------------------------------------------------------------------------------- 1 | libmutter.deps -------------------------------------------------------------------------------- /vapi/libmutter-6.vapi: -------------------------------------------------------------------------------- 1 | libmutter.vapi -------------------------------------------------------------------------------- /vapi/libmutter.deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/vapi/libmutter.deps -------------------------------------------------------------------------------- /vapi/libmutter.vapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/vapi/libmutter.vapi -------------------------------------------------------------------------------- /vapi/xfixes-4.0.vapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/vapi/xfixes-4.0.vapi -------------------------------------------------------------------------------- /wallpapers/catts-wallpaper-4k-by-margo-de-weerdt-small-technology-foundation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/wallpapers/catts-wallpaper-4k-by-margo-de-weerdt-small-technology-foundation.jpg -------------------------------------------------------------------------------- /wallpapers/catts-wallpaper-4k-even-shallower-depth-of-field-by-margo-de-weerdt-and-aral-balkan-small-technology-foundation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/wallpapers/catts-wallpaper-4k-even-shallower-depth-of-field-by-margo-de-weerdt-and-aral-balkan-small-technology-foundation.jpg -------------------------------------------------------------------------------- /wallpapers/catts-wallpaper-4k-shallow-depth-of-field-by-margo-de-weerdt-and-aral-balkan-small-technology-foundation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/small-tech/catts/HEAD/wallpapers/catts-wallpaper-4k-shallow-depth-of-field-by-margo-de-weerdt-and-aral-balkan-small-technology-foundation.jpg --------------------------------------------------------------------------------