diff options
author | kleines Filmröllchen <malu.bertsch@gmail.com> | 2022-01-10 23:00:53 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-01-11 00:24:57 +0100 |
commit | becf74097e853d9ad501628f9d6f8b70cdaa8d6e (patch) | |
tree | 699a4e3f4fa46adb5310ce5dff712d39a395ab62 /Base/usr | |
parent | 984bae9038da9a1b20b185260553db762f6ec035 (diff) | |
download | serenity-becf74097e853d9ad501628f9d6f8b70cdaa8d6e.zip |
Help: Directly launch an app from its help page
Through links in the help page, the user can directly launch the app
whose help page is currently viewed. The idea for this feature came up
in the discussion of #11557
(https://github.com/SerenityOS/serenity/pull/11557#issuecomment-1004830728
). The intention is that the user can simply open the app they are
currently trying to understand, and play around with it, learn by doing,
or follow along with any guide that may be present in the help page. It
feels very great :^)
Diffstat (limited to 'Base/usr')
-rw-r--r-- | Base/usr/share/man/man1/FontEditor.md | 2 | ||||
-rw-r--r-- | Base/usr/share/man/man1/ImageViewer.md | 2 | ||||
-rw-r--r-- | Base/usr/share/man/man1/Inspector.md | 2 | ||||
-rw-r--r-- | Base/usr/share/man/man1/Mail.md | 2 | ||||
-rw-r--r-- | Base/usr/share/man/man1/Playground.md | 2 | ||||
-rw-r--r-- | Base/usr/share/man/man1/Profiler.md | 2 | ||||
-rw-r--r-- | Base/usr/share/man/man1/Terminal.md | 2 | ||||
-rw-r--r-- | Base/usr/share/man/man1/TextEditor.md | 2 |
8 files changed, 16 insertions, 0 deletions
diff --git a/Base/usr/share/man/man1/FontEditor.md b/Base/usr/share/man/man1/FontEditor.md index 3d4af06eae..26cd6139cf 100644 --- a/Base/usr/share/man/man1/FontEditor.md +++ b/Base/usr/share/man/man1/FontEditor.md @@ -2,6 +2,8 @@ FontEditor - Serenity font editor +[Open](file:///bin/FontEditor) + ## Synopsis ```**sh diff --git a/Base/usr/share/man/man1/ImageViewer.md b/Base/usr/share/man/man1/ImageViewer.md index 697de348f7..3550e79c5b 100644 --- a/Base/usr/share/man/man1/ImageViewer.md +++ b/Base/usr/share/man/man1/ImageViewer.md @@ -2,6 +2,8 @@ Image Viewer - SerenityOS image viewer +[Open](file:///bin/ImageViewer) + ## Synopsis ```**sh diff --git a/Base/usr/share/man/man1/Inspector.md b/Base/usr/share/man/man1/Inspector.md index 47309d8175..86ac235801 100644 --- a/Base/usr/share/man/man1/Inspector.md +++ b/Base/usr/share/man/man1/Inspector.md @@ -2,6 +2,8 @@ Inspector - Serenity process inspector +[Open](file:///bin/Inspector) + ## Synopsis ```**sh diff --git a/Base/usr/share/man/man1/Mail.md b/Base/usr/share/man/man1/Mail.md index c63ac32d86..060957d060 100644 --- a/Base/usr/share/man/man1/Mail.md +++ b/Base/usr/share/man/man1/Mail.md @@ -2,6 +2,8 @@ Mail - Serenity e-mail client +[Open](file:///bin/Mail) + ## Synopsis ```**sh diff --git a/Base/usr/share/man/man1/Playground.md b/Base/usr/share/man/man1/Playground.md index fea3b7c54c..e1529557a1 100644 --- a/Base/usr/share/man/man1/Playground.md +++ b/Base/usr/share/man/man1/Playground.md @@ -2,6 +2,8 @@ Playground - GUI Markup Language (GML) editor +[Open](file:///bin/Playground) + ## Synopsis ```**sh diff --git a/Base/usr/share/man/man1/Profiler.md b/Base/usr/share/man/man1/Profiler.md index d71c3bb130..e0a15864a5 100644 --- a/Base/usr/share/man/man1/Profiler.md +++ b/Base/usr/share/man/man1/Profiler.md @@ -2,6 +2,8 @@ Profiler - Serenity process profiler +[Open](file:///bin/Profiler) + ## Synopsis ```**sh diff --git a/Base/usr/share/man/man1/Terminal.md b/Base/usr/share/man/man1/Terminal.md index 9fdf5eaf65..9164fb10db 100644 --- a/Base/usr/share/man/man1/Terminal.md +++ b/Base/usr/share/man/man1/Terminal.md @@ -2,6 +2,8 @@ Terminal - Serenity terminal emulator +[Open](file:///bin/Terminal) + ## Synopsis ```**sh diff --git a/Base/usr/share/man/man1/TextEditor.md b/Base/usr/share/man/man1/TextEditor.md index e1a6d4687c..0e8c2ae498 100644 --- a/Base/usr/share/man/man1/TextEditor.md +++ b/Base/usr/share/man/man1/TextEditor.md @@ -2,6 +2,8 @@ TextEditor - SerenityOS text editor +[Open](file:///bin/TextEditor) + ## Synopsis ```**sh |