gitextract_8_7cfln5/ ├── .clang-format ├── .clang-tidy ├── .dockerignore ├── .editorconfig ├── .envrc ├── .git-blame-ignore-revs ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ └── config.yml │ ├── dependabot.yml │ ├── instructions/ │ │ ├── cmake-review.instructions.md │ │ ├── cpp-review.instructions.md │ │ └── workflow-review.instructions.md │ ├── labeler.yml │ ├── pull_request_template.md │ ├── release.yml │ ├── scripts/ │ │ ├── docker-build.bash │ │ └── setup-sccache.sh │ └── workflows/ │ ├── build-and-test-linux.yaml │ ├── build-and-test-macos.yaml │ ├── codeql.yml │ ├── docker.yaml │ ├── labeler.yml │ ├── nix.yaml │ ├── publish-appimage.yml │ ├── stale.yml │ └── web.yml ├── .gitignore ├── .prettierrc.cjs ├── .vscode/ │ └── extensions.json ├── 3rdparty/ │ ├── CMakeLists.txt │ ├── Vc/ │ │ ├── .clang-format │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Vc/ │ │ │ ├── Allocator │ │ │ ├── IO │ │ │ ├── Memory │ │ │ ├── SimdArray │ │ │ ├── Utils │ │ │ ├── Vc │ │ │ ├── algorithm │ │ │ ├── array │ │ │ ├── avx/ │ │ │ │ ├── casts.h │ │ │ │ ├── const.h │ │ │ │ ├── const_data.h │ │ │ │ ├── debug.h │ │ │ │ ├── deinterleave.tcc │ │ │ │ ├── detail.h │ │ │ │ ├── helperimpl.h │ │ │ │ ├── intrinsics.h │ │ │ │ ├── limits.h │ │ │ │ ├── macros.h │ │ │ │ ├── mask.h │ │ │ │ ├── mask.tcc │ │ │ │ ├── math.h │ │ │ │ ├── shuffle.h │ │ │ │ ├── simd_cast.h │ │ │ │ ├── simd_cast_caller.tcc │ │ │ │ ├── types.h │ │ │ │ ├── vector.h │ │ │ │ ├── vector.tcc │ │ │ │ └── vectorhelper.h │ │ │ ├── common/ │ │ │ │ ├── algorithms.h │ │ │ │ ├── aliasingentryhelper.h │ │ │ │ ├── alignedbase.h │ │ │ │ ├── bitscanintrinsics.h │ │ │ │ ├── const.h │ │ │ │ ├── data.h │ │ │ │ ├── deinterleave.h │ │ │ │ ├── detail.h │ │ │ │ ├── elementreference.h │ │ │ │ ├── exponential.h │ │ │ │ ├── fix_clang_emmintrin.h │ │ │ │ ├── gatherimplementation.h │ │ │ │ ├── gatherinterface.h │ │ │ │ ├── gatherinterface_deprecated.h │ │ │ │ ├── generalinterface.h │ │ │ │ ├── iif.h │ │ │ │ ├── indexsequence.h │ │ │ │ ├── interleave.h │ │ │ │ ├── interleavedmemory.h │ │ │ │ ├── iterators.h │ │ │ │ ├── loadinterface.h │ │ │ │ ├── loadstoreflags.h │ │ │ │ ├── logarithm.h │ │ │ │ ├── macros.h │ │ │ │ ├── makeContainer.h │ │ │ │ ├── make_unique.h │ │ │ │ ├── malloc.h │ │ │ │ ├── mask.h │ │ │ │ ├── maskbool.h │ │ │ │ ├── math.h │ │ │ │ ├── memory.h │ │ │ │ ├── memorybase.h │ │ │ │ ├── memoryfwd.h │ │ │ │ ├── operators.h │ │ │ │ ├── permutation.h │ │ │ │ ├── scatterimplementation.h │ │ │ │ ├── scatterinterface.h │ │ │ │ ├── scatterinterface_deprecated.h │ │ │ │ ├── set.h │ │ │ │ ├── simd_cast.h │ │ │ │ ├── simd_cast_caller.tcc │ │ │ │ ├── simdarray.h │ │ │ │ ├── simdarrayfwd.h │ │ │ │ ├── simdarrayhelper.h │ │ │ │ ├── simdize.h │ │ │ │ ├── simdmaskarray.h │ │ │ │ ├── span.h │ │ │ │ ├── storage.h │ │ │ │ ├── storeinterface.h │ │ │ │ ├── subscript.h │ │ │ │ ├── support.h │ │ │ │ ├── transpose.h │ │ │ │ ├── trigonometric.h │ │ │ │ ├── types.h │ │ │ │ ├── utility.h │ │ │ │ ├── vector/ │ │ │ │ │ └── casts.h │ │ │ │ ├── vector.h │ │ │ │ ├── vectorabi.h │ │ │ │ ├── vectortraits.h │ │ │ │ ├── vectortuple.h │ │ │ │ ├── where.h │ │ │ │ ├── writemaskedvector.h │ │ │ │ └── x86_prefetches.h │ │ │ ├── cpuid.h │ │ │ ├── fwddecl.h │ │ │ ├── global.h │ │ │ ├── iterators │ │ │ ├── limits │ │ │ ├── scalar/ │ │ │ │ ├── detail.h │ │ │ │ ├── helperimpl.h │ │ │ │ ├── limits.h │ │ │ │ ├── macros.h │ │ │ │ ├── mask.h │ │ │ │ ├── math.h │ │ │ │ ├── operators.h │ │ │ │ ├── simd_cast.h │ │ │ │ ├── simd_cast_caller.tcc │ │ │ │ ├── type_traits.h │ │ │ │ ├── types.h │ │ │ │ ├── vector.h │ │ │ │ └── vector.tcc │ │ │ ├── simdize │ │ │ ├── span │ │ │ ├── sse/ │ │ │ │ ├── casts.h │ │ │ │ ├── const.h │ │ │ │ ├── const_data.h │ │ │ │ ├── debug.h │ │ │ │ ├── deinterleave.tcc │ │ │ │ ├── detail.h │ │ │ │ ├── helperimpl.h │ │ │ │ ├── intrinsics.h │ │ │ │ ├── limits.h │ │ │ │ ├── macros.h │ │ │ │ ├── mask.h │ │ │ │ ├── mask.tcc │ │ │ │ ├── math.h │ │ │ │ ├── prefetches.tcc │ │ │ │ ├── shuffle.h │ │ │ │ ├── simd_cast.h │ │ │ │ ├── simd_cast_caller.tcc │ │ │ │ ├── type_traits.h │ │ │ │ ├── types.h │ │ │ │ ├── vector.h │ │ │ │ ├── vector.tcc │ │ │ │ ├── vectorhelper.h │ │ │ │ └── vectorhelper.tcc │ │ │ ├── support.h │ │ │ ├── traits/ │ │ │ │ ├── decay.h │ │ │ │ ├── entry_type_of.h │ │ │ │ ├── has_addition_operator.h │ │ │ │ ├── has_contiguous_storage.h │ │ │ │ ├── has_equality_operator.h │ │ │ │ ├── has_multiply_operator.h │ │ │ │ ├── has_no_allocated_data.h │ │ │ │ ├── has_subscript_operator.h │ │ │ │ ├── is_functor_argument_immutable.h │ │ │ │ ├── is_implicit_cast_allowed.h │ │ │ │ ├── is_index_sequence.h │ │ │ │ ├── is_output_iterator.h │ │ │ │ └── type_traits.h │ │ │ ├── type_traits │ │ │ ├── vector │ │ │ ├── vector.h │ │ │ └── version.h │ │ ├── cmake/ │ │ │ ├── AddCompilerFlag.cmake │ │ │ ├── AddTargetProperty.cmake │ │ │ ├── CheckCCompilerFlag.cmake │ │ │ ├── CheckCXXCompilerFlag.cmake │ │ │ ├── FindVc.cmake │ │ │ ├── OptimizeForArchitecture.cmake │ │ │ ├── UserWarning.cmake │ │ │ ├── VcConfig.cmake.in │ │ │ ├── VcMacros.cmake │ │ │ ├── toolchain-arm-linux-gnueabi-gcc.cmake │ │ │ └── toolchain-arm-linux.cmake │ │ ├── print_target_architecture.cmake │ │ └── src/ │ │ ├── avx_sorthelper.cpp │ │ ├── const.cpp │ │ ├── cpuid.cpp │ │ ├── sse_sorthelper.cpp │ │ ├── support_dummy.cpp │ │ ├── support_x86.cpp │ │ └── trigonometric.cpp │ └── toluapp/ │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── COPYRIGHT │ ├── INSTALL │ ├── README-5.1 │ ├── README.md │ ├── SConstruct │ ├── cmake/ │ │ ├── dist.cmake │ │ └── lua.cmake │ ├── config_linux.py │ ├── config_msvc.py │ ├── config_posix.py │ ├── custom-5.1.py │ ├── debian/ │ │ ├── README.Debian │ │ ├── changelog │ │ ├── compat │ │ ├── conffiles.ex │ │ ├── control │ │ ├── copyright │ │ ├── cron.d.ex │ │ ├── dirs │ │ ├── docs │ │ ├── emacsen-install.ex │ │ ├── emacsen-remove.ex │ │ ├── emacsen-startup.ex │ │ ├── init.d.ex │ │ ├── manpage.1.ex │ │ ├── manpage.sgml.ex │ │ ├── manpage.xml.ex │ │ ├── menu.ex │ │ ├── postinst.ex │ │ ├── postrm.ex │ │ ├── preinst.ex │ │ ├── prerm.ex │ │ ├── rules │ │ ├── tolua++-default.ex │ │ ├── tolua++.doc-base.EX │ │ └── watch.ex │ ├── dist.info │ ├── doc/ │ │ ├── index.html │ │ └── tolua++.html │ ├── include/ │ │ └── tolua++.h │ ├── libtoluapp.def │ ├── src/ │ │ ├── bin/ │ │ │ ├── SCsub │ │ │ ├── lua/ │ │ │ │ ├── all.lua │ │ │ │ ├── array.lua │ │ │ │ ├── basic.lua │ │ │ │ ├── class.lua │ │ │ │ ├── clean.lua │ │ │ │ ├── code.lua │ │ │ │ ├── compat-5.1.lua │ │ │ │ ├── compat.lua │ │ │ │ ├── container.lua │ │ │ │ ├── custom.lua │ │ │ │ ├── declaration.lua │ │ │ │ ├── define.lua │ │ │ │ ├── doit.lua │ │ │ │ ├── enumerate.lua │ │ │ │ ├── feature.lua │ │ │ │ ├── function.lua │ │ │ │ ├── module.lua │ │ │ │ ├── namespace.lua │ │ │ │ ├── operator.lua │ │ │ │ ├── ordered_pairs.lua │ │ │ │ ├── package.lua │ │ │ │ ├── template_class.lua │ │ │ │ ├── typedef.lua │ │ │ │ ├── variable.lua │ │ │ │ └── verbatim.lua │ │ │ ├── tolua.c │ │ │ ├── tolua_scons.pkg │ │ │ ├── toluabind.c │ │ │ ├── toluabind.h │ │ │ ├── toluabind_default.c │ │ │ └── toluabind_default.h │ │ ├── lib/ │ │ │ ├── SCsub │ │ │ ├── tolua_event.c │ │ │ ├── tolua_event.h │ │ │ ├── tolua_is.c │ │ │ ├── tolua_map.c │ │ │ ├── tolua_push.c │ │ │ └── tolua_to.c │ │ └── tests/ │ │ ├── SCsub │ │ ├── tarray.c │ │ ├── tarray.h │ │ ├── tarray.lua │ │ ├── tarray.pkg │ │ ├── tarraybind.c │ │ ├── tclass.cpp │ │ ├── tclass.h │ │ ├── tclass.lua │ │ ├── tclass.pkg │ │ ├── tconstant.h │ │ ├── tconstant.lua │ │ ├── tconstant.pkg │ │ ├── tdirective.lua │ │ ├── tdirective.pkg │ │ ├── tdirectivebind.c │ │ ├── tdirectivelua.lua │ │ ├── tdirectivepkg.pkg │ │ ├── tfunction.h │ │ ├── tfunction.lua │ │ ├── tfunction.pkg │ │ ├── tmodule.c │ │ ├── tmodule.h │ │ ├── tmodule.lua │ │ ├── tmodule.pkg │ │ ├── tmodulebind.c │ │ ├── tnamespace.h │ │ ├── tnamespace.lua │ │ ├── tnamespace.pkg │ │ ├── tvariable.c │ │ ├── tvariable.h │ │ ├── tvariable.lua │ │ ├── tvariable.pkg │ │ └── tvariablebind.c │ └── win32/ │ └── vc7/ │ ├── toluapp.sln │ └── toluapp.vcproj ├── AGENTS.md ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── Dockerfile ├── LICENSE.BSD ├── LICENSE.md ├── README.cmake ├── README.md ├── appimage/ │ ├── build.sh │ └── pubkey.asc ├── bin/ │ ├── changelog2html.py │ ├── check-style.sh │ ├── check_docs.py │ ├── clang-tidy-diff.py │ ├── format-colors.sh │ ├── run-clang-format.py │ └── text2c.sh ├── cmake/ │ ├── CCache.cmake │ ├── Catch.cmake │ ├── CatchAddTests.cmake │ ├── CodeCoverage.cmake │ ├── Conky.cmake │ ├── ConkyBuildOptions.cmake │ ├── ConkyCPackSetup.cmake │ ├── ConkyPlatformChecks.cmake │ ├── DependentOption.cmake │ ├── FindClangFormat.cmake │ ├── FindClangTidy.cmake │ ├── FindWayland.cmake │ ├── ToLua.cmake │ ├── UninstallConky.cmake.in │ ├── build.h.in │ ├── clang-format.cmake │ ├── clang-tidy.cmake │ ├── config.h.in │ └── scripts/ │ ├── clang-format-check-changed │ └── clang-format-check-changed.py ├── data/ │ ├── CMakeLists.txt │ ├── color-names.yml │ ├── conky-dfly-smp.conf │ ├── conky.conf │ ├── conky.desktop │ └── conky_no_x11.conf ├── doc/ │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── config_settings.yaml │ ├── lua.yaml │ ├── man.md.j2 │ ├── render.py │ └── variables.yaml ├── extras/ │ ├── CMakeLists.txt │ ├── convert.lua │ ├── gedit/ │ │ └── conky.lang │ ├── git_ranked.py │ ├── nano/ │ │ └── conky.nanorc.j2 │ └── vim/ │ ├── ftdetect/ │ │ └── conkyrc.vim │ └── syntax/ │ └── conkyrc.vim.j2 ├── flake.nix ├── lefthook.yml ├── lua/ │ ├── .gitignore │ ├── CMakeLists.txt │ ├── cairo.pkg │ ├── cairo_imlib2_helper.pkg │ ├── cairo_text_helper.pkg │ ├── cairo_xlib.pkg │ ├── imlib2.pkg │ ├── imlib2_old.pkg │ ├── libcairo-helper.h │ ├── libcairo.patch │ ├── libcairo_imlib2_helper.h │ ├── libcairo_text_helper.h │ ├── librsvg-helper.h │ ├── rsvg.pkg │ └── text.pkg ├── requirements-dev.txt ├── src/ │ ├── CMakeLists.txt │ ├── build.h.in │ ├── c++wrap.cc │ ├── c++wrap.hh │ ├── common.cc │ ├── common.h │ ├── conky-imlib2.cc │ ├── conky-imlib2.h │ ├── conky.cc │ ├── conky.h │ ├── content/ │ │ ├── algebra.cc │ │ ├── algebra.h │ │ ├── colour-names-stub.hh │ │ ├── colours.cc │ │ ├── colours.hh │ │ ├── combine.cc │ │ ├── combine.h │ │ ├── gradient.cc │ │ ├── gradient.hh │ │ ├── scroll.cc │ │ ├── scroll.h │ │ ├── specials.cc │ │ ├── specials.h │ │ ├── temphelper.cc │ │ ├── temphelper.h │ │ ├── template.cc │ │ ├── template.h │ │ ├── text_object.cc │ │ └── text_object.h │ ├── core.cc │ ├── core.h │ ├── data/ │ │ ├── audio/ │ │ │ ├── audacious.cc │ │ │ ├── audacious.h │ │ │ ├── cmus.cc │ │ │ ├── cmus.h │ │ │ ├── libmpdclient.cc │ │ │ ├── libmpdclient.h │ │ │ ├── mixer.cc │ │ │ ├── mixer.h │ │ │ ├── moc.cc │ │ │ ├── moc.h │ │ │ ├── mpd.cc │ │ │ ├── mpd.h │ │ │ ├── pulseaudio.cc │ │ │ ├── pulseaudio.h │ │ │ ├── xmms2.cc │ │ │ └── xmms2.h │ │ ├── data-source.cc │ │ ├── data-source.hh │ │ ├── entropy.cc │ │ ├── entropy.h │ │ ├── exec.cc │ │ ├── exec.h │ │ ├── fs.cc │ │ ├── fs.h │ │ ├── hardware/ │ │ │ ├── apcupsd.cc │ │ │ ├── apcupsd.h │ │ │ ├── bsdapm.cc │ │ │ ├── bsdapm.h │ │ │ ├── cpu.cc │ │ │ ├── cpu.h │ │ │ ├── diskio.cc │ │ │ ├── diskio.h │ │ │ ├── hddtemp.cc │ │ │ ├── hddtemp.h │ │ │ ├── i8k.cc │ │ │ ├── i8k.h │ │ │ ├── ibm.cc │ │ │ ├── ibm.h │ │ │ ├── intel_backlight.cc │ │ │ ├── intel_backlight.h │ │ │ ├── nvidia.cc │ │ │ ├── nvidia.h │ │ │ ├── smapi.cc │ │ │ ├── smapi.h │ │ │ ├── sony.cc │ │ │ └── sony.h │ │ ├── ical.cc │ │ ├── ical.h │ │ ├── iconv_tools.cc │ │ ├── iconv_tools.h │ │ ├── misc.cc │ │ ├── misc.h │ │ ├── mysql.cc │ │ ├── mysql.h │ │ ├── network/ │ │ │ ├── ccurl_thread.cc │ │ │ ├── ccurl_thread.h │ │ │ ├── irc.cc │ │ │ ├── irc.h │ │ │ ├── libtcp-portmon.cc │ │ │ ├── libtcp-portmon.h │ │ │ ├── mail.cc │ │ │ ├── mail.h │ │ │ ├── mboxscan.cc │ │ │ ├── mboxscan.h │ │ │ ├── net_stat.cc │ │ │ ├── net_stat.h │ │ │ ├── prss.cc │ │ │ ├── prss.h │ │ │ ├── read_tcpip.cc │ │ │ ├── read_tcpip.h │ │ │ ├── rss.cc │ │ │ ├── rss.h │ │ │ ├── tcp-portmon.cc │ │ │ └── tcp-portmon.h │ │ ├── os/ │ │ │ ├── bsdcommon.cc │ │ │ ├── bsdcommon.h │ │ │ ├── darwin.h │ │ │ ├── darwin.mm │ │ │ ├── darwin_sip.h │ │ │ ├── darwin_top_helpers.cc │ │ │ ├── darwin_top_helpers.h │ │ │ ├── dragonfly.cc │ │ │ ├── dragonfly.h │ │ │ ├── freebsd.cc │ │ │ ├── freebsd.h │ │ │ ├── haiku.cc │ │ │ ├── haiku.h │ │ │ ├── journal.cc │ │ │ ├── journal.h │ │ │ ├── linux.cc │ │ │ ├── linux.h │ │ │ ├── netbsd.cc │ │ │ ├── netbsd.h │ │ │ ├── openbsd.cc │ │ │ ├── openbsd.h │ │ │ ├── solaris.cc │ │ │ └── solaris.h │ │ ├── proc.cc │ │ ├── proc.h │ │ ├── tailhead.cc │ │ ├── tailhead.h │ │ ├── timeinfo.cc │ │ ├── timeinfo.h │ │ ├── top.cc │ │ ├── top.h │ │ ├── user.cc │ │ ├── user.h │ │ ├── users.cc │ │ └── users.h │ ├── geometry.h │ ├── i18n.h │ ├── logging.h │ ├── lua/ │ │ ├── colour-settings.cc │ │ ├── colour-settings.hh │ │ ├── fonts.cc │ │ ├── fonts.h │ │ ├── llua.cc │ │ ├── llua.h │ │ ├── lua-config.cc │ │ ├── lua-config.hh │ │ ├── luamm.cc │ │ ├── luamm.hh │ │ ├── setting.cc │ │ ├── setting.hh │ │ ├── x11-settings.cc │ │ └── x11-settings.h │ ├── macros.h │ ├── main.cc │ ├── mouse-events.cc │ ├── mouse-events.h │ ├── output/ │ │ ├── display-console.cc │ │ ├── display-console.hh │ │ ├── display-file.cc │ │ ├── display-file.hh │ │ ├── display-http.cc │ │ ├── display-http.hh │ │ ├── display-ncurses.cc │ │ ├── display-ncurses.hh │ │ ├── display-output.cc │ │ ├── display-output.hh │ │ ├── display-wayland.cc │ │ ├── display-wayland.hh │ │ ├── display-x11.cc │ │ ├── display-x11.hh │ │ ├── gui.cc │ │ ├── gui.h │ │ ├── nc.cc │ │ ├── nc.h │ │ ├── wl.cc │ │ ├── wl.h │ │ ├── x11-color.cc │ │ ├── x11.cc │ │ └── x11.h │ ├── prioqueue.cc │ ├── prioqueue.h │ ├── semaphore.hh │ ├── update-cb.cc │ ├── update-cb.hh │ └── wl_protocols/ │ └── wlr-layer-shell-unstable-v1.xml ├── tests/ │ ├── CMakeLists.txt │ ├── catch2/ │ │ ├── catch.hpp │ │ ├── catch_amalgamated.cpp │ │ └── catch_amalgamated.hpp │ ├── dockerfiles/ │ │ ├── Dockerfile.alpine-base │ │ ├── Dockerfile.alpine-clang │ │ ├── Dockerfile.alpine-gcc │ │ ├── Dockerfile.archlinux-base │ │ ├── Dockerfile.archlinux-clang │ │ ├── Dockerfile.archlinux-gcc │ │ ├── Dockerfile.fedora-31-base │ │ ├── Dockerfile.fedora-31-clang-8 │ │ ├── Dockerfile.fedora-32-base │ │ ├── Dockerfile.fedora-32-clang-10 │ │ ├── Dockerfile.fedora-33-base │ │ ├── Dockerfile.fedora-33-clang-11 │ │ ├── Dockerfile.ubuntu-base │ │ ├── Dockerfile.ubuntu-clang-10 │ │ ├── Dockerfile.ubuntu-clang-11 │ │ ├── Dockerfile.ubuntu-clang-9 │ │ ├── Dockerfile.ubuntu-gcc-10 │ │ ├── Dockerfile.ubuntu-gcc-7 │ │ ├── Dockerfile.ubuntu-gcc-8 │ │ └── Dockerfile.ubuntu-gcc-9 │ ├── llvm-gcov.sh │ ├── test-algebra.cc │ ├── test-colours.cc │ ├── test-common.cc │ ├── test-conky.cc │ ├── test-core.cc │ ├── test-darwin-top.cc │ ├── test-darwin.cc │ ├── test-diskio.cc │ ├── test-fs.cc │ ├── test-gradient.cc │ ├── test-graph.cc │ ├── test-linux-proc.cc │ ├── test-linux.cc │ └── test-security.cc └── web/ ├── .gitignore ├── components/ │ ├── CopyleftIcon.tsx │ ├── Docs.tsx │ ├── Doggy.tsx │ ├── Footer.tsx │ ├── Header.tsx │ ├── Layout.tsx │ ├── SEO.tsx │ ├── Search.tsx │ └── ThemeSwitcher.tsx ├── cypress/ │ └── e2e/ │ └── basic.cy.js ├── cypress.config.js ├── documents/ │ ├── about.mdx │ ├── compiling.mdx │ ├── contributing.mdx │ ├── docker.mdx │ └── syntax-highlighting.mdx ├── eslint.config.mjs ├── netlify.toml ├── next-env.d.ts ├── next.config.mjs ├── package.json ├── pages/ │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── config_settings.tsx │ ├── documents/ │ │ └── [slug].tsx │ ├── index.tsx │ ├── lua.tsx │ └── variables.tsx ├── postcss.config.js ├── scripts/ │ └── write-search-index.ts ├── styles/ │ └── globals.css ├── tailwind.config.js ├── tsconfig.json └── utils/ ├── build-meta.ts ├── doc-utils.ts ├── mdx-utils.ts ├── search-serde.ts ├── search.ts └── tailwind-preset.js