diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-14 18:34:44 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-14 18:34:44 +0200 |
commit | 58d73ea36c84c397d51286df0139c9840639c8cf (patch) | |
tree | c9da5591115485ed72acc57a57016b7d8b30155a /Base | |
parent | d039542c7c022954ca305a79b379c076900de3d7 (diff) | |
download | serenity-58d73ea36c84c397d51286df0139c9840639c8cf.zip |
Userland: Rename QuickShow => Image Viewer
The old name was a bit too ambiguous. This one is crystal clear. :^)
Diffstat (limited to 'Base')
-rw-r--r-- | Base/etc/shellrc | 2 | ||||
-rw-r--r-- | Base/home/anon/.config/LaunchServer.ini | 16 | ||||
-rw-r--r-- | Base/res/apps/ImageViewer.af (renamed from Base/res/apps/QuickShow.af) | 4 | ||||
-rw-r--r-- | Base/usr/share/man/man1/ImageViewer.md | 23 | ||||
-rw-r--r-- | Base/usr/share/man/man1/QuickShow.md | 23 |
5 files changed, 34 insertions, 34 deletions
diff --git a/Base/etc/shellrc b/Base/etc/shellrc index 2db638e0b5..f5e830b251 100644 --- a/Base/etc/shellrc +++ b/Base/etc/shellrc @@ -11,7 +11,7 @@ alias wg=WidgetGallery alias te=TextEditor alias he=HexEditor alias pp=PixelPaint -alias qs=QuickShow +alias iv=ImageViewer alias pi=Piano alias calc=Calculator alias calendar=Calendar diff --git a/Base/home/anon/.config/LaunchServer.ini b/Base/home/anon/.config/LaunchServer.ini index 45636346c7..9d9d0adc7e 100644 --- a/Base/home/anon/.config/LaunchServer.ini +++ b/Base/home/anon/.config/LaunchServer.ini @@ -1,12 +1,12 @@ [FileType] -pbm=/bin/QuickShow -pgm=/bin/QuickShow -png=/bin/QuickShow -ppm=/bin/QuickShow -gif=/bin/QuickShow -bmp=/bin/QuickShow -jpg=/bin/QuickShow -jpeg=/bin/QuickShow +pbm=/bin/ImageViewer +pgm=/bin/ImageViewer +png=/bin/ImageViewer +ppm=/bin/ImageViewer +gif=/bin/ImageViewer +bmp=/bin/ImageViewer +jpg=/bin/ImageViewer +jpeg=/bin/ImageViewer html=/bin/Browser wav=/bin/SoundPlayer m3u=/bin/SoundPlayer diff --git a/Base/res/apps/QuickShow.af b/Base/res/apps/ImageViewer.af index fbc18f3b97..d86708d1b2 100644 --- a/Base/res/apps/QuickShow.af +++ b/Base/res/apps/ImageViewer.af @@ -1,6 +1,6 @@ [App] -Name=QuickShow -Executable=/bin/QuickShow +Name=Image Viewer +Executable=/bin/ImageViewer Category=Graphics [Launcher] diff --git a/Base/usr/share/man/man1/ImageViewer.md b/Base/usr/share/man/man1/ImageViewer.md new file mode 100644 index 0000000000..697de348f7 --- /dev/null +++ b/Base/usr/share/man/man1/ImageViewer.md @@ -0,0 +1,23 @@ +## Name + +Image Viewer - SerenityOS image viewer + +## Synopsis + +```**sh +$ ImageViewer [file] +``` + +## Description + +ImageViewer is an image viewing application for SerenityOS. + +## Arguments + +* `file`: The image file to be displayed. + +## Examples + +```sh +$ ImageViewer /res/graphics/buggie.png +``` diff --git a/Base/usr/share/man/man1/QuickShow.md b/Base/usr/share/man/man1/QuickShow.md deleted file mode 100644 index ae1b0b4959..0000000000 --- a/Base/usr/share/man/man1/QuickShow.md +++ /dev/null @@ -1,23 +0,0 @@ -## Name - -QuickShow - Serenity image viewer - -## Synopsis - -```**sh -$ QuickShow [file] -``` - -## Description - -QuickShow is an image viewing application for Serenity. - -## Arguments - -* `file`: The image file to be displayed. - -## Examples - -```sh -$ QuickShow /res/graphics/buggie.png -``` |