Update scripts
This commit is contained in:
parent
66f5ecb54e
commit
215f8d4107
|
@ -2,3 +2,4 @@
|
|||
|
||||
sleep 3
|
||||
/Applications/Alacritty.app/Contents/MacOS/alacritty -t "scratchpad" &
|
||||
#/opt/homebrew/bin/kitty -T "scratchpad" &
|
||||
|
|
|
@ -3,3 +3,4 @@
|
|||
TITLE=mylauncher
|
||||
|
||||
alacritty -t "${TITLE}" --config-file=$HOME/.config/alacritty/alacritty-launcher.toml --working-directory "$(pwd)" -e "$1"
|
||||
#kitty -T "${TITLE}" -d "$(pwd)" -e "$1"
|
||||
|
|
|
@ -1,4 +1,21 @@
|
|||
#!/bin/sh
|
||||
|
||||
if ! plutil -lint /Library/Preferences/com.apple.TimeMachine.plist > /dev/null ; then
|
||||
echo "This script requires your terminal app to have Full Disk Access."
|
||||
echo "Add this terminal to the Full Disk Access list or use Apple Terminal."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
BREW_IGNORE_LIST=$(cat "$XDG_CACHE_HOME"/brew_ignore | tr '\n' '|' | sed 's/.$//' | sed 's/|/\\|/g')
|
||||
|
||||
if [ "$1" = "--dry-run" ]; then
|
||||
if [ "$2" = "--all" ]; then
|
||||
brew upgrade --dry-run --cask --greedy --force
|
||||
# brew outdated --cask --greedy --verbose
|
||||
else
|
||||
brew upgrade --dry-run --cask --greedy --force $(brew list --cask | grep --invert-match --regexp $BREW_IGNORE_LIST)
|
||||
fi
|
||||
exit 0
|
||||
fi
|
||||
|
||||
brew upgrade --cask --greedy --force $(brew list --cask | grep --invert-match --regexp $BREW_IGNORE_LIST)
|
||||
|
|
Loading…
Reference in New Issue