Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leabs/mmm-friday-the-13th
MagicMirror Module to display to the user if it is Friday the 13th
https://github.com/leabs/mmm-friday-the-13th
magic-mirror-modules magicmirror magicmirror-module
Last synced: about 1 month ago
JSON representation
MagicMirror Module to display to the user if it is Friday the 13th
- Host: GitHub
- URL: https://github.com/leabs/mmm-friday-the-13th
- Owner: leabs
- License: mit
- Created: 2023-02-11T16:44:17.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-26T16:02:02.000Z (almost 2 years ago)
- Last Synced: 2024-11-29T06:41:02.192Z (about 1 month ago)
- Topics: magic-mirror-modules, magicmirror, magicmirror-module
- Language: JavaScript
- Homepage:
- Size: 453 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MMM-friday-the-13th
A [MagicMirror](https://github.com/MichMich/MagicMirror) Module to show the user if today is Friday the 13th. By default this returns just a text string, but if you set the config option `scary` to `true` it will show a scary image instead!
![MMM-friday-the-13th module screenshot](screenshot/no.png)
![MMM-friday-the-13th module screenshot Scrazy option!](screenshot/scary.png)## Requirements
This module is to be used with the [MagicMirror](https://github.com/MichMich/MagicMirror) project, so it assumes you have a working MagicMirror set up and running already. There is a great community for this project on places like [Reddit](https://www.reddit.com/r/MagicMirror/) and also the [MagicMirror Forums](https://forum.magicmirror.builders/) if you need help with getting started. There is also great [documentation](https://magicmirror.builders/) if you'd like to get started building your own module.
## Installation
1. Navigate into your MagicMirror's `modules` folder and execute `git clone https://github.com/leabs/MMM-friday-the-13th.git`
2. Navigate to your config file in `config/config.js` and add the module to the modules array like so:```
modules: [
...Other Modules Here...,
{
module: 'MMM-friday-the-13th',
position: 'top_right',
//Config option for scary mode. If you want to be scared, set this to true.
config: {
scary: false,
}
}
]
```Inspired by [r/IsTodayFridayThe13th](https://www.reddit.com/r/IsTodayFridayThe13th).