Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Disclaimer #7

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ venmic - screenshare support for pipewire

</div>

> [!WARNING]
> This project is not intended for standalone usage. You need a modified discord client that makes use of this.

## 📖 Usage

_venmic_ can be used as node-module or as a local rest-server.
Expand Down
5 changes: 5 additions & 0 deletions server/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ int main(int argc, char **args)
}
}

std::cout << "DISCLAIMER: This program is not intended for standalone usage. You need a modified discord client "
"that makes use of this."
<< std::endl
<< std::endl;

std::cout << std::format("Running on port {}\n", port);

httplib::Server server;
Expand Down