https://github.com/bkeyport/mmm-block
https://github.com/bkeyport/mmm-block
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/bkeyport/mmm-block
- Owner: BKeyport
- License: mit
- Created: 2020-04-21T06:11:42.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-28T22:03:03.000Z (about 1 year ago)
- Last Synced: 2025-03-28T05:28:03.104Z (about 2 months ago)
- Language: JavaScript
- Size: 37.1 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# MagicMirror Module to vertically move modules on screen to account for external windows.
The only valid copy of this module is on https://github.com/BKeyport/MMM-Block - any others are not valid.
If you fork and change any code, please let me know, if it's useful for the general public, I'd love to add it!
If you find this module useful, and would like to contribute to the project, I appreciate the thought. Instead of giving to me, please donate to L'Arche Tahoma Hope at https://www.larchetahomahope.org/donate/ - in honor of Nancy Tyson. (Dedicate my donation checkbox). Nancy means the world to me. You don't have to notify me you have done so.
THANK YOU for your consideration.
If you like this project, or any other project I have done, please consider donating to L'Arche Tahoma Hope, a 501(c) org, at https://donorbox.org/in-support-of-l-arche-tahoma-hope
If you'd like, make a note in honor of Nancy Tyson. Thank you.
This is a module for the [MagicMirror](https://github.com/MagicMirrorOrg/MagicMirror) project.
It's purpose is to move modules to not be hidden behind external modules. An example of use would be to move a module down to allow OMXPLayer to run on top of the MagicMirror Screen.
## Installation
Clone this repository in your ~/MagicMirror/modules/ folder ( $ cd ~MagicMirror/modules/ ):
``` bash
git clone https://github.com/BKeyport/MMM-Block.git
```
## UpdateGo to the module's folder inside MagicMirror modules folder and pull the latest version from GitHub:
``` bash
cd ~/MagicMirror/modules/MMM-Block
git pull
```## Using the module
To use this module, add it to the modules array in the config/config.js file next to the module you'd like to move
(Above the module if you want to move a module DOWN, below the module if you wanna move the module UP)``` js
{
module: 'MMM-Block',
position: "top_right",
config: {
height: 600,
}
},
```The only config option is "height" - as seen above. Set it to the pixels (px) you'd like to move an item.