mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-11 06:09:08 -07:00
- Keybinds in own code helper files - Keybinds as flipper format, loaded only when ran, no limit on length - Migrate from old keybinds - Merge desktop settings refactors after LFS removal PR - Statusbar clock setting in desktop settings like OFW - Hand orient setting in system settings like OFW
13 lines
277 B
C
13 lines
277 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
uint32_t auto_lock_delay_ms;
|
|
bool auto_lock_with_pin;
|
|
uint8_t display_clock;
|
|
} DesktopSettings;
|
|
|
|
void desktop_settings_load(DesktopSettings* settings);
|
|
void desktop_settings_save(const DesktopSettings* settings);
|