Skip to content

Commit 6c5b6dd

Browse files
GITHUBFULLNAMEGITHUBFULLNAME
authored andcommitted
cleanup readme and remove SizeUp (less licensed software)
1 parent 0762bbf commit 6c5b6dd

5 files changed

Lines changed: 12 additions & 70 deletions

File tree

README.md

Lines changed: 0 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -253,72 +253,11 @@ The following will only happen if you agree on the prompt
253253
- Disable automatic emoji substitution (i.e. use plain text smileys)
254254
- Disable smart quotes as it’s annoying for messages that contain code
255255

256-
## SizeUp.app
257-
258-
- Start SizeUp at login
259-
- Don’t show the preferences window on next start
260256

261257
# Software Installation
262258

263259
homebrew, fontconfig, git, nvm (node + npm), and zsh (latest) are all installed inside the `install.sh` as foundational software for running this project.
264260
Additional software is configured in `config.js` and can be customized in your own fork/branch (you can change everything in your own fork/brance).
265-
The following is the software that I have set as default:
266-
267-
## Utilities
268-
269-
- ack
270-
- ag
271-
- coreutils (PATH updated automatically during install)
272-
- dos2unix
273-
- findutils
274-
- fortune
275-
- gawk
276-
- gifsicle
277-
- gnupg
278-
- gnu-sed (PATH updated automatically during install)
279-
- grep (PATH updated automatically during install)
280-
- httpie
281-
- imagemagick (only if gitshots enabled)
282-
- imagesnap (only if gitshots enabled)
283-
- jq
284-
- mas
285-
- moreutils
286-
- nmap
287-
- openconnect
288-
- reattach-to-user-namespace
289-
- homebrew/dupes/screen
290-
- tmux
291-
- tree
292-
- ttyrec
293-
- vim --override-system-vi
294-
- watch
295-
- wget --enable-iri
296-
297-
The installer uses `brew --prefix` once to detect your Homebrew prefix and
298-
individually appends `libexec/gnubin` directories for coreutils, gnu-sed, and
299-
grep to `.shellpaths` if they are not already present.
300-
301-
## Apps
302-
303-
- box-sync
304-
- gpgtools
305-
- iterm2
306-
- sizeup
307-
- slack
308-
- the-unarchiver
309-
- xquartz
310-
311-
## NPM Global Modules
312-
313-
- antic
314-
- buzzphrase
315-
- eslint
316-
- gulp
317-
- instant-markdown-d
318-
- npm-check
319-
- prettyjson
320-
- trash
321-
- vtop
322261

323262
# License
324263

config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default {
6565
//'micro-snitch',
6666
// 'signal',
6767
//'macvim',
68-
"sizeup",
68+
// "sizeup",
6969
//'sketchup',
7070
"slack",
7171
// 'the-unarchiver',

homedir/.shellpaths

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@ export PATH="/opt/homebrew/bin:$PATH"
1616

1717
# The next line enables shell command completion for gcloud.
1818
#source "/Users/$(whoami)/Downloads/google-cloud-sdk/completion.zsh.inc"
19+
export PATH="/opt/homebrew/opt/coreutils/libexec/gnubin:$PATH"
20+
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
21+
export PATH="/opt/homebrew/opt/grep/libexec/gnubin:$PATH"

homedir/.zshrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ export GEMINI_SANDBOX=docker
6161

6262
# NVM initialization (added by install.sh)
6363
export NVM_DIR="$HOME/.nvm"
64-
[ -s "$(brew --prefix nvm)/nvm.sh" ] && \. "$(brew --prefix nvm)/nvm.sh"
64+
[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && \. "/opt/homebrew/opt/nvm/nvm.sh"

install.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,15 +1094,15 @@ defaults write com.apple.messageshelper.MessageController SOInputLineSettings -d
10941094
# running "Disable continuous spell checking"
10951095
# defaults write com.apple.messageshelper.MessageController SOInputLineSettings -dict-add "continuousSpellCheckingEnabled" -bool false;ok
10961096

1097-
###############################################################################
1098-
bot "SizeUp.app"
1099-
###############################################################################
1097+
# ###############################################################################
1098+
# bot "SizeUp.app"
1099+
# ###############################################################################
11001100

1101-
running "Start SizeUp at login"
1102-
defaults write com.irradiatedsoftware.SizeUp StartAtLogin -bool true;ok
1101+
# running "Start SizeUp at login"
1102+
# defaults write com.irradiatedsoftware.SizeUp StartAtLogin -bool true;ok
11031103

1104-
running "Don't show the preferences window on next start"
1105-
defaults write com.irradiatedsoftware.SizeUp ShowPrefsOnNextStart -bool false;ok
1104+
# running "Don't show the preferences window on next start"
1105+
# defaults write com.irradiatedsoftware.SizeUp ShowPrefsOnNextStart -bool false;ok
11061106

11071107
killall cfprefsd
11081108

0 commit comments

Comments
 (0)