gitextract_wu3rr8nv/ ├── EXTENSIONS.md ├── README.md ├── applications/ │ ├── About.sh │ ├── Activity.sh │ ├── Basecamp.sh │ ├── Docker.sh │ ├── HEY.sh │ ├── Neovim.sh │ ├── Omakub.sh │ └── WhatsApp.sh ├── ascii.sh ├── bin/ │ ├── omakub │ └── omakub-sub/ │ ├── font-size.sh │ ├── font.sh │ ├── header.sh │ ├── install-dev-editor.sh │ ├── install.sh │ ├── manual.sh │ ├── menu.sh │ ├── migrate.sh │ ├── theme.sh │ ├── uninstall.sh │ └── update.sh ├── boot.sh ├── configs/ │ ├── alacritty/ │ │ ├── btop.toml │ │ ├── font-size.toml │ │ ├── fonts/ │ │ │ ├── CaskaydiaMono.toml │ │ │ ├── FiraMono.toml │ │ │ ├── JetBrainsMono.toml │ │ │ └── MesloLGS.toml │ │ ├── pane.toml │ │ └── shared.toml │ ├── alacritty.toml │ ├── bashrc │ ├── btop.conf │ ├── fastfetch.jsonc │ ├── inputrc │ ├── neovim/ │ │ ├── lazyvim.json │ │ ├── snacks-animated-scrolling-off.lua │ │ └── transparency.lua │ ├── typora/ │ │ ├── ia_typora.css │ │ └── ia_typora_night.css │ ├── ulauncher.desktop │ ├── ulauncher.json │ ├── vscode.json │ ├── xcompose │ └── zellij.kdl ├── defaults/ │ ├── bash/ │ │ ├── aliases │ │ ├── functions │ │ ├── init │ │ ├── inputrc │ │ ├── prompt │ │ ├── rc │ │ └── shell │ └── xcompose ├── install/ │ ├── check-version.sh │ ├── desktop/ │ │ ├── a-flatpak.sh │ │ ├── app-alacritty.sh │ │ ├── app-chrome.sh │ │ ├── app-flameshot.sh │ │ ├── app-gnome-sushi.sh │ │ ├── app-gnome-tweak-tool.sh │ │ ├── app-libreoffice.sh │ │ ├── app-localsend.sh │ │ ├── app-obsidian.sh │ │ ├── app-pinta.sh │ │ ├── app-signal.sh │ │ ├── app-typora.sh │ │ ├── app-vlc.sh │ │ ├── app-vscode.sh │ │ ├── app-wl-clipboard.sh │ │ ├── app-xournalpp.sh │ │ ├── applications.sh │ │ ├── fonts.sh │ │ ├── optional/ │ │ │ ├── app-1password.sh │ │ │ ├── app-asdcontrol.sh │ │ │ ├── app-audacity.sh │ │ │ ├── app-brave.sh │ │ │ ├── app-cursor.sh │ │ │ ├── app-discord.sh │ │ │ ├── app-doom-emacs.sh │ │ │ ├── app-dropbox.sh │ │ │ ├── app-gimp.sh │ │ │ ├── app-mainline-kernels.sh │ │ │ ├── app-minecraft.sh │ │ │ ├── app-obs-studio.sh │ │ │ ├── app-retroarch.sh │ │ │ ├── app-rubymine.sh │ │ │ ├── app-spotify.sh │ │ │ ├── app-steam.sh │ │ │ ├── app-virtualbox.sh │ │ │ ├── app-windows.sh │ │ │ ├── app-windsurf.sh │ │ │ ├── app-zed.sh │ │ │ ├── app-zoom.sh │ │ │ └── select-web-apps.sh │ │ ├── select-optional-apps.sh │ │ ├── set-alacritty-default.sh │ │ ├── set-app-grid.sh │ │ ├── set-dock.sh │ │ ├── set-framework-text-scaling.sh │ │ ├── set-gnome-extensions.sh │ │ ├── set-gnome-hotkeys.sh │ │ ├── set-gnome-settings.sh │ │ ├── set-gnome-theme.sh │ │ ├── set-xcompose.sh │ │ └── ulauncher.sh │ ├── desktop.sh │ ├── first-run-choices.sh │ ├── identification.sh │ ├── terminal/ │ │ ├── a-shell.sh │ │ ├── app-btop.sh │ │ ├── app-fastfetch.sh │ │ ├── app-github-cli.sh │ │ ├── app-lazydocker.sh │ │ ├── app-lazygit.sh │ │ ├── app-neovim.sh │ │ ├── app-zellij.sh │ │ ├── apps-terminal.sh │ │ ├── docker.sh │ │ ├── libraries.sh │ │ ├── mise.sh │ │ ├── optional/ │ │ │ ├── app-geekbench.sh │ │ │ ├── app-ollama.sh │ │ │ └── app-tailscale.sh │ │ ├── required/ │ │ │ └── app-gum.sh │ │ ├── select-dev-language.sh │ │ ├── select-dev-storage.sh │ │ └── set-git.sh │ └── terminal.sh ├── install.sh ├── migrations/ │ ├── 1718359027.sh │ ├── 1722091912.sh │ ├── 1722387070.sh │ ├── 1723756122.sh │ ├── 1724344367.sh │ ├── 1738744474.sh │ ├── 1741193162.sh │ ├── 1744854733.sh │ ├── 1745060743.sh │ ├── 1747237126.sh │ ├── 1747501295.sh │ ├── 1747736884.sh │ ├── 1747737304.sh │ ├── 1753775930.sh │ ├── 1761481687.sh │ └── 1770656330.sh ├── themes/ │ ├── catppuccin/ │ │ ├── alacritty.toml │ │ ├── btop.theme │ │ ├── gnome.sh │ │ ├── neovim.lua │ │ ├── tophat.sh │ │ ├── vscode.sh │ │ └── zellij.kdl │ ├── everforest/ │ │ ├── alacritty.toml │ │ ├── btop.theme │ │ ├── gnome.sh │ │ ├── neovim.lua │ │ ├── tophat.sh │ │ ├── vscode.sh │ │ └── zellij.kdl │ ├── gruvbox/ │ │ ├── alacritty.toml │ │ ├── btop.theme │ │ ├── gnome.sh │ │ ├── neovim.lua │ │ ├── tophat.sh │ │ ├── vscode.sh │ │ └── zellij.kdl │ ├── kanagawa/ │ │ ├── alacritty.toml │ │ ├── btop.theme │ │ ├── gnome.sh │ │ ├── neovim.lua │ │ ├── tophat.sh │ │ ├── vscode.sh │ │ └── zellij.kdl │ ├── matte-black/ │ │ ├── alacritty.toml │ │ ├── btop.theme │ │ ├── gnome.sh │ │ ├── neovim.lua │ │ ├── tophat.sh │ │ ├── vscode.sh │ │ └── zellij.kdl │ ├── nord/ │ │ ├── alacritty.toml │ │ ├── btop.theme │ │ ├── gnome.sh │ │ ├── neovim.lua │ │ ├── tophat.sh │ │ ├── vscode.sh │ │ └── zellij.kdl │ ├── osaka-jade/ │ │ ├── alacritty.toml │ │ ├── btop.theme │ │ ├── gnome.sh │ │ ├── neovim.lua │ │ ├── tophat.sh │ │ ├── vscode.sh │ │ └── zellij.kdl │ ├── ristretto/ │ │ ├── alacritty.toml │ │ ├── btop.theme │ │ ├── gnome.sh │ │ ├── neovim.lua │ │ ├── tophat.sh │ │ ├── vscode.sh │ │ └── zellij.kdl │ ├── rose-pine/ │ │ ├── alacritty.toml │ │ ├── btop.theme │ │ ├── gnome.sh │ │ ├── neovim.lua │ │ ├── tophat.sh │ │ ├── vscode.sh │ │ └── zellij.kdl │ ├── set-gnome-theme.sh │ ├── set-vscode-theme.sh │ └── tokyo-night/ │ ├── alacritty.toml │ ├── btop.theme │ ├── gnome.sh │ ├── neovim.lua │ ├── tophat.sh │ ├── vscode.sh │ └── zellij.kdl ├── uninstall/ │ ├── app-1password.sh │ ├── app-audacity.sh │ ├── app-brave.sh │ ├── app-chrome.sh │ ├── app-cursor.sh │ ├── app-discord.sh │ ├── app-doom-emacs.sh │ ├── app-fastfetch.sh │ ├── app-flameshot.sh │ ├── app-geekbench.sh │ ├── app-gimp.sh │ ├── app-github-cli.sh │ ├── app-libreoffice.sh │ ├── app-localsend.sh │ ├── app-mainline-kernels.sh │ ├── app-minecraft.sh │ ├── app-neovim.sh │ ├── app-obs-studio.sh │ ├── app-obsidian.sh │ ├── app-ollama.sh │ ├── app-pinta.sh │ ├── app-retroarch.sh │ ├── app-rubymine.sh │ ├── app-signal.sh │ ├── app-spotify.sh │ ├── app-steam.sh │ ├── app-tailscale.sh │ ├── app-typora.sh │ ├── app-virtualbox.sh │ ├── app-vlc.sh │ ├── app-vscode.sh │ ├── app-windsurf.sh │ ├── app-xournalpp.sh │ ├── app-zed.sh │ ├── app-zoom.sh │ ├── apps-web.sh │ ├── dev-language.sh │ ├── docker.sh │ └── select-web-apps.sh └── version