1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:07:46 +00:00

WindowServer: Allow changing the desktop wallpaper through a sysctl.

Just write the path of your new wallpaper to /proc/sys/wm_wallpaper. :^)
This commit is contained in:
Andreas Kling 2019-02-08 09:49:09 +01:00
parent cda598c29c
commit 7a996e608c
2 changed files with 13 additions and 3 deletions

View file

@ -105,6 +105,7 @@ private:
RetainPtr<Font> m_font;
Lockable<String> m_wallpaper_path;
RetainPtr<GraphicsBitmap> m_wallpaper;
mutable Lock m_lock;