All Projects β†’ CodelyTV β†’ Dotfiles

CodelyTV / Dotfiles

Licence: mit
🐒 πŸ’¨ Speedup your MacOS setup with this fine tuning settings

Programming Languages

shell
77523 projects
shellscript
22 projects

Projects that are alternatives of or similar to Dotfiles

Dotfiles
Get ready for dotfiles. Contains i3, i3blocks, rofi, dunst, picom, vim, tmux, and zsh.
Stars: ✭ 985 (+466.09%)
Mutual labels:  zsh, zshrc, dotfiles
dotfiles
My dotfiles for oh-my-zsh, vim and tmux πŸ“Ÿ
Stars: ✭ 23 (-86.78%)
Mutual labels:  dotfiles, zsh, zshrc
dotfiles
πŸš€ tmux, ohmyzsh, powerlevel10k, neovim πŸ”§
Stars: ✭ 24 (-86.21%)
Mutual labels:  dotfiles, zsh, zshrc
zshrc
πŸ“ Zsh Configuration for nerds with zplug
Stars: ✭ 28 (-83.91%)
Mutual labels:  dotfiles, zsh, zshrc
Dotfiles
πŸ’Ύ Ian's dotfiles, utils, and Zsh/Vim/tmux configs
Stars: ✭ 554 (+218.39%)
Mutual labels:  zsh, zshrc, dotfiles
Zsh Quickstart Kit
Simple ZSH quickstart for using ZSH and zgen
Stars: ✭ 366 (+110.34%)
Mutual labels:  zsh, zshrc, dotfiles
dotfiles
Dotfiles & Developer Environment. Supports Ubuntu2004+, macOS Catalina+, Windows 10 w WSL
Stars: ✭ 30 (-82.76%)
Mutual labels:  dotfiles, zsh, zshrc
Dotfiles
🐲 My Arch Linux config [i3-gaps + i3blocks + Zsh + Spacemacs + Rofi + Alacritty + Neofetch]
Stars: ✭ 725 (+316.67%)
Mutual labels:  zsh, zshrc, dotfiles
Dotfiles
What tools and plugins I use for web development?
Stars: ✭ 73 (-58.05%)
Mutual labels:  zsh, zshrc, dotfiles
Dotfiles Win
πŸ™ˆ oh-my-zsh on bash on windows configuration files
Stars: ✭ 167 (-4.02%)
Mutual labels:  zsh, dotfiles
Ubuntu On Steroids
Developer setup & configuration guide for Ubuntu.
Stars: ✭ 111 (-36.21%)
Mutual labels:  zsh, zshrc
Dotfiles
vim, zsh, git, homebrew, nvm, neovim - my whole world
Stars: ✭ 2,217 (+1174.14%)
Mutual labels:  zsh, dotfiles
.dot Config
πŸ“š Example dot configs for tmux, tmuxp, vim, vcspull, i3 and awesome
Stars: ✭ 102 (-41.38%)
Mutual labels:  zsh, dotfiles
Dotfiles
Awesome personal dotfiles
Stars: ✭ 99 (-43.1%)
Mutual labels:  zsh, dotfiles
Dotfiles
If there is a shell, there is a way!
Stars: ✭ 112 (-35.63%)
Mutual labels:  zsh, dotfiles
Dotfiles
My dotfiles managed by GNU Stow - Arch, i3-gaps, bspwm, ncmpcpp, (neo)vim, zsh etc.
Stars: ✭ 99 (-43.1%)
Mutual labels:  zsh, dotfiles
Antibody
The fastest shell plugin manager.
Stars: ✭ 1,659 (+853.45%)
Mutual labels:  zsh, dotfiles
Dotfiles
My dotfiles
Stars: ✭ 127 (-27.01%)
Mutual labels:  zsh, dotfiles
Mac Bootstrap
πŸ’» Provision a new Mac for web development with dotfiles + Fish/Zsh, Neovim, and Tmux
Stars: ✭ 96 (-44.83%)
Mutual labels:  zsh, dotfiles
Dotfiles
Dotfiles
Stars: ✭ 117 (-32.76%)
Mutual labels:  zsh, dotfiles

πŸš€ CodelyTV dotfiles

🐒 πŸ’¨ Speedup your MacOS setup with this fine tuning settings

CodelyTV License

Repository containing all the automation required to setup your MacOS in just a few seconds after a fresh install.

Feel free to explore the repository and get anything you need 😬

πŸ“œ Table of Contents

πŸš€ Installation

Execute the installer from your terminal in order to avoid even having to manually install git!

bash <(curl -s https://raw.githubusercontent.com/codelytv/dotfiles/master/installer)

If you want to check out all the details involved in a migration from a legacy to a new PC, you can checkout the installation-guide.md

✍️ Repository Contents (⚠️ Outdated documentation ⚠️)

You'll find some self-explanatory files in this repo containing comments on what they do, however, here you have a brief explanation of each on of them.

πŸ’» Shell dotfiles

  • .aliases: Common command aliases in order to save some characters 😬
  • .bashrc: Main config for Bash shell (loads common .profile)
  • .functions: Common shell functions (key difference from .aliases: functions will receive an argument)
  • .profile: Common profile between the different shells in order to have all the functionalities in both of them. This file loads .aliases and .functions
  • .zshrc: Main config for ZSH shell (loads common .profile)

πŸ™ Git dotfiles

  • .gitconfig: Different settings for the Git CSV system such as including the following file
  • .gitignore_global: Ignore rules to apply to every single repository (usefull to do not mess up the project .gitignore file with particularities of your development environment such as the .DS_Store files or your IDE settings)

⚑ Custom commands

These are custom commands defined in binary files with little scripts to boost your productivity in your daily basis tasks:

These binaries are installed thanks to adding the binary files directory to the PATH environment variable in the .profile file.

  • bin/docker_connect: Lists your running containers and let you select and open an interactive terminal in one of them

πŸ€– Shell scripts

🍎 install_macos_apps.sh

This script will install Homebrew. It's a package manager for MacOS, used to install some tools like htop, ffmpeg, git, php… you get the idea, Command Line Tools, programming languages, and so on.

Homebrew also includes Homebrew Cask. It's a package manager useful to install fully functional OS X applications such as google-chrome, spotify, slack…

With these 2 command line tools, we'll be able to install and upgrade our apps without having to leave the terminal. This allow us to automate the whole setup process while starting clean on a new mac, and also to do not have to open all the different apps we've installed in order to update them.

You can check out the install_macos_apps.sh script in order to see the detailed list of the apps it will install, and modify it based on your needs, and the available packages in Homebrew and Homebrew Cask apps.

πŸ“± adjust_apps_settings.sh

This script is intended to create the symbolic links to each application settings in order to avoid having to copy and paste the different files on each case.

The script is self documented so you can check out which apps we're dealing with.

There're some apps pending to automate (Work In Progress):

  • JetBrains family IDEs (IntelliJ IDEA, PhpStorm, PyCharm, etc.):
    • Custom VM Options
      1. Open the IDE
      2. Go to Help -> Edit Custom VM Options… menu option
      3. Paste the desired JVM properties modifying them based on your environment resources
  • [iStat Menus](iStat Menus Settings.ismp)
    1. Modify the license XML key dictionary values specifying your email and serial
    2. Open iStats
    3. Go to File -> Import settings… menu option

πŸŽ›οΈ adjust_macos_settings.sh

This script will modify system preferences. We would recommend you to take a look at the adjust_macos_settings.sh script in order to know the actual list of aspects it will modify. Here you have a brief list of them:

  • Dock: Automatically hide the dock with a fewer delay and animation times
  • Mission Control: Add Hot corners behaviour and reduce the animation time
  • Keyboard: Reduce the delay for repeating a key while pressed, and the time between repetitions of that key
  • Mouse: Increase its speed
  • Trackpad: Enable tap to click for the current user and for the login screen. (Don't have to press down on the trackpad -- just tap it.)
  • Finder: Disable animations + show extensions + set columns as default view + show pathbar + enable spring-loading directories…
  • Safari & WebKit: Allow hitting the Backspace key to go to the previous page + show full URL + disable automatic spelling corrections…
  • Others: Disable the sound effects on boot + always show scrollbars + disable automatic capitalization + Avoid creating .DS_Store files on network or USB volumes + Maximize windows with Ctrl+alt+Cmd+f…
πŸ€” How to discover new domains and settings

You can explore your current settings on all the different applications just with a few commands:

  • List all config domains you have: defaults domains | tr ',' '\n'
  • List the current settings for a specific domain: defaults read com.apple.finder
  • Read the type of the setting you want to modify: defaults read-type com.apple.finder NewWindowTargetPath
  • Write your new value for the setting: write com.apple.finder NewWindowTargetPath "file:///Users/your-username/"
πŸƒβ€β™‚οΈ How to automate settings changes

The problem with the previous approach is that it could be a little verbose while showing you aaaaall the different settings an application has. So here's a quick tip on how to optimize the process for these settings which can be adjusted using the UI:

  • Save the output of your current settings into a file: defaults read > defaults_before_ui_changes.json
    • Pro tip: If you already know the domain of the settings you're going to modify, optimize the size of the output specifying so: defaults read com.apple.finder > finder_defaults_before_ui_changes.json
  • Modify the settings through the UI
  • Save the output of the modified settings: defaults read > defaults_after_ui_changes.json
    • Alternatively: defaults read com.apple.finder > finder_defaults_after_ui_changes.json
  • Compare the before and after files to see what settings has been modified: diff defaults_before_ui_changes.json defaults_after_ui_changes.json
    • Alternatively: diff finder_defaults_before_ui_changes.json finder_defaults_after_ui_changes.json
    • Pro tip: If the diff doesn't provide you enough context, you can run it with diff -C 10 option to show 10 lines before and after each difference
    • Pro tip 2: If the diff output is a mess for you, you can open it with VS Code with code --diff finder_defaults_before_ui_changes.json finder_defaults_after_ui_changes.json
  • Save the modified keys and construct your write commands in order to automate it the next time. For instance: write com.apple.finder NewWindowTargetPath "file:///Users/your-username/"

ℹ️ About

This hopefully helpful repository has been developed by CodelyTV and contributors.

We've used a lot of different sources to get some inspirations on the things to do, here you have a list of them:

🀝 Contributing

It would be awesome to learn from your experience automating the setup of your environment.

So please, feel free to send us your tips and tricks via Twitter (@CodelyTV), or consider opening an issue before starting to work on a Pull Request πŸ™‚

β˜‘οΈ ToDo

  • Move the things already specified in the installation-guide.md to automations. How to procedure:
    • Search for the application plist files. In this repo there're a lot of supported applications which specify the config paths.
    • Move the plist files to this repo in case of not containing sensitive data
    • Create the symlink between the application plist file and this repo
    • Specify the symlink in the conf.macos.yaml file mapping

βš–οΈ License

The MIT License (MIT). Please see License for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].