27 lines
615 B
JavaScript
27 lines
615 B
JavaScript
import App from 'resource:///com/github/Aylur/ags/app.js';
|
|
import { CenterBox, EventBox } from 'resource:///com/github/Aylur/ags/widget.js';
|
|
|
|
import Gtk from 'gi://Gtk';
|
|
|
|
|
|
export default ({
|
|
child,
|
|
...props
|
|
}) => {
|
|
const widget = EventBox({
|
|
...props,
|
|
});
|
|
|
|
const gesture = Gtk.GestureSwipe.new(widget);
|
|
|
|
widget.add(CenterBox({
|
|
children: [child],
|
|
connections: [[gesture, () => {
|
|
const velocity = gesture.get_velocity()[1];
|
|
if (velocity < -100)
|
|
App.openWindow('applauncher');
|
|
}, 'update']],
|
|
}));
|
|
|
|
return widget;
|
|
};
|