달력 표시하기

  • 달력 모듈 설치하기

cd ~/MagicMirror/modules
git clone https://github.com/PalatinCoder/MMM-MonthCalendar.git
cm MMM-MonthCalendar
npm install
  • 설치 후 설정 파일 수정하기

sudo nano ~/MagicMirror/config/config.js

calander 모듈 위에 추가합니다.

{
			module: 'MMM-MonthCalendar',
			position: "top_left",
			header: "",
			config: {
				updateDelay: 60,
				showAdjacentMonths: true
			}
},	

Last updated