Skip to content

Commit

Permalink
Incorporate 'natsumi-browser' into the Zen profile folder
Browse files Browse the repository at this point in the history
  • Loading branch information
vraravam committed Dec 20, 2024
1 parent 83e4ad9 commit e8b6e7f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ As documented in the README's [adopting](README.md#how-to-adoptcustomize-the-scr

For those who follow this repo, here's the changelog for ease of adoption:

### 1.0-23

* Incorporate the [natsumi-browser](https://github.com/greeeen-dev/natsumi-browser) into the Zen browser profile.

### 1.0-22

* *[.shellrc]* Moved functions that are only needed in the basic fresh-install script into that so as to reduce shell startup time.
Expand Down
12 changes: 12 additions & 0 deletions files/--PERSONAL_PROFILES_DIR--/.envrc
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,15 @@ replace_dir_if_exists_and_is_not_symlinked "${HOME}/Library/Thunderbird" "Thunde

# Capture KeePassXC profile folder into git-tracked location
replace_dir_if_exists_and_is_not_symlinked "${HOME}/Library/Application Support/KeePassXC" "KeePassXCProfile"

# Clone the natsumi-browser repo into the ZenProfile/Profiles/chrome folder
if is_directory "${PERSONAL_PROFILES_DIR}/ZenProfile/Profiles/"; then
mkdir -p "${PERSONAL_PROFILES_DIR}/ZenProfile/Profiles/chrome"
if is_git_repo "${PERSONAL_PROFILES_DIR}/ZenProfile/Profiles/chrome"; then
git -C "${PERSONAL_PROFILES_DIR}/ZenProfile/Profiles/chrome" pull -r
success "Successfully updated natsumi-browser into the zen profile chrome folder"
else
git -C "${PERSONAL_PROFILES_DIR}/ZenProfile/Profiles/chrome" clone "git@github.com:greeeen-dev/natsumi-browser" .
success "Successfully cloned 'natsumi-browser' into '' ${PERSONAL_PROFILES_DIR}/ZenProfile/Profiles/chrome"
fi
fi

0 comments on commit e8b6e7f

Please sign in to comment.