-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config-YouTube.js
137 lines (133 loc) · 4.89 KB
/
config-YouTube.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
/* 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
webPreferences: {
webviewTag: true,
contextIsolation: false,
enableRemoteModule: true
},
},
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-YouTubeWebView",
position: "top_center",
config: {
playlist: "PLh3A0cnoWYsyh-2l1bEJlFIzl_5gtlcwZ",
autoplay: true,
controls: false,
loop: true,
modestbranding: true,
width: "__WIDTH__px", // __SET_WIDTH_PX__ Do Not Remove
height: "__HALF_HEIGHT__px", // __SET_HALF_HEIGHT_PX__ Do Not Remove
referrer: "http://your.domain.com",
}
},
{
module: 'MMM-iFrame',
position: 'bottom_center',
config: {
url: [
"https://ronrecord.com/index.php/about/",
"https://archive.ronrecord.com/",
"https://archive.ronrecord.com/bio.html",
],
updateInterval: 4 * 60 * 1000, // rotate URLs every 4 minutes
width: "__WIDTH__", // __SET_Q_WIDTH__ Do Not Remove
height: "__HALF_HEIGHT__", // __SET_Q_HALF_HEIGHT__ Do Not Remove
frameWidth: "__WIDTH__", // __SET_FRM_WIDTH__ Do Not Remove
}
},
{
module: 'MMM-TelegramCommands'
},
{
module: 'MMM-TelegramBot',
config: {
allowedUser : ['Your-Telegram-Username'],
adminChatId : 0000000000,
useWelcomeMessage: true,
verbose: false,
favourites: [
"/hideip",
"/showip",
"/hideOffline",
"/showOffline",
"/myReboot",
"/myShutdown"
],
screenshotScript: "scrot",
detailOption: {},
},
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}