nixos-configs/modules/ags/config/ts/setup.ts

57 lines
1.3 KiB
TypeScript
Raw Normal View History

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 () => {
2023-11-10 23:51:50 -05:00
globalThis.Brightness = Brightness;
globalThis.Pointers = Pointers;
2023-11-10 23:51:50 -05:00
globalThis.Tablet = Tablet;
globalThis.closeAll = closeAll;
Persist({
name: 'bluetooth',
gobject: Bluetooth,
prop: 'enabled',
signal: 'notify::enabled',
});
2023-12-07 14:02:28 -05:00
TouchGestures.addGesture({
name: 'openAppLauncher',
gesture: 'UD',
edge: 'T',
command: () => App.openWindow('win-applauncher'),
});
2023-11-05 01:34:13 -05:00
TouchGestures.addGesture({
name: 'oskOn',
gesture: 'DU',
edge: 'B',
command: () => {
Tablet.oskState = true;
},
2023-11-05 01:34:13 -05:00
});
TouchGestures.addGesture({
name: 'oskOff',
gesture: 'UD',
edge: 'B',
command: () => {
Tablet.oskState = false;
},
2023-11-05 01:34:13 -05:00
});
TouchGestures.addGesture({
name: 'openOverview',
nFingers: '3',
gesture: 'UD',
command: 'hyprctl dispatch hyprexpo:expo on',
});
};