From 2c0be243475e7206df984515d471dd9a6fa44842 Mon Sep 17 00:00:00 2001 From: marchersimon <50295997+marchersimon@users.noreply.github.com> Date: Thu, 11 Mar 2021 13:40:06 +0100 Subject: [PATCH] gimp: add page (#5399) --- pages/common/gimp.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/gimp.md diff --git a/pages/common/gimp.md b/pages/common/gimp.md new file mode 100644 index 0000000000..fb0a3b3cbf --- /dev/null +++ b/pages/common/gimp.md @@ -0,0 +1,28 @@ +# gimp + +> An image manipulation and paint program. +> More information: . + +- Launch GIMP: + +`gimp` + +- Launch but don't show the splash screen: + +`gimp --no-splash` + +- Start a new instance, even if there is already a running one: + +`gimp --new-instance` + +- Open the given file as new image: + +`gimp --as-new {{path/to/image}}` + +- Print errors and warnings to the console, instead of showing them in a dialog box: + +`gimp --console-messages` + +- Enable debugging signal handlers: + +`gimp --debug-handlers`