aboutsummaryrefslogtreecommitdiffstats
path: root/.sxiv
diff options
context:
space:
mode:
authorshmibs <shmibs@gmail.com>2014-02-11 22:32:53 -0700
committershmibs <shmibs@gmail.com>2014-02-11 22:32:53 -0700
commitc1b4ebd6f50ec3c1e50e367b95dbfd4448709281 (patch)
treee6ca6bee0b2009c156f399db9382cdd46ac90441 /.sxiv
parent5825e884b80beda1a77234b137fe3a39263ac215 (diff)
downloaddotfiles-c1b4ebd6f50ec3c1e50e367b95dbfd4448709281.tar.gz
moved sxiv configs
Diffstat (limited to '.sxiv')
-rwxr-xr-x.sxiv/exec/key-handler14
1 files changed, 0 insertions, 14 deletions
diff --git a/.sxiv/exec/key-handler b/.sxiv/exec/key-handler
deleted file mode 100755
index f47c88a..0000000
--- a/.sxiv/exec/key-handler
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-# 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.
-
-case "$1" in
-"C-c")
- echo -n "$2" | xclip -selection clipboard ;;
-"C-d")
- rm "$2" ;;
-"C-g")
- gimp "$2" & ;;
-esac