Compare commits
No commits in common. "215f8d410734b24bf8142a122159d9cd6ab44b82" and "fbc03aaaf6dd07cf09565e2494946ccc04ccae75" have entirely different histories.
215f8d4107
...
fbc03aaaf6
|
@ -162,7 +162,6 @@ alt + shift - q : yabai --stop-service; skhd --stop-service
|
|||
#alt + shift - x : scratchpad --toggle iterm
|
||||
|
||||
alt + shift - 0x24 : /Applications/Alacritty.app/Contents/MacOS/alacritty
|
||||
#alt + shift - 0x24 : /opt/homebrew/bin/kitty -d /Users/slococo
|
||||
|
||||
alt - 0x24 : yabai -m window --swap next || yabai -m window --swap first
|
||||
|
||||
|
|
|
@ -37,7 +37,6 @@ yabai -m config \
|
|||
window_gap 06 \
|
||||
layout bsp \
|
||||
mouse_modifier fn
|
||||
top_padding 40 \
|
||||
|
||||
yabai -m rule --add app="^(LuLu|Calculator|Software Update|Dictionary|System Preferences|System Settings|zoom.us|Photo Booth|Archive Utility|Python|LibreOffice|App Store|Activity Monitor)$" manage=off
|
||||
yabai -m rule --add title='mylauncher' manage=off sticky=on sub-layer=above
|
||||
|
|
|
@ -2,4 +2,3 @@
|
|||
|
||||
sleep 3
|
||||
/Applications/Alacritty.app/Contents/MacOS/alacritty -t "scratchpad" &
|
||||
#/opt/homebrew/bin/kitty -T "scratchpad" &
|
||||
|
|
|
@ -3,4 +3,3 @@
|
|||
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,21 +1,4 @@
|
|||
#!/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