Add a settings menu to the application with options for military time, am/pm switch, and background running toggle.
Settings Component: Add a new Settings component in src/renderer/App.tsx with options for military time, am/pm switch, and background running toggle. Implement IPC calls to save and load settings.
Hello Component: Add a new tab for Settings in the Hello component in src/renderer/App.tsx.
IPC Handlers: Add IPC handlers in src/main/ipcHandlers.ts for saving and loading settings, and applying settings for military time, am/pm switch, and background running.
Main Application: Update src/main/main.ts to load settings on app startup and apply them. Add logic to handle background running based on settings.
Related to #3
Add a settings menu to the application with options for military time, am/pm switch, and background running toggle.
Settings
component insrc/renderer/App.tsx
with options for military time, am/pm switch, and background running toggle. Implement IPC calls to save and load settings.Settings
in theHello
component insrc/renderer/App.tsx
.src/main/ipcHandlers.ts
for saving and loading settings, and applying settings for military time, am/pm switch, and background running.src/main/main.ts
to load settings on app startup and apply them. Add logic to handle background running based on settings.