Skip to content

Commit

Permalink
Major cleanup and slimming down
Browse files Browse the repository at this point in the history
  • Loading branch information
Stacy Webb committed Oct 12, 2017
1 parent bd7c141 commit 5def14b
Show file tree
Hide file tree
Showing 3,808 changed files with 5,324 additions and 987,017 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
Empty file removed config/.gitignore
Empty file.
88 changes: 0 additions & 88 deletions config/config.js

This file was deleted.

21 changes: 9 additions & 12 deletions config/config.js.sample
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,16 @@
* MIT Licensed.
*
*/

var config = {
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
// or add a specific IPv4 of 192.168.1.5 :
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
// or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],

// or add a specific IPv4 of 192.168.1.5 :
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
// or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
language: "en",
timeFormat: 24,
units: "metric",

modules: [
{
module: "alert",
Expand Down Expand Up @@ -55,7 +52,7 @@ var config = {
position: "top_right",
config: {
location: "New York",
locationID: "", //ID from http://www.openweathermap.org/help/city_list.txt
locationID: "", //ID from http://www.openweathermap.org/help/city_list.txt
appid: "YOUR_OPENWEATHER_API_KEY"
}
},
Expand All @@ -65,7 +62,7 @@ var config = {
header: "Weather Forecast",
config: {
location: "New York",
locationID: "5128581", //ID from http://www.openweathermap.org/help/city_list.txt
locationID: "5128581", //ID from http://www.openweathermap.org/help/city_list.txt
appid: "YOUR_OPENWEATHER_API_KEY"
}
},
Expand All @@ -84,8 +81,8 @@ var config = {
}
},
]

};

/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}
if (typeof module !== "undefined") {
module.exports = config;
}
84 changes: 84 additions & 0 deletions config/custom.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
/* Magic Mirror 2 arm64 Version
* Config
*
* orginal by Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*
* Revised by Stacy E.Webb https://stacywebb.com
* MIT Licensed.
*
*/
var config = {
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.0.0/56"],
// Set [] to allow all IP addresses
// or add a specific IPv4 of 192.168.1.5 :
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
// or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
language: "en",
timeFormat: 12,
units: "imperial",
modules: [
//{
// module: "updatenotification",
// position: "top_bar"
//},
{
module: "clock",
position: "top_center",
config: {}
},
{
module: 'background',
position: 'fullscreen_below',
config: {
videoSRC: "./modules/MMM-htmlvideo/videos/blue_water.gif",
loop: true,
}
},
{
module: 'myweather',
position: 'middle_center',
config: {
apikey: '288436286f6328b5',
pws: 'pws:KVAROANO45',
coloricon: true,
hourly: '1',
fctext: '1',
fcdaycount: "8",
fcdaystart: "0",
hourlyinterval: "3",
hourlycount: "2",
alerttime: 10000,
alerttruncatestring: "english:",
roundTmpDecs: 1,
//UseCardinals: 0,
layout: "horizontal",
iconset: "weezle",
currentweatherdetails: "0"
}
},
{
module: "newsfeed",
position: "bottom_bar",
config: {
feeds: [{
title: "New York Times",
url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
},
{
title: "National Weather Service",
url: "https://www.weather.gov/rss_page.php?site_name=nws"
}
],
showSourceTitle: true,
showPublishDate: true
}
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}
14 changes: 6 additions & 8 deletions css/custom.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
/*****************************************************
* Magic Mirror 2 arm64 Version *
* Custom CSS *
* *
*****************************************************/

* Magic Mirror 2 arm64 Version *
* Custom CSS *
* *
*****************************************************/
body {}

.clock .time {
color: white;
}
color: white;
}
Loading

0 comments on commit 5def14b

Please sign in to comment.