Skip to content

Commit

Permalink
remove mac
Browse files Browse the repository at this point in the history
  • Loading branch information
alanlivio committed Nov 15, 2024
1 parent f843133 commit 011056e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 24 deletions.
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,12 @@ flowchart LR
"]
win["os_win.bash"]
ubu["os_ub.bash"]
mac["os_mac.bash"]
bashrc --> |"load"| init
init --> |"load"| anyos
anyos --> |"load if type program"| program-dependent
win --> |"bash alias to each function at"| oswinps1
init --> |"load if $OSTYPE==msys* || -n $WSL_DISTRO_NAME"| win
init --> |"load if $OSTYPE==linux*"| ubu
init --> |"load if $OSTYPE==mac*"| mac
```

## Install
Expand Down Expand Up @@ -69,13 +67,6 @@ Ubuntu helpers are defined in [os_ubu.bash](os_ubu.bash). See some below.
- `gnome_dark_mode`: enable gnome dark mode.
- `gnome_nautilus_list_view`: enable nautilus list view.

### os_mac

Mac helpers are defined in [os_mac.bash](os_mac.bash). See some below.

- `mac_update`: update os and brew.
- `mac_install_brew`: install brew package manager

### os_win

Win helpers are defined in [os_win.bash](os_win.bash) and [os_win.ps1](os_win.ps1), see some below.
Expand Down
4 changes: 0 additions & 4 deletions init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ if [[ $OSTYPE == linux* ]]; then
source "$BH_DIR/os_ubu.bash"
fi

if [[ $OSTYPE == darwin* ]]; then
source "$BH_DIR/os_mac.bash"
fi

# load <program>.bash files

for file in "$BH_DIR/programs/"*.bash; do
Expand Down
11 changes: 0 additions & 11 deletions os_mac.bash

This file was deleted.

0 comments on commit 011056e

Please sign in to comment.