Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

agnos.is Forums

  1. Home
  2. Linux
  3. Print-screen App

Print-screen App

Scheduled Pinned Locked Moved Linux
linux
26 Posts 24 Posters 50 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H [email protected]

    What's your DE?

    B This user is from outside of this forum
    B This user is from outside of this forum
    [email protected]
    wrote on last edited by
    #5

    Hyprland

    U tasankovasara@sopuli.xyzT 2 Replies Last reply
    0
    • B [email protected]

      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.

      dan@upvote.auD This user is from outside of this forum
      dan@upvote.auD This user is from outside of this forum
      [email protected]
      wrote on last edited by
      #6

      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.

      L 1 Reply Last reply
      0
      • akatsukilevi@lemmy.worldA [email protected]

        Flameshot, I use it everywhere and it works everywhere

        P This user is from outside of this forum
        P This user is from outside of this forum
        [email protected]
        wrote on last edited by
        #7

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

        1 Reply Last reply
        0
        • B [email protected]

          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.

          M This user is from outside of this forum
          M This user is from outside of this forum
          [email protected]
          wrote on last edited by
          #8

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

          1 Reply Last reply
          0
          • akatsukilevi@lemmy.worldA [email protected]

            Flameshot, I use it everywhere and it works everywhere

            M This user is from outside of this forum
            M This user is from outside of this forum
            [email protected]
            wrote on last edited by
            #9

            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.worldA 1 Reply Last reply
            0
            • B [email protected]

              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.

              M This user is from outside of this forum
              M This user is from outside of this forum
              [email protected]
              wrote on last edited by
              #10

              Flameshot I use it with cinnamon.

              1 Reply Last reply
              0
              • B [email protected]

                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.

                drkt@scribe.disroot.orgD This user is from outside of this forum
                drkt@scribe.disroot.orgD This user is from outside of this forum
                [email protected]
                wrote on last edited by
                #11

                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

                1 Reply Last reply
                0
                • B [email protected]

                  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.

                  ? Offline
                  ? Offline
                  Guest
                  wrote on last edited by
                  #12

                  @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
                  1 Reply Last reply
                  0
                  • dan@upvote.auD [email protected]

                    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.

                    L This user is from outside of this forum
                    L This user is from outside of this forum
                    [email protected]
                    wrote on last edited by
                    #13

                    +1. Works great.

                    1 Reply Last reply
                    0
                    • B [email protected]

                      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.

                      M This user is from outside of this forum
                      M This user is from outside of this forum
                      [email protected]
                      wrote on last edited by
                      #14

                      magick import of imagemagick. 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_RUNTIME_DIR}"
                          _shot="$_dir"/"${2:-shot_$_id}.png"
                      
                          mkdir -p "$_dir"
                          magick import "$_shot"
                          viewnior "$_shot"
                      }
                      

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

                      1 Reply Last reply
                      0
                      • B [email protected]

                        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.

                        akalanka@masto.esA This user is from outside of this forum
                        akalanka@masto.esA This user is from outside of this forum
                        [email protected]
                        wrote on last edited by
                        #15

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

                        1 Reply Last reply
                        0
                        • B [email protected]

                          Hyprland

                          U This user is from outside of this forum
                          U This user is from outside of this forum
                          [email protected]
                          wrote on last edited by
                          #16

                          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!

                          1 Reply Last reply
                          0
                          • B [email protected]

                            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.

                            U This user is from outside of this forum
                            U This user is from outside of this forum
                            [email protected]
                            wrote on last edited by
                            #17

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

                            1 Reply Last reply
                            0
                            • B [email protected]

                              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.

                              dirk@lemmy.mlD This user is from outside of this forum
                              dirk@lemmy.mlD This user is from outside of this forum
                              [email protected]
                              wrote on last edited by
                              #18

                              it doesn’t really suit my needs.

                              What are your needs?

                              1 Reply Last reply
                              0
                              • B [email protected]

                                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.

                                W This user is from outside of this forum
                                W This user is from outside of this forum
                                [email protected]
                                wrote on last edited by
                                #19

                                Kde's Spectacle is awesome

                                M 1 Reply Last reply
                                0
                                • B [email protected]

                                  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.

                                  pewpew@feddit.itP This user is from outside of this forum
                                  pewpew@feddit.itP This user is from outside of this forum
                                  [email protected]
                                  wrote on last edited by
                                  #20

                                  Flameshot

                                  R 1 Reply Last reply
                                  0
                                  • B [email protected]

                                    Hyprland

                                    tasankovasara@sopuli.xyzT This user is from outside of this forum
                                    tasankovasara@sopuli.xyzT This user is from outside of this forum
                                    [email protected]
                                    wrote on last edited by
                                    #21

                                    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.

                                    1 Reply Last reply
                                    0
                                    • W [email protected]

                                      Kde's Spectacle is awesome

                                      M This user is from outside of this forum
                                      M This user is from outside of this forum
                                      [email protected]
                                      wrote on last edited by
                                      #22

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

                                      1 Reply Last reply
                                      0
                                      • akatsukilevi@lemmy.worldA [email protected]

                                        Flameshot, I use it everywhere and it works everywhere

                                        clif@lemmy.worldC This user is from outside of this forum
                                        clif@lemmy.worldC This user is from outside of this forum
                                        [email protected]
                                        wrote on last edited by
                                        #23

                                        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.

                                        1 Reply Last reply
                                        0
                                        • pewpew@feddit.itP [email protected]

                                          Flameshot

                                          R This user is from outside of this forum
                                          R This user is from outside of this forum
                                          [email protected]
                                          wrote on last edited by
                                          #24

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

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups