Add commands for screenshot

This commit is contained in:
Ngô Ngọc Đức Huy 2021-04-17 10:08:48 +07:00
parent b48a1cca28
commit 7b7ce73a84
Signed by: huyngo
GPG Key ID: 904AF1C7CDF695C3
1 changed files with 9 additions and 0 deletions

View File

@ -38,6 +38,15 @@ ctrl + {1,2,3,4,5}
Print
scrot -s -e 'mv $f ~/Desktop/Screenshots'
# Screenshot a window
super + Print
scrot -u -e 'mv $f ~/Desktop/Screenshots'
# Screenshot full screen
super + shift + Print
scrot -e 'mv $f ~/Desktop/Screenshots'
# Screenshot to clipboard
ctrl + Print
scrot -s -e 'xclip -selection clipboard -t image/png -i $f && mv $f ~/Desktop/Screenshots'