diff --git a/src/commands/install/config/apps-groups/mac.ts b/src/commands/install/config/apps-groups/mac.ts index e63328f4..d31d1932 100755 --- a/src/commands/install/config/apps-groups/mac.ts +++ b/src/commands/install/config/apps-groups/mac.ts @@ -1,4 +1,5 @@ import type { IAppSetup } from '@models/app-setup.model' +import { BREW_INSTALL } from '../common-commands' export const MACOS: Readonly = [ { @@ -13,6 +14,12 @@ export const MACOS: Readonly = [ `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', diff --git a/zsh/extends/.zshrc.extends.git.sh b/zsh/extends/.zshrc.extends.git.sh index 9fdb9eb7..79a3174d 100755 --- a/zsh/extends/.zshrc.extends.git.sh +++ b/zsh/extends/.zshrc.extends.git.sh @@ -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"