summaryrefslogtreecommitdiff
path: root/.config/sxiv/exec/key-handler
blob: dd353432a50c58c334d7b42fd8e6ca98a2e797ac (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash

while read file
do
    case "$1" in
        "C-d") trash-put "$file" ;;
        "C-c") cat "$file" | xclip -sel c -t image/png ;;
        "C-r") mv "$file" ../rage ;;
        "C-w") xwallpaper --zoom "$file" ;;
    esac
done