# cbink a simple c client for the [bink](https://git.tilde.town/nebula/bink) microblogging platform. there is no central server, only files in `/home/*/.bink`, named after the number of nanoseconds since the unix epoch at the time of their creation. ## dependencies * make (posix should be fine) * a c11-compatible c compiler * libncursesw (with unicode support) ## building run `make` (and maybe `make install` --- by default this puts the executable in `~/.local/bin/cbink`, but you can override it with e.g. `make install PREFIX="${HOME}"`), or just do `cc main.c -o cbink -lncursesw`. ## keyboard shortcuts * `k` / `Up` --- up * `j` / `Down` -- down * `Space` / `PageDown` --- page down * `b` / `PageUp` --- page up * `d` / `Ctrl-D` --- half page down * `u` / `Ctrl-U` --- half page up * `g` / `Home` -- top of feed * `G` / `End` -- bottom of feed * `r` -- refresh feed * `c` -- create new post * `v` -- view post at top of window in `less(1)` * `e` -- edit post at top of window (must be yours)