diff --git a/.github/README.md b/.github/README.md index 75e7b84..13bcf5c 100644 --- a/.github/README.md +++ b/.github/README.md @@ -188,21 +188,27 @@ Once the repo is cloned, you can modify whatever files you like before running t
~ -└── . - ├── bash/ # Bash (shell) config - ├── tmux/ # Tmux (multiplexer) config - ├── vim/ # Vim (text editor) config - ├── zsh/ # ZSH (shell) config - └── scripts/installs/ # Scripts for software installation - ├── Brewfile # Package installs for MacOS via Homebrew - ├── arch-pacman.sh # Package installs for Arch via Pacman - └── flatpak.sh # Package installs for Linux desktops via Flatpak - ├── .github/ # Meta files for GitHub repo - ├── lets-go.sh # One-line remote installation entry point - ├── install.sh # All-in-one install and setup script - └── symlinks.yml # List of symlink locations +└──. + ├── bash/ # Bash (shell) config + ├── tmux/ # Tmux (multiplexer) config + ├── vim/ # Vim (text editor) config + ├── zsh/ # ZSH (shell) config + ├── scripts/ # Bash scripts for automating tasks + │ ├── installs/ # Scripts for software installation + │ │ ├── Brewfile # Package installs for MacOS via Homebrew + │ │ ├── arch-pacman.sh # Package installs for Arch via Pacman + │ │ └── flatpak.sh # Package installs for Linux desktops via Flatpak + │ └── macos-setup/ # Scripts for setting up Mac OS machines + │ ├── macos-apps.sh # Sets app preferences + │ ├── macos-prefs.sh # Sets MacOS system preferences + │ └── macos-security.sh # Applies MacOS security and privacy settings + ├── .github/ # Meta files for GitHub repo + ├── lets-go.sh # One-line remote installation entry point + ├── install.sh # All-in-one install and setup script + └── symlinks.yml # List of symlink locations+ --- ### Install Script