nixos-configs/modules/ags/config/ts/setup.ts
matt1432 d2a2878c11
All checks were successful
Discord / discord commits (push) Has been skipped
feat(ags wim): add touch bind to open overview
2024-04-10 19:38:28 -04:00

57 lines
1.3 KiB
TypeScript

const Bluetooth = await Service.import('bluetooth');
import Brightness from '../services/brightness.ts';
import Pointers from '../services/pointers.ts';
import Tablet from '../services/tablet.ts';
import TouchGestures from '../services/touch-gestures.ts';
import closeAll from './misc/closer.ts';
import Persist from './misc/persist.ts';
export default () => {
globalThis.Brightness = Brightness;
globalThis.Pointers = Pointers;
globalThis.Tablet = Tablet;
globalThis.closeAll = closeAll;
Persist({
name: 'bluetooth',
gobject: Bluetooth,
prop: 'enabled',
signal: 'notify::enabled',
});
TouchGestures.addGesture({
name: 'openAppLauncher',
gesture: 'UD',
edge: 'T',
command: () => App.openWindow('win-applauncher'),
});
TouchGestures.addGesture({
name: 'oskOn',
gesture: 'DU',
edge: 'B',
command: () => {
Tablet.oskState = true;
},
});
TouchGestures.addGesture({
name: 'oskOff',
gesture: 'UD',
edge: 'B',
command: () => {
Tablet.oskState = false;
},
});
TouchGestures.addGesture({
name: 'openOverview',
nFingers: '4',
gesture: 'UD',
command: 'hyprctl dispatch hyprexpo:expo on',
});
};