From c34c6a0cffc7171c54db8bfcd18348fb6f73d7b6 Mon Sep 17 00:00:00 2001 From: louie Date: Fri, 11 Sep 2020 16:21:28 -0700 Subject: Added manual refresh option and set executed processes to run in background on linux --- draw.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'draw.c') diff --git a/draw.c b/draw.c index b501dea..ad6217c 100644 --- a/draw.c +++ b/draw.c @@ -116,13 +116,17 @@ int main(int argc, char **argv){ trav_col((true_hover ? e_count : g_count)-1); break; + case KEY_F(5): + update_display(true); + break; + case 10: //enter key #if defined _WIN32 || defined _WIN64 win_launch(); #else strcpy(full_command, get_launch()); - strcat(full_command, " > /dev/null 2>&1"); + strcat(full_command, " > /dev/null 2>&1 &"); system(full_command); #endif break; -- cgit