1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
# OBS Time Source
An OBS Studio plugin that allows you to add current date and time to scenes.

[](https://builds.sr.ht/~krystianch/obs-time-source?)
## Dependencies
* Meson (`meson`)
* A ninja-compatible build tool (e.g. `samurai`)
* A C compiler (e.g. `gcc`)
* C standard library headers (e.g. `musl-dev`)
* OBS Studio (`obs-studio-dev`)
* PangoCairo (`pango-dev`)
## Building
```sh
meson setup build
ninja -C build
```
## Installing
```sh
mkdir -p ~/.config/obs-studio/plugins/time-source/bin/64bit/
cp build/time-source.so ~/.config/obs-studio/plugins/time-source/bin/64bit/
mkdir -p ~/.config/obs-studio/plugins/time-source/data/locale/
cp data/locale/* ~/.config/obs-studio/plugins/time-source/data/locale/
```
## Uninstalling
```sh
rm -rf ~/.config/obs-studio/plugins/time-source/
```
## Contributing
Please send patches and bug reports to <~krystianch/public-inbox@lists.sr.ht>.
|