aboutsummaryrefslogtreecommitdiff
path: root/draw.h
diff options
context:
space:
mode:
Diffstat (limited to 'draw.h')
-rw-r--r--draw.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/draw.h b/draw.h
index 692a601..ec32ac0 100644
--- a/draw.h
+++ b/draw.h
@@ -14,11 +14,11 @@
#include "types.h"
// Colors (using ANSI escape sequences):
-#define TITLE_COLOR "\033[37;1m"
-#define NORMAL_COLOR "\033[37m"
-#define CURSOR_COLOR "\033[43;30;1m"
-#define LINK_COLOR "\033[35m"
-#define DIR_COLOR "\033[34m"
+#define TITLE_COLOR "\033[37;1m"
+#define NORMAL_COLOR "\033[37m"
+#define CURSOR_COLOR "\033[43;30;1m"
+#define LINK_COLOR "\033[35m"
+#define DIR_COLOR "\033[34m"
#define EXECUTABLE_COLOR "\033[31m"
#define SCROLLBAR_FG "\033[48;5;247m "
#define SCROLLBAR_BG "\033[48;5;239m "
@@ -26,12 +26,12 @@
#define TIME_FMT " %T %D "
#define SELECTED_INDICATOR " \033[31;7m \033[0m"
#define NOT_SELECTED_INDICATOR " "
-#define SORT_INDICATOR "↓"
+#define SORT_INDICATOR "↓"
#define RSORT_INDICATOR "↑"
typedef struct {
const char *name;
- void (*render)(entry_t*, const char*, char*, int);
+ void (*render)(entry_t *, const char *, char *, int);
unsigned int stretchy : 1;
} column_t;