Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mheob/macos
My configuration for my Mac.
https://github.com/mheob/macos
dotfiles mac-config macos
Last synced: 1 day ago
JSON representation
My configuration for my Mac.
- Host: GitHub
- URL: https://github.com/mheob/macos
- Owner: mheob
- License: mit
- Created: 2021-04-08T11:48:29.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-12T08:30:36.000Z (3 days ago)
- Last Synced: 2025-01-12T09:29:14.826Z (3 days ago)
- Topics: dotfiles, mac-config, macos
- Language: Shell
- Homepage: https://www.its-boehm.de
- Size: 1.84 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mac Installation helper
Use at your own risk!
TODO
---
## Enabling touch ID for access on Terminal
Simple way to allow Mac Touch ID authentication in Command prompt.
Mac pro have fingerprint scanner (Touch ID) to simplify login process but this is not exposed in terminal. So each time you run commands with elevated privileges you need to type in your password. Following simple change would allow you to use Touch ID for authentication in Command prompt.
To use MacOS Touch ID in Terminal for sudo access instead of entering system password.
Edit this file `/etc/pam.d/sudo` with your favorite editor.
```sh
sudo vim /etc/pam.d/sudo
```Add the following line to the top of the file.
```sh
auth sufficient pam_tid.so
```### Iterm2
To enable Touch ID access on Iterm2. You need to do the following.
Go to Preferences -> Advanced -> Allow sessions to survive logging out and back in and set value to no.Restart Iterm2 and voilà touch ID authentication will work on Iterm2.
## Special Thanks
Thanks to [josean-dev](https://github.com/josean-dev) for the insppiration of the nvim config.