Open-source News

R300 Open-Source Gallium3D Driver Sees New Optimization For Two Decade Old ATI GPUs

Phoronix - Sun, 08/21/2022 - 19:25
Thanks to being open-source, the Mesa R300 Gallium3D driver that is used for supporting OpenGL on the ATI Radeon 9500/9600/9700/9800 series up through the Radeon X1000 "R500" series has seen a new set of performance optimization work twenty years after the R300 GPUs first shipped...

Cloud Hypervisor 26.0 Released With SMBIOS Improvements, Unified Binary For MSHV/KVM

Phoronix - Sun, 08/21/2022 - 18:12
Cloud Hypervisor 26.0 released this week as the newest version of this Rust-based hypervisor focused on cloud workloads and secure computing. The open-source Cloud Hypervisor started out as an Intel software project and continues to be led by them while now under Linux Foundation stewardship and continuing to see contributions from the likes of Arm and Microsoft...

Meteor Lake Support Lands Within The Intel Graphics Compiler "IGC"

Phoronix - Sat, 08/20/2022 - 19:17
Intel's open-source Linux bring-up for Meteor Lake continues. The latest open-source patches on the Meteor Lake front are for the Intel Graphics Compiler (IGC) changes for these 14th Gen CPU graphics...

Mesa Zink Improvements For OpenGL-On-Vulkan Reportedly Make It Faster Than Radeon OpenGL

Phoronix - Sat, 08/20/2022 - 18:25
The latest Mesa 22.3-devel code for Zink's OpenGL on Vulkan implementation has hit an important milestone with the latest code refactoring: it looks like this OpenGL implementation atop the Vulkan API with the RADV driver is beginning to outpace AMD's RadeonSI Gallium3D driver providing native OpenGL support for Radeon GPUs...

KDE's Dolphin Gets A Dedicated Selection Mode, Full-Screen Mode For Elisa

Phoronix - Sat, 08/20/2022 - 17:51
KDE developers had another busy summertime week adding more features to their open-source desktop environment...

What's your favorite screenshot tool on Linux?

opensource.com - Sat, 08/20/2022 - 15:00
What's your favorite screenshot tool on Linux? AmyJune Hineline Sat, 08/20/2022 - 03:00 Register or Login to like Register or Login to like

As the saying goes, a picture is worth a thousand words, and while that's not always the case with terminal commands and code, it still holds true for the graphical desktop. Screenshots capture precisely what's on your screen. I love taking them to have a record of who attends meetings, so I don't have to write it down at the moment. Or to capture a bug when doing UI testing. We all take them for different reasons, though, and there are more ways to take a screenshot than you might at first think.

I started thinking about screenshots after Jim Hall wrote an article listing GNOME screenshots, GIMP, and Firefox as the ways he often takes screenshots. And yet that's just the beginning, as I quickly found out when I asked Opensource.com authors how they each take screenshots.

Making a spectacle Image by:

(Seth Kenlon, CC BY-SA 4.0)

I use Spectacle. It works perfectly for my simple needs.

David Both

More Linux resources Linux commands cheat sheet Advanced Linux commands cheat sheet Free online course: RHEL technical overview Linux networking cheat sheet SELinux cheat sheet Linux common commands cheat sheet What are Linux containers? Our latest Linux articles

I use KDE. It ships with Spectacle, which seems to be responsible for taking a screenshot when I push the PrtScr (Print Screen) key.

A nice feature is that the default action is to take a screenshot immediately when you press PrtScr, but then it brings up the Spectacle interface, so you can take more sophisticated screenshots (a rectangular area, the window under your cursor, and so on.)

Greg Pittman

Framing the shot

For a long time I had wanted to capture only a small amount of the screen in a screenshot, not the whole thing, but struggled to know how.

Since then I've installed KolourPaint. I open the full screenshot inside the program, and cut out the part I want to keep. Hope this could help others suffering the same screenshot dilemma!

Laurence Urhegyi

I use Shift+PrtSc to capture a small amount of the screen in a screenshot.

Agil Antony

Emacs

A while back I created an Elisp function to take a screenshot from Emacs.

Sachin Patil

Flameshot Image by:

(Seth Kenlon, CC BY-SA 4.0)

Flameshot, the one and only! Nothing is missing in this wonderful tool: doodling, arrows, adding text, a pixelate tool for blurring out sensitive information, an autoincrementing counter bubble, save, copy, the ability to open the screenshot in a selected application, and the list goes on and on. Once I installed it, I've never looked for anything else!

A friendly hint: when installing from Flatpak, you might want to use Flatseal to grant access to your home folder, otherwise the Save dialog will feel somewhat empty.

Tomasz Waraksa

ImageMagick #!/bin/bash
current=$(date +%H-%M-%S-%d-%m-%Y).png
if [[ -z "${1}" ]]; then
   import -window root "${HOME}/${current}" # All screen
else
   import "${HOME}/${current}" # Custom screenshot
fi

notify-send "Screenshot ${current} taken successfully!"

—Suporte Terminal Root

GNOME Image by:

(Seth Kenlon, CC BY-SA 4.0)

As a mostly GNOME Desktop user, I was happy taking screenshots with the regular PrtSc, Ctrl+PrtSc, or Shift+PrtSc keys. My favorite is Shift because it allows me to select an area of the screen.

Recently, GNOME recently introduced an improved screenshot tool when you simply hit PrtSc. I haven't even used it that much yet, so I'm looking forward to trying it out thoroughly on some future articles.

Alan Formy-Duval

As a satisfied GNOME user, I've been using the built-in screenshot tool. With the older version, I would screenshot a window with Shift+PrtSc. Now I just use PrtSc and select the region with the tool. I like the new one better, but if I had to go back to the old, that'd be OK too.

Chris Hermansen

XFCE Screenshooter Image by:

(Seth Kenlon, CC BY-SA 4.0)

I've been using XFCE lately, and xfce4-screenshooter has been doing an excellent job. Like the rest of XFCE, it's minimal but highly functional, with options to capture the entire screen, the active window, or just a region. You can even activate or deactivate whether the mouse cursor is included in the shot.

Klaatu

Grim and Slurp

I have a fun little alias that I use for screenshots:

alias sshot='; grim -g "$(slurp)" screenshot-$(date +%s).png 2> /dev/null'

It lets me draw a rectangle on my screen, and it captures just that area. The command uses grim and slurp, both available in the Fedora repos.

But this only works on Wayland. On X11, you can replace them with maim and scrot.

Mohammed Saud

Your screenshot tool

What's your screenshot tool of choice? Tell us in the comments!

There are many open source screenshot tools to choose from, but which one works for you?

Linux Opensource.com community What to read next Getting started with ImageMagick This work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License. Register or Login to post a comment.

Pages