13 lines
303 B
Bash
Executable File
13 lines
303 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
linux_wm_and_utils() {
|
|
# TODO: pick wm for linux; options: dwm, i3, others?
|
|
echo "TODO: linux_wm_and_utils not yet implemented"
|
|
}
|
|
|
|
macos_wm_and_utils() {
|
|
brew install --cask nikitabobko/tap/aerospace
|
|
}
|
|
|
|
[[ "$BOX_SETUP_OS" = "macos" ]] && macos_wm_and_utils || linux_wm_and_utils
|