diff options
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/defaults.ts | 1 | ||||
| -rw-r--r-- | src/config/types.ts | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/config/defaults.ts b/src/config/defaults.ts index 9b4bf1c..21ba436 100644 --- a/src/config/defaults.ts +++ b/src/config/defaults.ts @@ -120,6 +120,7 @@ export default { navbar: { persistent: false, // Whether to show all the time or only on hover appearWidth: 10, // The width in pixels of the hover area for the navbar to show up + showLabels: false, // Whether to show labels for active buttons }, // Services math: { diff --git a/src/config/types.ts b/src/config/types.ts index 6127e6f..5e7415a 100644 --- a/src/config/types.ts +++ b/src/config/types.ts @@ -61,6 +61,7 @@ export default { // Navbar "navbar.persistent": BOOL, "navbar.appearWidth": NUM, + "navbar.showLabels": BOOL, // Services "math.maxHistory": NUM, "updates.interval": NUM, |