Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

prohibited_words.js 535B

1234567891011121314151617181920212223242526272829
  1. /* Magic Mirror Test config newsfeed module
  2. *
  3. * MIT Licensed.
  4. */
  5. let config = {
  6. timeFormat: 12,
  7. modules: [
  8. {
  9. module: "newsfeed",
  10. position: "bottom_bar",
  11. config: {
  12. feeds: [
  13. {
  14. title: "Rodrigo Ramirez Blog",
  15. url: "http://localhost:8080/tests/configs/data/feed_test_rodrigoramirez.xml"
  16. }
  17. ],
  18. prohibitedWords: ["QPanel"],
  19. showDescription: true
  20. }
  21. }
  22. ]
  23. };
  24. /*************** DO NOT EDIT THE LINE BELOW ***************/
  25. if (typeof module !== "undefined") {
  26. module.exports = config;
  27. }