Posted
Filed under 프로그래밍
기존 설치형 블로그 nibbleblog가 개발중단이 되면서 다음 프로젝트가 bludit 이다.
니블은 한글파일이 있었는데 이건 없네.

급하게 만든건 올린다.
필요한 사람은 위험 감수하고 쓰삼.

bl-languages 폴더에 저장하고 관리자에서 한국어 선택하면된다.


https://www.bludit.com
https://themes.bludit.com





2020/03/09 15:13 2020/03/09 15:13
Posted
Filed under 맥 (mac)
아마존에서 dierya dk66 키보드를 구매했는데 이게 ~ 키를 누르려면 3개의 키를 조합해야한다.
레오폴드 660은 스프트하고 esc키를 누르면 되는데 애는 이게 안되서 karabiner의 힘을 빌렸다.
아주 잘됨~

vi ~/.config/karabiner/assets/complex_modifications/tilde.json

{
 "title": "tilde converter - blog.miyu.pe.kr",
 "rules": [

 {
 "description": "shift+esc to tilde+shift",
 "manipulators": [{
 "type": "basic",
 "from": {
 "key_code": "escape",
 "modifiers": {
 "mandatory": [
 "shift"
 ]
 }
 },
 "to": [{
 "key_code": "grave_accent_and_tilde",
 "modifiers": ["shift"]
 }]
 }]
 }
 ]
}
2020/03/05 13:59 2020/03/05 13:59