gitextract_dbo6fjze/ ├── .all-contributorsrc ├── .commitlintrc.yml ├── .config/ │ └── configuration.winget ├── .devcontainer/ │ ├── Dockerfile │ ├── Microsoft.PowerShell_profile.ps1 │ ├── config.fish │ └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.yml │ │ ├── config.yml │ │ ├── docs.yml │ │ ├── enhancement.yml │ │ └── feat.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── agents/ │ │ └── architecture.md │ ├── copilot-instructions.md │ ├── dependabot.yml │ ├── holopin.yml │ ├── stale.yml │ └── workflows/ │ ├── ai-changelog.yml │ ├── android.yml │ ├── bluesky.yml │ ├── build_code.yml │ ├── close_themes_pr.yml │ ├── code.yml │ ├── commits.yml │ ├── composite/ │ │ └── bootstrap-go/ │ │ └── action.yml │ ├── contributors.yml │ ├── copilot-setup-steps.yml │ ├── delete_store_submission.yml │ ├── dependabot.yml │ ├── discord.yml │ ├── docs.yml │ ├── edit_rights.yml │ ├── gomod.yml │ ├── homebrew.yml │ ├── lock.yml │ ├── markdown.yml │ ├── merge_contributions_pr.yml │ ├── microsoft_store.yml │ ├── publish-mcp.yml │ ├── release.yml │ └── vale.yml ├── .gitignore ├── .markdownlint-cli2.yaml ├── .prettierrc ├── .vale.ini ├── .versionrc.json ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── AGENTS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING ├── README.md ├── SECURITY.md ├── apm.lock.yaml ├── apm.yml ├── build/ │ ├── post.ps1 │ └── pre.ps1 ├── packages/ │ └── msi/ │ ├── README.md │ ├── appxmanifest.xml │ ├── build.ps1 │ ├── dsc/ │ │ ├── oh-my-posh.config.dsc.resource.json │ │ ├── oh-my-posh.font.dsc.resource.json │ │ └── oh-my-posh.shell.dsc.resource.json │ ├── mapping.txt │ └── oh-my-posh.wxs ├── src/ │ ├── .golangci.yml │ ├── .goreleaser.yml │ ├── build/ │ │ └── version.go │ ├── cache/ │ │ ├── cache.go │ │ ├── clear.go │ │ ├── command.go │ │ ├── duration.go │ │ ├── duration_test.go │ │ ├── file_map_windows.go │ │ ├── file_unix.go │ │ ├── file_windows.go │ │ ├── init.go │ │ ├── path.go │ │ ├── path_unix.go │ │ ├── path_windows.go │ │ ├── store.go │ │ ├── store_test.go │ │ └── template.go │ ├── cli/ │ │ ├── args.go │ │ ├── auth/ │ │ │ ├── cli.go │ │ │ ├── copilot.go │ │ │ ├── ytmda.go │ │ │ └── ytmda_test.go │ │ ├── auth.go │ │ ├── cache.go │ │ ├── claude.go │ │ ├── config.go │ │ ├── config_export.go │ │ ├── config_export_image.go │ │ ├── debug.go │ │ ├── disable.go │ │ ├── edit.go │ │ ├── enable.go │ │ ├── font/ │ │ │ ├── download.go │ │ │ ├── dsc.go │ │ │ ├── font.go │ │ │ ├── fonts.go │ │ │ ├── install.go │ │ │ ├── install_darwin.go │ │ │ ├── install_unix.go │ │ │ ├── install_windows.go │ │ │ └── tui.go │ │ ├── font.go │ │ ├── get.go │ │ ├── image/ │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── fonts.go │ │ │ ├── image.go │ │ │ └── image_test.go │ │ ├── init.go │ │ ├── notice.go │ │ ├── print.go │ │ ├── progress/ │ │ │ ├── model.go │ │ │ └── reader.go │ │ ├── root.go │ │ ├── shell.go │ │ ├── stream.go │ │ ├── stream_test.go │ │ ├── toggle.go │ │ ├── upgrade/ │ │ │ ├── config.go │ │ │ ├── install.go │ │ │ ├── install_noop.go │ │ │ ├── install_windows.go │ │ │ ├── notice.go │ │ │ ├── notice_test.go │ │ │ ├── public_key.pem │ │ │ ├── tui.go │ │ │ ├── tui_test.go │ │ │ ├── verify.go │ │ │ └── verify_test.go │ │ ├── upgrade.go │ │ └── version.go │ ├── color/ │ │ ├── colors.go │ │ ├── colors_darwin.go │ │ ├── colors_test.go │ │ ├── colors_unix.go │ │ ├── colors_windows.go │ │ ├── cycle.go │ │ ├── keywords.go │ │ ├── palette.go │ │ ├── palette_test.go │ │ └── palettes.go │ ├── config/ │ │ ├── backup.go │ │ ├── block.go │ │ ├── cache.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── default.go │ │ ├── dsc.go │ │ ├── gob.go │ │ ├── load.go │ │ ├── merge.go │ │ ├── merge_test.go │ │ ├── migrate_glyphs.go │ │ ├── migrate_glyphs_test.go │ │ ├── responsive.go │ │ ├── responsive_test.go │ │ ├── segment.go │ │ ├── segment_test.go │ │ └── segment_types.go │ ├── constants/ │ │ ├── constants_unix.go │ │ └── constants_windows.go │ ├── dsc/ │ │ ├── cli.go │ │ ├── error.go │ │ └── resource.go │ ├── generics/ │ │ ├── convert.go │ │ ├── pool.go │ │ └── slices.go │ ├── go.mod │ ├── go.sum │ ├── log/ │ │ ├── log.go │ │ └── print.go │ ├── main.go │ ├── main_test.go │ ├── maps/ │ │ ├── concurrent.go │ │ ├── config.go │ │ └── simple.go │ ├── metadata.json │ ├── prompt/ │ │ ├── debug.go │ │ ├── engine.go │ │ ├── engine_test.go │ │ ├── extra.go │ │ ├── preview.go │ │ ├── primary.go │ │ ├── rprompt.go │ │ ├── segments.go │ │ ├── segments_test.go │ │ ├── status.go │ │ ├── streaming.go │ │ ├── streaming_test.go │ │ └── tooltip.go │ ├── regex/ │ │ ├── regex.go │ │ └── regex_test.go │ ├── runtime/ │ │ ├── battery/ │ │ │ ├── battery.go │ │ │ ├── battery_darwin.go │ │ │ ├── battery_darwin_test.go │ │ │ ├── battery_linux.go │ │ │ ├── battery_netbsd.go │ │ │ ├── battery_openandfreebsd.go │ │ │ ├── battery_openandfreebsd_test.go │ │ │ ├── battery_windows.go │ │ │ ├── battery_windows_nix.go │ │ │ ├── battery_windows_nix_test.go │ │ │ ├── errors.go │ │ │ └── errors_test.go │ │ ├── cmd/ │ │ │ ├── run.go │ │ │ └── run_test.go │ │ ├── environment.go │ │ ├── http/ │ │ │ ├── connection.go │ │ │ ├── download.go │ │ │ ├── http.go │ │ │ ├── oauth.go │ │ │ ├── oauth_test.go │ │ │ ├── request.go │ │ │ └── request_test.go │ │ ├── jobs/ │ │ │ ├── jobs_common.go │ │ │ ├── jobs_other.go │ │ │ └── jobs_windows.go │ │ ├── mock/ │ │ │ └── environment.go │ │ ├── networks_windows.go │ │ ├── path/ │ │ │ ├── clean.go │ │ │ ├── home.go │ │ │ └── separator.go │ │ ├── terminal.go │ │ ├── terminal_darwin.go │ │ ├── terminal_test.go │ │ ├── terminal_unix.go │ │ ├── terminal_unix_test.go │ │ ├── terminal_windows.go │ │ ├── terminal_windows_nix.go │ │ └── win32_windows.go │ ├── segments/ │ │ ├── angular.go │ │ ├── argocd.go │ │ ├── argocd_test.go │ │ ├── aurelia.go │ │ ├── aws.go │ │ ├── aws_test.go │ │ ├── az.go │ │ ├── az_functions.go │ │ ├── az_test.go │ │ ├── azd.go │ │ ├── azd_test.go │ │ ├── base.go │ │ ├── battery.go │ │ ├── bazel.go │ │ ├── bazel_test.go │ │ ├── brewfather.go │ │ ├── brewfather_test.go │ │ ├── buf.go │ │ ├── buf_test.go │ │ ├── bun.go │ │ ├── bun_test.go │ │ ├── carbon_intensity.go │ │ ├── carbon_intensity_test.go │ │ ├── cds.go │ │ ├── cds_test.go │ │ ├── cf.go │ │ ├── cf_target.go │ │ ├── cf_target_test.go │ │ ├── cf_test.go │ │ ├── claude.go │ │ ├── claude_test.go │ │ ├── clojure.go │ │ ├── clojure_test.go │ │ ├── cmake.go │ │ ├── cmake_test.go │ │ ├── connection.go │ │ ├── connection_test.go │ │ ├── copilot.go │ │ ├── copilot_test.go │ │ ├── crystal.go │ │ ├── crystal_test.go │ │ ├── dart.go │ │ ├── dart_test.go │ │ ├── deno.go │ │ ├── deno_test.go │ │ ├── docker.go │ │ ├── docker_test.go │ │ ├── dotnet.go │ │ ├── dotnet_test.go │ │ ├── elixir.go │ │ ├── elixir_test.go │ │ ├── executiontime.go │ │ ├── executiontime_test.go │ │ ├── firebase.go │ │ ├── firebase_test.go │ │ ├── flutter.go │ │ ├── flutter_test.go │ │ ├── fortran.go │ │ ├── fortran_test.go │ │ ├── fossil.go │ │ ├── fossil_test.go │ │ ├── gcp.go │ │ ├── gcp_test.go │ │ ├── git.go │ │ ├── git_test.go │ │ ├── git_unix.go │ │ ├── git_unix_test.go │ │ ├── git_windows.go │ │ ├── git_windows_test.go │ │ ├── gitversion.go │ │ ├── gitversion_test.go │ │ ├── golang.go │ │ ├── golang_test.go │ │ ├── haskell.go │ │ ├── haskell_test.go │ │ ├── helm.go │ │ ├── helm_test.go │ │ ├── http.go │ │ ├── http_test.go │ │ ├── ipify.go │ │ ├── ipify_test.go │ │ ├── java.go │ │ ├── java_test.go │ │ ├── jujutsu.go │ │ ├── jujutsu_test.go │ │ ├── julia.go │ │ ├── julia_test.go │ │ ├── kotlin.go │ │ ├── kotlin_test.go │ │ ├── kubectl.go │ │ ├── kubectl_test.go │ │ ├── language.go │ │ ├── language_test.go │ │ ├── lastfm.go │ │ ├── lastfm_test.go │ │ ├── lua.go │ │ ├── lua_test.go │ │ ├── mercurial.go │ │ ├── mercurial_test.go │ │ ├── mojo.go │ │ ├── mojo_test.go │ │ ├── mvn.go │ │ ├── mvn_test.go │ │ ├── nba.go │ │ ├── nba_test.go │ │ ├── nbgv.go │ │ ├── nbgv_test.go │ │ ├── nightscout.go │ │ ├── nightscout_test.go │ │ ├── nim.go │ │ ├── nim_test.go │ │ ├── nixshell.go │ │ ├── nixshell_test.go │ │ ├── node.go │ │ ├── node_test.go │ │ ├── npm.go │ │ ├── npm_test.go │ │ ├── nx.go │ │ ├── ocaml.go │ │ ├── ocaml_test.go │ │ ├── options/ │ │ │ ├── map.go │ │ │ └── map_test.go │ │ ├── os.go │ │ ├── os_test.go │ │ ├── owm.go │ │ ├── owm_test.go │ │ ├── path.go │ │ ├── path_test.go │ │ ├── path_unix_test.go │ │ ├── path_windows_test.go │ │ ├── perl.go │ │ ├── perl_test.go │ │ ├── php.go │ │ ├── php_test.go │ │ ├── plastic.go │ │ ├── plastic_test.go │ │ ├── pnpm.go │ │ ├── pnpm_test.go │ │ ├── posh_git.go │ │ ├── posh_git_test.go │ │ ├── project.go │ │ ├── project_test.go │ │ ├── pulumi.go │ │ ├── pulumi_test.go │ │ ├── python.go │ │ ├── python_test.go │ │ ├── quasar.go │ │ ├── quasar_test.go │ │ ├── r.go │ │ ├── r_test.go │ │ ├── ramadan.go │ │ ├── ramadan_test.go │ │ ├── react.go │ │ ├── root.go │ │ ├── ruby.go │ │ ├── ruby_test.go │ │ ├── rust.go │ │ ├── rust_test.go │ │ ├── sapling.go │ │ ├── sapling_test.go │ │ ├── scm.go │ │ ├── scm_test.go │ │ ├── session.go │ │ ├── session_test.go │ │ ├── shell.go │ │ ├── shell_test.go │ │ ├── sitecore.go │ │ ├── sitecore_test.go │ │ ├── spotify.go │ │ ├── spotify_darwin.go │ │ ├── spotify_darwin_test.go │ │ ├── spotify_linux.go │ │ ├── spotify_linux_test.go │ │ ├── spotify_noop.go │ │ ├── spotify_test.go │ │ ├── spotify_windows.go │ │ ├── spotify_windows_test.go │ │ ├── status.go │ │ ├── status_test.go │ │ ├── strava.go │ │ ├── strava_test.go │ │ ├── svelte.go │ │ ├── svn.go │ │ ├── svn_test.go │ │ ├── swift.go │ │ ├── swift_test.go │ │ ├── sysinfo.go │ │ ├── sysinfo_test.go │ │ ├── talosctl.go │ │ ├── talosctl_test.go │ │ ├── taskwarrior.go │ │ ├── taskwarrior_test.go │ │ ├── tauri.go │ │ ├── terraform.go │ │ ├── terraform_test.go │ │ ├── text.go │ │ ├── text_test.go │ │ ├── time.go │ │ ├── time_test.go │ │ ├── todoist.go │ │ ├── todoist_test.go │ │ ├── ui5tooling.go │ │ ├── ui5tooling_test.go │ │ ├── umbraco.go │ │ ├── umbraco_test.go │ │ ├── unity.go │ │ ├── unity_test.go │ │ ├── upgrade.go │ │ ├── upgrade_test.go │ │ ├── v.go │ │ ├── v_test.go │ │ ├── vala.go │ │ ├── vala_test.go │ │ ├── wakatime.go │ │ ├── wakatime_test.go │ │ ├── winget.go │ │ ├── winget_test.go │ │ ├── winreg.go │ │ ├── winreg_test.go │ │ ├── withings.go │ │ ├── withings_test.go │ │ ├── xmake.go │ │ ├── xmake_test.go │ │ ├── yarn.go │ │ ├── yarn_test.go │ │ ├── ytm.go │ │ ├── ytm_test.go │ │ ├── zig.go │ │ └── zig_test.go │ ├── shell/ │ │ ├── bash.go │ │ ├── bash_test.go │ │ ├── cmd.go │ │ ├── cmd_test.go │ │ ├── code.go │ │ ├── constants.go │ │ ├── dsc.go │ │ ├── dsc_test.go │ │ ├── elvish.go │ │ ├── elvish_test.go │ │ ├── features.go │ │ ├── filesystem.go │ │ ├── fish.go │ │ ├── fish_test.go │ │ ├── formats.go │ │ ├── init.go │ │ ├── nu.go │ │ ├── nu_test.go │ │ ├── pwsh.go │ │ ├── pwsh_test.go │ │ ├── scripts/ │ │ │ ├── omp.bash │ │ │ ├── omp.elv │ │ │ ├── omp.fish │ │ │ ├── omp.lua │ │ │ ├── omp.nu │ │ │ ├── omp.ps1 │ │ │ ├── omp.xsh │ │ │ └── omp.zsh │ │ ├── xonsh.go │ │ ├── xonsh_test.go │ │ ├── zsh.go │ │ └── zsh_test.go │ ├── template/ │ │ ├── cache.go │ │ ├── compare.go │ │ ├── compare_test.go │ │ ├── files.go │ │ ├── files_test.go │ │ ├── func_map.go │ │ ├── init.go │ │ ├── link.go │ │ ├── link_test.go │ │ ├── list.go │ │ ├── numbers.go │ │ ├── numbers_test.go │ │ ├── pool_test.go │ │ ├── random.go │ │ ├── random_test.go │ │ ├── reason.go │ │ ├── regex.go │ │ ├── render.go │ │ ├── round.go │ │ ├── round_test.go │ │ ├── strings.go │ │ ├── strings_test.go │ │ ├── text.go │ │ └── text_test.go │ ├── terminal/ │ │ ├── iterm.go │ │ ├── writer.go │ │ ├── writer_hyperlink_test.go │ │ └── writer_test.go │ ├── test/ │ │ ├── AzureRmContext.json │ │ ├── azureProfile.json │ │ ├── empty.nuspec │ │ ├── go.work │ │ ├── invalid.nuspec │ │ ├── jandedobbeleer-palette.omp.json │ │ ├── jandedobbeleer.omp.json │ │ ├── kubectl.yml │ │ ├── nba/ │ │ │ ├── schedule.json │ │ │ └── score.json │ │ ├── oh-my-posh.psd1 │ │ ├── signing/ │ │ │ ├── checksums.txt │ │ │ ├── checksums.txt.invalid.sig │ │ │ └── checksums.txt.sig │ │ ├── terraform.tfstate │ │ ├── umbraco/ │ │ │ ├── ANonUmbracoProject.csproj │ │ │ ├── MyProject.csproj │ │ │ ├── web.config │ │ │ └── web.old.config │ │ ├── valid.nuspec │ │ └── versions.tf │ ├── text/ │ │ ├── builder.go │ │ ├── percentage.go │ │ └── percentage_test.go │ └── winres/ │ └── winres.json ├── themes/ │ ├── 1_shell.omp.json │ ├── M365Princess.omp.json │ ├── agnoster.minimal.omp.json │ ├── agnoster.omp.json │ ├── agnosterplus.omp.json │ ├── aliens.omp.json │ ├── amro.omp.json │ ├── atomic.omp.json │ ├── atomicBit.omp.json │ ├── avit.omp.json │ ├── blue-owl.omp.json │ ├── blueish.omp.json │ ├── bubbles.omp.json │ ├── bubblesextra.omp.json │ ├── bubblesline.omp.json │ ├── capr4n.omp.json │ ├── catppuccin.omp.json │ ├── catppuccin_frappe.omp.json │ ├── catppuccin_latte.omp.json │ ├── catppuccin_macchiato.omp.json │ ├── catppuccin_mocha.omp.json │ ├── cert.omp.json │ ├── chips.omp.json │ ├── cinnamon.omp.json │ ├── clean-detailed.omp.json │ ├── cloud-context.omp.json │ ├── cloud-native-azure.omp.json │ ├── cobalt2.omp.json │ ├── craver.omp.json │ ├── darkblood.omp.json │ ├── devious-diamonds.omp.yaml │ ├── di4am0nd.omp.json │ ├── dracula.omp.json │ ├── easy-term.omp.json │ ├── emodipt-extend.omp.json │ ├── emodipt.omp.json │ ├── fish.omp.json │ ├── free-ukraine.omp.json │ ├── froczh.omp.json │ ├── glowsticks.omp.yaml │ ├── gmay.omp.json │ ├── grandpa-style.omp.json │ ├── gruvbox.omp.json │ ├── half-life.omp.json │ ├── honukai.omp.json │ ├── hotstick.minimal.omp.json │ ├── hul10.omp.json │ ├── hunk.omp.json │ ├── huvix.omp.json │ ├── if_tea.omp.json │ ├── illusi0n.omp.json │ ├── iterm2.omp.json │ ├── jandedobbeleer.omp.json │ ├── jblab_2021.omp.json │ ├── jonnychipz.omp.json │ ├── json.omp.json │ ├── jtracey93.omp.json │ ├── jv_sitecorian.omp.json │ ├── kali.omp.json │ ├── kushal.omp.json │ ├── lambda.omp.json │ ├── lambdageneration.omp.json │ ├── larserikfinholt.omp.json │ ├── lightgreen.omp.json │ ├── marcduiker.omp.json │ ├── markbull.omp.json │ ├── material.omp.json │ ├── microverse-power.omp.json │ ├── mojada.omp.json │ ├── montys.omp.json │ ├── mt.omp.json │ ├── multiverse-neon.omp.json │ ├── negligible.omp.json │ ├── neko.omp.json │ ├── night-owl.omp.json │ ├── nordtron.omp.json │ ├── nu4a.omp.json │ ├── onehalf.minimal.omp.json │ ├── paradox.omp.json │ ├── pararussel.omp.json │ ├── patriksvensson.omp.json │ ├── peru.omp.json │ ├── pixelrobots.omp.json │ ├── plague.omp.json │ ├── poshmon.omp.json │ ├── powerlevel10k_classic.omp.json │ ├── powerlevel10k_lean.omp.json │ ├── powerlevel10k_modern.omp.json │ ├── powerlevel10k_rainbow.omp.json │ ├── powerline.omp.json │ ├── probua.minimal.omp.json │ ├── pure.omp.json │ ├── quick-term.omp.json │ ├── remk.omp.json │ ├── robbyrussell.omp.json │ ├── rudolfs-dark.omp.json │ ├── rudolfs-light.omp.json │ ├── schema.json │ ├── sim-web.omp.json │ ├── slim.omp.json │ ├── slimfat.omp.json │ ├── smoothie.omp.json │ ├── sonicboom_dark.omp.json │ ├── sonicboom_light.omp.json │ ├── sorin.omp.json │ ├── space.omp.json │ ├── spaceship.omp.json │ ├── star.omp.json │ ├── stelbent-compact.minimal.omp.json │ ├── stelbent.minimal.omp.json │ ├── takuya.omp.json │ ├── the-unnamed.omp.json │ ├── thecyberden.omp.json │ ├── tiwahu.omp.json │ ├── tokyo.omp.json │ ├── tokyonight_storm.omp.json │ ├── tonybaloney.omp.json │ ├── uew.omp.json │ ├── unicorn.omp.json │ ├── velvet.omp.json │ ├── wholespace.omp.json │ ├── wopian.omp.json │ ├── xtoys.omp.json │ ├── ys.omp.json │ └── zash.omp.json └── website/ ├── .gitignore ├── README.md ├── api/ │ ├── .funcignore │ ├── .gitignore │ ├── auth/ │ │ ├── function.json │ │ └── index.js │ ├── data/ │ │ ├── .gitignore │ │ └── README.md │ ├── host.json │ ├── mcp/ │ │ ├── .gitignore │ │ ├── .well-known/ │ │ │ └── mcp.json │ │ ├── README.md │ │ ├── function.json │ │ ├── index.js │ │ ├── server.json │ │ └── validate-server.js │ ├── package.json │ ├── proxies.json │ ├── refresh/ │ │ ├── function.json │ │ └── index.js │ ├── shared/ │ │ ├── strava.js │ │ ├── validator.js │ │ └── withings.js │ └── test/ │ └── validator.test.js ├── blog/ │ ├── 2022-03-20-whats-new-1.mdx │ ├── 2022-03-27-whats-new-2.md │ ├── 2022-03-28-idiots-everywhere.md │ ├── 2022-05-19-whats-new-3.md │ ├── 2024-07-22-bash-rprompt.md │ └── 2025-12-28-oh-my-posh-claude-code-integration.md ├── docs/ │ ├── advanced/ │ │ └── mcp-server.mdx │ ├── auth.mdx │ ├── configuration/ │ │ ├── block.mdx │ │ ├── colors.mdx │ │ ├── debug-prompt.mdx │ │ ├── general.mdx │ │ ├── introduction.mdx │ │ ├── line-error.mdx │ │ ├── sample.mdx │ │ ├── secondary-prompt.mdx │ │ ├── segment.mdx │ │ ├── templates.mdx │ │ ├── title.mdx │ │ ├── tooltips.mdx │ │ └── transient.mdx │ ├── contributing/ │ │ ├── git.mdx │ │ ├── plastic.mdx │ │ ├── segment.mdx │ │ └── started.mdx │ ├── contributors.md │ ├── dsc.md │ ├── experimental/ │ │ └── streaming.mdx │ ├── faq.mdx │ ├── installation/ │ │ ├── customize.mdx │ │ ├── fonts.mdx │ │ ├── homebrew.md │ │ ├── linux.mdx │ │ ├── macos.mdx │ │ ├── next.md │ │ ├── prompt.mdx │ │ ├── upgrade.mdx │ │ └── windows.mdx │ ├── migrating-module.md │ ├── segments/ │ │ ├── cli/ │ │ │ ├── angular.mdx │ │ │ ├── argocd.mdx │ │ │ ├── aurelia.mdx │ │ │ ├── bazel.mdx │ │ │ ├── buf.mdx │ │ │ ├── bun.mdx │ │ │ ├── claude.mdx │ │ │ ├── cmake.mdx │ │ │ ├── copilot.mdx │ │ │ ├── deno.mdx │ │ │ ├── docker.mdx │ │ │ ├── firebase.mdx │ │ │ ├── flutter.mdx │ │ │ ├── gitversion.mdx │ │ │ ├── helm.mdx │ │ │ ├── kubectl.mdx │ │ │ ├── mvn.mdx │ │ │ ├── nbgv.mdx │ │ │ ├── nix-shell.mdx │ │ │ ├── npm.mdx │ │ │ ├── nx.mdx │ │ │ ├── pnpm.mdx │ │ │ ├── quasar.mdx │ │ │ ├── react.mdx │ │ │ ├── svelte.mdx │ │ │ ├── talosctl.mdx │ │ │ ├── taskwarrior.mdx │ │ │ ├── tauri.mdx │ │ │ ├── terraform.mdx │ │ │ ├── ui5tooling.mdx │ │ │ ├── umbraco.mdx │ │ │ ├── unity.mdx │ │ │ ├── xmake.mdx │ │ │ └── yarn.mdx │ │ ├── cloud/ │ │ │ ├── aws.mdx │ │ │ ├── az.mdx │ │ │ ├── azd.mdx │ │ │ ├── azfunc.mdx │ │ │ ├── cds.mdx │ │ │ ├── cf.mdx │ │ │ ├── cftarget.mdx │ │ │ ├── gcp.mdx │ │ │ ├── pulumi.mdx │ │ │ └── sitecore.mdx │ │ ├── health/ │ │ │ ├── nightscout.mdx │ │ │ ├── ramadan.mdx │ │ │ ├── strava.mdx │ │ │ └── withings.mdx │ │ ├── languages/ │ │ │ ├── clojure.mdx │ │ │ ├── crystal.mdx │ │ │ ├── dart.mdx │ │ │ ├── dotnet.mdx │ │ │ ├── elixir.mdx │ │ │ ├── fortran.mdx │ │ │ ├── golang.mdx │ │ │ ├── haskell.mdx │ │ │ ├── java.mdx │ │ │ ├── julia.mdx │ │ │ ├── kotlin.mdx │ │ │ ├── lua.mdx │ │ │ ├── mojo.mdx │ │ │ ├── nim.mdx │ │ │ ├── node.mdx │ │ │ ├── ocaml.mdx │ │ │ ├── perl.mdx │ │ │ ├── php.mdx │ │ │ ├── python.mdx │ │ │ ├── r.mdx │ │ │ ├── ruby.mdx │ │ │ ├── rust.mdx │ │ │ ├── swift.mdx │ │ │ ├── v.mdx │ │ │ ├── vala.mdx │ │ │ └── zig.mdx │ │ ├── music/ │ │ │ ├── lastfm.mdx │ │ │ ├── spotify.mdx │ │ │ └── ytm.mdx │ │ ├── scm/ │ │ │ ├── fossil.mdx │ │ │ ├── git.mdx │ │ │ ├── jujutsu.mdx │ │ │ ├── mercurial.mdx │ │ │ ├── plastic.mdx │ │ │ ├── sapling.mdx │ │ │ └── svn.mdx │ │ ├── system/ │ │ │ ├── battery.mdx │ │ │ ├── connection.mdx │ │ │ ├── executiontime.mdx │ │ │ ├── os.mdx │ │ │ ├── path.mdx │ │ │ ├── project.mdx │ │ │ ├── root.mdx │ │ │ ├── session.mdx │ │ │ ├── shell.mdx │ │ │ ├── status.mdx │ │ │ ├── sysinfo.mdx │ │ │ ├── text.mdx │ │ │ ├── time.mdx │ │ │ ├── upgrade.mdx │ │ │ ├── winget.mdx │ │ │ └── winreg.mdx │ │ └── web/ │ │ ├── brewfather.mdx │ │ ├── carbonintensity.mdx │ │ ├── http.mdx │ │ ├── ipify.mdx │ │ ├── nba.mdx │ │ ├── owm.mdx │ │ ├── todoist.mdx │ │ └── wakatime.mdx │ ├── share-theme.md │ └── themes.md ├── docusaurus.config.js ├── export_themes.mjs ├── package.json ├── plugins/ │ └── appinsights/ │ ├── analytics.js │ └── index.js ├── sidebars.js ├── src/ │ ├── components/ │ │ ├── Auth.js │ │ └── Config.js │ ├── css/ │ │ ├── custom.css │ │ └── prism-rose-pine-moon.css │ └── pages/ │ ├── index.js │ ├── privacy.mdx │ └── styles.module.css ├── static/ │ ├── .nojekyll │ ├── codepoints.csv │ ├── img/ │ │ └── themes/ │ │ └── .keep │ ├── install.ps1 │ └── install.sh └── staticwebapp.config.json