powermenu actions to config
This commit is contained in:
parent
85acbba92d
commit
721cd85fec
3 changed files with 28 additions and 14 deletions
18
config/PowerMenu.qml
Normal file
18
config/PowerMenu.qml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import Quickshell
|
||||
|
||||
PersistentProperties {
|
||||
property list<var> actions: [
|
||||
{
|
||||
text: " Logout",
|
||||
command: "hyprctl dispatch exit"
|
||||
},
|
||||
{
|
||||
text: " Reboot",
|
||||
command: "systemctl reboot"
|
||||
},
|
||||
{
|
||||
text: " Shutdown",
|
||||
command: "systemctl poweroff"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue