dms-quick-capture

(★ 36)

Screenshot annotation plugin for DankMaterialShell

File Explorer

  • .gitignore
  • CaptureConfig.qml
  • CONTRIBUTING.md
  • LICENSE
  • plugin.json
  • QuickCaptureDaemon.qml
  • QuickCaptureModal.qml
  • QuickCaptureSettings.qml
  • QuickCaptureWidget.qml
  • README.md
  • screenshot.png
  • setup_example.png

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

magick

View Details ▼

Create, edit, compose, or convert between image formats.
This tool replaces `convert` in ImageMagick 7+. See `magick convert` to use the old tool in versions 7+.
Some subcommands, such as `mogrify` have their own usage documentation.

magick {{path/to/input_image.png}} {{path/to/output_image.jpg}}

Convert between image formats:

magick {{path/to/input_image.jpg}} -resize {{100x100}} {{path/to/output_image.jpg}}

Resize an image, making a new copy:

magick {{path/to/input_image.png}} -resize {{50}}% {{path/to/output_image.png}}

Resize an image by a percentage:

🔍

mogrify

View Details ▼

This command is an alias of `magick mogrify`.

tldr magick mogrify

View documentation for the original command:

🔍

zbarimg

View Details ▼

Scan and decode bar codes from image file(s).

zbarimg {{image_file}}

Process an image file:

🔍

dnf install

View Details ▼

Install packages on Red Hat-based distributions.

sudo dnf {{[in|install]}} {{package1 package2 ...}}

Install packages by name:

sudo dnf {{[in|install]}} {{path/to/file}}

Install a package from a local file:

sudo dnf {{[in|install]}} {{https://example.com/package.rpm}}

Install a package from the internet:

// repository documentation