diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2021-05-01 11:04:19 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2021-05-01 11:04:19 -0400 |
commit | 9ed9de5006d437e126c5871dc0cf38a02825aabb (patch) | |
tree | d92d4b6ad254626312ed84c78063dffb73dfa639 /.local/bin/compiler | |
parent | af79f164cc50ae0299b3820e9cab290cb6fbcd82 (diff) |
workstation Files
Diffstat (limited to '.local/bin/compiler')
-rwxr-xr-x | .local/bin/compiler | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.local/bin/compiler b/.local/bin/compiler index 5b4f8c4..9020284 100755 --- a/.local/bin/compiler +++ b/.local/bin/compiler @@ -36,5 +36,6 @@ case "$file" in *\.py) python "$file" ;; *\.go) go run "$file" ;; *\.sent) setsid sent "$file" 2>/dev/null & ;; + *.Xresources) xrdb -load "$file" ;; *) sed 1q "$file" | grep "^#!/" | sed "s/^#!//" | xargs -r -I % "$file" ;; esac |