diff --git a/change-wallpaper.sh b/change-wallpaper.sh index e250d1e..c8f4b8c 100755 --- a/change-wallpaper.sh +++ b/change-wallpaper.sh @@ -1,5 +1,15 @@ #!/usr/bin/env bash +IMG="$1" + +if [[ -f "$IMG" ]]; then + echo "Changing wallpaper to $IMG" + echo "$IMG" > "$HOME/.wallpaper" + hyprctl hyprpaper reload ,"$IMG" + notify-send -i hyprpaper -u normal "change-wallpaper.sh" "Wallpaper changed to ${IMG##*/variety/}" + exit 0 +fi + WALLPAPER_DIR="$HOME/Pictures/variety/" CURRENT_WALL=$(hyprctl hyprpaper listloaded) diff --git a/ocr.sh b/ocr.sh index 478d2a8..8f1e97c 100755 --- a/ocr.sh +++ b/ocr.sh @@ -1,14 +1,15 @@ #!/bin/bash set -Eeuo pipefail -RES="$(slurp | grim -g - - | gazou | sed -n '2p')" +# RES="$(slurp | grim -g - - | gazou | sed '1d;$d')" +# # Truncate RES for display if it's longer than 100 characters +# DISPLAY_RES="${RES:0:100}" +# if [ ${#RES} -gt 100 ]; then +# DISPLAY_RES="${DISPLAY_RES}..." +# fi +# notify-send "GAZOU" "Text: $DISPLAY_RES" +# echo "$RES" | wl-copy -# Truncate RES for display if it's longer than 100 characters -DISPLAY_RES="${RES:0:100}" -if [ ${#RES} -gt 100 ]; then - DISPLAY_RES="${DISPLAY_RES}..." -fi - -notify-send "ocr.sh" "Text: $DISPLAY_RES" - -echo "$RES" | wl-copy +slurp | grim -g - /tmp/ocr.png || exit 1 +transformers_ocr recognize --image-path /tmp/ocr.png || exit 1 +notify-send "tramsformers_ocr" "Text: $DISPLAY_RES"