No description
Find a file
2023-11-25 01:44:27 -05:00
.brew_lists Update brew lists 2023-11-25 01:42:41 -05:00
.gitingnore added git features and brew auto update 2023-11-25 01:21:51 -05:00
aactivator.py added ability to indicate user 2023-11-23 16:42:35 -05:00
README.md Update README.md 2023-11-25 01:44:27 -05:00
setup_dev_env moved stow setup to .dotfile and renamed setup_config 2023-11-23 17:40:17 -05:00
tmux_sessionizer changed dir to search in 2023-11-23 16:39:46 -05:00
tmux_windownizer moved stow setup to .dotfile and renamed setup_config 2023-11-23 17:40:17 -05:00
update_brew_lists added git features and brew auto update 2023-11-25 01:21:51 -05:00

.local-bin

This repository contains a collection of binary files that I use for various purposes.

Binary Files

  • aactivator.py
  • setup_config
  • tmux_sessionizer
  • tmux_windownizer
  • update_brew_lists

Usage

These binary files serve specific functions in my development environment.

update_brew_lists

update_brew_lists is a utility script to manage and update lists of Homebrew and Homebrew Cask packages. It's particularly useful for maintaining a record of installed packages and automating the installation process on new machines.

Getting Started

  1. Clone the repository and navigate to the .local-bin directory.

    git clone https://github.com/jfraeys/.local-bin.git ~/.local/bin
    cd ~/.local/bin
    
  2. Run the update_brew_lists script without any arguments to update the Homebrew and Homebrew Cask lists.

    ./update_brew_lists
    

Additional Options

  • --install: Install Homebrew if not already installed, and install the listed packages.

    ./update_brew_lists --install
    
  • --save-brew-dir and --save-cask-dir: Save the updated lists to specific directories.

    ./update_brew_lists --save-brew-dir ~/my_custom_brew_lists --save-cask-dir ~/my_custom_cask_lists
    

Example Usage

  • Update and install packages:

    ./update_brew_lists --install
    
  • Update lists and save them to custom directories:

    ./update_brew_lists --save-brew-dir ~/my_custom_brew_lists --save-cask-dir ~/my_custom_cask_lists
    

Feel free to customize and expand this section based on the specific usage and features of update_brew_lists.