added add_header and wzp to pages index, changes add_yaml name in Readme

This commit is contained in:
Jeremie Fraeys 2024-05-31 14:31:36 -04:00
parent 4d8b1a1e6d
commit 59b7636dc9
2 changed files with 4 additions and 1 deletions

View file

@ -15,7 +15,7 @@ Welcome to the .local-bin repository! Find key components below to enhance your
- `-a` or `--disable-auto-update`: Disable Homebrew auto-updates. - `-a` or `--disable-auto-update`: Disable Homebrew auto-updates.
- `-n` or `--disable-notification`: Disable notifications during setup. - `-n` or `--disable-notification`: Disable notifications during setup.
- **[docker_check](docker_check):** This script automates the process of ensuring Docker is installed and running before executing Docker-related commands. If Docker is not installed, it provides an option to install it via Homebrew. - **[docker_check](docker_check):** This script automates the process of ensuring Docker is installed and running before executing Docker-related commands. If Docker is not installed, it provides an option to install it via Homebrew.
- **[yaml_header_adder.sh](yaml_header_adder.sh):** This script ensures that YAML files within a specified directory contain the necessary `---` header. If a YAML file does not have the `---` header, the script adds it. - **[add_yaml_header.sh](add_yaml_header.sh):** This script ensures that YAML files within a specified directory contain the necessary `---` header. If a YAML file does not have the `---` header, the script adds it.
- **[wzp.sh](wzp.sh):** This script automates the process of starting a new Wezterm project. It allows you to select a project from a predefined list or specify a project name as an argument. - **[wzp.sh](wzp.sh):** This script automates the process of starting a new Wezterm project. It allows you to select a project from a predefined list or specify a project name as an argument.
## Documentation ## Documentation

View file

@ -18,6 +18,8 @@ Welcome to the documentation for the `.local-bin` repository. This collection is
- `-a` or `--disable-auto-update`: Disable Homebrew auto-updates. - `-a` or `--disable-auto-update`: Disable Homebrew auto-updates.
- `-n` or `--disable-notification`: Disable notifications during setup. - `-n` or `--disable-notification`: Disable notifications during setup.
- [docker_check](docker_check/Usage.md): This script automates the process of ensuring Docker is installed and running before executing Docker-related commands. If Docker is not installed, it provides an option to install it via Homebrew. - [docker_check](docker_check/Usage.md): This script automates the process of ensuring Docker is installed and running before executing Docker-related commands. If Docker is not installed, it provides an option to install it via Homebrew.
- [add_yaml_header.sh](add_yaml_header.sh/Usage.md): This script ensures that YAML files within a specified directory contain the necessary `---` header. If a YAML file does not have the `---` header, the script adds it.
- [wzp](wzp/Usage.md): This script automates the process of starting a new Wezterm project. It allows you to select a project from a predefined list or specify a project name as an argument.
Feel free to use these scripts to simplify tasks and enhance your development workflow. Feel free to use these scripts to simplify tasks and enhance your development workflow.
@ -30,3 +32,4 @@ If you're new to .local-bin, follow these steps to get started:
3. Explore the documentation sections to learn about each script and its usage. 3. Explore the documentation sections to learn about each script and its usage.
Happy coding! Happy coding!