We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09ebd0e commit a32d650Copy full SHA for a32d650
.env
@@ -26,6 +26,10 @@ ARAA_NAME=Araa
26
# Something like !ddg cats will redirect the user to DuckDuckGo with their results for cats.
27
SHEBANG=!
28
29
+# The preferred engine to use if the client doesn't prefer anything.
30
+# Can be: google qwant
31
+DEFAULT_ENGINE=google
32
+
33
# The name of the CSS theme to default to.
34
# The value will be used to load a CSS file named after the value.
35
# So dark_blur will load /static/css/dark_blur.css.
scripts/generate-pyconfig.py
@@ -116,6 +116,11 @@
116
'pyname': 'ARAA_NAME',
117
'type': str,
118
},
119
+ 'DEFAULT_ENGINE' : {
120
+ 'default_val': 'google',
121
+ 'pyname': 'DEFAULT_ENGINE',
122
+ 'type': str,
123
+ },
124
}
125
126
import os
0 commit comments