18 lines
373 B
QML
18 lines
373 B
QML
import Quickshell
|
|
|
|
PersistentProperties {
|
|
property list<var> actions: [
|
|
{
|
|
text: " Logout",
|
|
command: "hyprctl dispatch exit"
|
|
},
|
|
{
|
|
text: " Reboot",
|
|
command: "systemctl reboot"
|
|
},
|
|
{
|
|
text: " Shutdown",
|
|
command: "systemctl poweroff"
|
|
}
|
|
]
|
|
}
|