47 lines
902 B
Nix
Executable file
47 lines
902 B
Nix
Executable file
{
|
|
countdownDuration = 3000;
|
|
enableCountdown = true;
|
|
powerOptiolargeButtonsLayout = "single-row";
|
|
largeButtonsStyle = true;
|
|
position = "bottom_center";
|
|
powerOptions = [
|
|
{
|
|
action = "lock";
|
|
countdownEnabled = true;
|
|
enabled = true;
|
|
keybind = "1";
|
|
}
|
|
{
|
|
action = "suspend";
|
|
countdownEnabled = true;
|
|
enabled = true;
|
|
keybind = "2";
|
|
}
|
|
{
|
|
action = "hibernate";
|
|
countdownEnabled = true;
|
|
enabled = true;
|
|
keybind = "3";
|
|
}
|
|
{
|
|
action = "reboot";
|
|
countdownEnabled = true;
|
|
enabled = true;
|
|
keybind = "4";
|
|
}
|
|
{
|
|
action = "logout";
|
|
countdownEnabled = true;
|
|
enabled = true;
|
|
keybind = "5";
|
|
}
|
|
{
|
|
action = "shutdown";
|
|
countdownEnabled = true;
|
|
enabled = true;
|
|
keybind = "6";
|
|
}
|
|
];
|
|
showHeader = false;
|
|
showKeybinds = true;
|
|
}
|