Skip to content
Merged
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions src/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ class App
{
public function __construct(protected Client $client) {}

public function quit(): void
{
$this->client->post('app/quit');
}

public function focus(): void
{
$this->client->post('app/focus');
Expand Down
Loading