Skip to content

Commit

Permalink
Merge pull request #92 from Avivbens/support-smartmontools-macos
Browse files Browse the repository at this point in the history
fix(apps): support `smartmontools` for MacOS
  • Loading branch information
Avivbens authored May 10, 2024
2 parents 45a105c + 65cb1a6 commit 3239d6c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/commands/install/config/apps-groups/mac.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { IAppSetup } from '@models/app-setup.model'
import { BREW_INSTALL } from '../common-commands'

export const MACOS: Readonly<IAppSetup[]> = [
{
Expand All @@ -13,6 +14,12 @@ export const MACOS: Readonly<IAppSetup[]> = [
`sudo /bin/bash -c "echo 'auth sufficient pam_tid.so' >> /etc/pam.d/sudo_local"`,
],
},
{
name: 'smartmontools',
description: 'Monitor your hard drive health',
group: 'MacOS',
commands: () => [BREW_INSTALL('smartmontools')],
},
{
name: 'Update MacOS version',
group: 'MacOS',
Expand Down
2 changes: 1 addition & 1 deletion zsh/extends/.zshrc.extends.git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source "$HOME/shell-config/zsh/extends/.zshrc.extends.vscode.sh"

alias gl="git log"
alias gd="git diff"
alias gs="git status"
alias gs="git status --ahead-behind"
alias ga="git add ."
alias gc="git commit -m"
alias gcm="git commit --no-edit"
Expand Down

0 comments on commit 3239d6c

Please sign in to comment.