pass env to popen cmd picker

This commit is contained in:
vaxerski 2022-12-05 00:13:36 +00:00
parent 9f933f42f1
commit bd91bd0d4e
1 changed files with 7 additions and 1 deletions

View File

@ -519,7 +519,13 @@ struct xdpw_share xdpw_wlr_chooser(struct xdpw_screencast_context *ctx) {
FILE *fp;
char buf[1024] = {0};
fp = popen("bash -c \"hyprland-share-picker\"", "r");
const char* WAYLAND_DISPLAY = getenv("WAYLAND_DISPLAY");
char cmd[128] = "WAYLAND_DISPLAY=";
strcat(cmd, WAYLAND_DISPLAY);
strcat(cmd, " hyprland-share-picker");
fp = popen(cmd, "r");
if (fp == NULL) {
printf("Failed to run command\n");
exit(1);