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

CUR_WP_LOC=~/.local/system/

while read file
do
  case "$1" in
    "w") setbg $file;cp $file ~/pix/system/bg.png;;
    "r") mv $file /home/rasmus/.trash/;; 
  esac
done