diff options
author | Phil Jones <philj56@gmail.com> | 2022-11-19 14:33:50 +0000 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2022-11-19 14:43:03 +0000 |
commit | d04ca544d6845fc655cd4ba55e134de6bead6a2d (patch) | |
tree | 7fd444b1f0a28d46c46775bd7266381906dd3a1f /src/tofi.h | |
parent | 2c7735f2bac4d35d13c315eb8e5eee1af980b19a (diff) |
Add --history-file option.
Diffstat (limited to 'src/tofi.h')
-rw-r--r-- | src/tofi.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -14,6 +14,7 @@ #define MAX_OUTPUT_NAME_LEN 256 #define MAX_TERMINAL_NAME_LEN 256 +#define MAX_HISTORY_FILE_NAME_LEN 256 struct output_list_element { struct wl_list link; @@ -96,6 +97,7 @@ struct tofi { bool multiple_instance; char target_output_name[MAX_OUTPUT_NAME_LEN]; char default_terminal[MAX_TERMINAL_NAME_LEN]; + char history_file[MAX_HISTORY_FILE_NAME_LEN]; }; #endif /* TOFI_H */ |