Changed explicit script shebangs to use /usr/bin/env

This commit is contained in:
praetorg 2019-01-21 17:12:10 -05:00 committed by Christian Duerr
parent c3bac1c453
commit 3be51e6aea
4 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
for x in {0..8}; do
for i in {30..37}; do

View File

@ -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"

View File

@ -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.