diff options
| author | Freya Murphy <freya@freyacat.org> | 2023-11-27 13:03:12 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2023-11-27 13:03:12 -0500 |
| commit | 849ab46bd68fd8e8c275cfa8b918a16cfcd59642 (patch) | |
| tree | 0e6d10d74c6e5096ab8b6c725eb475949edb20fb /.config/sway/logout.d/power/layout | |
| download | dotfiles-arch-849ab46bd68fd8e8c275cfa8b918a16cfcd59642.tar.gz dotfiles-arch-849ab46bd68fd8e8c275cfa8b918a16cfcd59642.tar.bz2 dotfiles-arch-849ab46bd68fd8e8c275cfa8b918a16cfcd59642.zip | |
initial
Diffstat (limited to '.config/sway/logout.d/power/layout')
| -rw-r--r-- | .config/sway/logout.d/power/layout | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.config/sway/logout.d/power/layout b/.config/sway/logout.d/power/layout new file mode 100644 index 0000000..2b53986 --- /dev/null +++ b/.config/sway/logout.d/power/layout @@ -0,0 +1,30 @@ +{ + "label" : "lock", + "action" : "swaylock -f -c 14171d", + "text" : "Lock", + "keybind" : "l" +} +{ + "label" : "logout", + "action" : "loginctl terminate-user $USER", + "text" : "Logout", + "keybind" : "e" +} +{ + "label" : "shutdown", + "action" : "loginctl poweroff", + "text" : "Shutdown", + "keybind" : "s" +} +{ + "label" : "suspend", + "action" : "loginctl suspend", + "text" : "Suspend", + "keybind" : "u" +} +{ + "label" : "reboot", + "action" : "reboot", + "text" : "Reboot", + "keybind" : "r" +} |