-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config-pics.js
157 lines (152 loc) · 6.22 KB
/
config-pics.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/* Magic Mirror Config
*
* By Michael Teeuw http://michaelteeuw.nl
* Modified by Ron Record http://ronrecord.com
* MIT Licensed.
*
* For more information how you can configurate this file
* See https://docs.magicmirror.builders/configuration/introduction.html
*
*/
var config = {
address: "0.0.0.0", // Address to listen on, can be:
port: 8080,
ipWhitelist: [
"0.0.0.0",
"127.0.0.1",
"AA.A.A.AA", // Mac Mini
"BB.B.B.BBB", // iPad
"CC.C.C.CC", // Mac Pro
"DD.D.D.DDD", // Mac Pro over Tunnelblick
"EE.E.E.EE", // Roon Core
"FF.F.F.FF", // Mac Pro
"GG.G.G.GG", // Ropieee
"MM.M.M.MM", // Raspberry Pi MagicMirror
"HH.H.H.HH", // Raspberry Pi 400
"II.I.I.II", // iPad Air
"JJ.J.J.JJ", // iPhone 12 Mini
"::ffff:127.0.0.1",
"::1",
],
customCss: "css/custom-mirrorcommand.css",
language: "en",
timeFormat: 12,
units: "imperial",
electronOptions: {
x: 0, // __X_OFFSET__ Do Not Remove
y: 0, // __Y_OFFSET__ Do Not Remove
},
modules: [
{
module: "alert",
},
{
module: 'MMM-Remote-Control',
config: {
apiKey: 'xxx_Remote-Control-API-Key_xxxxx',
customCommand: {
shutdownCommand: '/usr/local/bin/myshutdown',
rebootCommand: '/usr/local/bin/myreboot',
monitorOnCommand: 'vcgencmd display_power 1',
monitorOffCommand: 'vcgencmd display_power 0',
screenshotCommand: '/usr/local/bin/mirror screenshot',
rotateScreenRight: '/usr/local/bin/mirror rotate right',
rotateScreenLeft: '/usr/local/bin/mirror rotate left',
rotateScreenNormal: '/usr/local/bin/mirror rotate normal',
rotateScreenInverted: '/usr/local/bin/mirror rotate inverted',
playVideo: '/usr/local/bin/mirror playvideo',
pauseVideo: '/usr/local/bin/mirror pausevideo',
replayVideo: '/usr/local/bin/mirror replayvideo',
nextVideo: '/usr/local/bin/mirror nextvideo',
hideVideo: '/usr/local/bin/mirror hidevideo',
showVideo: '/usr/local/bin/mirror showvideo',
// Shell command to return status of monitor,
// must return either "HDMI" or "true" if screen is on
// "TV is Off" or "false" if it is off to be recognized
// monitorStatusCommand: '/usr/local/bin/mirror screen status',
},
showModuleApiMenu: true,
secureEndpoints: true,
customMenu: "custom_menu.json",
// classes: {} // Optional, See "Custom Classes" below
}
},
{
module: 'MMM-iFrame',
position: 'fullscreen_below',
config: {
url: [
"https://www.youtube.com/embed/ZFBoN7yIMZw?autoplay=1&controls=0&start=40",
"https://www.youtube.com/embed/jVD67pMdv9k?autoplay=1&controls=0&start=40",
"https://www.youtube.com/embed/gdJjc6l6iII?autoplay=1&controls=0&start=40",
"https://www.youtube.com/embed/t6jlhqNxRYk?autoplay=1&controls=0&start=40",
"https://www.youtube.com/embed/zfgE_Bxears?autoplay=1&controls=0",
],
// "https://www.youtube.com/embed/95FxKgcgjN0?autoplay=1&controls=0",
updateInterval: 5 * 60 * 1000, // rotate URLs every 5 minutes
width: "__WIDTH__", // __SET_Q_WIDTH__ Do Not Remove
height: "__HEIGHT__", // __SET_Q_HEIGHT__ Do Not Remove
frameWidth: "__WIDTH__", // __SET_FRM_WIDTH__ Do Not Remove
}
},
{
module: "updatenotification",
position: "top_bar"
},
{
module: 'MMM-BackgroundSlideshow',
position: 'fullscreen_below',
//classes: 'scheduler',
config: {
imagePaths: [
'/usr/local/MirrorCommand/pics/Fractals/',
'/usr/local/MirrorCommand/pics/Art/',
'/usr/local/MirrorCommand/pics/Owls/',
'/usr/local/MirrorCommand/pics/Waterfalls/',
'/usr/local/MirrorCommand/pics/Gif/',
],
slideshowSpeed: 15000, // 15 seconds
transitionImages: true,
randomizeImageOrder: true,
recursiveSubDirectories: true,
resizeImages: true,
maxWidth: __WIDTH__, // __SET_MAX_WIDTH__ Do Not Remove
maxHeight: __HEIGHT__, // __SET_MAX_HEIGHT__ Do Not Remove
transitions: ['opacity', 'slideFromRight', 'slideFromLeft', 'slideFromTopLeft', 'slideFromTopRight', 'slideFromBottomLeft', 'slideFromBottomRight', 'flipX', 'flipY'],
}
},
{
module: 'MMM-TelegramCommands'
},
{
module: 'MMM-TelegramBot',
config: {
allowedUser : ['Your-Telegram-Username'],
adminChatId : 0000000000,
useWelcomeMessage: true,
verbose: false,
favourites:["/hideall", "/showall", "/screenshot", "/shutdown"],
screenshotScript: "scrot",
detailOption: {},
}
},
{
module: 'MMM-pages',
// module: 'MMM-iFrame',
// module: 'MMM-BackgroundSlideshow'
config: {
modules:
[
["MMM-iFrame"],
["MMM-BackgroundSlideshow"],
],
fixed:
["alert", "updatenotification", "MMM-Remote-Control",
"MMM-TelegramCommands", "MMM-TelegramBot"],
rotationTime: 1200000, // rotate page every 20 minutes = 20 * 60 * 1000
}
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}