←back to thread

345 points splitbrain | 3 comments | | HN request time: 0.207s | source
Show context
z991 ◴[] No.41837564[source]
Wow, this is fantastic! This exact use case, on Linux, is why our company selected Zoom instead of Meet.

Awesome!

replies(1): >>41837644 #
z991 ◴[] No.41837644[source]
Built it and took a fullscreen screenshot with GIMP to figure out the width/height/x/y coordinates I wanted and tested with Google Meet. Working perfectly!
replies(2): >>41837667 #>>41839720 #
machinestops ◴[] No.41837667[source]
https://github.com/naelstrof/slop Can also use a utility like this one, which lets you select an area of the screen and output it in a specified format.
replies(2): >>41837959 #>>41839733 #
z991 ◴[] No.41837959[source]
Wow that is also very cool. For those wondering, this is what it looks like:

  $ sudo apt install slop
  $ slop
       <selects an area on screen>
  1719x1403+1080+277
replies(1): >>41838524 #
1. machinestops ◴[] No.41838524[source]
Putting the two together is easy too:

$ clipscreen $(slop -F "%x %y %w %h")

NB. The lack of quotes around $() enables wordsplitting to occur.

replies(2): >>41839576 #>>41839625 #
2. samwhiteUK ◴[] No.41839576[source]
Or

$ clipscreen $(slop | tr -s "+x" " ")

3. Narishma ◴[] No.41839625[source]
I think you got the size and position switched.