Mac Automator๋ฅผ ์ด์ฉํ ํ์ฌ ์๊ฐ ์ ๋ ฅ ๊ธฐ๋ฅ
- Automator ์คํ
- ๋น ๋ฅธ ๋์ ์ ํ
- AppleScript ์คํ ๊ฒ์
- AppleScript ์คํ ๋๋ธํด๋ฆญ
- ์์ ์คํฌ๋ฆฝํธ ์ฝ๋ ์ ๋ ฅ
- ์ ์ฅ(์ด๋ฆ ์์ ๋กญ๊ฒ ์ง์ )
- ์์คํ ์ค์
- ํค๋ณด๋
This file contains hidden or 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
# /Users/Shared/bin ๋๋ ํ ๋ฆฌ๋ฅผ ๋ง๋ ๋ค. | |
mkdir -p /Users/Shared/bin | |
# hidutil์ ์ฌ์ฉํ์ฌ ํค๋ณด๋ ๋งคํ ์์ฑ์ ์ค์ ํ๋ค. ์ค๋ฅธ์ชฝ Command ํค๋ฅผ F18ํค๋ก ๋งคํํ๋ค. | |
printf '%s\n' '#!/bin/sh' \ | |
'hidutil property --set '"'"'{"UserKeyMapping":[{"HIDKeyboardModifierMappingSrc":0x7000000e7,"HIDKeyboardModifierMappingDst":0x70000006d}]}'"'" \ | |
>/Users/Shared/bin/userkeymapping | |
# /Users/Shared/bin/userkeymapping ํ์ผ์ ๊ถํ์ ๋ณ๊ฒฝํ์ฌ ์คํ ๊ฐ๋ฅํ๋๋ก ๋ง๋ ๋ค. | |
chmod 755 /Users/Shared/bin/userkeymapping | |
# userkeymapping.plist ํ์ผ์ ์์ฑํ๋ค. ์ด ํ์ผ์ ๋งค๋ฒ ๋ถํ ์ /Users/Shared/bin/userkeymapping ํ์ผ์ ์คํํ๋๋ก ์ค์ ํ๋ค. | |
sudo cat<<: >/Users/Shared/bin/userkeymapping.plist |
This file contains hidden or 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
@Override | |
public <T> T getBean(Class<T> requiredType, @Nullable Object... args) throws BeansException { | |
Assert.notNull(requiredType, "Required type must not be null"); | |
Object resolved = resolveBean(ResolvableType.forRawClass(requiredType), args, false); | |
if (resolved == null) { | |
throw new NoSuchBeanDefinitionException(requiredType); | |
} | |
return (T) resolved; | |
} |
์ด md ํ์ผ์ Typora
์์ ์์ฑ๋์์ต๋๋ค. ์ฝ์ผ์ค ๋, Typora
์์ ์ฝ์ผ์๋ ๊ฒ์ด ๊ฐ์ฅ ๋ณด๊ธฐ์ ์ข์ต๋๋ค.
'ํ์ ๊ตฌํ'๊ณผ '์ฐ์ ์์ ํ์ ๊ตฌํ'์๋ ๋ง์ ์ฐจ์ด๊ฐ ์์ต๋๋ค.
NewerOlder