aboutsummaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-11-06 01:02:28 -0500
committerBobby <[email protected]>2022-11-06 01:02:28 -0500
commit7f5029943a061fc754c261d56a94d66dff36b7da (patch)
tree1fb95cccba0249df9be5f5e1777d3b335ac27355 /src/config
parent106892b2952f95258fc777cf1afc23fd145232e5 (diff)
downloadtexty-7f5029943a061fc754c261d56a94d66dff36b7da.tar.xz
texty-7f5029943a061fc754c261d56a94d66dff36b7da.zip
feat: support for debug run;moved preferences to class
Diffstat (limited to 'src/config')
-rw-r--r--src/config/defaults.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/config/defaults.py b/src/config/defaults.py
new file mode 100644
index 0000000..87bd5fb
--- /dev/null
+++ b/src/config/defaults.py
@@ -0,0 +1,7 @@
+PREFERENCES_FILE = "texty.prefs"
+DEFAULT_PREFS = {
+ "width": 800,
+ "height": 600,
+ "x_pos": "center",
+ "y_pos": "center",
+}