diff options
author | eug-vs <eug-vs@keemail.me> | 2021-04-25 23:47:28 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-04-25 23:47:28 +0300 |
commit | c63df9b6409b227b959a2d5989390e837a995bb8 (patch) | |
tree | 59b276f00097b4dd98b61a7ce89dd5265028a42b | |
parent | 0b0bab8608c7bd885dae2433f7bac39e779988bd (diff) | |
download | dotfiles-c63df9b6409b227b959a2d5989390e837a995bb8.tar.gz |
feat(sxiv): add key-handler
-rwxr-xr-x | .config/sxiv/exec/key-handler | 15 | ||||
-rwxr-xr-x | .local/bin/wallpaper.sh | 5 |
2 files changed, 17 insertions, 3 deletions
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 |