gitextract_5t012xim/ ├── .cargo/ │ └── config.toml ├── .cert/ │ ├── Seelen.cer │ ├── Seelen.pfx │ ├── Seelen.pfx.pwd │ └── readme.md ├── .commitlintrc.yml ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── actions/ │ │ ├── generate-update-manifest/ │ │ │ └── action.yml │ │ └── setup/ │ │ └── action.yml │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ ├── dependabot-automerge.yml │ ├── discord-notify.yml │ ├── msix.yml │ ├── nightly.yml │ ├── publish-core.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── AGENTS.md ├── CLA.md ├── CODE_OF_CONDUCT ├── CONTRIBUTING ├── Cargo.toml ├── LICENSE ├── README.md ├── SECURITY.md ├── changelog.md ├── crowdin.yml ├── deno.json ├── lefthook.yml ├── libs/ │ ├── core/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── deno.json │ │ ├── mocks/ │ │ │ └── themes/ │ │ │ ├── v2.3.0.yml │ │ │ └── v2.3.12.yml │ │ ├── mod.ts │ │ ├── readme.md │ │ ├── scripts/ │ │ │ ├── build_npm.ts │ │ │ └── rust_bindings.ts │ │ └── src/ │ │ ├── constants/ │ │ │ ├── mod.rs │ │ │ └── mod.ts │ │ ├── error.rs │ │ ├── handlers/ │ │ │ ├── commands.rs │ │ │ ├── commands.ts │ │ │ ├── events.rs │ │ │ ├── events.ts │ │ │ ├── mod.rs │ │ │ └── mod.ts │ │ ├── lib.rs │ │ ├── lib.test.ts │ │ ├── lib.ts │ │ ├── re-exports/ │ │ │ └── tauri.ts │ │ ├── rect.rs │ │ ├── resource/ │ │ │ ├── file.rs │ │ │ ├── interface.rs │ │ │ ├── metadata.rs │ │ │ ├── mod.rs │ │ │ ├── mod.ts │ │ │ ├── resource_id.rs │ │ │ └── yaml_ext.rs │ │ ├── state/ │ │ │ ├── icon_pack.rs │ │ │ ├── icon_pack.test.ts │ │ │ ├── icon_pack.ts │ │ │ ├── mod.rs │ │ │ ├── mod.ts │ │ │ ├── placeholder.rs │ │ │ ├── plugin/ │ │ │ │ ├── mod.rs │ │ │ │ ├── mod.ts │ │ │ │ └── value.rs │ │ │ ├── popups/ │ │ │ │ └── mod.rs │ │ │ ├── settings/ │ │ │ │ ├── by_monitor.rs │ │ │ │ ├── by_theme.rs │ │ │ │ ├── by_wallpaper.rs │ │ │ │ ├── by_widget.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── mod.ts │ │ │ │ ├── settings_by_app.rs │ │ │ │ └── shortcuts.rs │ │ │ ├── theme/ │ │ │ │ ├── config.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── mod.ts │ │ │ │ ├── tests.rs │ │ │ │ └── theming.ts │ │ │ ├── wallpaper/ │ │ │ │ ├── mod.rs │ │ │ │ └── mod.ts │ │ │ ├── weg_items.rs │ │ │ ├── widget/ │ │ │ │ ├── context_menu.rs │ │ │ │ ├── declaration.rs │ │ │ │ ├── interfaces.ts │ │ │ │ ├── mod.rs │ │ │ │ ├── mod.ts │ │ │ │ ├── performance.ts │ │ │ │ ├── positioning.ts │ │ │ │ └── sizing.ts │ │ │ ├── wm_layout.rs │ │ │ └── workspaces/ │ │ │ └── mod.rs │ │ ├── system_state/ │ │ │ ├── bluetooth/ │ │ │ │ ├── appearance_values.yml │ │ │ │ ├── build_low_energy_enums.rs │ │ │ │ ├── enums.rs │ │ │ │ ├── low_energy_enums.rs │ │ │ │ ├── mod.rs │ │ │ │ └── mod.ts │ │ │ ├── components.rs │ │ │ ├── language.rs │ │ │ ├── language.ts │ │ │ ├── media.rs │ │ │ ├── mod.rs │ │ │ ├── mod.ts │ │ │ ├── monitors.rs │ │ │ ├── monitors.ts │ │ │ ├── network/ │ │ │ │ └── mod.rs │ │ │ ├── notification.rs │ │ │ ├── power.rs │ │ │ ├── radios/ │ │ │ │ └── mod.rs │ │ │ ├── trash_bin.rs │ │ │ ├── tray.rs │ │ │ ├── ui_colors.rs │ │ │ ├── ui_colors.ts │ │ │ ├── user.rs │ │ │ ├── user.ts │ │ │ ├── user_apps/ │ │ │ │ └── mod.rs │ │ │ └── win_explorer.rs │ │ └── utils/ │ │ ├── DOM.ts │ │ ├── List.ts │ │ ├── State.ts │ │ ├── async.ts │ │ ├── mod.rs │ │ └── mod.ts │ ├── positioning/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── api/ │ │ │ ├── mod.rs │ │ │ └── windows.rs │ │ ├── easings.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── minimization.rs │ │ └── rect.rs │ ├── slu-ipc/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── app.rs │ │ ├── common.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── messages.rs │ │ └── service.rs │ ├── ui/ │ │ ├── icons.ts │ │ ├── react/ │ │ │ ├── components/ │ │ │ │ ├── BackgroundByLayers/ │ │ │ │ │ ├── infra.module.css │ │ │ │ │ └── infra.tsx │ │ │ │ ├── Icon/ │ │ │ │ │ ├── FileIcon.tsx │ │ │ │ │ ├── MissingIcon.tsx │ │ │ │ │ ├── SpecificIcon.tsx │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── InlineSvg/ │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── ResourceText/ │ │ │ │ │ └── index.tsx │ │ │ │ └── Wallpaper/ │ │ │ │ ├── components/ │ │ │ │ │ ├── ImageWallpaper.tsx │ │ │ │ │ ├── ThemedWallpaper.tsx │ │ │ │ │ └── VideoWallpaper.tsx │ │ │ │ ├── index.module.css │ │ │ │ ├── index.tsx │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ └── utils/ │ │ │ ├── DndKit/ │ │ │ │ └── utils.ts │ │ │ ├── LazySignal.ts │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ ├── layered.ts │ │ │ ├── signals.ts │ │ │ └── styling.ts │ │ ├── svelte/ │ │ │ ├── components/ │ │ │ │ ├── BackgroundByLayers/ │ │ │ │ │ ├── BackgroundByLayers.svelte │ │ │ │ │ └── index.ts │ │ │ │ ├── Icon/ │ │ │ │ │ ├── FileIcon.svelte │ │ │ │ │ ├── Icon.svelte │ │ │ │ │ ├── InlineSVG.svelte │ │ │ │ │ ├── InlineSVGState.svelte.ts │ │ │ │ │ ├── MissingIcon.svelte │ │ │ │ │ ├── SpecificIcon.svelte │ │ │ │ │ ├── common.svelte.ts │ │ │ │ │ └── index.ts │ │ │ │ └── Wallpaper/ │ │ │ │ ├── Wallpaper.svelte │ │ │ │ ├── components/ │ │ │ │ │ ├── ImageWallpaper.svelte │ │ │ │ │ ├── ThemedWallpaper.svelte │ │ │ │ │ └── VideoWallpaper.svelte │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── runes/ │ │ │ │ └── DarkMode.svelte.ts │ │ │ └── utils/ │ │ │ ├── LazyRune.svelte.ts │ │ │ ├── PersistentRune.svelte.ts │ │ │ ├── hooks.svelte.ts │ │ │ ├── i18n.ts │ │ │ └── index.ts │ │ └── utils.ts │ ├── utils/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── checksums.rs │ │ ├── debounce.rs │ │ ├── lib.rs │ │ ├── signature.rs │ │ └── throttle.rs │ └── widgets-shared/ │ └── styles/ │ ├── RichText.css │ ├── colors.css │ ├── reset.css │ └── spacings.css ├── package.json ├── rust-toolchain.toml ├── scripts/ │ ├── PalletteGenerator.ts │ ├── SetFixedRuntime.ps1 │ ├── SubmitToStore.ps1 │ ├── UpdateTauri.ts │ ├── build/ │ │ ├── README.md │ │ ├── builders/ │ │ │ ├── react.ts │ │ │ ├── svelte.ts │ │ │ └── vanilla.ts │ │ ├── config.ts │ │ ├── plugins/ │ │ │ └── index.ts │ │ ├── server.ts │ │ ├── steps/ │ │ │ ├── cleanup.ts │ │ │ ├── discover.ts │ │ │ └── icons.ts │ │ └── types.ts │ ├── build.ts │ ├── bundle.msix.ts │ ├── clean.ps1 │ ├── submission.json │ ├── translate/ │ │ ├── mod.ps1 │ │ └── mod.ts │ └── versionish.ts ├── src/ │ ├── Cargo.toml │ ├── background/ │ │ ├── app.rs │ │ ├── app_instance.rs │ │ ├── cli/ │ │ │ ├── application/ │ │ │ │ ├── art.rs │ │ │ │ ├── debugger.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── uri.rs │ │ │ │ └── win32.rs │ │ │ ├── infrastructure.rs │ │ │ ├── mod.rs │ │ │ ├── self_pipe.rs │ │ │ └── svc_pipe.rs │ │ ├── error.rs │ │ ├── exposed.rs │ │ ├── hook.rs │ │ ├── i18n/ │ │ │ ├── af.yml │ │ │ ├── am.yml │ │ │ ├── ar.yml │ │ │ ├── az.yml │ │ │ ├── bg.yml │ │ │ ├── bn.yml │ │ │ ├── bs.yml │ │ │ ├── ca.yml │ │ │ ├── cs.yml │ │ │ ├── cy.yml │ │ │ ├── da.yml │ │ │ ├── de.yml │ │ │ ├── el.yml │ │ │ ├── en.yml │ │ │ ├── es.yml │ │ │ ├── et.yml │ │ │ ├── eu.yml │ │ │ ├── fa.yml │ │ │ ├── fi.yml │ │ │ ├── fr.yml │ │ │ ├── gu.yml │ │ │ ├── he.yml │ │ │ ├── hi.yml │ │ │ ├── hr.yml │ │ │ ├── hu.yml │ │ │ ├── hy.yml │ │ │ ├── id.yml │ │ │ ├── is.yml │ │ │ ├── it.yml │ │ │ ├── ja.yml │ │ │ ├── ka.yml │ │ │ ├── km.yml │ │ │ ├── ko.yml │ │ │ ├── ku.yml │ │ │ ├── lb.yml │ │ │ ├── lo.yml │ │ │ ├── lt.yml │ │ │ ├── lv.yml │ │ │ ├── mk.yml │ │ │ ├── mn.yml │ │ │ ├── ms.yml │ │ │ ├── mt.yml │ │ │ ├── ne.yml │ │ │ ├── nl.yml │ │ │ ├── no.yml │ │ │ ├── pa.yml │ │ │ ├── pl.yml │ │ │ ├── ps.yml │ │ │ ├── pt-BR.yml │ │ │ ├── pt-PT.yml │ │ │ ├── ro.yml │ │ │ ├── ru.yml │ │ │ ├── si.yml │ │ │ ├── sk.yml │ │ │ ├── so.yml │ │ │ ├── sr.yml │ │ │ ├── sv.yml │ │ │ ├── sw.yml │ │ │ ├── ta.yml │ │ │ ├── te.yml │ │ │ ├── tg.yml │ │ │ ├── th.yml │ │ │ ├── tl.yml │ │ │ ├── tr.yml │ │ │ ├── uk.yml │ │ │ ├── ur.yml │ │ │ ├── uz.yml │ │ │ ├── vi.yml │ │ │ ├── yo.yml │ │ │ ├── zh-CN.yml │ │ │ ├── zh-TW.yml │ │ │ └── zu.yml │ │ ├── logger.rs │ │ ├── main.rs │ │ ├── migrations.rs │ │ ├── modules/ │ │ │ ├── apps/ │ │ │ │ ├── application/ │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── msix.rs │ │ │ │ │ ├── msix_manifest.rs │ │ │ │ │ ├── previews.rs │ │ │ │ │ └── windows.rs │ │ │ │ ├── infrastructure.rs │ │ │ │ └── mod.rs │ │ │ ├── media/ │ │ │ │ ├── devices/ │ │ │ │ │ ├── application.rs │ │ │ │ │ ├── domain.rs │ │ │ │ │ ├── infrastructure.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── players/ │ │ │ │ │ ├── application.rs │ │ │ │ │ ├── domain.rs │ │ │ │ │ ├── infrastructure.rs │ │ │ │ │ └── mod.rs │ │ │ │ └── readme.md │ │ │ ├── mod.rs │ │ │ ├── monitors/ │ │ │ │ ├── application.rs │ │ │ │ ├── brightness/ │ │ │ │ │ ├── application.rs │ │ │ │ │ ├── domain.rs │ │ │ │ │ ├── infrastructure.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── domain.rs │ │ │ │ ├── infrastructure.rs │ │ │ │ └── mod.rs │ │ │ ├── network/ │ │ │ │ ├── application/ │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── passwordless_profile.template.xml │ │ │ │ │ ├── profile.template.xml │ │ │ │ │ ├── profiles.ps1 │ │ │ │ │ ├── scanner.rs │ │ │ │ │ └── v2.rs │ │ │ │ ├── domain/ │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── types.rs │ │ │ │ ├── infrastructure.rs │ │ │ │ └── mod.rs │ │ │ ├── notifications/ │ │ │ │ ├── application.rs │ │ │ │ ├── domain.rs │ │ │ │ ├── infrastructure.rs │ │ │ │ └── mod.rs │ │ │ ├── power/ │ │ │ │ ├── application.rs │ │ │ │ ├── domain.rs │ │ │ │ ├── infrastructure.rs │ │ │ │ └── mod.rs │ │ │ ├── radios/ │ │ │ │ ├── bluetooth/ │ │ │ │ │ ├── classic.rs │ │ │ │ │ ├── handlers.rs │ │ │ │ │ ├── low_energy.rs │ │ │ │ │ ├── manager.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── device.rs │ │ │ │ ├── handlers.rs │ │ │ │ ├── manager.rs │ │ │ │ ├── mod.rs │ │ │ │ └── wifi/ │ │ │ │ └── mod.rs │ │ │ ├── start/ │ │ │ │ ├── application.rs │ │ │ │ ├── domain.rs │ │ │ │ ├── infrastructure.rs │ │ │ │ └── mod.rs │ │ │ ├── system/ │ │ │ │ ├── mod.rs │ │ │ │ └── tauri.rs │ │ │ ├── system_settings/ │ │ │ │ ├── application.rs │ │ │ │ ├── domain.rs │ │ │ │ ├── infrastructure.rs │ │ │ │ ├── language/ │ │ │ │ │ ├── application.rs │ │ │ │ │ ├── domain.rs │ │ │ │ │ ├── infrastructure.rs │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── system_tray/ │ │ │ │ ├── application/ │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── tray_hook_loader.rs │ │ │ │ │ ├── tray_icon.rs │ │ │ │ │ └── util.rs │ │ │ │ ├── domain.rs │ │ │ │ ├── infrastructure.rs │ │ │ │ └── mod.rs │ │ │ ├── trash_bin/ │ │ │ │ ├── application.rs │ │ │ │ ├── infrastructure.rs │ │ │ │ └── mod.rs │ │ │ └── user/ │ │ │ ├── application.rs │ │ │ ├── domain.rs │ │ │ ├── infrastructure.rs │ │ │ └── mod.rs │ │ ├── resources/ │ │ │ ├── cli.rs │ │ │ ├── commands.rs │ │ │ ├── emitters.rs │ │ │ ├── mod.rs │ │ │ └── system_icon_pack.rs │ │ ├── state/ │ │ │ ├── application/ │ │ │ │ ├── apps_config.rs │ │ │ │ ├── icons.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── performance.rs │ │ │ │ ├── settings.rs │ │ │ │ ├── toolbar_items.rs │ │ │ │ └── weg_items.rs │ │ │ ├── domain/ │ │ │ │ └── mod.rs │ │ │ ├── infrastructure.rs │ │ │ └── mod.rs │ │ ├── tauri_context.rs │ │ ├── tauri_plugins.rs │ │ ├── telemetry.rs │ │ ├── utils/ │ │ │ ├── constants.rs │ │ │ ├── discord.rs │ │ │ ├── icon_extractor/ │ │ │ │ ├── mod.rs │ │ │ │ └── queue.rs │ │ │ ├── integrity/ │ │ │ │ ├── checksums.rs │ │ │ │ ├── mod.rs │ │ │ │ └── webview.rs │ │ │ ├── lock_free/ │ │ │ │ ├── mod.rs │ │ │ │ ├── sync_hash_map.rs │ │ │ │ ├── sync_vec.rs │ │ │ │ └── traced_mutex.rs │ │ │ ├── mod.rs │ │ │ ├── pwsh.rs │ │ │ ├── updater.rs │ │ │ ├── virtual_desktop.rs │ │ │ └── winver.rs │ │ ├── virtual_desktops/ │ │ │ ├── cli.rs │ │ │ ├── events.rs │ │ │ ├── handlers.rs │ │ │ ├── mod.rs │ │ │ └── wallpapers.rs │ │ ├── widgets/ │ │ │ ├── cli.rs │ │ │ ├── loader.rs │ │ │ ├── manager.rs │ │ │ ├── mod.rs │ │ │ ├── permissions.rs │ │ │ ├── popups/ │ │ │ │ ├── cli.rs │ │ │ │ ├── handlers.rs │ │ │ │ ├── mod.rs │ │ │ │ └── shortcut_registering.rs │ │ │ ├── task_switcher/ │ │ │ │ ├── cli.rs │ │ │ │ └── mod.rs │ │ │ ├── toolbar/ │ │ │ │ ├── hook.rs │ │ │ │ └── mod.rs │ │ │ ├── wallpaper_manager/ │ │ │ │ ├── cli.rs │ │ │ │ ├── hook.rs │ │ │ │ └── mod.rs │ │ │ ├── webview.rs │ │ │ ├── weg/ │ │ │ │ ├── cli.rs │ │ │ │ ├── handler.rs │ │ │ │ ├── hook.rs │ │ │ │ ├── instance.rs │ │ │ │ ├── mod.rs │ │ │ │ └── weg_items_impl.rs │ │ │ └── window_manager/ │ │ │ ├── cli.rs │ │ │ ├── handler.rs │ │ │ ├── hook.rs │ │ │ ├── instance.rs │ │ │ ├── mod.rs │ │ │ └── state/ │ │ │ ├── mod.rs │ │ │ └── node_ext.rs │ │ └── windows_api/ │ │ ├── app_bar.rs │ │ ├── com.rs │ │ ├── devices.rs │ │ ├── event_window.rs │ │ ├── hdc.rs │ │ ├── input.rs │ │ ├── iterator.rs │ │ ├── mod.rs │ │ ├── monitor/ │ │ │ ├── brightness.rs │ │ │ └── mod.rs │ │ ├── process.rs │ │ ├── string_utils.rs │ │ ├── types.rs │ │ ├── undocumented/ │ │ │ ├── audio_policy_config.rs │ │ │ └── mod.rs │ │ └── window/ │ │ ├── cache.rs │ │ ├── event.rs │ │ └── mod.rs │ ├── build.rs │ ├── capabilities/ │ │ ├── general.json │ │ ├── general_window.json │ │ └── settings_widget.json │ ├── hook_dll/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── lib.rs │ ├── service/ │ │ ├── app_management.rs │ │ ├── cli/ │ │ │ ├── mod.rs │ │ │ └── processing.rs │ │ ├── enviroment.rs │ │ ├── error.rs │ │ ├── hotkeys.rs │ │ ├── logger.rs │ │ ├── main.rs │ │ ├── shutdown.rs │ │ ├── string_utils.rs │ │ ├── task_scheduler.rs │ │ └── windows_api/ │ │ ├── app_bar.rs │ │ ├── com.rs │ │ ├── iterator.rs │ │ └── mod.rs │ ├── static/ │ │ ├── apps_templates/ │ │ │ ├── adobe.yml │ │ │ ├── browser.yml │ │ │ ├── core.yml │ │ │ ├── development.yml │ │ │ ├── gaming.yml │ │ │ ├── password_managers.yml │ │ │ ├── system.yml │ │ │ └── video-and-streaming.yml │ │ ├── plugins/ │ │ │ ├── tb_cpu_usage/ │ │ │ │ ├── i18n/ │ │ │ │ │ └── display_name.yml │ │ │ │ ├── metadata.yml │ │ │ │ └── plugin/ │ │ │ │ └── template.js │ │ │ ├── tb_default_focused_app.yml │ │ │ ├── tb_default_focused_app_title.yml │ │ │ ├── tb_default_power/ │ │ │ │ ├── i18n/ │ │ │ │ │ ├── description.yml │ │ │ │ │ └── display_name.yml │ │ │ │ ├── mod.yml │ │ │ │ └── plugin/ │ │ │ │ ├── template.js │ │ │ │ └── tooltip.js │ │ │ ├── tb_disk_usage/ │ │ │ │ ├── i18n/ │ │ │ │ │ └── display_name.yml │ │ │ │ ├── metadata.yml │ │ │ │ └── plugin/ │ │ │ │ ├── template.js │ │ │ │ └── tooltip.js │ │ │ ├── tb_memory_usage/ │ │ │ │ ├── i18n/ │ │ │ │ │ └── display_name.yml │ │ │ │ ├── metadata.yml │ │ │ │ └── plugin/ │ │ │ │ └── template.js │ │ │ ├── tb_network_usage/ │ │ │ │ ├── i18n/ │ │ │ │ │ └── display_name.yml │ │ │ │ ├── metadata.yml │ │ │ │ └── plugin/ │ │ │ │ └── template.js │ │ │ ├── tb_workspaces_dotted/ │ │ │ │ ├── i18n/ │ │ │ │ │ └── display_name.yml │ │ │ │ ├── metadata.yml │ │ │ │ └── plugin/ │ │ │ │ └── template.js │ │ │ ├── tb_workspaces_named/ │ │ │ │ ├── i18n/ │ │ │ │ │ └── display_name.yml │ │ │ │ ├── metadata.yml │ │ │ │ └── plugin/ │ │ │ │ └── template.js │ │ │ ├── tb_workspaces_numbered/ │ │ │ │ ├── i18n/ │ │ │ │ │ └── display_name.yml │ │ │ │ ├── metadata.yml │ │ │ │ └── plugin/ │ │ │ │ └── template.js │ │ │ ├── wm_bsp.yml │ │ │ ├── wm_grid.yml │ │ │ ├── wm_tall.yml │ │ │ └── wm_wide.yml │ │ ├── readme │ │ ├── themes/ │ │ │ ├── animated-start-icon/ │ │ │ │ ├── metadata.yml │ │ │ │ └── seelen/ │ │ │ │ └── weg.scss │ │ │ ├── bubbles/ │ │ │ │ ├── i18n/ │ │ │ │ │ ├── description.yml │ │ │ │ │ └── display_name.yml │ │ │ │ ├── mod.yml │ │ │ │ └── styles/ │ │ │ │ └── toolbar.css │ │ │ └── default/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ ├── metadata.yml │ │ │ ├── shared/ │ │ │ │ ├── buttons.scss │ │ │ │ ├── index.scss │ │ │ │ └── inputs.scss │ │ │ └── styles/ │ │ │ ├── apps-menu.scss │ │ │ ├── bluetooth-popup.scss │ │ │ ├── calendar-popup.scss │ │ │ ├── context-menu.scss │ │ │ ├── fancy-toolbar.scss │ │ │ ├── flyouts.css │ │ │ ├── keyboard-selector.scss │ │ │ ├── media-popup.scss │ │ │ ├── network-popup.scss │ │ │ ├── notifications.scss │ │ │ ├── power-menu.scss │ │ │ ├── quick-settings.scss │ │ │ ├── task-switcher.scss │ │ │ ├── tray-menu.scss │ │ │ ├── user-menu.scss │ │ │ ├── wallpaper-manager.css │ │ │ ├── weg.css │ │ │ ├── window-manager.css │ │ │ └── workspaces-viewer.scss │ │ └── widgets/ │ │ ├── apps-menu/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ └── metadata.yml │ │ ├── bluetooth-popup/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ ├── metadata.yml │ │ │ └── toolbar-plugin.yml │ │ ├── calendar-popup/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ ├── metadata.yml │ │ │ └── toolbar-plugin.yml │ │ ├── context-menu/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ └── metadata.yml │ │ ├── flyouts/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ └── metadata.yml │ │ ├── keyboard-selector/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ ├── metadata.yml │ │ │ └── toolbar-plugin.yml │ │ ├── media-popup/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ ├── metadata.yml │ │ │ └── toolbar-plugin.yml │ │ ├── network-popup/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ ├── metadata.yml │ │ │ └── toolbar-plugin.yml │ │ ├── notifications/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ ├── metadata.yml │ │ │ └── toolbar-plugin.yml │ │ ├── popup/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ └── metadata.yml │ │ ├── power-menu/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ ├── metadata.yml │ │ │ └── toolbar-plugin.yml │ │ ├── quick-settings/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ ├── metadata.yml │ │ │ └── toolbar-plugin.yml │ │ ├── settings/ │ │ │ ├── i18n/ │ │ │ │ └── display_name.yml │ │ │ └── metadata.yml │ │ ├── system-tray/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ ├── metadata.yml │ │ │ └── toolbar-plugin.yml │ │ ├── task-switcher/ │ │ │ ├── i18n/ │ │ │ │ └── display_name.yml │ │ │ └── metadata.yml │ │ ├── toolbar/ │ │ │ ├── i18n/ │ │ │ │ └── display_name.yml │ │ │ └── metadata.yml │ │ ├── user/ │ │ │ ├── i18n/ │ │ │ │ ├── description.yml │ │ │ │ └── display_name.yml │ │ │ ├── metadata.yml │ │ │ └── toolbar-plugin.yml │ │ ├── wallpaper-manager/ │ │ │ ├── i18n/ │ │ │ │ └── display_name.yml │ │ │ └── metadata.yml │ │ ├── weg/ │ │ │ ├── i18n/ │ │ │ │ └── display_name.yml │ │ │ └── metadata.yml │ │ ├── window-manager/ │ │ │ ├── i18n/ │ │ │ │ └── display_name.yml │ │ │ └── metadata.yml │ │ └── workspaces-viewer/ │ │ ├── i18n/ │ │ │ └── display_name.yml │ │ └── metadata.yml │ ├── tauri.conf.json │ ├── templates/ │ │ ├── AppxManifest.xml │ │ ├── installer-hooks.nsh │ │ └── installer.nsi │ └── ui/ │ ├── globals.d.ts │ ├── react/ │ │ ├── popup/ │ │ │ ├── app.tsx │ │ │ ├── global.css │ │ │ ├── index.tsx │ │ │ └── public/ │ │ │ └── index.html │ │ ├── settings/ │ │ │ ├── app.tsx │ │ │ ├── components/ │ │ │ │ ├── SettingsBox/ │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── SortableSelector/ │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── ThumbnailGeneratorModal/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── thumbnailGenerator.ts │ │ │ │ │ └── videoThumbnail.ts │ │ │ │ ├── WelcomeModal/ │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── infra.tsx │ │ │ │ ├── header/ │ │ │ │ │ ├── ExtraInfo.tsx │ │ │ │ │ ├── UpdateButton.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── layout/ │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── monitor/ │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ └── navigation/ │ │ │ │ ├── index.module.css │ │ │ │ ├── index.tsx │ │ │ │ └── routes.tsx │ │ │ ├── i18n/ │ │ │ │ ├── index.ts │ │ │ │ └── translations/ │ │ │ │ ├── af.yml │ │ │ │ ├── am.yml │ │ │ │ ├── ar.yml │ │ │ │ ├── az.yml │ │ │ │ ├── bg.yml │ │ │ │ ├── bn.yml │ │ │ │ ├── bs.yml │ │ │ │ ├── ca.yml │ │ │ │ ├── cs.yml │ │ │ │ ├── cy.yml │ │ │ │ ├── da.yml │ │ │ │ ├── de.yml │ │ │ │ ├── el.yml │ │ │ │ ├── en.yml │ │ │ │ ├── es.yml │ │ │ │ ├── et.yml │ │ │ │ ├── eu.yml │ │ │ │ ├── fa.yml │ │ │ │ ├── fi.yml │ │ │ │ ├── fr.yml │ │ │ │ ├── gu.yml │ │ │ │ ├── he.yml │ │ │ │ ├── hi.yml │ │ │ │ ├── hr.yml │ │ │ │ ├── hu.yml │ │ │ │ ├── hy.yml │ │ │ │ ├── id.yml │ │ │ │ ├── is.yml │ │ │ │ ├── it.yml │ │ │ │ ├── ja.yml │ │ │ │ ├── ka.yml │ │ │ │ ├── km.yml │ │ │ │ ├── ko.yml │ │ │ │ ├── ku.yml │ │ │ │ ├── lb.yml │ │ │ │ ├── lo.yml │ │ │ │ ├── lt.yml │ │ │ │ ├── lv.yml │ │ │ │ ├── mk.yml │ │ │ │ ├── mn.yml │ │ │ │ ├── ms.yml │ │ │ │ ├── mt.yml │ │ │ │ ├── ne.yml │ │ │ │ ├── nl.yml │ │ │ │ ├── no.yml │ │ │ │ ├── pa.yml │ │ │ │ ├── pl.yml │ │ │ │ ├── ps.yml │ │ │ │ ├── pt-BR.yml │ │ │ │ ├── pt-PT.yml │ │ │ │ ├── ro.yml │ │ │ │ ├── ru.yml │ │ │ │ ├── si.yml │ │ │ │ ├── sk.yml │ │ │ │ ├── so.yml │ │ │ │ ├── sr.yml │ │ │ │ ├── sv.yml │ │ │ │ ├── sw.yml │ │ │ │ ├── ta.yml │ │ │ │ ├── te.yml │ │ │ │ ├── tg.yml │ │ │ │ ├── th.yml │ │ │ │ ├── tl.yml │ │ │ │ ├── tr.yml │ │ │ │ ├── uk.yml │ │ │ │ ├── ur.yml │ │ │ │ ├── uz.yml │ │ │ │ ├── vi.yml │ │ │ │ ├── yo.yml │ │ │ │ ├── zh-CN.yml │ │ │ │ ├── zh-TW.yml │ │ │ │ └── zu.yml │ │ │ ├── index.tsx │ │ │ ├── modules/ │ │ │ │ ├── ByMonitor/ │ │ │ │ │ └── infra/ │ │ │ │ │ ├── WallpaperSettingsModal.tsx │ │ │ │ │ ├── WidgetSettingsModal.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── Home/ │ │ │ │ │ ├── MiniStore.module.css │ │ │ │ │ ├── MiniStore.tsx │ │ │ │ │ ├── News.module.css │ │ │ │ │ ├── News.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── IconPackEditor/ │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── Wall/ │ │ │ │ │ ├── WallpaperList.tsx │ │ │ │ │ ├── application.ts │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── infra.tsx │ │ │ │ ├── WindowManager/ │ │ │ │ │ ├── application.ts │ │ │ │ │ ├── border/ │ │ │ │ │ │ ├── application.ts │ │ │ │ │ │ └── infra.tsx │ │ │ │ │ └── main/ │ │ │ │ │ └── infra/ │ │ │ │ │ ├── Animations.tsx │ │ │ │ │ ├── GlobalPaddings.tsx │ │ │ │ │ ├── Others.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── appsConfigurations/ │ │ │ │ │ ├── app/ │ │ │ │ │ │ ├── default.ts │ │ │ │ │ │ ├── filters.ts │ │ │ │ │ │ └── reducer.ts │ │ │ │ │ ├── domain.ts │ │ │ │ │ └── infra/ │ │ │ │ │ ├── EditModal.tsx │ │ │ │ │ ├── Identifier.module.css │ │ │ │ │ ├── Identifier.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── infra.tsx │ │ │ │ ├── developer/ │ │ │ │ │ ├── application.ts │ │ │ │ │ └── infra.tsx │ │ │ │ ├── extras/ │ │ │ │ │ ├── application.ts │ │ │ │ │ ├── infra.module.css │ │ │ │ │ └── infrastructure.tsx │ │ │ │ ├── fancyToolbar/ │ │ │ │ │ ├── application.ts │ │ │ │ │ └── infra.tsx │ │ │ │ ├── general/ │ │ │ │ │ ├── application.ts │ │ │ │ │ └── infra/ │ │ │ │ │ ├── Colors.tsx │ │ │ │ │ ├── Performance.tsx │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── resources/ │ │ │ │ │ ├── IconPacks.tsx │ │ │ │ │ ├── Plugins.tsx │ │ │ │ │ ├── ResourceCard.tsx │ │ │ │ │ ├── SoundPacks.tsx │ │ │ │ │ ├── Theme/ │ │ │ │ │ │ ├── AllView.tsx │ │ │ │ │ │ ├── View.tsx │ │ │ │ │ │ ├── application.ts │ │ │ │ │ │ ├── components/ │ │ │ │ │ │ │ ├── ThemeConfigDefinition.tsx │ │ │ │ │ │ │ └── ThemeSetting.tsx │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ └── hooks/ │ │ │ │ │ │ └── useThemeVariable.ts │ │ │ │ │ ├── Wallpapers/ │ │ │ │ │ │ ├── AllView.tsx │ │ │ │ │ │ ├── View.module.css │ │ │ │ │ │ ├── View.tsx │ │ │ │ │ │ └── application.ts │ │ │ │ │ ├── Widget/ │ │ │ │ │ │ ├── AllView.tsx │ │ │ │ │ │ ├── ConfigRenderer.tsx │ │ │ │ │ │ ├── InstanceSelector.tsx │ │ │ │ │ │ ├── View.tsx │ │ │ │ │ │ └── application.ts │ │ │ │ │ ├── infra.module.css │ │ │ │ │ └── infra.tsx │ │ │ │ ├── seelenweg/ │ │ │ │ │ ├── application.ts │ │ │ │ │ └── infra.tsx │ │ │ │ ├── shared/ │ │ │ │ │ ├── config/ │ │ │ │ │ │ └── infra.ts │ │ │ │ │ ├── signals.ts │ │ │ │ │ ├── tauri/ │ │ │ │ │ │ └── infra.ts │ │ │ │ │ └── utils/ │ │ │ │ │ ├── app.ts │ │ │ │ │ └── domain.ts │ │ │ │ └── shortcuts/ │ │ │ │ ├── application.ts │ │ │ │ └── infrastructure.tsx │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ ├── router.tsx │ │ │ ├── state/ │ │ │ │ ├── mod.ts │ │ │ │ ├── resources.ts │ │ │ │ └── system.ts │ │ │ └── styles/ │ │ │ ├── global.css │ │ │ └── variables.css │ │ ├── toolbar/ │ │ │ ├── app.tsx │ │ │ ├── components/ │ │ │ │ └── Error/ │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── i18n/ │ │ │ │ ├── index.ts │ │ │ │ └── translations/ │ │ │ │ ├── af.yml │ │ │ │ ├── am.yml │ │ │ │ ├── ar.yml │ │ │ │ ├── az.yml │ │ │ │ ├── bg.yml │ │ │ │ ├── bn.yml │ │ │ │ ├── bs.yml │ │ │ │ ├── ca.yml │ │ │ │ ├── cs.yml │ │ │ │ ├── cy.yml │ │ │ │ ├── da.yml │ │ │ │ ├── de.yml │ │ │ │ ├── el.yml │ │ │ │ ├── en.yml │ │ │ │ ├── es.yml │ │ │ │ ├── et.yml │ │ │ │ ├── eu.yml │ │ │ │ ├── fa.yml │ │ │ │ ├── fi.yml │ │ │ │ ├── fr.yml │ │ │ │ ├── gu.yml │ │ │ │ ├── he.yml │ │ │ │ ├── hi.yml │ │ │ │ ├── hr.yml │ │ │ │ ├── hu.yml │ │ │ │ ├── hy.yml │ │ │ │ ├── id.yml │ │ │ │ ├── is.yml │ │ │ │ ├── it.yml │ │ │ │ ├── ja.yml │ │ │ │ ├── ka.yml │ │ │ │ ├── km.yml │ │ │ │ ├── ko.yml │ │ │ │ ├── ku.yml │ │ │ │ ├── lb.yml │ │ │ │ ├── lo.yml │ │ │ │ ├── lt.yml │ │ │ │ ├── lv.yml │ │ │ │ ├── mk.yml │ │ │ │ ├── mn.yml │ │ │ │ ├── ms.yml │ │ │ │ ├── mt.yml │ │ │ │ ├── ne.yml │ │ │ │ ├── nl.yml │ │ │ │ ├── no.yml │ │ │ │ ├── pa.yml │ │ │ │ ├── pl.yml │ │ │ │ ├── ps.yml │ │ │ │ ├── pt-BR.yml │ │ │ │ ├── pt-PT.yml │ │ │ │ ├── ro.yml │ │ │ │ ├── ru.yml │ │ │ │ ├── si.yml │ │ │ │ ├── sk.yml │ │ │ │ ├── so.yml │ │ │ │ ├── sr.yml │ │ │ │ ├── sv.yml │ │ │ │ ├── sw.yml │ │ │ │ ├── ta.yml │ │ │ │ ├── te.yml │ │ │ │ ├── tg.yml │ │ │ │ ├── th.yml │ │ │ │ ├── tl.yml │ │ │ │ ├── tr.yml │ │ │ │ ├── uk.yml │ │ │ │ ├── ur.yml │ │ │ │ ├── uz.yml │ │ │ │ ├── vi.yml │ │ │ │ ├── yo.yml │ │ │ │ ├── zh-CN.yml │ │ │ │ ├── zh-TW.yml │ │ │ │ └── zu.yml │ │ │ ├── index.tsx │ │ │ ├── modules/ │ │ │ │ ├── item/ │ │ │ │ │ ├── app/ │ │ │ │ │ │ ├── actionEvaluator.ts │ │ │ │ │ │ ├── hooks/ │ │ │ │ │ │ │ ├── scope.ts │ │ │ │ │ │ │ ├── useItemScope.ts │ │ │ │ │ │ │ └── useRemoteData.ts │ │ │ │ │ │ └── services/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── widgetTrigger.ts │ │ │ │ │ ├── domain/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── infra/ │ │ │ │ │ ├── ContextMenu.tsx │ │ │ │ │ ├── EvaluatedComponents.tsx │ │ │ │ │ └── infra.tsx │ │ │ │ ├── main/ │ │ │ │ │ ├── ContextMenu.tsx │ │ │ │ │ ├── CornerAction.tsx │ │ │ │ │ ├── ItemsContainer.tsx │ │ │ │ │ └── Toolbar.tsx │ │ │ │ └── shared/ │ │ │ │ ├── state/ │ │ │ │ │ ├── default.ts │ │ │ │ │ ├── items.ts │ │ │ │ │ ├── lazy.ts │ │ │ │ │ ├── mod.ts │ │ │ │ │ ├── system.ts │ │ │ │ │ └── windows.ts │ │ │ │ └── utils.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── styles/ │ │ │ ├── global.css │ │ │ └── variables.css │ │ └── weg/ │ │ ├── app.tsx │ │ ├── components/ │ │ │ └── Error/ │ │ │ └── index.tsx │ │ ├── i18n/ │ │ │ ├── index.ts │ │ │ └── translations/ │ │ │ ├── af.yml │ │ │ ├── am.yml │ │ │ ├── ar.yml │ │ │ ├── az.yml │ │ │ ├── bg.yml │ │ │ ├── bn.yml │ │ │ ├── bs.yml │ │ │ ├── ca.yml │ │ │ ├── cs.yml │ │ │ ├── cy.yml │ │ │ ├── da.yml │ │ │ ├── de.yml │ │ │ ├── el.yml │ │ │ ├── en.yml │ │ │ ├── es.yml │ │ │ ├── et.yml │ │ │ ├── eu.yml │ │ │ ├── fa.yml │ │ │ ├── fi.yml │ │ │ ├── fr.yml │ │ │ ├── gu.yml │ │ │ ├── he.yml │ │ │ ├── hi.yml │ │ │ ├── hr.yml │ │ │ ├── hu.yml │ │ │ ├── hy.yml │ │ │ ├── id.yml │ │ │ ├── is.yml │ │ │ ├── it.yml │ │ │ ├── ja.yml │ │ │ ├── ka.yml │ │ │ ├── km.yml │ │ │ ├── ko.yml │ │ │ ├── ku.yml │ │ │ ├── lb.yml │ │ │ ├── lo.yml │ │ │ ├── lt.yml │ │ │ ├── lv.yml │ │ │ ├── mk.yml │ │ │ ├── mn.yml │ │ │ ├── ms.yml │ │ │ ├── mt.yml │ │ │ ├── ne.yml │ │ │ ├── nl.yml │ │ │ ├── no.yml │ │ │ ├── pa.yml │ │ │ ├── pl.yml │ │ │ ├── ps.yml │ │ │ ├── pt-BR.yml │ │ │ ├── pt-PT.yml │ │ │ ├── ro.yml │ │ │ ├── ru.yml │ │ │ ├── si.yml │ │ │ ├── sk.yml │ │ │ ├── so.yml │ │ │ ├── sr.yml │ │ │ ├── sv.yml │ │ │ ├── sw.yml │ │ │ ├── ta.yml │ │ │ ├── te.yml │ │ │ ├── tg.yml │ │ │ ├── th.yml │ │ │ ├── tl.yml │ │ │ ├── tr.yml │ │ │ ├── uk.yml │ │ │ ├── ur.yml │ │ │ ├── uz.yml │ │ │ ├── vi.yml │ │ │ ├── yo.yml │ │ │ ├── zh-CN.yml │ │ │ ├── zh-TW.yml │ │ │ └── zu.yml │ │ ├── index.tsx │ │ ├── modules/ │ │ │ ├── bar/ │ │ │ │ ├── DockMenu.tsx │ │ │ │ ├── DraggableItem.tsx │ │ │ │ ├── ItemReordableList.tsx │ │ │ │ └── index.tsx │ │ │ ├── item/ │ │ │ │ ├── application.ts │ │ │ │ └── infra/ │ │ │ │ ├── GeneralMenu.tsx │ │ │ │ ├── MediaSession.css │ │ │ │ ├── MediaSession.tsx │ │ │ │ ├── RecycleBin.tsx │ │ │ │ ├── Separator.tsx │ │ │ │ ├── ShowDesktop.tsx │ │ │ │ ├── StartMenu.tsx │ │ │ │ ├── UserApplication.tsx │ │ │ │ ├── UserApplicationContextMenu.tsx │ │ │ │ └── UserApplicationPreview.tsx │ │ │ └── shared/ │ │ │ ├── state/ │ │ │ │ ├── hidden.ts │ │ │ │ ├── items.ts │ │ │ │ ├── mod.ts │ │ │ │ ├── settings.ts │ │ │ │ ├── system.ts │ │ │ │ └── windows.ts │ │ │ └── types.ts │ │ ├── public/ │ │ │ └── index.html │ │ └── styles/ │ │ ├── global.css │ │ └── variables.css │ ├── reduxRootState.ts │ ├── svelte/ │ │ ├── apps-menu/ │ │ │ ├── App.svelte │ │ │ ├── components/ │ │ │ │ ├── AllAppsView.svelte │ │ │ │ ├── AppItem.svelte │ │ │ │ ├── FolderItem.svelte │ │ │ │ ├── FolderModal.svelte │ │ │ │ ├── PinnedView.svelte │ │ │ │ └── StartMenuBody.svelte │ │ │ ├── constants.ts │ │ │ ├── i18n/ │ │ │ │ ├── index.ts │ │ │ │ └── translations/ │ │ │ │ ├── af.yml │ │ │ │ ├── am.yml │ │ │ │ ├── ar.yml │ │ │ │ ├── az.yml │ │ │ │ ├── bg.yml │ │ │ │ ├── bn.yml │ │ │ │ ├── bs.yml │ │ │ │ ├── ca.yml │ │ │ │ ├── cs.yml │ │ │ │ ├── cy.yml │ │ │ │ ├── da.yml │ │ │ │ ├── de.yml │ │ │ │ ├── el.yml │ │ │ │ ├── en.yml │ │ │ │ ├── es.yml │ │ │ │ ├── et.yml │ │ │ │ ├── eu.yml │ │ │ │ ├── fa.yml │ │ │ │ ├── fi.yml │ │ │ │ ├── fr.yml │ │ │ │ ├── gu.yml │ │ │ │ ├── he.yml │ │ │ │ ├── hi.yml │ │ │ │ ├── hr.yml │ │ │ │ ├── hu.yml │ │ │ │ ├── hy.yml │ │ │ │ ├── id.yml │ │ │ │ ├── is.yml │ │ │ │ ├── it.yml │ │ │ │ ├── ja.yml │ │ │ │ ├── ka.yml │ │ │ │ ├── km.yml │ │ │ │ ├── ko.yml │ │ │ │ ├── ku.yml │ │ │ │ ├── lb.yml │ │ │ │ ├── lo.yml │ │ │ │ ├── lt.yml │ │ │ │ ├── lv.yml │ │ │ │ ├── mk.yml │ │ │ │ ├── mn.yml │ │ │ │ ├── ms.yml │ │ │ │ ├── mt.yml │ │ │ │ ├── ne.yml │ │ │ │ ├── nl.yml │ │ │ │ ├── no.yml │ │ │ │ ├── pa.yml │ │ │ │ ├── pl.yml │ │ │ │ ├── ps.yml │ │ │ │ ├── pt-BR.yml │ │ │ │ ├── pt-PT.yml │ │ │ │ ├── ro.yml │ │ │ │ ├── ru.yml │ │ │ │ ├── si.yml │ │ │ │ ├── sk.yml │ │ │ │ ├── so.yml │ │ │ │ ├── sr.yml │ │ │ │ ├── sv.yml │ │ │ │ ├── sw.yml │ │ │ │ ├── ta.yml │ │ │ │ ├── te.yml │ │ │ │ ├── tg.yml │ │ │ │ ├── th.yml │ │ │ │ ├── tl.yml │ │ │ │ ├── tr.yml │ │ │ │ ├── uk.yml │ │ │ │ ├── ur.yml │ │ │ │ ├── uz.yml │ │ │ │ ├── vi.yml │ │ │ │ ├── yo.yml │ │ │ │ ├── zh-CN.yml │ │ │ │ ├── zh-TW.yml │ │ │ │ └── zu.yml │ │ │ ├── index.ts │ │ │ ├── keyboard-navigation.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ ├── state/ │ │ │ │ ├── config.svelte.ts │ │ │ │ ├── knownFolders.svelte.ts │ │ │ │ ├── mod.svelte.ts │ │ │ │ └── positioning.svelte.ts │ │ │ └── utils.ts │ │ ├── bluetooth-popup/ │ │ │ ├── app.svelte │ │ │ ├── components/ │ │ │ │ └── BluetoothDevice.svelte │ │ │ ├── i18n/ │ │ │ │ ├── index.ts │ │ │ │ └── translations/ │ │ │ │ ├── af.yml │ │ │ │ ├── am.yml │ │ │ │ ├── ar.yml │ │ │ │ ├── az.yml │ │ │ │ ├── bg.yml │ │ │ │ ├── bn.yml │ │ │ │ ├── bs.yml │ │ │ │ ├── ca.yml │ │ │ │ ├── cs.yml │ │ │ │ ├── cy.yml │ │ │ │ ├── da.yml │ │ │ │ ├── de.yml │ │ │ │ ├── el.yml │ │ │ │ ├── en.yml │ │ │ │ ├── es.yml │ │ │ │ ├── et.yml │ │ │ │ ├── eu.yml │ │ │ │ ├── fa.yml │ │ │ │ ├── fi.yml │ │ │ │ ├── fr.yml │ │ │ │ ├── gu.yml │ │ │ │ ├── he.yml │ │ │ │ ├── hi.yml │ │ │ │ ├── hr.yml │ │ │ │ ├── hu.yml │ │ │ │ ├── hy.yml │ │ │ │ ├── id.yml │ │ │ │ ├── is.yml │ │ │ │ ├── it.yml │ │ │ │ ├── ja.yml │ │ │ │ ├── ka.yml │ │ │ │ ├── km.yml │ │ │ │ ├── ko.yml │ │ │ │ ├── ku.yml │ │ │ │ ├── lb.yml │ │ │ │ ├── lo.yml │ │ │ │ ├── lt.yml │ │ │ │ ├── lv.yml │ │ │ │ ├── mk.yml │ │ │ │ ├── mn.yml │ │ │ │ ├── ms.yml │ │ │ │ ├── mt.yml │ │ │ │ ├── ne.yml │ │ │ │ ├── nl.yml │ │ │ │ ├── no.yml │ │ │ │ ├── pa.yml │ │ │ │ ├── pl.yml │ │ │ │ ├── ps.yml │ │ │ │ ├── pt-BR.yml │ │ │ │ ├── pt-PT.yml │ │ │ │ ├── ro.yml │ │ │ │ ├── ru.yml │ │ │ │ ├── si.yml │ │ │ │ ├── sk.yml │ │ │ │ ├── so.yml │ │ │ │ ├── sr.yml │ │ │ │ ├── sv.yml │ │ │ │ ├── sw.yml │ │ │ │ ├── ta.yml │ │ │ │ ├── te.yml │ │ │ │ ├── tg.yml │ │ │ │ ├── th.yml │ │ │ │ ├── tl.yml │ │ │ │ ├── tr.yml │ │ │ │ ├── uk.yml │ │ │ │ ├── ur.yml │ │ │ │ ├── uz.yml │ │ │ │ ├── vi.yml │ │ │ │ ├── yo.yml │ │ │ │ ├── zh-CN.yml │ │ │ │ ├── zh-TW.yml │ │ │ │ └── zu.yml │ │ │ ├── icons.ts │ │ │ ├── index.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── state.svelte.ts │ │ ├── calendar-popup/ │ │ │ ├── app.svelte │ │ │ ├── i18n/ │ │ │ │ ├── index.ts │ │ │ │ └── translations/ │ │ │ │ ├── af.yml │ │ │ │ ├── am.yml │ │ │ │ ├── ar.yml │ │ │ │ ├── az.yml │ │ │ │ ├── bg.yml │ │ │ │ ├── bn.yml │ │ │ │ ├── bs.yml │ │ │ │ ├── ca.yml │ │ │ │ ├── cs.yml │ │ │ │ ├── cy.yml │ │ │ │ ├── da.yml │ │ │ │ ├── de.yml │ │ │ │ ├── el.yml │ │ │ │ ├── en.yml │ │ │ │ ├── es.yml │ │ │ │ ├── et.yml │ │ │ │ ├── eu.yml │ │ │ │ ├── fa.yml │ │ │ │ ├── fi.yml │ │ │ │ ├── fr.yml │ │ │ │ ├── gu.yml │ │ │ │ ├── he.yml │ │ │ │ ├── hi.yml │ │ │ │ ├── hr.yml │ │ │ │ ├── hu.yml │ │ │ │ ├── hy.yml │ │ │ │ ├── id.yml │ │ │ │ ├── is.yml │ │ │ │ ├── it.yml │ │ │ │ ├── ja.yml │ │ │ │ ├── ka.yml │ │ │ │ ├── km.yml │ │ │ │ ├── ko.yml │ │ │ │ ├── ku.yml │ │ │ │ ├── lb.yml │ │ │ │ ├── lo.yml │ │ │ │ ├── lt.yml │ │ │ │ ├── lv.yml │ │ │ │ ├── mk.yml │ │ │ │ ├── mn.yml │ │ │ │ ├── ms.yml │ │ │ │ ├── mt.yml │ │ │ │ ├── ne.yml │ │ │ │ ├── nl.yml │ │ │ │ ├── no.yml │ │ │ │ ├── pa.yml │ │ │ │ ├── pl.yml │ │ │ │ ├── ps.yml │ │ │ │ ├── pt-BR.yml │ │ │ │ ├── pt-PT.yml │ │ │ │ ├── ro.yml │ │ │ │ ├── ru.yml │ │ │ │ ├── si.yml │ │ │ │ ├── sk.yml │ │ │ │ ├── so.yml │ │ │ │ ├── sr.yml │ │ │ │ ├── sv.yml │ │ │ │ ├── sw.yml │ │ │ │ ├── ta.yml │ │ │ │ ├── te.yml │ │ │ │ ├── tg.yml │ │ │ │ ├── th.yml │ │ │ │ ├── tl.yml │ │ │ │ ├── tr.yml │ │ │ │ ├── uk.yml │ │ │ │ ├── ur.yml │ │ │ │ ├── uz.yml │ │ │ │ ├── vi.yml │ │ │ │ ├── yo.yml │ │ │ │ ├── zh-CN.yml │ │ │ │ ├── zh-TW.yml │ │ │ │ └── zu.yml │ │ │ ├── index.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── state.svelte.ts │ │ ├── context-menu/ │ │ │ ├── MenuItem.svelte │ │ │ ├── Submenu.svelte │ │ │ ├── app.svelte │ │ │ ├── index.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── state.svelte.ts │ │ ├── flyouts/ │ │ │ ├── app/ │ │ │ │ ├── Brightness.svelte │ │ │ │ ├── MediaDevices.svelte │ │ │ │ ├── MediaPlaying.svelte │ │ │ │ └── Workspace.svelte │ │ │ ├── app.svelte │ │ │ ├── index.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── state/ │ │ │ ├── config.svelte.ts │ │ │ ├── mod.svelte.ts │ │ │ └── placement.svelte.ts │ │ ├── keyboard-selector/ │ │ │ ├── app.svelte │ │ │ ├── i18n/ │ │ │ │ ├── index.ts │ │ │ │ └── translations/ │ │ │ │ ├── af.yml │ │ │ │ ├── am.yml │ │ │ │ ├── ar.yml │ │ │ │ ├── az.yml │ │ │ │ ├── bg.yml │ │ │ │ ├── bn.yml │ │ │ │ ├── bs.yml │ │ │ │ ├── ca.yml │ │ │ │ ├── cs.yml │ │ │ │ ├── cy.yml │ │ │ │ ├── da.yml │ │ │ │ ├── de.yml │ │ │ │ ├── el.yml │ │ │ │ ├── en.yml │ │ │ │ ├── es.yml │ │ │ │ ├── et.yml │ │ │ │ ├── eu.yml │ │ │ │ ├── fa.yml │ │ │ │ ├── fi.yml │ │ │ │ ├── fr.yml │ │ │ │ ├── gu.yml │ │ │ │ ├── he.yml │ │ │ │ ├── hi.yml │ │ │ │ ├── hr.yml │ │ │ │ ├── hu.yml │ │ │ │ ├── hy.yml │ │ │ │ ├── id.yml │ │ │ │ ├── is.yml │ │ │ │ ├── it.yml │ │ │ │ ├── ja.yml │ │ │ │ ├── ka.yml │ │ │ │ ├── km.yml │ │ │ │ ├── ko.yml │ │ │ │ ├── ku.yml │ │ │ │ ├── lb.yml │ │ │ │ ├── lo.yml │ │ │ │ ├── lt.yml │ │ │ │ ├── lv.yml │ │ │ │ ├── mk.yml │ │ │ │ ├── mn.yml │ │ │ │ ├── ms.yml │ │ │ │ ├── mt.yml │ │ │ │ ├── ne.yml │ │ │ │ ├── nl.yml │ │ │ │ ├── no.yml │ │ │ │ ├── pa.yml │ │ │ │ ├── pl.yml │ │ │ │ ├── ps.yml │ │ │ │ ├── pt-BR.yml │ │ │ │ ├── pt-PT.yml │ │ │ │ ├── ro.yml │ │ │ │ ├── ru.yml │ │ │ │ ├── si.yml │ │ │ │ ├── sk.yml │ │ │ │ ├── so.yml │ │ │ │ ├── sr.yml │ │ │ │ ├── sv.yml │ │ │ │ ├── sw.yml │ │ │ │ ├── ta.yml │ │ │ │ ├── te.yml │ │ │ │ ├── tg.yml │ │ │ │ ├── th.yml │ │ │ │ ├── tl.yml │ │ │ │ ├── tr.yml │ │ │ │ ├── uk.yml │ │ │ │ ├── ur.yml │ │ │ │ ├── uz.yml │ │ │ │ ├── vi.yml │ │ │ │ ├── yo.yml │ │ │ │ ├── zh-CN.yml │ │ │ │ ├── zh-TW.yml │ │ │ │ └── zu.yml │ │ │ ├── index.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── state.svelte.ts │ │ ├── media-popup/ │ │ │ ├── app.svelte │ │ │ ├── components/ │ │ │ │ ├── DeviceView.svelte │ │ │ │ ├── MainView.svelte │ │ │ │ ├── MediaDevice.svelte │ │ │ │ ├── MediaPlayer.svelte │ │ │ │ └── VolumeControl.svelte │ │ │ ├── i18n/ │ │ │ │ ├── index.ts │ │ │ │ └── translations/ │ │ │ │ ├── af.yml │ │ │ │ ├── am.yml │ │ │ │ ├── ar.yml │ │ │ │ ├── az.yml │ │ │ │ ├── bg.yml │ │ │ │ ├── bn.yml │ │ │ │ ├── bs.yml │ │ │ │ ├── ca.yml │ │ │ │ ├── cs.yml │ │ │ │ ├── cy.yml │ │ │ │ ├── da.yml │ │ │ │ ├── de.yml │ │ │ │ ├── el.yml │ │ │ │ ├── en.yml │ │ │ │ ├── es.yml │ │ │ │ ├── et.yml │ │ │ │ ├── eu.yml │ │ │ │ ├── fa.yml │ │ │ │ ├── fi.yml │ │ │ │ ├── fr.yml │ │ │ │ ├── gu.yml │ │ │ │ ├── he.yml │ │ │ │ ├── hi.yml │ │ │ │ ├── hr.yml │ │ │ │ ├── hu.yml │ │ │ │ ├── hy.yml │ │ │ │ ├── id.yml │ │ │ │ ├── is.yml │ │ │ │ ├── it.yml │ │ │ │ ├── ja.yml │ │ │ │ ├── ka.yml │ │ │ │ ├── km.yml │ │ │ │ ├── ko.yml │ │ │ │ ├── ku.yml │ │ │ │ ├── lb.yml │ │ │ │ ├── lo.yml │ │ │ │ ├── lt.yml │ │ │ │ ├── lv.yml │ │ │ │ ├── mk.yml │ │ │ │ ├── mn.yml │ │ │ │ ├── ms.yml │ │ │ │ ├── mt.yml │ │ │ │ ├── ne.yml │ │ │ │ ├── nl.yml │ │ │ │ ├── no.yml │ │ │ │ ├── pa.yml │ │ │ │ ├── pl.yml │ │ │ │ ├── ps.yml │ │ │ │ ├── pt-BR.yml │ │ │ │ ├── pt-PT.yml │ │ │ │ ├── ro.yml │ │ │ │ ├── ru.yml │ │ │ │ ├── si.yml │ │ │ │ ├── sk.yml │ │ │ │ ├── so.yml │ │ │ │ ├── sr.yml │ │ │ │ ├── sv.yml │ │ │ │ ├── sw.yml │ │ │ │ ├── ta.yml │ │ │ │ ├── te.yml │ │ │ │ ├── tg.yml │ │ │ │ ├── th.yml │ │ │ │ ├── tl.yml │ │ │ │ ├── tr.yml │ │ │ │ ├── uk.yml │ │ │ │ ├── ur.yml │ │ │ │ ├── uz.yml │ │ │ │ ├── vi.yml │ │ │ │ ├── yo.yml │ │ │ │ ├── zh-CN.yml │ │ │ │ ├── zh-TW.yml │ │ │ │ └── zu.yml │ │ │ ├── index.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── state.svelte.ts │ │ ├── network-popup/ │ │ │ ├── app.svelte │ │ │ ├── components/ │ │ │ │ └── WlanEntry.svelte │ │ │ ├── i18n/ │ │ │ │ ├── index.ts │ │ │ │ └── translations/ │ │ │ │ ├── af.yml │ │ │ │ ├── am.yml │ │ │ │ ├── ar.yml │ │ │ │ ├── az.yml │ │ │ │ ├── bg.yml │ │ │ │ ├── bn.yml │ │ │ │ ├── bs.yml │ │ │ │ ├── ca.yml │ │ │ │ ├── cs.yml │ │ │ │ ├── cy.yml │ │ │ │ ├── da.yml │ │ │ │ ├── de.yml │ │ │ │ ├── el.yml │ │ │ │ ├── en.yml │ │ │ │ ├── es.yml │ │ │ │ ├── et.yml │ │ │ │ ├── eu.yml │ │ │ │ ├── fa.yml │ │ │ │ ├── fi.yml │ │ │ │ ├── fr.yml │ │ │ │ ├── gu.yml │ │ │ │ ├── he.yml │ │ │ │ ├── hi.yml │ │ │ │ ├── hr.yml │ │ │ │ ├── hu.yml │ │ │ │ ├── hy.yml │ │ │ │ ├── id.yml │ │ │ │ ├── is.yml │ │ │ │ ├── it.yml │ │ │ │ ├── ja.yml │ │ │ │ ├── ka.yml │ │ │ │ ├── km.yml │ │ │ │ ├── ko.yml │ │ │ │ ├── ku.yml │ │ │ │ ├── lb.yml │ │ │ │ ├── lo.yml │ │ │ │ ├── lt.yml │ │ │ │ ├── lv.yml │ │ │ │ ├── mk.yml │ │ │ │ ├── mn.yml │ │ │ │ ├── ms.yml │ │ │ │ ├── mt.yml │ │ │ │ ├── ne.yml │ │ │ │ ├── nl.yml │ │ │ │ ├── no.yml │ │ │ │ ├── pa.yml │ │ │ │ ├── pl.yml │ │ │ │ ├── ps.yml │ │ │ │ ├── pt-BR.yml │ │ │ │ ├── pt-PT.yml │ │ │ │ ├── ro.yml │ │ │ │ ├── ru.yml │ │ │ │ ├── si.yml │ │ │ │ ├── sk.yml │ │ │ │ ├── so.yml │ │ │ │ ├── sr.yml │ │ │ │ ├── sv.yml │ │ │ │ ├── sw.yml │ │ │ │ ├── ta.yml │ │ │ │ ├── te.yml │ │ │ │ ├── tg.yml │ │ │ │ ├── th.yml │ │ │ │ ├── tl.yml │ │ │ │ ├── tr.yml │ │ │ │ ├── uk.yml │ │ │ │ ├── ur.yml │ │ │ │ ├── uz.yml │ │ │ │ ├── vi.yml │ │ │ │ ├── yo.yml │ │ │ │ ├── zh-CN.yml │ │ │ │ ├── zh-TW.yml │ │ │ │ └── zu.yml │ │ │ ├── index.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── state.svelte.ts │ │ ├── notifications/ │ │ │ ├── app.svelte │ │ │ ├── components/ │ │ │ │ └── Notification.svelte │ │ │ ├── i18n/ │ │ │ │ ├── index.ts │ │ │ │ └── translations/ │ │ │ │ ├── af.yml │ │ │ │ ├── am.yml │ │ │ │ ├── ar.yml │ │ │ │ ├── az.yml │ │ │ │ ├── bg.yml │ │ │ │ ├── bn.yml │ │ │ │ ├── bs.yml │ │ │ │ ├── ca.yml │ │ │ │ ├── cs.yml │ │ │ │ ├── cy.yml │ │ │ │ ├── da.yml │ │ │ │ ├── de.yml │ │ │ │ ├── el.yml │ │ │ │ ├── en.yml │ │ │ │ ├── es.yml │ │ │ │ ├── et.yml │ │ │ │ ├── eu.yml │ │ │ │ ├── fa.yml │ │ │ │ ├── fi.yml │ │ │ │ ├── fr.yml │ │ │ │ ├── gu.yml │ │ │ │ ├── he.yml │ │ │ │ ├── hi.yml │ │ │ │ ├── hr.yml │ │ │ │ ├── hu.yml │ │ │ │ ├── hy.yml │ │ │ │ ├── id.yml │ │ │ │ ├── is.yml │ │ │ │ ├── it.yml │ │ │ │ ├── ja.yml │ │ │ │ ├── ka.yml │ │ │ │ ├── km.yml │ │ │ │ ├── ko.yml │ │ │ │ ├── ku.yml │ │ │ │ ├── lb.yml │ │ │ │ ├── lo.yml │ │ │ │ ├── lt.yml │ │ │ │ ├── lv.yml │ │ │ │ ├── mk.yml │ │ │ │ ├── mn.yml │ │ │ │ ├── ms.yml │ │ │ │ ├── mt.yml │ │ │ │ ├── ne.yml │ │ │ │ ├── nl.yml │ │ │ │ ├── no.yml │ │ │ │ ├── pa.yml │ │ │ │ ├── pl.yml │ │ │ │ ├── ps.yml │ │ │ │ ├── pt-BR.yml │ │ │ │ ├── pt-PT.yml │ │ │ │ ├── ro.yml │ │ │ │ ├── ru.yml │ │ │ │ ├── si.yml │ │ │ │ ├── sk.yml │ │ │ │ ├── so.yml │ │ │ │ ├── sr.yml │ │ │ │ ├── sv.yml │ │ │ │ ├── sw.yml │ │ │ │ ├── ta.yml │ │ │ │ ├── te.yml │ │ │ │ ├── tg.yml │ │ │ │ ├── th.yml │ │ │ │ ├── tl.yml │ │ │ │ ├── tr.yml │ │ │ │ ├── uk.yml │ │ │ │ ├── ur.yml │ │ │ │ ├── uz.yml │ │ │ │ ├── vi.yml │ │ │ │ ├── yo.yml │ │ │ │ ├── zh-CN.yml │ │ │ │ ├── zh-TW.yml │ │ │ │ └── zu.yml │ │ │ ├── index.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── state.svelte.ts │ │ ├── power-menu/ │ │ │ ├── app.svelte │ │ │ ├── i18n/ │ │ │ │ ├── index.ts │ │ │ │ └── translations/ │ │ │ │ ├── af.yml │ │ │ │ ├── am.yml │ │ │ │ ├── ar.yml │ │ │ │ ├── az.yml │ │ │ │ ├── bg.yml │ │ │ │ ├── bn.yml │ │ │ │ ├── bs.yml │ │ │ │ ├── ca.yml │ │ │ │ ├── cs.yml │ │ │ │ ├── cy.yml │ │ │ │ ├── da.yml │ │ │ │ ├── de.yml │ │ │ │ ├── el.yml │ │ │ │ ├── en.yml │ │ │ │ ├── es.yml │ │ │ │ ├── et.yml │ │ │ │ ├── eu.yml │ │ │ │ ├── fa.yml │ │ │ │ ├── fi.yml │ │ │ │ ├── fr.yml │ │ │ │ ├── gu.yml │ │ │ │ ├── he.yml │ │ │ │ ├── hi.yml │ │ │ │ ├── hr.yml │ │ │ │ ├── hu.yml │ │ │ │ ├── hy.yml │ │ │ │ ├── id.yml │ │ │ │ ├── is.yml │ │ │ │ ├── it.yml │ │ │ │ ├── ja.yml │ │ │ │ ├── ka.yml │ │ │ │ ├── km.yml │ │ │ │ ├── ko.yml │ │ │ │ ├── ku.yml │ │ │ │ ├── lb.yml │ │ │ │ ├── lo.yml │ │ │ │ ├── lt.yml │ │ │ │ ├── lv.yml │ │ │ │ ├── mk.yml │ │ │ │ ├── mn.yml │ │ │ │ ├── ms.yml │ │ │ │ ├── mt.yml │ │ │ │ ├── ne.yml │ │ │ │ ├── nl.yml │ │ │ │ ├── no.yml │ │ │ │ ├── pa.yml │ │ │ │ ├── pl.yml │ │ │ │ ├── ps.yml │ │ │ │ ├── pt-BR.yml │ │ │ │ ├── pt-PT.yml │ │ │ │ ├── ro.yml │ │ │ │ ├── ru.yml │ │ │ │ ├── si.yml │ │ │ │ ├── sk.yml │ │ │ │ ├── so.yml │ │ │ │ ├── sr.yml │ │ │ │ ├── sv.yml │ │ │ │ ├── sw.yml │ │ │ │ ├── ta.yml │ │ │ │ ├── te.yml │ │ │ │ ├── tg.yml │ │ │ │ ├── th.yml │ │ │ │ ├── tl.yml │ │ │ │ ├── tr.yml │ │ │ │ ├── uk.yml │ │ │ │ ├── ur.yml │ │ │ │ ├── uz.yml │ │ │ │ ├── vi.yml │ │ │ │ ├── yo.yml │ │ │ │ ├── zh-CN.yml │ │ │ │ ├── zh-TW.yml │ │ │ │ └── zu.yml │ │ │ ├── index.ts │ │ │ ├── options.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── state.svelte.ts │ │ ├── quick-settings/ │ │ │ ├── app.svelte │ │ │ ├── components/ │ │ │ │ ├── BrightnessControl.svelte │ │ │ │ ├── MediaDevices.svelte │ │ │ │ └── RadioButtons.svelte │ │ │ ├── index.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── state.svelte.ts │ │ ├── system-tray/ │ │ │ ├── app.svelte │ │ │ ├── index.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── state.svelte.ts │ │ ├── task-switcher/ │ │ │ ├── App.svelte │ │ │ ├── components/ │ │ │ │ └── TaskItem.svelte │ │ │ ├── index.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── state.svelte.ts │ │ ├── user-menu/ │ │ │ ├── app.svelte │ │ │ ├── components/ │ │ │ │ ├── EmptyList.svelte │ │ │ │ ├── FilePreview.svelte │ │ │ │ ├── UserFolder.svelte │ │ │ │ └── UserProfile.svelte │ │ │ ├── i18n/ │ │ │ │ ├── index.ts │ │ │ │ └── translations/ │ │ │ │ ├── af.yml │ │ │ │ ├── am.yml │ │ │ │ ├── ar.yml │ │ │ │ ├── az.yml │ │ │ │ ├── bg.yml │ │ │ │ ├── bn.yml │ │ │ │ ├── bs.yml │ │ │ │ ├── ca.yml │ │ │ │ ├── cs.yml │ │ │ │ ├── cy.yml │ │ │ │ ├── da.yml │ │ │ │ ├── de.yml │ │ │ │ ├── el.yml │ │ │ │ ├── en.yml │ │ │ │ ├── es.yml │ │ │ │ ├── et.yml │ │ │ │ ├── eu.yml │ │ │ │ ├── fa.yml │ │ │ │ ├── fi.yml │ │ │ │ ├── fr.yml │ │ │ │ ├── gu.yml │ │ │ │ ├── he.yml │ │ │ │ ├── hi.yml │ │ │ │ ├── hr.yml │ │ │ │ ├── hu.yml │ │ │ │ ├── hy.yml │ │ │ │ ├── id.yml │ │ │ │ ├── is.yml │ │ │ │ ├── it.yml │ │ │ │ ├── ja.yml │ │ │ │ ├── ka.yml │ │ │ │ ├── km.yml │ │ │ │ ├── ko.yml │ │ │ │ ├── ku.yml │ │ │ │ ├── lb.yml │ │ │ │ ├── lo.yml │ │ │ │ ├── lt.yml │ │ │ │ ├── lv.yml │ │ │ │ ├── mk.yml │ │ │ │ ├── mn.yml │ │ │ │ ├── ms.yml │ │ │ │ ├── mt.yml │ │ │ │ ├── ne.yml │ │ │ │ ├── nl.yml │ │ │ │ ├── no.yml │ │ │ │ ├── pa.yml │ │ │ │ ├── pl.yml │ │ │ │ ├── ps.yml │ │ │ │ ├── pt-BR.yml │ │ │ │ ├── pt-PT.yml │ │ │ │ ├── ro.yml │ │ │ │ ├── ru.yml │ │ │ │ ├── si.yml │ │ │ │ ├── sk.yml │ │ │ │ ├── so.yml │ │ │ │ ├── sr.yml │ │ │ │ ├── sv.yml │ │ │ │ ├── sw.yml │ │ │ │ ├── ta.yml │ │ │ │ ├── te.yml │ │ │ │ ├── tg.yml │ │ │ │ ├── th.yml │ │ │ │ ├── tl.yml │ │ │ │ ├── tr.yml │ │ │ │ ├── uk.yml │ │ │ │ ├── ur.yml │ │ │ │ ├── uz.yml │ │ │ │ ├── vi.yml │ │ │ │ ├── yo.yml │ │ │ │ ├── zh-CN.yml │ │ │ │ ├── zh-TW.yml │ │ │ │ └── zu.yml │ │ │ ├── index.ts │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── state/ │ │ │ ├── knownFolders.svelte.ts │ │ │ └── mod.svelte.ts │ │ ├── wallpaper_manager/ │ │ │ ├── app.svelte │ │ │ ├── i18n/ │ │ │ │ ├── index.ts │ │ │ │ └── translations/ │ │ │ │ ├── af.yml │ │ │ │ ├── am.yml │ │ │ │ ├── ar.yml │ │ │ │ ├── az.yml │ │ │ │ ├── bg.yml │ │ │ │ ├── bn.yml │ │ │ │ ├── bs.yml │ │ │ │ ├── ca.yml │ │ │ │ ├── cs.yml │ │ │ │ ├── cy.yml │ │ │ │ ├── da.yml │ │ │ │ ├── de.yml │ │ │ │ ├── el.yml │ │ │ │ ├── en.yml │ │ │ │ ├── es.yml │ │ │ │ ├── et.yml │ │ │ │ ├── eu.yml │ │ │ │ ├── fa.yml │ │ │ │ ├── fi.yml │ │ │ │ ├── fr.yml │ │ │ │ ├── gu.yml │ │ │ │ ├── he.yml │ │ │ │ ├── hi.yml │ │ │ │ ├── hr.yml │ │ │ │ ├── hu.yml │ │ │ │ ├── hy.yml │ │ │ │ ├── id.yml │ │ │ │ ├── is.yml │ │ │ │ ├── it.yml │ │ │ │ ├── ja.yml │ │ │ │ ├── ka.yml │ │ │ │ ├── km.yml │ │ │ │ ├── ko.yml │ │ │ │ ├── ku.yml │ │ │ │ ├── lb.yml │ │ │ │ ├── lo.yml │ │ │ │ ├── lt.yml │ │ │ │ ├── lv.yml │ │ │ │ ├── mk.yml │ │ │ │ ├── mn.yml │ │ │ │ ├── ms.yml │ │ │ │ ├── mt.yml │ │ │ │ ├── ne.yml │ │ │ │ ├── nl.yml │ │ │ │ ├── no.yml │ │ │ │ ├── pa.yml │ │ │ │ ├── pl.yml │ │ │ │ ├── ps.yml │ │ │ │ ├── pt-BR.yml │ │ │ │ ├── pt-PT.yml │ │ │ │ ├── ro.yml │ │ │ │ ├── ru.yml │ │ │ │ ├── si.yml │ │ │ │ ├── sk.yml │ │ │ │ ├── so.yml │ │ │ │ ├── sr.yml │ │ │ │ ├── sv.yml │ │ │ │ ├── sw.yml │ │ │ │ ├── ta.yml │ │ │ │ ├── te.yml │ │ │ │ ├── tg.yml │ │ │ │ ├── th.yml │ │ │ │ ├── tl.yml │ │ │ │ ├── tr.yml │ │ │ │ ├── uk.yml │ │ │ │ ├── ur.yml │ │ │ │ ├── uz.yml │ │ │ │ ├── vi.yml │ │ │ │ ├── yo.yml │ │ │ │ ├── zh-CN.yml │ │ │ │ ├── zh-TW.yml │ │ │ │ └── zu.yml │ │ │ ├── index.ts │ │ │ ├── modules/ │ │ │ │ └── Monitor/ │ │ │ │ ├── Monitor.svelte │ │ │ │ └── infra.svelte │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ └── state.svelte.ts │ │ ├── window_manager/ │ │ │ ├── App.svelte │ │ │ ├── index.ts │ │ │ ├── layout/ │ │ │ │ ├── application.ts │ │ │ │ ├── domain.ts │ │ │ │ └── infra/ │ │ │ │ ├── Container.svelte │ │ │ │ ├── Layout.svelte │ │ │ │ ├── containers/ │ │ │ │ │ ├── Leaf.svelte │ │ │ │ │ ├── Reserved.svelte │ │ │ │ │ └── Stack.svelte │ │ │ │ └── index.css │ │ │ ├── public/ │ │ │ │ └── index.html │ │ │ ├── state.svelte.ts │ │ │ ├── styles/ │ │ │ │ └── global.css │ │ │ └── utils.ts │ │ └── workspaces-viewer/ │ │ ├── app/ │ │ │ ├── Monitor.svelte │ │ │ ├── Window.svelte │ │ │ └── Workspace.svelte │ │ ├── app.svelte │ │ ├── index.ts │ │ ├── public/ │ │ │ └── index.html │ │ └── state.svelte.ts │ └── vanilla/ │ ├── entry-point/ │ │ ├── ConsoleWrapper.ts │ │ ├── _ConsoleWrapper.ts │ │ ├── _tauri.ts │ │ ├── index.ts │ │ └── setup.ts │ ├── integrity/ │ │ ├── index.ts │ │ └── public/ │ │ └── index.html │ └── third_party/ │ ├── index.ts │ ├── public/ │ │ └── index.html │ └── reset.css └── tsconfig.json