i3wm의 전체 화면 캡처 Tomar 캡처
2556 단어 archscreenshotlinuxi3wm
Este no es de mi autoría, es de Rui F Ribeiro, usuario de stackexchange, este script funciona con los paquetes xclip e imagemagick, los cuales nos permitirán capturar la pantalla de nuestro escritorio y además poder seleccionar la región que queramos.
Comenzamos instalando los paquetes xclip e imagemagick
sudo pacman -S xclip imagemagick
Crearemos un archivo y añadiremos lo siguiente (puedes usar tu editor favito ya sea code, vim 등)
#!/usr/bin/env bash
# screenshots stuff
# TODO: docs
function help_and_exit {
if [ -n "${1}" ]; then
echo "${1}"
fi
cat <<-EOF
Usage: scregcp [-h|-s] [<screenshots_base_folder>]
Take screenshot of a whole screen or a specified region,
save it to a specified folder (current folder is default)
and copy it to a clipboard.
-h - print help and exit
-s - take a screenshot of a screen region
EOF
if [ -n "${1}" ]; then
exit 1
fi
exit 0
}
if [ "${1}" == '-h' ]; then
help_and_exit
elif [ "${1:0:1}" == '-' ]; then
if [ "${1}" != '-s' ]; then
help_and_exit "error: unknown option ${1}"
fi
base_folder="${2}"
else
base_folder="${1}"
params="-window root"
fi
file_path=${base_folder}$( date '+%Y-%m-%d_%H-%M-%S' )_screenshot.png
import ${params} ${file_path}
xclip -selection clipboard -target image/png -i < ${file_path}
Guardamos nuestro como scregcp y le damos permisos de ejecución
chmod +x scregcp
Moveremos 새로운 아카이브 a/usr/bin/
sudo mv scregcp /usr/bin/
Para finalizar editaremos el archivo .config/i3/config para configurar los nuevos 단축키
bindsym --release Shift+Print exec "scregcp -s $HOME/Pictures/Screenshots/"
bindsym --release Print exec "scregcp $HOME/Pictures/Screenshots/"
Ahora refrescamos la configuración de i3wm y tendremos todo listo, en mi caso las capturas se guardaran en Pictures/Screenshots/de igual manera se copiaran en nuestro clipboard.
Saludos.
Reference
이 문제에 관하여(i3wm의 전체 화면 캡처 Tomar 캡처), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/zjairo/tomar-capturas-de-pantalla-facilmente-en-i3wm-3ac텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)