Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raulanatol/dotfiles
@raulanatol dotfiles
https://github.com/raulanatol/dotfiles
Last synced: about 2 months ago
JSON representation
@raulanatol dotfiles
- Host: GitHub
- URL: https://github.com/raulanatol/dotfiles
- Owner: raulanatol
- License: mit
- Created: 2020-12-19T22:57:45.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-13T15:38:24.000Z (3 months ago)
- Last Synced: 2024-10-14T01:42:45.882Z (2 months ago)
- Language: Python
- Size: 34.9 MB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# raulanatol dotfiles
**Table of Contents**
- [Install](#install)
- [How to update the dotfiles project](#how-to-update-the-dotfiles-project)
- [How to add more symlinks?](#how-to-add-more-symlinks)
- [How to add a new application?](#how-to-add-a-new-application)
- [Extra installation guide](#extra-installation-guide)
- [Configure iTerm](#configure-iterm)
- [Misc](#misc)
- [Reload completion](#reload-completion)## Install
Run this:
```sh
git clone https://github.com/raulanatol/dotfiles.git ~/.dotfiles
cd ~/.dotfiles
make install
```## How to update the dotfiles project
Something we need to update the dotfiles project, new brew applications installed, etc. To do this you only need to
execute```shell
make checkpoint
```## How to add more symlinks?
Edit the file `symlinks` and add a new line.
## How to add a new application?
Create a new folder with the name of the application and put inside all the files that this application needed.
# Extra installation guide
## Configure iTerm
Preferences > General > Preferences >
- ✅ Load preferences from a custom folder or URL (~/.dotfiles/iTerm)
- ✅ Save changes to folder when iTerm2 quits# Misc
## Reload completion
Execute the below script, after that open a new terminal.
```shell
.scripts/reload_completion.sh
```## New mac defaults
```shell
defaults read > before
```Change the preference (using the UI)
```shell
defaults read > after
```And check the diff
```shell
diff before after
```More info:
- https://pawelgrzybek.com/change-macos-user-preferences-via-command-line/
- https://www.shell-tips.com/mac/defaults/
- https://macos-defaults.com