nixos-configs/config/ags/js/powermenu.js

45 lines
836 B
JavaScript
Raw Normal View History

import { Widget } from '../imports.js';
const { CenterBox, Label } = Widget;
import { PopupWindow } from './misc/popup.js';
import { Button } from './misc/cursorbox.js'
2023-08-27 10:31:41 -04:00
const PowermenuWidget = CenterBox({
className: 'powermenu',
vertical: false,
2023-08-27 10:31:41 -04:00
startWidget: Button({
className: 'shutdown',
onPrimaryClickRelease: 'systemctl poweroff',
2023-08-27 10:31:41 -04:00
child: Label({
label: '襤',
2023-08-27 10:31:41 -04:00
}),
}),
2023-08-27 10:31:41 -04:00
centerWidget: Button({
className: 'reboot',
onPrimaryClickRelease: 'systemctl reboot',
2023-08-27 10:31:41 -04:00
child: Label({
label: '勒',
2023-08-27 10:31:41 -04:00
}),
}),
2023-08-27 10:31:41 -04:00
endWidget: Button({
className: 'logout',
onPrimaryClickRelease: 'hyprctl dispatch exit',
2023-08-27 10:31:41 -04:00
child: Label({
label: '',
2023-08-27 10:31:41 -04:00
}),
}),
});
export const Powermenu = PopupWindow({
name: 'powermenu',
transition: 'crossfade',
child: PowermenuWidget,
});