Piping

Results 38 comments of Piping

@Duncaen does it mean once the soft link happens the runit will run the service immediately? As a new user who is referring to the doc during instillation, it is...

@Duncaen Sure. I think the the time delay need to be mentioned . And using `sv start` to verify the change will be more deterministic.

A little bit of redundancy is not bad at all. Just referring the general enabling services section does not solve the problem of specific service, i.e I have to look...

@Duncaen I don't think it hurts reading experience since it provides whatever information is needed by a reader who is looking for the exact command. But I don't want to...

in code `contents/code/tilingmanager.js` I see I can write a new function like this ```js KWin.registerShortcut("TILING: Toggle Floating", "TILING: Toggle Floating and center the Application Window", "", function() { var client...

```js function() { var client = workspace.activeClient; if (client == null) { print("No active client"); return; } // This can be undefined if the client // has never been seen...

@kprinssu yeah, I am talking about UI. I never look at windows development and don't know C#. But if you can give me a start point on where the code...

@ethanmsmith Thanks!!

@ShivamSarodia Thanks for your input. Both `extern int A[]; ` and `extern int A[5];` have external linkage. But they have different storage duration. `A[5]` is allocated in the stack. And...