Added pre_display_exec which allows pre_display_cmd to be directly executed with fork/exec instead of through the shell

This commit is contained in:
Scoopta 2024-01-20 22:08:33 -08:00
parent 5af07b7410
commit 81e1877ac6
2 changed files with 64 additions and 6 deletions

View File

@ -189,6 +189,9 @@ Specifies the executable to pipe copy data into. $PATH will be scanned, this is
.TP .TP
.B single_click=\fIBOOL\fR .B single_click=\fIBOOL\fR
Specifies whether or not actions should be executed on a single click or a double click. Default is false. Specifies whether or not actions should be executed on a single click or a double click. Default is false.
.TP
.B pre_display_exec=\fIBOOL\fR
This modifies the behavior of pre_display_cmd and causes the command in question to be directly executed via fork/exec rather than through the shell.
.SH CSS SELECTORS .SH CSS SELECTORS
Any GTK widget can be selected by using the name of its CSS node, these however might change with updates and are not guaranteed to stay constant. Wofi also provides certain widgets with names and classes which can be referenced from CSS to give access to the most important widgets easily. \fBwofi\fR(7) contains the current widget layout used by wofi so if you want to get into CSS directly using GTK widget names look there for info. Any GTK widget can be selected by using the name of its CSS node, these however might change with updates and are not guaranteed to stay constant. Wofi also provides certain widgets with names and classes which can be referenced from CSS to give access to the most important widgets easily. \fBwofi\fR(7) contains the current widget layout used by wofi so if you want to get into CSS directly using GTK widget names look there for info.

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2023 Scoopta * Copyright (C) 2019-2024 Scoopta
* This file is part of Wofi * This file is part of Wofi
* Wofi is free software: you can redistribute it and/or modify * Wofi is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -107,6 +107,7 @@ static pthread_t mode_thread;
static bool has_joined_mode = false; static bool has_joined_mode = false;
static char* copy_exec = NULL; static char* copy_exec = NULL;
static char* pre_display_cmd = NULL; static char* pre_display_cmd = NULL;
static bool pre_display_exec = false;
static bool single_click = false; static bool single_click = false;
static GdkModifierType shift_mask = GDK_SHIFT_MASK; static GdkModifierType shift_mask = GDK_SHIFT_MASK;
static GdkModifierType ctrl_mask = GDK_CONTROL_MASK; static GdkModifierType ctrl_mask = GDK_CONTROL_MASK;
@ -415,22 +416,75 @@ static GtkWidget* create_label(char* mode, char* text, char* search_text, char*
char line[128]; // you'd think this caps the line's length to 128, but it's just a buffer which due to the nature of fgets() splits on lines char line[128]; // you'd think this caps the line's length to 128, but it's just a buffer which due to the nature of fgets() splits on lines
size_t size = 0; size_t size = 0;
// first, prepare cmd_labeltext to be each entry's actual comamand to run, aka replacing 'cat %s' to be 'cat filename' // first, prepare cmd_labeltext to be each entry's actual comamand to run, aka replacing 'cat %s' to be 'cat filename'
if ((asprintf(&cmd_labeltext, pre_display_cmd, nodetext)) == -1) { if(asprintf(&cmd_labeltext, pre_display_cmd, nodetext) == -1) {
fprintf(stderr, "error parsing pre_display_cmd to run\n"); fprintf(stderr, "error parsing pre_display_cmd to run\n");
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
// then, run the command // then, run the command
fp_labeltext = popen(cmd_labeltext, "r"); if(pre_display_exec) {
if (fp_labeltext == NULL) { int fds[2];
if(pipe(fds) == -1) {
perror("pipe broken");
exit(1);
}
if(fork() == 0) {
close(fds[0]);
dup2(fds[1], STDOUT_FILENO);
char* cmd = strdup(pre_display_cmd);
char* space = strchr(cmd, ' ');
if(space != NULL) {
*space = 0;
}
size_t space_count = 0;
char* tmp_space = space;
for(; (tmp_space = strchr(tmp_space + 1, ' ')) != NULL; ++space_count);
char** args = malloc((sizeof(char*) * space_count) + 2);
args[0] = cmd;
args[1] = space + 1;
args[space_count + 2] = NULL;
//> 0 is used because args[0] is the command
for(size_t count = space_count; count > 0; --count) {
char* arg = strrchr(space + 1, ' ');
args[count + 1] = arg + 1;
*arg = 0;
}
for(size_t count = 1; count <= space_count + 1; ++count) {
if(strstr(args[count], "%s") != NULL) {
if(asprintf(&args[count], args[count], nodetext) == -1) {
fprintf(stderr, "error parsing pre_display_cmd to run\n");
exit(EXIT_FAILURE);
}
}
}
execvp(cmd, args);
free(cmd);
free(args);
fprintf(stderr, "error executing '%s'\n", cmd_labeltext);
exit(1);
}
close(fds[1]);
fp_labeltext = fdopen(fds[0], "r");
} else {
fp_labeltext = popen(cmd_labeltext, "r");
}
if(fp_labeltext == NULL) {
fprintf(stderr, "error executing '%s'\n", cmd_labeltext); fprintf(stderr, "error executing '%s'\n", cmd_labeltext);
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} else if (fgets(line, sizeof(line), fp_labeltext) != NULL) { } else if(fgets(line, sizeof(line), fp_labeltext) != NULL) {
// lastly, read the output of said command, and put it into the text variable to be used for the label widgets // lastly, read the output of said command, and put it into the text variable to be used for the label widgets
// consider using 'printf %.10s as your --pre-display-cmd to limit a string to a determined width. 10 here is an example // consider using 'printf %.10s as your --pre-display-cmd to limit a string to a determined width. 10 here is an example
size += strlen(line)+1; // we need place for the \0 of strcpy size += strlen(line)+1; // we need place for the \0 of strcpy
text = (char *) realloc(text, size); text = (char *) realloc(text, size);
strcpy(text, line); strcpy(text, line);
while (fgets(line, sizeof(line), fp_labeltext) != NULL) { while(fgets(line, sizeof(line), fp_labeltext) != NULL) {
size += strlen(line); size += strlen(line);
text = (char *) realloc(text, size); text = (char *) realloc(text, size);
strncat(text, line, size); strncat(text, line, size);
@ -1730,6 +1784,7 @@ void wofi_init(struct map* _config) {
char* layer = config_get(config, "layer", "top"); char* layer = config_get(config, "layer", "top");
copy_exec = config_get(config, "copy_exec", "wl-copy"); copy_exec = config_get(config, "copy_exec", "wl-copy");
pre_display_cmd = map_get(config, "pre_display_cmd"); pre_display_cmd = map_get(config, "pre_display_cmd");
pre_display_exec = strcmp(config_get(config, "pre_display_exec", "false"), "true") == 0;
single_click = strcmp(config_get(config, "single_click", "false"), "true") == 0; single_click = strcmp(config_get(config, "single_click", "false"), "true") == 0;
keys = map_init_void(); keys = map_init_void();