From c63df9b6409b227b959a2d5989390e837a995bb8 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 25 Apr 2021 23:47:28 +0300 Subject: feat(sxiv): add key-handler --- .config/sxiv/exec/key-handler | 15 +++++++++++++++ .local/bin/wallpaper.sh | 5 ++--- 2 files changed, 17 insertions(+), 3 deletions(-) create mode 100755 .config/sxiv/exec/key-handler diff --git a/.config/sxiv/exec/key-handler b/.config/sxiv/exec/key-handler new file mode 100755 index 0000000..42b7c1a --- /dev/null +++ b/.config/sxiv/exec/key-handler @@ -0,0 +1,15 @@ +#!/bin/sh + +while read file +do + case "$1" in + "C-d") + mv "$file" ~/.trash ;; + "C-r") + convert -rotate 90 "$file" "$file" ;; + "C-c") + echo -n "$file" | xclip -selection clipboard ;; + "C-w") + echo "$file" && xwallpaper --zoom "$file" ;; + esac +done diff --git a/.local/bin/wallpaper.sh b/.local/bin/wallpaper.sh index ed2d2bb..4d52bdb 100755 --- a/.local/bin/wallpaper.sh +++ b/.local/bin/wallpaper.sh @@ -1,5 +1,4 @@ #!/bin/sh -# Launch SXIV and set wallpaper randomly from selected images +# Launch SXIV in wallpapers dir, C-x-w to set wallpaper -WALLPAPERS_DIR=~/Pictures/Wallpapers -xwallpaper --zoom $(sxiv $WALLPAPERS_DIR -t -o | shuf | head -n 1) +sxiv -t ~/Pictures/Wallpapers -- cgit v1.2.3