From 3be51e6aeace4ff14fc4fc20993cd80076487324 Mon Sep 17 00:00:00 2001 From: praetorg <31813799+praetorg@users.noreply.github.com> Date: Mon, 21 Jan 2019 17:12:10 -0500 Subject: [PATCH] Changed explicit script shebangs to use /usr/bin/env --- scripts/24-bit-color.sh | 2 +- scripts/colors.sh | 2 +- scripts/fg-bg.sh | 2 +- scripts/spawn-alacritty-cwd | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/24-bit-color.sh b/scripts/24-bit-color.sh index 161608fc..420b35eb 100755 --- a/scripts/24-bit-color.sh +++ b/scripts/24-bit-color.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # This file was originally taken from iterm2 https://github.com/gnachman/iTerm2/blob/master/tests/24-bit-color.sh # # This file echoes a bunch of 24-bit color codes diff --git a/scripts/colors.sh b/scripts/colors.sh index 436d149e..955e7490 100755 --- a/scripts/colors.sh +++ b/scripts/colors.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash for x in {0..8}; do for i in {30..37}; do diff --git a/scripts/fg-bg.sh b/scripts/fg-bg.sh index b6e0eaea..d6a1e3f2 100755 --- a/scripts/fg-bg.sh +++ b/scripts/fg-bg.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash printf "Fg=Black Bg=Black \e[30;40mTEST\e[m\n" printf "Fg=Black Bg=White \e[30;107mTEST\e[m\n" diff --git a/scripts/spawn-alacritty-cwd b/scripts/spawn-alacritty-cwd index 8c69e028..b0008a50 100755 --- a/scripts/spawn-alacritty-cwd +++ b/scripts/spawn-alacritty-cwd @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Spawn a new instance of Alacritty using the CWD of the currently focused # Alacritty process.