When I take a screenshot of the active window with Spectacle, there's a white border around the image. Is there an option to get rid of that border?
This is on Kubuntu 16.04 with Plasma 5.8 LTS.
This is on Kubuntu 16.04 with Plasma 5.8 LTS.
scrot -u '%Y-%m-%d_$wx$h.png' -e 'mv $f ~/Desktop/'
scrot -s '%Y-%m-%d_$wx$h.png' -e 'mv $f ~/Desktop/'
scrot '%Y-%m-%d_$wx$h.png' -e 'mv $f ~/Desktop/'
scrot -u '%Y-%m-%d_$wx$h.png' -e 'mv $f ~/Desktop/'
<keybind key="Print"> # Immediate gnome-screenshot of active window with pointer <action name="Execute"><command>sh -c 'gnome-screenshot -wp -f /home/Dell/Dropbox/Screenshots/"$(date +%Y%m%d%H%M%S)".png'</command></action> </keybind> <keybind key="W-Print"> # Delayed gnome-screenshot of full screen with pointer <action name="Execute"><command>sh -c 'gnome-screenshot -p -d 10 -f /home/Dell/Dropbox/Screenshots/"$(date +%Y%m%d%H%M%S)".png'</command></action> </keybind> <keybind key="S-Print"> # Interactive gnome-screenshot <action name="Execute"><command>sh -c 'gnome-screenshot -a -f /home/Dell/Dropbox/Screenshots/"$(date +%Y%m%d%H%M%S)".png'</command></action> </keybind>
Meta+Ctrl+I [U]I[/U]nteractive GSS Meta+Ctrl+A [u]A[/u]ctive GSS Meta+Ctrl+D [u]D[/u]elayed GSS
Comment