diff options
author | Aylur <[email protected]> | 2024-09-04 23:32:53 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-04 23:32:53 +0000 |
commit | 93e41a321212361c175812788492d56e5a89ade3 (patch) | |
tree | 17d8513fb7f240acb8d9f5d5a95041a06b245e4d /docs/ags/utilities.md | |
parent | 539a6b4cc1976aafd395e29450da83a17a73a6e0 (diff) |
docs: fix links
added initial documention for each library
Diffstat (limited to 'docs/ags/utilities.md')
-rw-r--r-- | docs/ags/utilities.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ags/utilities.md b/docs/ags/utilities.md index f20c7ff..81551bc 100644 --- a/docs/ags/utilities.md +++ b/docs/ags/utilities.md @@ -48,7 +48,7 @@ import { interval, timeout, idle } from "astal" You can use javascript native `setTimeout` or `setInterval` they return a [GLib.Source](https://docs.gtk.org/glib/struct.Source.html) instance. Alternatively you can use these functions provided by Astal, -which return an [Astal.Time]() instance. +which return an [Astal.Time](https://aylur.github.io/libastal/class.Time.html) instance. `Astal.Time` has a `now` signal and a `cancelled` signal. @@ -105,7 +105,7 @@ import { subprocess, exec, execAsync } from "astal" ### Subprocess You can start a subprocess and run callback functions whenever it outputs to -stdout or stderr. [Astal.Process]() has a `stdout` and `stderr` signal. +stdout or stderr. [Astal.Process](https://aylur.github.io/libastal/class.Process.html) has a `stdout` and `stderr` signal. ```typescript function subprocess(args: { |