Add initial config and install for macos window manager

This commit is contained in:
2025-02-03 01:42:38 -06:00
parent 5994f111eb
commit 3adb5f5b88
3 changed files with 80 additions and 2 deletions

View File

@ -1,4 +1,13 @@
#!/bin/zsh
# TODO: pick wm; linux options: dwm, i3, others? macos options: yabai, others?
# ${=BOX_SETUP_INSTALL_COMMAND} zxcv-placeholder
local linux_wm_and_utils() {
# TODO: pick wm for linux; options: dwm, i3, others?
echo "linux_wm_and_utils not yet implemented"
}
local macos_wm_and_utils() {
brew install koekeishiya/formulae/yabai
brew install koekeishiya/formulae/skhd
}
[[ "$BOX_SETUP_OS" = "macos" ]] && macos_wm_and_utils || linux_wm_and_utils