| 12345678910111213141516 |
- #!/bin/zsh
- # Without disabling System Integrity Protection, the following features are
- # disabled (https://github.com/koekeishiya/yabai/wiki/Disabling-System-Integrity-Protection):
- # * focus/create/destroy space without animation
- # * move existing space left, right, or to another display
- # * remove window shadows
- # * enable window transparency
- # * control window layers (make windows appear topmost)
- # * sticky windows (make windows appear on all spaces)
- # * move window by clicking anywhere in its frame
- # * toggle picture-in-picture for any given window
- # Load the system agent
- sudo yabai --load-sa && \
- python3 $XDG_CONFIG_HOME/yabai/yabai.py initialize
|