Fix default value

This commit is contained in:
Daniel Lorch 2025-05-02 02:09:08 +02:00
parent 34f48f9bea
commit 2be96d327c
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ var defaultConfig = &Config{
AutoUpdateEnabled: true, // Set a default value
ActiveExtension: "",
KeyboardMacros: []KeyboardMacro{},
KeyboardLayout: "en-US",
KeyboardLayout: "en_US",
DisplayMaxBrightness: 64,
DisplayDimAfterSec: 120, // 2 minutes
DisplayOffAfterSec: 1800, // 30 minutes

View File

@ -400,7 +400,7 @@ export const useDeviceSettingsStore = create<DeviceSettingsState>(set => ({
});
},
keyboardLayout: "en-US",
keyboardLayout: "en_US",
setKeyboardLayout: layout => set({ keyboardLayout: layout }),
}));