aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorNPScript <nathan@reinerweb.ch>2021-12-21 10:41:00 +0100
committerNPScript <nathan@reinerweb.ch>2021-12-21 10:41:00 +0100
commit463ed01e43c7fe8fba3481f8f6e3f5b8c74286e6 (patch)
tree7c419282bacfa88630b314f821ec6351fe7a1166 /config.h
parentd4a660f3f5f3004293dcb7299a1f642d8283f916 (diff)
add config header
Diffstat (limited to 'config.h')
-rw-r--r--config.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..84e5adb
--- /dev/null
+++ b/config.h
@@ -0,0 +1,25 @@
+
+int PREVIEW_BORDER_COLOR[3] = {40, 74, 53};
+int MAIN_BORDER_COLOR[3] = {60, 103, 84};
+
+int SELECTED_BG[3] = {60, 103, 84};
+int SELECTED_FG[3] = {0, 0, 0};
+
+int PREVIEW_COMMENT[3] = {100, 100, 100};
+int ERROR[3] = {180, 60, 60};
+
+
+/* Character representing D-Type */
+const char DTC[] = {
+ [DT_BLK] = 'b', /* block device */
+ [DT_CHR] = 'c', /* character device */
+ [DT_DIR] = 'd', /* directory */
+ [DT_FIFO] = 'F', /* named pipe [FIFO] */
+ [DT_LNK] = 'l', /* symbolic link */
+ [DT_REG] = 'f', /* regular file */
+ [DT_SOCK] = 's', /* UNIX domain socket */
+ [DT_UNKNOWN] = '?', /* unknown */
+};
+
+/* Size Unit Descriptors */
+const char * SUNIT[] = {"B", "KiB", "MiB", "GiB", "TiB"};