diff options
Diffstat (limited to 'Userland/Services/WindowServer/WindowServer.ipc')
-rw-r--r-- | Userland/Services/WindowServer/WindowServer.ipc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Userland/Services/WindowServer/WindowServer.ipc b/Userland/Services/WindowServer/WindowServer.ipc index f40e4e1394..e8e8b7b4bc 100644 --- a/Userland/Services/WindowServer/WindowServer.ipc +++ b/Userland/Services/WindowServer/WindowServer.ipc @@ -130,7 +130,7 @@ endpoint WindowServer start_drag([UTF8] DeprecatedString text, HashMap<DeprecatedString,ByteBuffer> mime_data, Gfx::ShareableBitmap drag_bitmap) => (bool started) set_accepts_drag(bool accepts) =| - set_system_theme(DeprecatedString theme_path, [UTF8] DeprecatedString theme_name, bool keep_desktop_background) => (bool success) + set_system_theme(DeprecatedString theme_path, [UTF8] DeprecatedString theme_name, bool keep_desktop_background, Optional<DeprecatedString> color_scheme_path) => (bool success) get_system_theme() => ([UTF8] DeprecatedString theme_name) refresh_system_theme() =| @@ -139,6 +139,8 @@ endpoint WindowServer clear_system_theme_override() =| is_system_theme_overridden() => (bool overridden) + get_preferred_color_scheme() => (Optional<DeprecatedString> path) + apply_cursor_theme(DeprecatedString name) =| get_cursor_theme() => (DeprecatedString name) |