mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
Changed explicit script shebangs to use /usr/bin/env
This commit is contained in:
parent
c3bac1c453
commit
3be51e6aea
4 changed files with 4 additions and 4 deletions
|
@ -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 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
|
# This file echoes a bunch of 24-bit color codes
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
for x in {0..8}; do
|
for x in {0..8}; do
|
||||||
for i in {30..37}; do
|
for i in {30..37}; do
|
||||||
|
|
|
@ -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=Black \e[30;40mTEST\e[m\n"
|
||||||
printf "Fg=Black Bg=White \e[30;107mTEST\e[m\n"
|
printf "Fg=Black Bg=White \e[30;107mTEST\e[m\n"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Spawn a new instance of Alacritty using the CWD of the currently focused
|
# Spawn a new instance of Alacritty using the CWD of the currently focused
|
||||||
# Alacritty process.
|
# Alacritty process.
|
||||||
|
|
Loading…
Reference in a new issue