Fix shebang in eww scripts

This commit is contained in:
ItsDrike 2024-06-20 14:53:31 +02:00
parent 408e9fc6cb
commit 142ad87364
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
8 changed files with 150 additions and 150 deletions

View file

@ -1,4 +1,4 @@
#!/bin/env bash #!/usr/bin/env bash
if [ "$1" = "temperature" ]; then if [ "$1" = "temperature" ]; then
watch_cmd="{t}" watch_cmd="{t}"

View file

@ -1,4 +1,4 @@
#!/bin/env bash #!/usr/bin/env bash
# $1: Current number # $1: Current number
# $2: Range minimum # $2: Range minimum

View file

@ -1,4 +1,4 @@
#!/bin/env bash #!/usr/bin/env bash
# shellcheck source=include # shellcheck source=include
source "./scripts/include" source "./scripts/include"

View file

@ -1,4 +1,4 @@
#!/bin/env bash #!/usr/bin/env bash
MOUNTPOINTS=("/" "/mnt/ext") MOUNTPOINTS=("/" "/mnt/ext")

View file

@ -1,4 +1,4 @@
#!/bin/env bash #!/usr/bin/env bash
# shellcheck source=include # shellcheck source=include
source "./scripts/include" source "./scripts/include"

View file

@ -1,4 +1,4 @@
#!/bin/env bash #!/usr/bin/env bash
# Define some icons # Define some icons
SPEAKER_ICONS=("" "" "") SPEAKER_ICONS=("" "" "")

View file

@ -1,4 +1,4 @@
#!/bin/env bash #!/usr/bin/env bash
# shellcheck source=include # shellcheck source=include
source "./scripts/include" source "./scripts/include"

View file

@ -1,4 +1,4 @@
#!/bin/env bash #!/usr/bin/env bash
# shellcheck source=include # shellcheck source=include
source "./scripts/include" source "./scripts/include"