Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Check Pull Request
on:
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- master

concurrency:
group: pr-check-${{ github.event.pull_request.number }}
cancel-in-progress: true

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v5

- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: current

- name: Install Dependencies
run: npm ci --ignore-scripts

- name: Run Tests
run: npm run test
14 changes: 9 additions & 5 deletions configuration/raspberry.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
# Raspberry Specific

This information here is based on the latest release of
[Raspberry Pi OS](https://www.raspberrypi.com/software/operating-systems/) ("Trixie") from October 1st 2025.
This information here is based on the latest release of
[Raspberry Pi OS](https://www.raspberrypi.com/software/operating-systems/)
("Trixie") from October 1st 2025.

## Adding colored icons

Raspberry Pi OS does not come with colored emoji icons by default. To add them, install the following package:
Raspberry Pi OS does not come with colored emoji icons by default. To add them,
install the following package:

```shell
sudo apt install fonts-noto-color-emoji
```

## Rotating the screen

See the [official documentation](https://www.raspberrypi.com/documentation/computers/configuration.html#set-resolution-and-rotation)
See the
[official documentation](https://www.raspberrypi.com/documentation/computers/configuration.html#set-resolution-and-rotation)

In case you still run an older version of the Raspberry Pi OS, you can follow these instructions:
In case you still run an older version of the Raspberry Pi OS, you can follow
these instructions:

https://pimylifeup.com/raspberry-pi-rotate-screen/
5 changes: 4 additions & 1 deletion cspell.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"version": "0.2",
"language": "en",
"words": [
"Deepwiki",
"anyfileorfolder",
"apikey",
"Autorestart",
Expand All @@ -12,6 +11,8 @@
"custommodules",
"dateheaders",
"datetype",
"Deepwiki",
"endfor",
"envcanada",
"exploader",
"feelslike",
Expand All @@ -34,6 +35,7 @@
"newpos",
"newsfeed",
"nohup",
"noto",
"oenstrom",
"onecall",
"openmeteo",
Expand All @@ -59,6 +61,7 @@
"Teeuw",
"Termine",
"timeformat",
"Trixie",
"trunc",
"tympanus",
"ukmetoffice",
Expand Down
11 changes: 10 additions & 1 deletion getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,31 @@ the install specific instructions below
2. Check if `git` is installed on your machine by executing `git` (should show
usage), otherwise install it
3. Clone the repository:

```shell
git clone https://github.com/MagicMirrorOrg/MagicMirror
```
4. Enter the repository:

4. Enter the repository:

```shell
cd MagicMirror
```

5. Install the application: ``

```shell
node --run install-mm
```

6. Make a copy of the config sample file:

```shell
cp config/config.js.sample config/config.js
```

7. Start the application:

```shell
node --run start
```
Expand Down