Ayin (عَيْن, [ʕajn]), Arabic for "eye", is a free and open-source photo editing software I developed in part of a contest in my first year at FCAI-CU and got 1st place in the solo competition. Ayin is very simplistic compared to big corporate software™ but it has some cool features and gets the job done in terms of functionality implemented. Talking of features, when I showcased Ayin, the device theme feature despite being the simplest, got the most applause. It's always the little things that make good software!
- 21+ Filters
- Multiple image tabs
- Undo and redo stack
- Follow device theme
- Install MSYS2
- Open
MSYS2 UCRT64
- Install dependencies:
$ pacman -S --needed base-devel mingw-w64-ucrt-x86_64-toolchain mingw-w64-ucrt-x86_64-SDL2 mingw-w64-ucrt-x86_64-freetype
- Build
$ cd /path/to/ayin/
$ make mode=release
$ ./target/release/ayin.exe
- Ctrl+Shift+P
- Preferences: Open User Settings (JSON)
- Copy this to of your
settings.json
{
// ...
"terminal.integrated.profiles.windows": {
"MSYS2 UCRT": {
"path": "cmd.exe",
"args": [
"/c",
"C:/msys64/msys2_shell.cmd -defterm -here -no-start -ucrt64"
]
}
}
// ...
}