46 lines
1,000 B
JavaScript
46 lines
1,000 B
JavaScript
import { CenterBox, Label } from 'resource:///com/github/Aylur/ags/widget.js';
|
|
|
|
import PopupWindow from './misc/popup.js';
|
|
import Button from './misc/cursorbox.js';
|
|
|
|
|
|
const PowermenuWidget = () => CenterBox({
|
|
className: 'powermenu',
|
|
vertical: false,
|
|
|
|
startWidget: Button({
|
|
type: 'Button',
|
|
className: 'shutdown',
|
|
onPrimaryClickRelease: 'systemctl poweroff',
|
|
|
|
child: Label({
|
|
label: '襤',
|
|
}),
|
|
}),
|
|
|
|
centerWidget: Button({
|
|
type: 'Button',
|
|
className: 'reboot',
|
|
onPrimaryClickRelease: 'systemctl reboot',
|
|
|
|
child: Label({
|
|
label: '勒',
|
|
}),
|
|
}),
|
|
|
|
endWidget: Button({
|
|
type: 'Button',
|
|
className: 'logout',
|
|
onPrimaryClickRelease: 'hyprctl dispatch exit',
|
|
|
|
child: Label({
|
|
label: '',
|
|
}),
|
|
}),
|
|
});
|
|
|
|
export default () => PopupWindow({
|
|
name: 'powermenu',
|
|
transition: 'crossfade',
|
|
child: PowermenuWidget(),
|
|
});
|