parent
1ce40f2c1a
commit
6ca0d7248b
329 changed files with 178 additions and 139 deletions
modules/ags/config
23
modules/ags/config/app.ts
Normal file
23
modules/ags/config/app.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
// TODO: persisting data like bluetooth
|
||||
// TODO: quick-settings
|
||||
// TODO: music player stuff
|
||||
// TODO: see if I can bundle each config separately with nix
|
||||
|
||||
import { programArgs } from 'system';
|
||||
|
||||
import binto from './configurations/binto';
|
||||
import wim from './configurations/wim';
|
||||
|
||||
import greeter from './configurations/greeter';
|
||||
import lock from './configurations/lock';
|
||||
|
||||
|
||||
switch (programArgs[0]) {
|
||||
case 'binto': binto(); break;
|
||||
|
||||
case 'wim': wim(); break;
|
||||
|
||||
case 'greeter': greeter(); break;
|
||||
|
||||
case 'lock': lock(); break;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue