Skip to content

Commit

Permalink
Merge pull request #148 from entelecheia/main
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia authored Jul 17, 2024
2 parents aa9362c + 4dec85c commit 405e3fc
Show file tree
Hide file tree
Showing 5 changed files with 109 additions and 105 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<!--next-version-placeholder-->

## v0.39.2 (2024-04-09)

### Fix

* **export:** Update display setting for improved compatibility ([`daaf4af`](https://github.com/entelecheia/dotfiles/commit/daaf4af10c08917306242732c5b0bd278c7bc119))
* **chezmoi:** Update export logic for DISPLAY ([`83a220b`](https://github.com/entelecheia/dotfiles/commit/83a220b92d65adc0298ceef0621533242877a531))

## v0.39.1 (2024-04-09)

### Fix
Expand Down
4 changes: 1 addition & 3 deletions chezmoi/.chezmoidata.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DOTFILES_VERSION: 0.39.1
DOTFILES_VERSION: 0.39.2
packages:
- name: 1password-cli
apt: true
Expand Down Expand Up @@ -114,11 +114,9 @@ packages:
scope: minimal
- name: font-fira-code
brewcask: true
brewtab: homebrew/cask-fonts
scope: minimal
- name: font-fira-code-nerd-font
brewcask: true
brewtab: homebrew/cask-fonts
scope: minimal
- name: fzf
apt: true
Expand Down
24 changes: 12 additions & 12 deletions chezmoi/dot_local/bin/executable_dotfiles-install-brew-pkgs.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ for package in "${DOTFILES_PKGS_BREW[@]}"; do
done
log_info "Wanted packages: ${wanted_packages[*]}"

readonly wanted_tabs=(
homebrew/cask-fonts
)
# readonly wanted_tabs=(
# homebrew/cask-fonts
# )

# get tab list into BREW_TABS variable
BREW_TABS=$(brew tap)
# # get tab list into BREW_TABS variable
# BREW_TABS=$(brew tap)

# install tabs that are not installed
for tab in "${wanted_tabs[@]}"; do
if ! echo "${BREW_TABS}" | grep -q "^${tab}$"; then
log_task "Installing brew tab: ${tab}"
c brew tap "${tab}"
fi
done
# # install tabs that are not installed
# for tab in "${wanted_tabs[@]}"; do
# if ! echo "${BREW_TABS}" | grep -q "^${tab}$"; then
# log_task "Installing brew tab: ${tab}"
# c brew tap "${tab}"
# fi
# done

# install packages that are not installed
missing_packages=()
Expand Down
Loading

0 comments on commit 405e3fc

Please sign in to comment.