Last active
February 18, 2019 10:11
-
-
Save evanslify/c47e0efe9452bdb277ca6a99d65903c9 to your computer and use it in GitHub Desktop.
Take screenshot to clipboard in KDE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Take regional screenshot | |
spectacle -nbr -o /dev/stdout | xclip -sel clip -t image/png && notify-send -t 2000 'Regional Screenshot Taken' | |
# Take full screenshot | |
spectacle -nbf -o /dev/stdout | xclip -sel clip -t image/png && notify-send -t 2000 'Full Screenshot Taken' | |
# Take screenshot of current focused window | |
spectacle -nba -o /dev/stdout | xclip -sel clip -t image/png && notify-send -t 2000 'Window Screenshot Taken' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment