diff options
author | awy <awy@awy.one> | 2025-08-14 05:46:25 +0300 |
---|---|---|
committer | awy <awy@awy.one> | 2025-08-14 05:46:25 +0300 |
commit | 222fe9a9ffc5430ea28173f01482f30b26f22648 (patch) | |
tree | d11094fe10c854cd23dfa5f49850e1facfefe116 /.config/swayimg | |
parent | 9e12eb5b61daa6fc864301893bc6242614777d76 (diff) | |
download | hyprdots-222fe9a9ffc5430ea28173f01482f30b26f22648.tar.gz |
update
Diffstat (limited to '.config/swayimg')
-rwxr-xr-x | .config/swayimg/key-handler | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.config/swayimg/key-handler b/.config/swayimg/key-handler index 4e886b2..67943a9 100755 --- a/.config/swayimg/key-handler +++ b/.config/swayimg/key-handler @@ -1,17 +1,17 @@ #!/bin/sh file=$1 [ -z "$selection" ] && selection=$(printf "w - Set as wallpaper\nc - Copy to dir\nm - Move to dir\nr - Rotate 90°\nR - Rotate -90°\nf - Flip horizontal\ny - Copy filename to clipboard\nY - Copy full path to clipboard\nd - Delete\ng - Open in GIMP\ni - Show media info" | - rofi -dmenu -i -l 12 -p "Choose action for selected files:") + mew -i -l 12 -p "Choose action for selected files:") action=$(printf "%s" "$selection" | cut -d'-' -f1 | tr -d ' ') case "$action" in "w") setbg "$file" & ;; "c") - [ -z "$destdir" ] && destdir="$(sed "s/#.*$//;/^\s*$/d" ${XDG_CONFIG_HOME:-$HOME/.config}/shell/bm-dirs | awk '{print $2}' | rofi -dmenu -l 20 -i -p "Copy file(s) to where?" | sed "s|~|$HOME|g")" + [ -z "$destdir" ] && destdir="$(sed "s/#.*$//;/^\s*$/d" ${XDG_CONFIG_HOME:-$HOME/.config}/shell/bm-dirs | awk '{print $2}' | mew -l 20 -i -p "Copy file(s) to where?" | sed "s|~|$HOME|g")" [ ! -d "$destdir" ] && notify-send "$destdir is not a directory, cancelled." && exit cp "$file" "$destdir" && notify-send -i "$(readlink -f "$file")" "$file copied to $destdir." & ;; "m") - [ -z "$destdir" ] && destdir="$(sed "s/#.*$//;/^\s*$/d" ${XDG_CONFIG_HOME:-$HOME/.config}/shell/bm-dirs | awk '{print $2}' | rofi -dmenu -l 20 -i -p "Move file(s) to where?" | sed "s|~|$HOME|g")" + [ -z "$destdir" ] && destdir="$(sed "s/#.*$//;/^\s*$/d" ${XDG_CONFIG_HOME:-$HOME/.config}/shell/bm-dirs | awk '{print $2}' | mew -l 20 -i -p "Move file(s) to where?" | sed "s|~|$HOME|g")" [ ! -d "$destdir" ] && notify-send "$destdir is not a directory, cancelled." && exit mv "$file" "$destdir" && notify-send -i "$(readlink -f "$file")" "$file moved to $destdir." & ;; @@ -28,7 +28,7 @@ file=$1 readlink -f "$file" | tr -d '\n' | wl-copy && notify-send "$(readlink -f "$file") copied to clipboard" & ;; "d") - [ "$(printf "No\\nYes" | rofi -dmenu -i -p "Really delete $file?")" = "Yes" ] && rm "$file" && notify-send "$file deleted." ;; + [ "$(printf "No\\nYes" | mew -i -p "Really delete $file?")" = "Yes" ] && rm "$file" && notify-send "$file deleted." ;; "g") ifinstalled gimp && setsid -f gimp "$file" ;; "i") notify-send "File information" "$(mediainfo "$file" | sed "s/[ ]\+:/:/g;s/: /: <b>/;s/$/<\/b>/" | rg "<b>")" ;; *) notify-send "No keybind for that key" ;; |