diff options
author | Krow Savcik <krow@savcik.xyz> | 2024-01-11 16:23:38 +0200 |
---|---|---|
committer | Krow Savcik <krow@savcik.xyz> | 2024-01-11 16:23:38 +0200 |
commit | f15cde15550aaa8118b56709b67178a858f64012 (patch) | |
tree | cc6db5dc6382e96631606ea3ca509793fe773bfb /config.def.h | |
parent | 32b8f82aa85a9f616eef7b6442670d8558a0b4d8 (diff) |
feature: picking file
Now you can pick a file for import/export/open/save with an external command.
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 396f26a..ee8e1fa 100644 --- a/config.def.h +++ b/config.def.h @@ -4,6 +4,8 @@ const unsigned int maxzoom = 20; const unsigned int fps = 30; const char *def_palette_path = "assets/default.gpl"; const char *def_theme_path = "assets/ui.png"; +/* path to an external program for picking files. it should output only the picked file in stdout */ +const char *cmd_file_picker = NULL; /* NULL - will take input from terminal */ const unsigned int back_c = COLTOINT(146, 161, 185); static Key keys[] = { |