Move executables into local/bin

and fix known bustedness
This commit is contained in:
2020-03-26 09:46:11 -04:00
parent caea8cab11
commit a2cc7a788a
11 changed files with 15 additions and 9 deletions

9
local/bin/redshift-gtk-wrapper Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -o errexit
main() {
export REDSHIFT_EXE=redshift-gtk
exec ~/.local/bin/redshift-wrapper "${@}"
}
main "${@}"