File tree Expand file tree Collapse file tree 4 files changed +197
-170
lines changed
Expand file tree Collapse file tree 4 files changed +197
-170
lines changed Original file line number Diff line number Diff line change 11# Raspberry Specific
22
3- For now take a look at
4- [ the wiki page] ( https://github.com/MagicMirrorOrg/MagicMirror/wiki/Configuring-the-Raspberry-Pi ) .
3+ This information here is based on the latest release of
4+ [ Raspberry Pi OS] ( https://www.raspberrypi.com/software/operating-systems/ ) ("Trixie") from October 1st 2025.
5+
6+ ## Adding colored icons
7+
8+ Raspberry Pi OS does not come with colored emoji icons by default. To add them, install the following package:
9+
10+ ``` shell
11+ sudo apt install fonts-noto-color-emoji
12+ ```
13+
14+ ## Rotating the screen
15+
16+ See the [ official documentation] ( https://www.raspberrypi.com/documentation/computers/configuration.html#set-resolution-and-rotation )
17+
18+ In case you still run an older version of the Raspberry Pi OS, you can follow these instructions:
19+
20+ https://pimylifeup.com/raspberry-pi-rotate-screen/
Original file line number Diff line number Diff line change @@ -27,12 +27,25 @@ the install specific instructions below
27272 . Check if ` git ` is installed on your machine by executing ` git ` (should show
2828 usage), otherwise install it
29293 . Clone the repository:
30- ` git clone https://github.com/MagicMirrorOrg/MagicMirror `
31- 4 . Enter the repository: ` cd MagicMirror `
32- 5 . Install the application: ` node --run install-mm `
30+ ``` shell
31+ git clone https://github.com/MagicMirrorOrg/MagicMirror
32+ ```
33+ 4 . Enter the repository:
34+ ``` shell
35+ cd MagicMirror
36+ ```
37+ 5 . Install the application: ``
38+ ``` shell
39+ node --run install-mm
40+ ```
33416 . Make a copy of the config sample file:
34- ` cp config/config.js.sample config/config.js `
35- 7 . Start the application: ` node --run start `
42+ ``` shell
43+ cp config/config.js.sample config/config.js
44+ ```
45+ 7 . Start the application:
46+ ``` shell
47+ node --run start
48+ ```
3649
3750::: warning NOTE
3851
You can’t perform that action at this time.
0 commit comments