mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 19:38:01 +03:00
Add command line to swaygrab
Also modifies IPC client so that we can work with persistent connections.
This commit is contained in:
parent
59e97c2788
commit
062c74b7d0
4 changed files with 81 additions and 13 deletions
|
@ -3,7 +3,18 @@
|
|||
|
||||
#include "ipc.h"
|
||||
|
||||
/**
|
||||
* Gets the path to the IPC socket from sway.
|
||||
*/
|
||||
char *get_socketpath(void);
|
||||
char *ipc_single_command(const char *socket_path, uint32_t type, const char *payload, uint32_t len);
|
||||
/**
|
||||
* Opens the sway socket.
|
||||
*/
|
||||
int ipc_open_socket(const char *socket_path);
|
||||
/**
|
||||
* Issues a single IPC command and returns the buffer. len will be updated with
|
||||
* the length of the buffer returned from sway.
|
||||
*/
|
||||
char *ipc_single_command(int socketfd, uint32_t type, const char *payload, uint32_t *len);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue