Created
April 26, 2017 16:20
-
Star
(113)
You must be signed in to star a gist -
Fork
(12)
You must be signed in to fork a gist
-
-
Save redism/43bc51cab62269fa97a220a7bb5e1103 to your computer and use it in GitHub Desktop.
macOS Sierra에서 원화(₩) 대신 백 쿼트(`) 입력하기
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ -f ~/Library/KeyBindings/DefaultkeyBinding.dict ]; then | |
echo "~/Library/KeyBindings/DefaultkeyBinding.dict already exists" | |
exit -1 | |
fi | |
mkdir -p ~/Library/KeyBindings | |
cat << EOF > ~/Library/KeyBindings/DefaultkeyBinding.dict | |
{ | |
"₩" = ("insertText:", "\`"); | |
} | |
EOF | |
echo "Done." |
감사합니다!
감사합니다! 혹시 블로그에 출처를 적고 해당 명령어를 포스팅해도 될까요?
한줄로 실행하는법입니다.
if ! [ -f ~/Library/KeyBindings/DefaultkeyBinding.dict ]; then mkdir -p ~/Library/KeyBindings && echo '{"₩" = ("insertText:", "\`");}' > ~/Library/KeyBindings/DefaultkeyBinding.dict; fi
리스펙트 👍 합니다!
흑흑 감사합니다
다들 감사합니다 !!
👍
감사합니다!<3
에고 감사합니다 ㅜㅜ
굿굿
감사합니다
감사합니다 !!! 👍
👍
재부팅을 하니 제대로 잘 나오네요 :)
머신 바꾸면서 설정법을 까먹었는데 덕분에 유용하게 잘 사용했습니다. 고맙습니다.
😇👍👍
👍
macOS Mojave 10.14.2 버전에서도 여전히 잘 되네요, 재부팅 필요하구요!
ㄴ 아 재부팅이 필요하군요!! 안되길래 뭐가 잘못됐는지 계속 봤네요. 감사합니다!
감사합니다.
감사합니다. 덕분에 매우 편리하게 변경하였습니다.
감사합니다 :)
와... 정말 멋지십니다
사소한 불편까지도 catch하시고 개선하시는 모습이 정말 멋지십니다
덕분에 편리하게 변경했습니다
감사합니다!
구름 입력기에는 적용되지 않네요
구름 입력기 사용 시엔, 구름 입력기 설정에서 변경 할 수 있습니다.
감사합니다!
맥북 소프트웨어 버전 Monterey인데 한줄로 실행하는걸로 구현했는데 재부팅해도 안되네요
혹시 원인을 알 수 있을까요?
@hyeontack5 코드에 파일이 존재하는지 확인하는 부분이 있네요.
if ! [ -f ~/Library/KeyBindings/DefaultkeyBinding.dict ];
파일 삭제하고 한번 시도해보세요
@hyeontack5 코드에 파일이 존재하는지 확인하는 부분이 있네요.
if ! [ -f ~/Library/KeyBindings/DefaultkeyBinding.dict ];파일 삭제하고 한번 시도해보세요
@mingkyme 파일 삭제하고 저 코드로 한번 더 실행해볼까요? 파일이 있는지 체크하고 없을 때 새로 생성하는거 같은데 한번 해보겠습니다!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
감사합니다.