1
0
mirror of https://github.com/Mayccoll/Gogh.git synced 2023-08-10 21:12:46 +03:00

Do not hardcode path to bash interpreter

I am unable to use these scripts on NixOS, since the bash interpreter is
in a different location to more conventional distros. Currently is is
/nix/store/jlg2n512jxnr1lxs72r1frxqdsf7jpdj-system-path/bin/bash on my
machine.

This patch uses env to find the correct path to the interpreter.
This commit is contained in:
Louis Taylor 2016-05-21 16:03:59 +01:00
parent 91ea62d55d
commit 683294140c
43 changed files with 43 additions and 43 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# |
# | Convert RGB to gnome colors

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#44475a" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
echo -e "
Gogh

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Reset color

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#363636" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#3f3f3f" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#2c2423" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#646464" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#44475a" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#303030" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#303030" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#303030" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#2c3e50" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ==================== CONFIG THIS ========================================= #
COLOR_01="#073642" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#444444"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#777777"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#282a2e" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#073641"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#75715e" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#4F4F4F"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#0a0a0a" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#353535"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#2c2423" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#073642" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#073642" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#000000" # HOST

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# ====================CONFIG THIS =============================== #
COLOR_01="#303030" # HOST