Use /usr/bin/env for binaries
to make them easily work on almost all platforms
This commit is contained in:
parent
bc1a94ba71
commit
cdaaaf813b
|
@ -22,7 +22,7 @@ const templateChrome = `{
|
||||||
]
|
]
|
||||||
}`
|
}`
|
||||||
|
|
||||||
const proxyScript = `#!/bin/bash
|
const proxyScript = `#!/usr/bin/env bash
|
||||||
|
|
||||||
# Check if the "com.quexten.Goldwarden" Flatpak is installed
|
# Check if the "com.quexten.Goldwarden" Flatpak is installed
|
||||||
if flatpak list | grep -q "com.quexten.Goldwarden"; then
|
if flatpak list | grep -q "com.quexten.Goldwarden"; then
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/env python3
|
||||||
import sys
|
import sys
|
||||||
import gi
|
import gi
|
||||||
gi.require_version('Gtk', '4.0')
|
gi.require_version('Gtk', '4.0')
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/env python3
|
||||||
import time
|
import time
|
||||||
import subprocess
|
import subprocess
|
||||||
from tendo import singleton
|
from tendo import singleton
|
||||||
|
|
Loading…
Reference in New Issue