├── .clang-format ├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demo.gif ├── justfile ├── meson.build ├── shell.nix ├── src ├── calc.c └── meson.build └── test └── config.rasi /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenstaro/rofi-calc/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenstaro/rofi-calc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: svenstaro 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenstaro/rofi-calc/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenstaro/rofi-calc/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenstaro/rofi-calc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenstaro/rofi-calc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenstaro/rofi-calc/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenstaro/rofi-calc/HEAD/demo.gif -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenstaro/rofi-calc/HEAD/justfile -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenstaro/rofi-calc/HEAD/meson.build -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenstaro/rofi-calc/HEAD/shell.nix -------------------------------------------------------------------------------- /src/calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenstaro/rofi-calc/HEAD/src/calc.c -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenstaro/rofi-calc/HEAD/src/meson.build -------------------------------------------------------------------------------- /test/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svenstaro/rofi-calc/HEAD/test/config.rasi --------------------------------------------------------------------------------