Compare commits

...

2 Commits

Author SHA1 Message Date
3b6e07f713
update screenshot script 2025-03-16 02:36:23 -07:00
2dffccd7a3
fix wallpaper script 2025-03-16 02:34:55 -07:00
2 changed files with 52 additions and 37 deletions

View File

@ -15,6 +15,8 @@ CURRENT_WALL=$(hyprctl hyprpaper listloaded)
# Get a random wallpaper that is not the current one # Get a random wallpaper that is not the current one
WALLPAPER=$(find "$WALLPAPER_DIR" -type f ! -name "$(basename "$CURRENT_WALL")" ! -name "*.json" | shuf -n 1) WALLPAPER=$(find "$WALLPAPER_DIR" -type f ! -name "$(basename "$CURRENT_WALL")" ! -name "*.json" | shuf -n 1)
# remove double slashes that's there for some reason
WALLPAPER="${WALLPAPER//\/\///}"
echo "Changing wallpaper to $WALLPAPER" echo "Changing wallpaper to $WALLPAPER"
echo "$WALLPAPER" > "$HOME/.wallpaper" echo "$WALLPAPER" > "$HOME/.wallpaper"

View File

@ -1,62 +1,75 @@
#!/bin/bash #!/bin/bash
# #
# GUI Screenshot Tool for Wayland Using Zenity, Grim, Slurp, and Rofi # GUI Screenshot Tool for Wayland Using Zenity, Grim, Slurp, and Rofi
# Last Modification: Wed Mar 5 2025 # Last Modification: Wed Mar 16 2025
#
TMP_DIR=/tmp TMP_DIR=/tmp
DEFAULT_FILENAME=screenshot.png DEFAULT_FILENAME=screenshot.png
HYPRLAND_REGEX='"\(.at[0]),\(.at[1]) \(.size[0])x\(.size[1])"'
CHOICES=( CHOICES=(
"1. a part of the screen" "1. Select a region and save - slurp | grim -g - $TMP_DIR/$DEFAULT_FILENAME"
"2. a part of the screen and put the output into the clipboard" "2. Select a region and copy to clipboard - slurp | grim -g - - | wl-copy && exit $?"
"3. whole screen" "3. Whole screen - grim $TMP_DIR/$DEFAULT_FILENAME"
"4. edit" "4. Current window - hyprctl -j activewindow | jq -r '$HYPRLAND_REGEX' | grim -g - $TMP_DIR/$DEFAULT_FILENAME"
"5. Edit - slurp | grim -g - - | swappy -f -"
"6. Quit - exit 0"
) )
IS_NOTIFY=1
notify() {
TITLE="$1"
BODY="$2"
IS_NOTIFICATION="$3"
if [[ -z "$BODY" && -z "$TITLE" ]]; then
echo "notify: No message provided"
return 1
fi
if [[ -z "$IS_NOTIFICATION" ]]; then
IS_NOTIFICATION=0
fi
if ((IS_NOTIFICATION)); then
notify-send "screenshot.sh" "$1"
else
printf "%s\n%s\n" "$TITLE" "$BODY"
fi
return 0
}
CHOICE="$(rofi -dmenu -i -p "Enter option or select from the list" \ CHOICE="$(rofi -dmenu -i -p "Enter option or select from the list" \
-mesg "Select a Screenshot Option" \ -mesg "Select a Screenshot Option" \
-a 0 -no-custom -location 0 \ -a 0 -no-custom -location 0 \
-yoffset 30 -xoffset 30 \ -yoffset 30 -xoffset 30 \
-theme-str 'listview {columns: 1; lines: 4;} window {width: 45%;}' \ -theme-str 'listview {columns: 2; lines: 3;} window {width: 45%;}' \
-window-title "screenshot.sh" \ -window-title "screenshot.sh" \
<<< "$(printf "%s\n" "${CHOICES[@]}")")" -format 'i' \
<<< "$(printf "%s\n" "${CHOICES[@]%% - *}")")"
# echo $CHOICE if [[ -z "$CHOICE" ]]; then
notify "screenshot.sh" "No option selected." "$IS_NOTIFY"
exit
fi
case $CHOICE in CMD="${CHOICES[$CHOICE]#* -}"
"1. a part of the screen") if [[ -z "$CMD" ]]; then
slurp | grim -g - "$TMP_DIR/$DEFAULT_FILENAME" notify "screenshot.sh" "No option selected." "$IS_NOTIFY"
;; exit
"2. a part of the screen and put the output into the clipboard") elif eval "$CMD"; then
slurp | grim -g - - | wl-copy notify "screenshot.sh" "Screenshot saved to $TMP_DIR/$DEFAULT_FILENAME" "$IS_NOTIFY"
exit else
;; notify "screenshot.sh" "An error occurred while taking the screenshot." "$IS_NOTIFY"
"3. whole screen") exit
grim "$TMP_DIR/$DEFAULT_FILENAME" fi
;;
"4. edit")
grim -g "$(slurp)" - | swappy -f -
exit
;;
"")
exit
;;
esac
FILE=$(zenity --file-selection --title="Select a File" --filename=$DEFAULT_FILENAME --save 2> /dev/null) FILE=$(zenity --file-selection --title="Select a File" --filename=$DEFAULT_FILENAME --save 2> /dev/null)
case "$?" in
# echo $FILE
case $? in
0) 0)
mv "$TMP_DIR/$DEFAULT_FILENAME" $FILE mv "$TMP_DIR/$DEFAULT_FILENAME" "$FILE"
;; ;;
1) 1)
rm "$TMP_DIR/$DEFAULT_FILENAME" rm "$TMP_DIR/$DEFAULT_FILENAME"
;; ;;
-1) -1)
echo "An unexpected error has occurred." notify "screenshot.sh" "An unexpected error has occurred." "$IS_NOTIFY"
;; ;;
esac esac
exit