dotfiles/config/sxiv/exec/key-handler

11 lines
280 B
Text
Raw Normal View History

2024-11-30 21:52:04 +01:00
#!/bin/sh
while read file
do
case "$1" in
"c") cat "$file" | xclip -sel c -t image/png -i ;;
"f") echo "$file" | xclip -sel c ;;
"w") feh --bg-fill "$file" ;;
"q") echo "$file" > ~/.config/i3/wallpaper; feh --bg-fill "$file" ;;
esac
done