Mac tools

Collection

  • Awesome Mac
  • shottr - Screenshot tool for those who care about pixels
  • Maccy - Lightweight clipboard manager for macOS
  • Shortcat - Universal command palette for your Mac
  • ImageOptim makes images load faster
  • Karabiner-Elements
    • 맥 한영전환 딜레이 해결방법 - karabiner에서 right_command를 남는 function key로 binding하고, macOS [시스템 환경설정 - 키보드 - 단축키 - 입력 소스]에 들어가서 입력 메뉴에서 다음 소스 선택을 right_command를 누르면 해당 function key로 설정된다.
  • AlDente - Charge Limiter🍝 - MacOS menu bar tool to limit maximum charging percentage
  • Boop. - A scriptable scratchpad for developers.

Dev

Tiling window manager

  • Itsycal for Mac is a tiny menu bar calendar.
  • Hidden Bar lets you hide menu bar items to give your Mac a cleaner look.
  • RunCat - The cat tells you the CPU usage of Mac by running speed.
  • ShowyEdge - A visible indicator of the current input source for macOS.
  • Input Source Pro - Switch and track your input sources with ease ✨

Karabiner-Elements

Home, End key binding

{
  "description": "End를 줄 끝(Cmd+Right)으로, Home을 줄 처음(Cmd+Left)으로 매핑 (Shift 선택 포함)",
  "manipulators": [
    {
      "from": {
        "key_code": "end",
        "modifiers": {
          "mandatory": [],
          "optional": ["any"]
        }
      },
      "to": [
        {
          "key_code": "right_arrow",
          "modifiers": ["left_command"]
        }
      ],
      "type": "basic"
    },
    {
      "from": {
        "key_code": "home",
        "modifiers": {
          "mandatory": [],
          "optional": ["any"]
        }
      },
      "to": [
        {
          "key_code": "left_arrow",
          "modifiers": ["left_command"]
        }
      ],
      "type": "basic"
    },
    {
      "from": {
        "key_code": "end",
        "modifiers": {
          "mandatory": ["shift"],
          "optional": ["any"]
        }
      },
      "to": [
        {
          "key_code": "right_arrow",
          "modifiers": ["left_command", "left_shift"]
        }
      ],
      "type": "basic"
    },
    {
      "from": {
        "key_code": "home",
        "modifiers": {
          "mandatory": ["shift"],
          "optional": ["any"]
        }
      },
      "to": [
        {
          "key_code": "left_arrow",
          "modifiers": ["left_command", "left_shift"]
        }
      ],
      "type": "basic"
    }
  ]
}

적용 방법

  1. Karabiner-Elements 앱 실행 → Complex Modifications 탭
  2. Add rule → Add your own rule...
  3. 위 JSON 전체를 붙여넣기
  4. 저장 후 활성화