From 309f547a5e8cf3a352f27bfb8aba2d4217ea32fa Mon Sep 17 00:00:00 2001 From: "alexei.dolgolyov" Date: Tue, 24 Mar 2026 15:07:09 +0300 Subject: [PATCH] feat: add default MDI icons to example config scripts --- config.example.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config.example.yaml b/config.example.yaml index a699974..5033d88 100644 --- a/config.example.yaml +++ b/config.example.yaml @@ -20,6 +20,7 @@ scripts: command: "rundll32.exe user32.dll,LockWorkStation" label: "Lock Screen" description: "Lock the workstation" + icon: "mdi:lock" timeout: 5 shell: true @@ -27,6 +28,7 @@ scripts: command: "shutdown /h" label: "Hibernate" description: "Hibernate the PC" + icon: "mdi:power-sleep" timeout: 10 shell: true @@ -34,6 +36,7 @@ scripts: command: "rundll32.exe powrprof.dll,SetSuspendState 0,1,0" label: "Sleep" description: "Put PC to sleep" + icon: "mdi:sleep" timeout: 10 shell: true @@ -41,6 +44,7 @@ scripts: command: "shutdown /s /t 0" label: "Shutdown" description: "Shutdown the PC immediately" + icon: "mdi:power" timeout: 10 shell: true @@ -48,6 +52,7 @@ scripts: command: "shutdown /r /t 0" label: "Restart" description: "Restart the PC immediately" + icon: "mdi:restart" timeout: 10 shell: true