update screenshot
This commit is contained in:
parent
4fe3199161
commit
609880fd07
123
screenshot.sh
123
screenshot.sh
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#
|
|
||||||
# GUI Screenshot Tool for Wayland Using Zenity, Grim, Slurp, and Rofi
|
# GUI Screenshot Tool for Wayland Using Zenity, Grim, Slurp, and Rofi
|
||||||
|
|
||||||
SCRIPT_NAME=$(basename "$0")
|
SCRIPT_NAME=$(basename "$0")
|
||||||
@ -8,14 +8,7 @@ DEFAULT_FILENAME=screenshot.png
|
|||||||
TMP_SCREENSHOT="$TMP_DIR/$DEFAULT_FILENAME"
|
TMP_SCREENSHOT="$TMP_DIR/$DEFAULT_FILENAME"
|
||||||
HYPRLAND_REGEX='.at[0],(.at[1]) .size[0]x(.size[1])'
|
HYPRLAND_REGEX='.at[0],(.at[1]) .size[0]x(.size[1])'
|
||||||
REQUIREMENTS=(grim slurp rofi zenity wl-copy)
|
REQUIREMENTS=(grim slurp rofi zenity wl-copy)
|
||||||
|
USE_NOTIFICATIONS=1
|
||||||
for cmd in "${REQUIREMENTS[@]}"; do
|
|
||||||
if ! command -v "$cmd" &> /dev/null; then
|
|
||||||
echo "Error: $cmd is not installed. Please install it first."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
CHOICES=(
|
CHOICES=(
|
||||||
"1. Select a region and save - slurp | grim -g - \"$TMP_SCREENSHOT\""
|
"1. Select a region and save - slurp | grim -g - \"$TMP_SCREENSHOT\""
|
||||||
"2. Select a region and copy to clipboard - slurp | grim -g - - | wl-copy"
|
"2. Select a region and copy to clipboard - slurp | grim -g - - | wl-copy"
|
||||||
@ -24,7 +17,6 @@ CHOICES=(
|
|||||||
"5. Edit - slurp | grim -g - - | swappy -f -"
|
"5. Edit - slurp | grim -g - - | swappy -f -"
|
||||||
"6. Quit - exit 0"
|
"6. Quit - exit 0"
|
||||||
)
|
)
|
||||||
USE_NOTIFICATIONS=0
|
|
||||||
|
|
||||||
notify() {
|
notify() {
|
||||||
local body="$1"
|
local body="$1"
|
||||||
@ -36,9 +28,8 @@ notify() {
|
|||||||
if [[ -z "$title" ]]; then
|
if [[ -z "$title" ]]; then
|
||||||
title="$SCRIPT_NAME"
|
title="$SCRIPT_NAME"
|
||||||
fi
|
fi
|
||||||
local use_notification="${3:-$USE_NOTIFICATIONS}"
|
|
||||||
|
|
||||||
if ((use_notification)); then
|
if ((USE_NOTIFICATIONS)); then
|
||||||
notify-send "$title" "$body"
|
notify-send "$title" "$body"
|
||||||
else
|
else
|
||||||
printf "%s\n%s\n" "$title" "$body"
|
printf "%s\n%s\n" "$title" "$body"
|
||||||
@ -46,59 +37,73 @@ notify() {
|
|||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
CHOICE="$(rofi -dmenu -i -p "Enter option or select from the list" \
|
check_deps() {
|
||||||
-mesg "Select a Screenshot Option" \
|
for cmd in "${REQUIREMENTS[@]}"; do
|
||||||
-a 0 -no-custom -location 0 \
|
if ! command -v "$cmd" &> /dev/null; then
|
||||||
-yoffset 30 -xoffset 30 \
|
echo "Error: $cmd is not installed. Please install it first."
|
||||||
-theme-str 'listview {columns: 2; lines: 3;} window {width: 45%;}' \
|
exit 1
|
||||||
-window-title "$SCRIPT_NAME" \
|
fi
|
||||||
-format 'i' \
|
done
|
||||||
<<< "$(printf "%s\n" "${CHOICES[@]%% - *}")")"
|
}
|
||||||
|
|
||||||
if [[ -z "$CHOICE" ]]; then
|
main() {
|
||||||
notify "No option selected." ""
|
CHOICE="$(rofi -dmenu -i -p "Enter option or select from the list" \
|
||||||
exit 0
|
-mesg "Select a Screenshot Option" \
|
||||||
fi
|
-a 0 -no-custom -location 0 \
|
||||||
|
-yoffset 30 -xoffset 30 \
|
||||||
|
-theme-str 'listview {columns: 2; lines: 3;} window {width: 45%;}' \
|
||||||
|
-window-title "$SCRIPT_NAME" \
|
||||||
|
-format 'i' \
|
||||||
|
<<< "$(printf "%s\n" "${CHOICES[@]%% - *}")")"
|
||||||
|
|
||||||
sleep 0.2 # give time for the rofi window to close
|
if [[ -z "$CHOICE" ]]; then
|
||||||
CMD="${CHOICES[$CHOICE]#* -}"
|
notify "No option selected." ""
|
||||||
if [[ -z "$CMD" ]]; then
|
|
||||||
notify "No option selected." ""
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
# For option 2 (copy to clipboard), handle differently
|
|
||||||
if [[ "$CHOICE" == "1" ]]; then
|
|
||||||
if eval "$CMD"; then
|
|
||||||
notify "Screenshot copied to clipboard"
|
|
||||||
exit 0
|
exit 0
|
||||||
else
|
fi
|
||||||
|
|
||||||
|
sleep 0.2 # give time for the rofi window to close
|
||||||
|
CMD="${CHOICES[$CHOICE]#* -}"
|
||||||
|
if [[ -z "$CMD" ]]; then
|
||||||
|
notify "No option selected." ""
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For option 2 (copy to clipboard), handle differently
|
||||||
|
if [[ "$CHOICE" == "1" ]]; then
|
||||||
|
if eval "$CMD"; then
|
||||||
|
notify "Screenshot copied to clipboard"
|
||||||
|
exit 0
|
||||||
|
else
|
||||||
|
notify "An error occurred while taking the screenshot."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! eval "$CMD"; then
|
||||||
notify "An error occurred while taking the screenshot."
|
notify "An error occurred while taking the screenshot."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
|
|
||||||
if ! eval "$CMD"; then
|
notify "screenshot.sh" "Screenshot saved temporarily.\nChoose where to save it permanently"
|
||||||
notify "An error occurred while taking the screenshot."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
notify "screenshot.sh" "Screenshot saved temporarily.\nChoose where to save it permanently"
|
FILE=$(zenity --file-selection --title="Save Screenshot" --filename="$DEFAULT_FILENAME" --save 2> /dev/null)
|
||||||
|
case "$?" in
|
||||||
|
0)
|
||||||
|
if mv "$TMP_SCREENSHOT" "$FILE"; then
|
||||||
|
notify "Screenshot saved to $FILE"
|
||||||
|
else
|
||||||
|
notify "Failed to save screenshot to $FILE"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
1)
|
||||||
|
rm -f "$TMP_SCREENSHOT"
|
||||||
|
notify "Screenshot discarded"
|
||||||
|
;;
|
||||||
|
-1)
|
||||||
|
notify "An unexpected error has occurred."
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
FILE=$(zenity --file-selection --title="Save Screenshot" --filename="$DEFAULT_FILENAME" --save 2> /dev/null)
|
check_deps
|
||||||
case "$?" in
|
main
|
||||||
0)
|
|
||||||
if mv "$TMP_SCREENSHOT" "$FILE"; then
|
|
||||||
notify "Screenshot saved to $FILE"
|
|
||||||
else
|
|
||||||
notify "Failed to save screenshot to $FILE"
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
1)
|
|
||||||
rm -f "$TMP_SCREENSHOT"
|
|
||||||
notify "Screenshot discarded"
|
|
||||||
;;
|
|
||||||
-1)
|
|
||||||
notify "An unexpected error has occurred."
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user