aboutsummaryrefslogtreecommitdiffstats
path: root/.config/sxiv/exec/key-handler
blob: 43163c3d9562c159b7f3ecde43de2ea17c87d4ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/zsh

# The key combo argument has the following form: "[C-][M-][S-]KEY",
# where C/M/S indicate Ctrl/Meta(Alt)/Shift modifier states and KEY is the X
# keysym as listed in /usr/include/X11/keysymdef.h without the "XK_" prefix.

while read file
do
	case "$1" in
	"y")
		echo -n "$file" | xclip -selection clipboard ;;
	"C-d")
		rm "$file" ;;
	"g")
		gimp "$file" & ;;
	"s")
		scp "$file" shmibbles.me:http/tmp/
		basename=$(basename $file)
		if [[ $? -ne 0 ]]; then
			notify-send "uploading $basename to /tmp/ failed"
		else
			ssh shmibbles.me "cd http/tmp; chmod o+r '$basename'"
			name=$(echo "https://shmibbles.me/tmp/$basename"\
			| sed -e 's/ /%20/g' -e 's/?/%3f/g')
			echo $name | tr -d '\n' | xclip -i -selection clipboard
			echo $name | tr -d '\n' | xclip -i -selection primary
			notify-send "uploaded $basename to /tmp/"
		fi
		;;
	*)
		notify-send "command not recognised"
		;;
	esac
done