mirror of
https://github.com/Almamu/linux-wallpaperengine.git
synced 2025-09-14 13:56:48 +08:00
chore: mention some of the common issues in the README.md
This commit is contained in:
parent
cb0df539d4
commit
653d70e8b6
32
README.md
32
README.md
@ -157,34 +157,34 @@ You can use either:
|
|||||||
|
|
||||||
### 💡 Examples
|
### 💡 Examples
|
||||||
|
|
||||||
#### Run a background by ID:
|
#### Run a background by ID
|
||||||
```bash
|
```bash
|
||||||
./linux-wallpaperengine 1845706469
|
./linux-wallpaperengine 1845706469
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Run a background from a folder:
|
#### Run a background from a folder
|
||||||
```bash
|
```bash
|
||||||
./linux-wallpaperengine ~/backgrounds/1845706469/
|
./linux-wallpaperengine ~/backgrounds/1845706469/
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Assign backgrounds to screens with scaling:
|
#### Assign backgrounds to screens with scaling
|
||||||
```bash
|
```bash
|
||||||
./linux-wallpaperengine \
|
./linux-wallpaperengine \
|
||||||
--scaling stretch --screen-root eDP-1 --bg 2667198601 \
|
--scaling stretch --screen-root eDP-1 --bg 2667198601 \
|
||||||
--scaling fill --screen-root HDMI-1 --bg 2667198602
|
--scaling fill --screen-root HDMI-1 --bg 2667198602
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Run in a window:
|
#### Run in a window
|
||||||
```bash
|
```bash
|
||||||
./linux-wallpaperengine --window 0x0x1280x720 1845706469
|
./linux-wallpaperengine --window 0x0x1280x720 1845706469
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Limit FPS to save power:
|
#### Limit FPS to save power
|
||||||
```bash
|
```bash
|
||||||
./linux-wallpaperengine --fps 30 1845706469
|
./linux-wallpaperengine --fps 30 1845706469
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Take a screenshot:
|
#### Take a screenshot
|
||||||
```bash
|
```bash
|
||||||
./linux-wallpaperengine --screenshot ~/wallpaper.png 1845706469
|
./linux-wallpaperengine --screenshot ~/wallpaper.png 1845706469
|
||||||
```
|
```
|
||||||
@ -192,7 +192,7 @@ You can use either:
|
|||||||
This can be useful as output for pywal or other color systems that use images as basis to generate a set of colors
|
This can be useful as output for pywal or other color systems that use images as basis to generate a set of colors
|
||||||
to apply to your system.
|
to apply to your system.
|
||||||
|
|
||||||
#### View and change properties:
|
#### View and change properties
|
||||||
```bash
|
```bash
|
||||||
./linux-wallpaperengine --list-properties 2370927443
|
./linux-wallpaperengine --list-properties 2370927443
|
||||||
```
|
```
|
||||||
@ -268,6 +268,24 @@ Any of these values can be modified with the --set-property switch. Say you want
|
|||||||

|

|
||||||

|

|
||||||
|
|
||||||
|
## 🪲 Common issues
|
||||||
|
### Black screen when setting as screen's background
|
||||||
|
This can be caused by a few different things depending on your environment and setup.
|
||||||
|
|
||||||
|
### X11
|
||||||
|
Common symptom of a compositor drawing to the background which prevents Wallpaper Engine from being properly visible.
|
||||||
|
The only solution currently is disabling the compositor so Wallpaper Engine can properly draw on the screen
|
||||||
|
|
||||||
|
### NVIDIA
|
||||||
|
Some users have had issues with GLFW initialization and other OpenGL errors. These are generally something that's
|
||||||
|
worth reporting in the issues. Sometimes adding this variable when running Wallpaper Engine helps and/or solves
|
||||||
|
the issue:
|
||||||
|
```bash
|
||||||
|
__GL_THREADED_OPTIMIZATIONS=0 linux-wallpaperengine
|
||||||
|
```
|
||||||
|
|
||||||
|
We'll be looking at improving this in the future, but for now it can be a useful workaround.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 🙏 Special Thanks
|
## 🙏 Special Thanks
|
||||||
|
Loading…
Reference in New Issue
Block a user