lolcommits
parent
582a1120b1
commit
14364c5a7d
3
Brewfile
3
Brewfile
|
@ -30,6 +30,7 @@ brew "gnupg"
|
|||
brew "go"
|
||||
brew "htop"
|
||||
brew "hugo"
|
||||
brew "imagemagick"
|
||||
brew "lychee"
|
||||
brew "neovim"
|
||||
brew "onefetch"
|
||||
|
@ -40,6 +41,7 @@ brew "poetry"
|
|||
brew "poppler"
|
||||
brew "pyright"
|
||||
brew "r"
|
||||
brew "rbenv"
|
||||
brew "restic"
|
||||
brew "ripgrep"
|
||||
brew "rsync"
|
||||
|
@ -48,6 +50,7 @@ brew "rustup-init"
|
|||
brew "shellcheck"
|
||||
brew "stow"
|
||||
brew "tmux"
|
||||
brew "wakatime-cli"
|
||||
brew "yt-dlp"
|
||||
brew "zoxide"
|
||||
brew "zsh"
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
COMMIT_INFO=$(git log -1 HEAD --format=reference)
|
||||
notify-send 'Git commit: ' "$COMMIT_INFO" -u low
|
||||
|
||||
if type "notify-send" > /dev/null; then
|
||||
notify-send 'Git commit: ' "$COMMIT_INFO" -u low
|
||||
elif type "osascript" > /dev/null; then
|
||||
osascript -e "display notification "$COMMIT_INFO" with title \"Git commit\""
|
||||
fi
|
||||
|
|
|
@ -33,7 +33,9 @@ fi
|
|||
export CALIBRE_USE_SYSTEM_THEME=0
|
||||
export CALIBRE_USE_DARK_PALETTE=1
|
||||
|
||||
# macOS: homebrew
|
||||
# macOS
|
||||
[ -f /opt/homebrew/bin/brew ] && eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||
eval "$(rbenv init - zsh)"
|
||||
export LOLCOMMITS_DELAY=2
|
||||
|
||||
export PATH
|
||||
|
|
Loading…
Reference in New Issue