this post was submitted on 03 Mar 2025
35 points (100.0% liked)

Linux

53618 readers
57 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 7 years ago
MODERATORS
 

Anybody got any suggestions for a good print-screen / screenshot app?

I'm using the default of Swappy right now and it doesn't really suit my needs.

The MacOS screenshot app is my ideal.

top 25 comments
sorted by: hot top controversial new old
[–] AkatsukiLevi@lemmy.world 26 points 2 years ago (3 children)

Flameshot, I use it everywhere and it works everywhere

[–] PorcupineSlippers@lemmy.ml 6 points 2 years ago

I use flameshot both on Linux and my Windows work laptop. I definitely recommend it

[–] mactan@lemmy.ml 5 points 2 years ago (1 children)

I like flameshot but it needs a bunch of window rule to work properly on kde Wayland apparently it uses some wayland wlroots-isms that plasma doesn't implement

[–] AkatsukiLevi@lemmy.world 1 points 2 years ago

First I heard of this (but then, I'm stuck on outdated GPU so no Wayland for me T~T)

[–] clif@lemmy.world 2 points 2 years ago

Second this. Think I heard about it on lemmy, been using it ever since. Built in editing, copy to clipboard, save to file, all the stuff I need.

[–] dan@upvote.au 22 points 2 years ago (1 children)

I like the default one in KDE (Spectacle). It does everything I need, and can take both screenshots and recordings. I don't think it works with other DEs though.

[–] lemmeBe@sh.itjust.works 2 points 2 years ago

+1. Works great.

[–] Mwa@lemm.ee 12 points 2 years ago

Flameshot I use it with cinnamon.

[–] utopiah@lemmy.ml 8 points 2 years ago* (last edited 2 years ago)

scrot if you want to use the CLI, (KDE) Spectacle if you need a UI.

[–] MonkderVierte@lemmy.ml 7 points 2 years ago* (last edited 2 years ago)

magick import of imagemagick has a crosshair. Here's my function:

screnshot() {
    ## script to make screenshots with imagemagick's import command and display them
    ## usage: screenshot <path> <name>

    _id="$(date "+%Y-%m-%d_%H-%M-%S")"
    _dir="${1:-$XDG_CACHE_HOME}"
    _shot="$_dir"/"${2:-shot_$_id}.png"

    mkdir -p "$_dir"
    printf '%s\n' "$_shot"
    magick import "$_shot" && \
    magick display "$_shot"
}

And good old xfce4-screenshooter, xfce4-screenshooter -r and xfce4-screenshooter -w.

[–] pewpew@feddit.it 7 points 2 years ago (1 children)
[–] rmrf@lemmy.ml 3 points 2 years ago* (last edited 2 years ago)

I love flameshot, but unfortunately it's support for more than one monitor on wayland has me looking for an alternative :(

Alternative found: Spectacle in rectangular capture mode is the best

[–] muhyb@programming.dev 6 points 2 years ago

I don't know about Swappy but I use Grim + Slurp.

[–] akalanka@masto.es 6 points 2 years ago

@brownmustardminion I use KDE's Spectacle, and I like it a lot!

[–] warmaster@lemmy.world 5 points 2 years ago (1 children)

Kde's Spectacle is awesome

[–] merthyr1831@lemmy.ml 1 points 2 years ago

it's the most mac-like (and Windows, it pulls a good medium)

[–] huskypenguin@sh.itjust.works 5 points 2 years ago (1 children)
[–] brownmustardminion@lemmy.ml 1 points 2 years ago (2 children)
[–] Uebercomplicated@lemmy.ml 4 points 2 years ago

I'd go with grimshot then, which I think works for hyprland as well (it's made for sway). It provides an interface over Grim, slurp, and jq, and makes life easy. Combine it with a image viewer like imv, and your set!

[–] tasankovasara@sopuli.xyz 4 points 2 years ago* (last edited 2 years ago)

grim + slurp ftw. On my system mod+ctrl+s -> select area by drawing a box -> screenshot saved as shot.png in the Downloads directory where even sandboxed apps can read it. Next shot just overwrites the previous one.

[–] promitheas@programming.dev 3 points 2 years ago

Not sure what the MacOS one is, but i use flameshot and im happy with it

[–] Dirk@lemmy.ml 3 points 2 years ago

it doesn’t really suit my needs.

What are your needs?

[–] buwho@lemmy.ml 2 points 1 year ago
[–] drkt@scribe.disroot.org 2 points 2 years ago

I honestly just use a shellscript bound to a key because I think all of the screenshot software on Linux is garbage.

https://drkt.eu/files/scripts/ss.sh

[–] eshep@social.trom.tf 2 points 2 years ago

@brownmustardminion I think you'd be fine still usin swappy, just use it in a way that does what you need. I use maim piped to xclip as below, then I tie each of those cases to [PrScr] with different modkeys.

case "${1}" in
    area)     maim --hidecursor -s |tee $HOME/Pictures/Screenshots/$(date +%y%m%d-%H%M%S).png |xclip -selection clipboard -t image/png
    ;;
    savew)    maim --hidecursor -i $(xdotool getactivewindow) |tee $HOME/Pictures/Screenshots/$(date +%y%m%d-%H%M%S).png |xclip -selection clipboard -t image/png
    ;;
    savef)    maim --hidecursor |tee $HOME/Pictures/Screenshots/$(date +%y%m%d-%H%M%S).png |xclip -selection clipboard -t image/png
    ;;
esac