From 2716f915640b0a10430adb9d5f32f4021423f79e Mon Sep 17 00:00:00 2001 From: Derek Belrose Date: Wed, 5 May 2021 15:52:55 +0000 Subject: [PATCH] The existing shebang doesn't work in fish. Changing so that it acknowledges and respects earlier advice from dt that we should *never* use /bin/sh in scripts because people assume bash. The existing script wouldn't work in anything but bash shell. --- .config/sxiv/exec/key-handler | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/sxiv/exec/key-handler b/.config/sxiv/exec/key-handler index 9e4d42e..d981466 100755 --- a/.config/sxiv/exec/key-handler +++ b/.config/sxiv/exec/key-handler @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash # Example for $XDG_CONFIG_HOME/sxiv/exec/key-handler # Called by sxiv(1) after the external prefix key (C-x by default) is pressed.