https://github.com/jorainer/install_scripts
Some installation scripts to easily set up Mac OS system to my needs.
https://github.com/jorainer/install_scripts
Last synced: 3 months ago
JSON representation
Some installation scripts to easily set up Mac OS system to my needs.
- Host: GitHub
- URL: https://github.com/jorainer/install_scripts
- Owner: jorainer
- License: artistic-2.0
- Created: 2015-09-11T17:06:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-11-04T06:26:40.000Z (7 months ago)
- Last Synced: 2025-01-20T22:55:01.378Z (5 months ago)
- Language: Shell
- Size: 223 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Setup and installation
## Linux installation and setup
Installation of linux ([archlabs](https://archlabslinux.com/), an arch based
linux) is described in the [archlabs.org](linux/archlabs.org) in the *linux*
subfolder. The document describes also some configurations etc of the installed
linux and provides maybe helpful links.## macOS installation and setup
Use [homebrew](https://brew.sh) to install all command line tools and
applications.- `./install.sh`: calls all individual *install* scripts to install all required
software.### Manual settings
- Function keys for Terminal: System preferences -> Keyboard -> Shortcuts:
select `fn` keys on the left, add with `+` Terminal app.
- Make `emacs` the default editor: in *.zprofile* change `export EDITOR='nano'`
to `export EDITOR='/usr/local/bin/emacsclient -nw`.
- Make `emacs` the default git editor:
`git config --global core.editor "emacsclient -nw"`.
- Choose a terminal color theme: open one of the themes in
*Projects/git/osx-terminal-themes*. Good choices are *SpaceGrey* or *Tomorrow*
themes.
- Create a shortcut to open (new) terminal windows: follow the instruction
[here](https://claudiodangelis.com/osx/2012/09/27/osx-launch-terminal-from-shortcut.html)
and add the AppleScript below:
```
on run {input, parameters}
tell application "Terminal"
do script " "
activate
end tell
return input
end run
```