Joystickwake + background

This commit is contained in:
Filippo Berto 2021-06-22 11:22:21 +02:00
parent e080d5b9b8
commit 8acab53e36
10 changed files with 135 additions and 35 deletions

View file

@ -238,7 +238,7 @@ in
};
volume = colors.normal // {
padding = 1;
text = "VOL <bar-volume> <label-volume> <ramp-volume>";
text = "VOL <label-volume> <ramp-volume>";
};
};
label.muted = {
@ -294,18 +294,22 @@ in
};
menu = [
[
({ text = "Reboot"; exec = "#powermenu.open.1"; })
({ text = "Hibernate"; exec = "#powermenu.open.2"; })
({ text = "Power off"; exec = "#powermenu.open.3"; })
({ text = "Logout"; exec = "#powermenu.open.1"; })
({ text = "Reboot"; exec = "#powermenu.open.2"; })
({ text = "Hibernate"; exec = "#powermenu.open.3"; })
({ text = "Power off"; exec = "#powermenu.open.4"; })
]
[
({ text = "Reboot"; exec = "reboot"; })
({ text = "Logout"; exec = "${pkgs.systemd}/bin/loginctl terminate-session self"; })
]
[
({ text = "Hibernate"; exec = "systemctl hibernate"; })
({ text = "Reboot"; exec = "${pkgs.systemd}/bin/systemctl reboot"; })
]
[
({ text = "Power off"; exec = "shutdown now"; })
({ text = "Hibernate"; exec = "${pkgs.systemd}/bin/systemctl hibernate"; })
]
[
({ text = "Power off"; exec = "${pkgs.systemd}/bin/shutdown now"; })
]
];
};