From 0ec10b52e02704370379bbb76d6fda281dd63a80 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 16 Jul 2021 11:32:04 +0530 Subject: [PATCH] Add shebangs --- shell-integration/kitty.bash | 2 ++ shell-integration/kitty.zsh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/shell-integration/kitty.bash b/shell-integration/kitty.bash index ab3544b49..689dacc4d 100644 --- a/shell-integration/kitty.bash +++ b/shell-integration/kitty.bash @@ -1,3 +1,5 @@ +#!/bin/bash + _ksi_main() { if [[ $- != *i* ]] ; then return; fi # check in interactive mode if [[ -z "$KITTY_SHELL_INTEGRATION" ]]; then return; fi diff --git a/shell-integration/kitty.zsh b/shell-integration/kitty.zsh index 3f5ee17bb..54618427c 100644 --- a/shell-integration/kitty.zsh +++ b/shell-integration/kitty.zsh @@ -1,3 +1,5 @@ +#!/bin/zsh + () { if [[ ! -o interactive ]]; then return; fi if [[ -z "$KITTY_SHELL_INTEGRATION" ]]; then return; fi