Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save markjarzynski/d243928aa6e62cffe3ae069bc556d0eb to your computer and use it in GitHub Desktop.
Save markjarzynski/d243928aa6e62cffe3ae069bc556d0eb to your computer and use it in GitHub Desktop.

Revisions

  1. markjarzynski revised this gist May 16, 2017. 2 changed files with 7 additions and 0 deletions.
    7 changes: 7 additions & 0 deletions macos-do-not-write-ds_store-to-network-shares.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    #!/bin/sh
    # Do not write .DS_Store to Network Shares

    defaults write com.apple.desktopservices DSDontWriteNetworkStores true

    # Must kill Finder.app to take effect
    #killall Finder
  2. markjarzynski renamed this gist Jun 1, 2016. 1 changed file with 0 additions and 0 deletions.
  3. markjarzynski revised this gist Jun 1, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion osx-terminal.app-faster-cursor.sh
    Original file line number Diff line number Diff line change
    @@ -4,4 +4,4 @@
    defaults write NSGlobalDomain KeyRepeat -int 1
    defaults write NSGlobalDomain InitialKeyRepeat -int 25

    # Must logout to take affect.
    # Must logout to take effect.
  4. markjarzynski created this gist Jun 1, 2016.
    7 changes: 7 additions & 0 deletions osx-terminal.app-faster-cursor.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    #!/bin/sh
    # Increase the cursor speed in OS X Terminal.app

    defaults write NSGlobalDomain KeyRepeat -int 1
    defaults write NSGlobalDomain InitialKeyRepeat -int 25

    # Must logout to take affect.