From 1313b899ad9e0aba73aadedb249da1e5dfbf1486 Mon Sep 17 00:00:00 2001 From: 八奈見 レイ Date: Thu, 19 Feb 2026 17:30:02 +0530 Subject: config: added option to set session icons (#1189) --- config/SessionConfig.qml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'config/SessionConfig.qml') diff --git a/config/SessionConfig.qml b/config/SessionConfig.qml index f65ec6d..414f821 100644 --- a/config/SessionConfig.qml +++ b/config/SessionConfig.qml @@ -4,10 +4,18 @@ JsonObject { property bool enabled: true property int dragThreshold: 30 property bool vimKeybinds: false + property Icons icons: Icons {} property Commands commands: Commands {} property Sizes sizes: Sizes {} + component Icons: JsonObject { + property string logout: "logout" + property string shutdown: "power_settings_new" + property string hibernate: "downloading" + property string reboot: "cached" + } + component Commands: JsonObject { property list logout: ["loginctl", "terminate-user", ""] property list shutdown: ["systemctl", "poweroff"] -- cgit v1.2.3-freya