[Launcher] fzf, cmd processing, args

This commit is contained in:
2025-03-30 08:00:10 +02:00
parent c0e9062230
commit 666a047814
3 changed files with 40 additions and 1 deletions

View File

@@ -7,4 +7,13 @@ App.start({
main() {
App.get_monitors().map(Bar)
},
requestHandler(request, res) {
if ( request === 'open' ) {
res( 'ok' );
} else if ( request === 'close' ) {
res( 'ok' );
} else if ( request === 'toggle' ) {
res( 'ok' );
}
}
})