blob: 9f8e833f3f7554fb2e27b4d1d36ec56d9c3b2af2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/zsh
# Couch Computing 101
# cc101.local
#
# This is a MacBook Air 14,2 (M2, 2022).
# Acquired in 2023.
#
# This is our primary casual-use portable device. It's used most
# primarily for writing, but also for some programming and media
# engagement (youtube, books) and social communication (discord,
# email). It's also fantastic for gaming, mostly via emulation.
export DEVICE_HAS_GPG
export DEVICE_HAS_HOMEBREW
export DEVICE_HOMEBREW_INSTALLATION="/opt/homebrew"
export DEVICE_HAS_NVM
export DEVICE_NVM_INSTALLATION="$HOME/.nvm"
export DEVICE_HAS_SUBLIME_TEXT
export DEVICE_SUBLIME_TEXT_INSTALLATION="$HOME/Applications/Development & Editors/Sublime Text.app"
export DEVICE_HAS_VIM
|