mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 11:27:47 +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
|
@ -93,10 +93,13 @@ int main(int argc, char **argv) {
|
|||
command = join_args(argv + optind, argc - optind);
|
||||
}
|
||||
|
||||
char *resp = ipc_single_command(socket_path, type, command, strlen(command));
|
||||
int socketfd = ipc_open_socket(socket_path);
|
||||
uint32_t len = strlen(command);
|
||||
char *resp = ipc_single_command(socketfd, type, command, &len);
|
||||
if (!quiet) {
|
||||
printf("%s", resp);
|
||||
}
|
||||
close(socketfd);
|
||||
|
||||
free(command);
|
||||
free(resp);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue