An open API service indexing awesome lists of open source software.

https://github.com/dislick/dotfiles

Personal configuration files
https://github.com/dislick/dotfiles

Last synced: 29 days ago
JSON representation

Personal configuration files

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

![screenshot](./move_window_focus.png)

## 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
```