Skip to content

Latest commit

 

History

History
200 lines (177 loc) · 7.55 KB

File metadata and controls

200 lines (177 loc) · 7.55 KB

OS X

Tweak

  • 구름 입력기 (Unofficial releases)

  • Workman Layout

    • Remove U.S. from AppleEnabledInputSources in ~/Library/Preferences/com.apple.HIToolbox.plist, and then re-login

      <dict>
      	<key>InputSourceKind</key>
      	<string>Keyboard Layout</string>
      	<key>KeyboardLayout ID</key>
      	<integer>0</integer>
      	<key>KeyboardLayout Name</key>
      	<string>U.S.</string>
      </dict>
  • System Preferences

    • Language & Region > Advanced… > Times
      • Set "Medium" to "00-23:08:09"
    • Keyboard
      • Turn on "Automatically switch to a document's input source"
    • Users & Groups
      • Disable Guest User
    • App Store
      • Turn off "Automatically download apps purchased on other Macs"
  • FaceTime

    • Turn off "Calls From iPhone"
  • Safari

    • View
      • Show Status Bar
    • Preferences
      • General
        • Set "Remove history items" to "After one month" or "After two weeks"
        • Turn off "Open “safe” files after downloading"
      • AutoFill
        • Turn off every fields
      • Passwords
        • Turn off every fields
      • Advanced
        • Turn on "Show full website address"
  • Disable press-and-hold for keys in favor of key repeat:

    defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
  • Set the prefix name of screen shots:

    defaults write com.apple.screencapture name -string 'Screenshot'

Applications

Windows

Tweak

  • Greenshot

  • 날개셋

  • Turn on Remote Desktop

    • Set custom RDP port number via regedit.exe. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp and modify the value of PortNumber.
    • Ignore remote keyboard layout by adding IgnoreRemoteKeyboardLayout under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout with data type REG_DWORD and the value 1.
  • Windows Update: Download updates but let me choose whether to install them

  • Turn on Sticky Keys when SHIFT is pressed five times: Uncheck

  • Disallow the system to suggest companion windows when using Snap

    • Turn off Settings > Multitasking > Allow the system to suggest companion windows when using Snap
  • Configure Windows Updates

    • Run gpedit.msc
    • Select Computer Configuration > Administrative Templates > Windows Components > Windows Update
    • Open Configure Automatic Updates
    • Set it Enabled and choose "3 - Auto download and notify for install"
  • Add a task to Tasks Scheduler:

    • Name: Windows Defender Update
    • Location: \
    • Run whether user is logged on or not: Check
    • Triggers: Daily, At 4:00 AM every day
    • Actions: Start a program, "C:\Program Files\Windows Defender\MpCmdRun.exe" -SignatureUpdate -MMPC
    • Allow task to be run on demand: Check
    • If the running task does not end when requested, force it to stop: Check
  • Map CapsLock key to Control with caps_lock_to_control.reg:

    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
    "Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,1d,00,3a,00,00,00,00,00
    

    You can revert with remove_scancode_mappings.reg:

    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
    "Scancode Map"=-
    

Fonts

Tools

  • Git
  • gVim and Yongwei's gvim80.zip
  • iPuTTY
    • Put putty.exe into %USERPROFILE%\bin

    • Import tomorrow-theme/PuTTY/Tomorrow Night.reg

    • Default Settings

      • Columns: 80, Rows: 66
      • Lines of scrollback: 10000
      • Font: Consolas, 10-point
      • Use separated unicode font: Check
      • Font for unicode characters: D2Coding, 10-point
      • Hide mouse pointer when typing in window: Check
      • Show tray icon: Never
      • Remote character set: UTF-8
      • Terminal-type string: xterm-256color
    • Loco

      • Host Name: bbs@loco.kaist.ac.kr
      • Columns: 80, Rows: 62
      • Font: Fixedsys, 10-point (Script: Korean)
      • Use separated unicode font: Uncheck
      • Remote character set: Use font encoding
      • Treat CJK ambiguous characters as wide: Check
    • Put loco.bat into %USERPROFILE%\bin with:

      @echo off
      start /b putty -load Loco
  • Java SE
  • MSYS2
    • Option
      • Transparency: Med.
      • Cursor: Block
      • Blinking: Uncheck
      • Font: Consolas, 10-point
      • Show bold as font: Check
      • Locale: en_US
      • Character set: UTF-8
      • Terminal Type: xterm-256color
    • Setup
      • pacman -Sy pacman
      • Run MSYS2 again if needed.
      • pacman -Syu
      • Run MSYS2 again if needed.
      • pacman -Su
      • pacman -S vim wget curl openssh grep tar unzip
      • ssh-keygen -t rsa -b 4096 -C "$(git config user.email)"
  • TeX Live
  • Add %USERPROFILE%\bin to %PATH%

Applications