aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2020-02-23 21:55:58 +0100
committerLibravatar vantezzen <hello@vantezzen.io>2020-02-23 21:55:58 +0100
commiteb3acd97acc62d84d3d4548a9089e0101d5780e1 (patch)
tree12b6211548832a6aff428b4d4287811a5b403bfd /src/config.js
parentFix warning about missing actions in PublishDebugLogModal (diff)
downloadferdium-app-eb3acd97acc62d84d3d4548a9089e0101d5780e1.tar.gz
ferdium-app-eb3acd97acc62d84d3d4548a9089e0101d5780e1.tar.zst
ferdium-app-eb3acd97acc62d84d3d4548a9089e0101d5780e1.zip
#270 Add more navigation bar behaviour settings
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/config.js b/src/config.js
index 895852ed8..83b79b689 100644
--- a/src/config.js
+++ b/src/config.js
@@ -45,6 +45,12 @@ export const HIBERNATION_STRATEGIES = {
45 3600: 'Extemely Slow Hibernation (1hour)', 45 3600: 'Extemely Slow Hibernation (1hour)',
46}; 46};
47 47
48export const NAVIGATION_BAR_BEHAVIOURS = {
49 custom: 'Show navigation bar on custom websites only',
50 always: 'Show navigation bar on all services',
51 never: 'Never show navigation bar',
52};
53
48export const DEFAULT_APP_SETTINGS = { 54export const DEFAULT_APP_SETTINGS = {
49 autoLaunchInBackground: false, 55 autoLaunchInBackground: false,
50 runInBackground: true, 56 runInBackground: true,
@@ -84,6 +90,7 @@ export const DEFAULT_APP_SETTINGS = {
84 accentColor: '#7367f0', 90 accentColor: '#7367f0',
85 serviceRibbonWidth: 68, 91 serviceRibbonWidth: 68,
86 sentry: false, 92 sentry: false,
93 navigationBarBehaviour: 'custom',
87}; 94};
88 95
89export const DEFAULT_FEATURES_CONFIG = { 96export const DEFAULT_FEATURES_CONFIG = {