software:osx
This is an old revision of the document!
Table of Contents
OS X
Prompt
Colored terminal (folders, etc) <code bash> export CLICOLOR=1 export LSCOLORS=ExFxCxDxBxegedabagacad </code> Coloured, with user@host:full_path <code bash> # Bash prompt PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' </code> ===== Remove Finder from ALT+TAB ===== <code bash> # Open file sudo vi /System/Library/CoreServices/Finder.app/Contents/Info.plist # Add these lines in the <dict> node <?xml version=“1.0” encoding=“UTF-8”?> <!DOCTYPE plist PUBLIC “-AppleDTD PLIST 1.0EN” “http://www.4pple.com/DTDs/PropertyList-1.0.dtd”> <plist version=“1.0”> <dict>
<key>NSUIElement</key>
<string>1</string>
</code>
Disable key accent menu on hold push, allow repeating
# Enable repeating defaults write -g ApplePressAndHoldEnabled -bool false # Revert to default defaults write -g ApplePressAndHoldEnabled -bool true
software/osx.1641716931.txt.gz · Last modified: by 127.0.0.1
