Rework the settings app around hub pages (home, network, displays, input, apps, privacy, system) with a redesigned sidebar, shared nav state, and new hub view components. Alongside the redesign: validate webview inputs into root commands (users, firewall, snapshots, wifi), fix set_charge_threshold writing the percentage via tee stdin, prevent streaming installs from hanging on inherited stdin, add frontend type fixes, sync versions to 0.8.2, and clean up clippy/svelte-check warnings.
16 lines
525 B
Svelte
16 lines
525 B
Svelte
<script lang="ts">
|
|
import Hub from "$lib/components/Hub.svelte";
|
|
import Keybinds from "./Keybinds.svelte";
|
|
import InputMethod from "./InputMethod.svelte";
|
|
import Accessibility from "./Accessibility.svelte";
|
|
</script>
|
|
|
|
<Hub
|
|
title="Keyboard & mouse"
|
|
lede="Shortcuts, input method, and accessibility."
|
|
tabs={[
|
|
{ id: "keybinds", label: "Shortcuts", component: Keybinds },
|
|
{ id: "ime", label: "Input method", component: InputMethod },
|
|
{ id: "accessibility", label: "Accessibility", component: Accessibility },
|
|
]}
|
|
/>
|