1

I like the new screenshot tool in GNOME 42/ Ubuntu 22.04.

Although it does miss the possibility to record a window, and an option to record audio.

How do I start recording or take a screenshot from CLI?

Janghou
  • 5,709

1 Answers1

1

sorry for the late answer

apparently gnome has gone crazy and decided to break every screenshot tool by restricting their dbus APIs, and allowing screenshots by their useless tool with keybind only

do alt-f2, type lg, then type global.context.unsafe_mode = true
after doing that, running this command will launch the interactive screenshot tool

gdbus call --session --dest org.gnome.Shell --object-path /org/gnome/Shell --method org.gnome.Shell.Eval 'Main.screenshotUI.open();'

note that enabling unsafe_mode is.. probably unsafe

Cagri
  • 747