├── .clang-format ├── .clang-tidy ├── .github └── FUNDING.yml ├── LICENSE ├── meson.build ├── metadata ├── meson.build ├── swayfire-deco.xml └── swayfire.xml ├── readme.md └── src ├── core ├── binding.cpp ├── core.cpp ├── core.hpp ├── grab.cpp ├── grab.hpp ├── meson.build ├── plugin.hpp ├── resize.cpp └── signals.hpp ├── deco ├── deco.cpp ├── deco.hpp ├── meson.build ├── subsurf.cpp └── subsurf.hpp ├── meson.build ├── nonstd.hpp └── pch └── prefix.hpp /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | ColumnLimit: 80 4 | -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: javyre 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/LICENSE -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/meson.build -------------------------------------------------------------------------------- /metadata/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/metadata/meson.build -------------------------------------------------------------------------------- /metadata/swayfire-deco.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/metadata/swayfire-deco.xml -------------------------------------------------------------------------------- /metadata/swayfire.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/metadata/swayfire.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/readme.md -------------------------------------------------------------------------------- /src/core/binding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/core/binding.cpp -------------------------------------------------------------------------------- /src/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/core/core.cpp -------------------------------------------------------------------------------- /src/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/core/core.hpp -------------------------------------------------------------------------------- /src/core/grab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/core/grab.cpp -------------------------------------------------------------------------------- /src/core/grab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/core/grab.hpp -------------------------------------------------------------------------------- /src/core/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/core/meson.build -------------------------------------------------------------------------------- /src/core/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/core/plugin.hpp -------------------------------------------------------------------------------- /src/core/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/core/resize.cpp -------------------------------------------------------------------------------- /src/core/signals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/core/signals.hpp -------------------------------------------------------------------------------- /src/deco/deco.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/deco/deco.cpp -------------------------------------------------------------------------------- /src/deco/deco.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/deco/deco.hpp -------------------------------------------------------------------------------- /src/deco/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/deco/meson.build -------------------------------------------------------------------------------- /src/deco/subsurf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/deco/subsurf.cpp -------------------------------------------------------------------------------- /src/deco/subsurf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/deco/subsurf.hpp -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/nonstd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/nonstd.hpp -------------------------------------------------------------------------------- /src/pch/prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javyre/swayfire/HEAD/src/pch/prefix.hpp --------------------------------------------------------------------------------