28 lines
758 B
Bash
Executable File
28 lines
758 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#create a temporary file
|
|
#sleep 5;
|
|
#screenshot_dir="$HOME/Screenshots"
|
|
#timestamp=$(date +"%Y-%m-%d-%H-%M-%S")
|
|
#screenshot_file="$screenshot_dir/screenshot_$timestamp.png"
|
|
|
|
#grim -g "$(slurp)" - | swappy -f - -o - | pngquant - > "$screenshot_file"
|
|
|
|
#~/.local/bin/pastebin_client.sh upload "$screenshot_file" yes | wl-copy
|
|
|
|
#!/bin/bash
|
|
|
|
sleep 5
|
|
screenshot_dir="$HOME/Screenshots"
|
|
mkdir -p "$screenshot_dir"
|
|
|
|
timestamp=$(date +"%Y-%m-%d-%H-%M-%S")
|
|
screenshot_file="$screenshot_dir/screenshot_$timestamp.png"
|
|
|
|
# Captura región -> edita con swappy -> comprime con pngquant -> guarda
|
|
grim -g "$(slurp)" - | swappy -f - -o - | pngquant - > "$screenshot_file"
|
|
|
|
# Sube a GitLab Snippet y copia el RAW link
|
|
~/.local/bin/gitlab-paste "$screenshot_file"
|
|
|