https://github.com/dislick/dotfiles
Personal configuration files
https://github.com/dislick/dotfiles
Last synced: 29 days ago
JSON representation
Personal configuration files
- Host: GitHub
- URL: https://github.com/dislick/dotfiles
- Owner: dislick
- Created: 2019-05-15T06:49:54.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-01-26T12:31:01.000Z (over 2 years ago)
- Last Synced: 2026-03-29T14:32:57.781Z (3 months ago)
- Language: Shell
- Homepage:
- Size: 196 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Personal Configuration Files
Nothing to see here, just a place for me to backup some configs.
## Key Repeat
```bash
defaults write -g InitialKeyRepeat -int 10
defaults write -g KeyRepeat -int 2
```
## Move Focus to Next Window Shortcut

## Disable Dock Resize
```bash
defaults write com.apple.dock size-immutable -bool true; killall Dock
```
## Default Screenshot Folder
```bash
defaults write com.apple.screencapture location ~/Desktop/Screenshots && killall SystemUIServer
```