Added config
[findit] / src / config.py
diff --git a/src/config.py b/src/config.py
new file mode 100755 (executable)
index 0000000..ffd81c3
--- /dev/null
@@ -0,0 +1,25 @@
+#!/usr/bin/env python
+# -*-coding: utf-8 -*-
+# vim: sw=4 ts=4 expandtab ai
+# main.py --search files -o=table -p ". 7"
+
+
+# Dummy config
+
+Config = {}
+
+Config['search'] = 'files'
+Config['outtype'] = 'outtable'
+
+# files
+Config['ignore_dirs'] = ['/dev', '/proc', '/sys', '/mnt']
+Config['start_path'] = '.'
+Config['count'] = 5
+
+# # debs
+# Config['count'] = 7
+
+
+# if __name__ == '__main__':
+#     config = Config
+#     print config['search']