feat: add default MDI icons to example config scripts
Lint & Test / test (push) Successful in 9s

This commit is contained in:
2026-03-24 15:07:09 +03:00
parent 402183765c
commit 309f547a5e
+5
View File
@@ -20,6 +20,7 @@ scripts:
command: "rundll32.exe user32.dll,LockWorkStation" command: "rundll32.exe user32.dll,LockWorkStation"
label: "Lock Screen" label: "Lock Screen"
description: "Lock the workstation" description: "Lock the workstation"
icon: "mdi:lock"
timeout: 5 timeout: 5
shell: true shell: true
@@ -27,6 +28,7 @@ scripts:
command: "shutdown /h" command: "shutdown /h"
label: "Hibernate" label: "Hibernate"
description: "Hibernate the PC" description: "Hibernate the PC"
icon: "mdi:power-sleep"
timeout: 10 timeout: 10
shell: true shell: true
@@ -34,6 +36,7 @@ scripts:
command: "rundll32.exe powrprof.dll,SetSuspendState 0,1,0" command: "rundll32.exe powrprof.dll,SetSuspendState 0,1,0"
label: "Sleep" label: "Sleep"
description: "Put PC to sleep" description: "Put PC to sleep"
icon: "mdi:sleep"
timeout: 10 timeout: 10
shell: true shell: true
@@ -41,6 +44,7 @@ scripts:
command: "shutdown /s /t 0" command: "shutdown /s /t 0"
label: "Shutdown" label: "Shutdown"
description: "Shutdown the PC immediately" description: "Shutdown the PC immediately"
icon: "mdi:power"
timeout: 10 timeout: 10
shell: true shell: true
@@ -48,6 +52,7 @@ scripts:
command: "shutdown /r /t 0" command: "shutdown /r /t 0"
label: "Restart" label: "Restart"
description: "Restart the PC immediately" description: "Restart the PC immediately"
icon: "mdi:restart"
timeout: 10 timeout: 10
shell: true shell: true