diff options
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 |