Compare commits

...

2 Commits

Author SHA1 Message Date
Santiago Lo Coco 215f8d4107 Update scripts 2024-10-22 22:57:43 +02:00
Santiago Lo Coco 66f5ecb54e Update config files 2024-10-22 22:57:32 +02:00
5 changed files with 21 additions and 0 deletions

View File

@ -162,6 +162,7 @@ alt + shift - q : yabai --stop-service; skhd --stop-service
#alt + shift - x : scratchpad --toggle iterm #alt + shift - x : scratchpad --toggle iterm
alt + shift - 0x24 : /Applications/Alacritty.app/Contents/MacOS/alacritty 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 alt - 0x24 : yabai -m window --swap next || yabai -m window --swap first

View File

@ -37,6 +37,7 @@ yabai -m config \
window_gap 06 \ window_gap 06 \
layout bsp \ layout bsp \
mouse_modifier fn 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 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 yabai -m rule --add title='mylauncher' manage=off sticky=on sub-layer=above

View File

@ -2,3 +2,4 @@
sleep 3 sleep 3
/Applications/Alacritty.app/Contents/MacOS/alacritty -t "scratchpad" & /Applications/Alacritty.app/Contents/MacOS/alacritty -t "scratchpad" &
#/opt/homebrew/bin/kitty -T "scratchpad" &

View File

@ -3,3 +3,4 @@
TITLE=mylauncher TITLE=mylauncher
alacritty -t "${TITLE}" --config-file=$HOME/.config/alacritty/alacritty-launcher.toml --working-directory "$(pwd)" -e "$1" alacritty -t "${TITLE}" --config-file=$HOME/.config/alacritty/alacritty-launcher.toml --working-directory "$(pwd)" -e "$1"
#kitty -T "${TITLE}" -d "$(pwd)" -e "$1"

View File

@ -1,4 +1,21 @@
#!/bin/sh #!/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') 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) brew upgrade --cask --greedy --force $(brew list --cask | grep --invert-match --regexp $BREW_IGNORE_LIST)