mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-22 14:35:57 +01:00
log more about screencast
This commit is contained in:
parent
4ac6a9af82
commit
2a634b0a60
1 changed files with 13 additions and 3 deletions
|
@ -528,6 +528,8 @@ struct xdpw_share xdpw_wlr_chooser(struct xdpw_screencast_context *ctx) {
|
||||||
strcat(cmd, XCURSOR_SIZE ? XCURSOR_SIZE : "24");
|
strcat(cmd, XCURSOR_SIZE ? XCURSOR_SIZE : "24");
|
||||||
strcat(cmd, " QT_QPA_PLATFORM=wayland hyprland-share-picker");
|
strcat(cmd, " QT_QPA_PLATFORM=wayland hyprland-share-picker");
|
||||||
|
|
||||||
|
logprint(DEBUG, "Screencast: Picker: Running command \"%s\"", cmd);
|
||||||
|
|
||||||
fp = popen(cmd, "r");
|
fp = popen(cmd, "r");
|
||||||
if (fp == NULL) {
|
if (fp == NULL) {
|
||||||
printf("Failed to run command\n");
|
printf("Failed to run command\n");
|
||||||
|
@ -546,6 +548,8 @@ struct xdpw_share xdpw_wlr_chooser(struct xdpw_screencast_context *ctx) {
|
||||||
|
|
||||||
if (strncmp(result, "screen:", 7) == 0) {
|
if (strncmp(result, "screen:", 7) == 0) {
|
||||||
// find output
|
// find output
|
||||||
|
logprint(DEBUG, "Screencast: Attempting to find screen for %s", result);
|
||||||
|
|
||||||
char* display_name = malloc(strlen(result) - 7);
|
char* display_name = malloc(strlen(result) - 7);
|
||||||
strncpy(display_name, result + 7, strlen(result) - 8);
|
strncpy(display_name, result + 7, strlen(result) - 8);
|
||||||
display_name[strlen(result) - 8] = 0;
|
display_name[strlen(result) - 8] = 0;
|
||||||
|
@ -568,6 +572,8 @@ struct xdpw_share xdpw_wlr_chooser(struct xdpw_screencast_context *ctx) {
|
||||||
return res;
|
return res;
|
||||||
} else if (strncmp(result, "region:", 7) == 0) {
|
} else if (strncmp(result, "region:", 7) == 0) {
|
||||||
// find output
|
// find output
|
||||||
|
logprint(DEBUG, "Screencast: Attempting to find region for %s", result);
|
||||||
|
|
||||||
int atPos = 7;
|
int atPos = 7;
|
||||||
for (int i = 7; i < (int)strlen(result); ++i) {
|
for (int i = 7; i < (int)strlen(result); ++i) {
|
||||||
if (result[i] == '@'){
|
if (result[i] == '@'){
|
||||||
|
@ -611,9 +617,12 @@ struct xdpw_share xdpw_wlr_chooser(struct xdpw_screencast_context *ctx) {
|
||||||
return res2;
|
return res2;
|
||||||
} else if (strncmp(result, "window:", 7) == 0) {
|
} else if (strncmp(result, "window:", 7) == 0) {
|
||||||
if (ctx->hyprland_toplevel_manager == NULL) {
|
if (ctx->hyprland_toplevel_manager == NULL) {
|
||||||
|
logprint(DEBUG, "Screencast: Window sharing attempted but the toplevel protocol is not implemented by the compositor!");
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
logprint(DEBUG, "Screencast: Attempting to find window for %s", result);
|
||||||
|
|
||||||
char *display_name = malloc(strlen(result) - 7);
|
char *display_name = malloc(strlen(result) - 7);
|
||||||
strncpy(display_name, result + 7, strlen(result) - 8);
|
strncpy(display_name, result + 7, strlen(result) - 8);
|
||||||
display_name[strlen(result) - 8] = 0;
|
display_name[strlen(result) - 8] = 0;
|
||||||
|
@ -623,6 +632,7 @@ struct xdpw_share xdpw_wlr_chooser(struct xdpw_screencast_context *ctx) {
|
||||||
free(display_name);
|
free(display_name);
|
||||||
return res;
|
return res;
|
||||||
} else {
|
} else {
|
||||||
|
logprint(DEBUG, "Screencast: Invalid result from hyprland-share-picker: ", result);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue