vinceliuice / Qogir-theme

Qogir is a flat Design theme for GTK
GNU General Public License v3.0
1.58k stars 119 forks source link

more portable bash call #305

Closed jcarnat closed 1 year ago

jcarnat commented 1 year ago

Hi,

I'm using OpenBSD and, although the documentation is clear about creating a link to /bin/bash, I think it would be "better", in the sense more portable, if you simply replaced "#!/bin/bash" with "#!/usr/bin/env bash" in your scripts.

On my system, I just did:

# find ./ -type f -exec sed -i -e 's;#! */bin/bash;#!/usr/bin/env bash;' {} \;

and could run:

# ./install.sh --tweaks square

Anyway, thanks for all your work :)