-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config-volumio.js
112 lines (107 loc) · 4.03 KB
/
config-volumio.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
/* 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: "updatenotification",
position: "top_bar"
},
{
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: [ "http://HH.H.H.HH/playback" ],
updateInterval: 30 * 60 * 1000, // rotate URLs every 30 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: 'MMM-TelegramCommands'
},
{
module: 'MMM-TelegramBot',
config: {
allowedUser : ['Your-Telegram-Username'],
adminChatId : 0000000000,
useWelcomeMessage: true,
verbose: false,
favourites:["/hideall", "/showall", "/screenshot", "/shutdown"],
screenshotScript: "scrot",
detailOption: {},
}
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}