Organize scripts folder
This commit is contained in:
parent
bf7d0fddd8
commit
18ba1fe6f0
8 changed files with 66 additions and 0 deletions
15
.local/bin/open-compiled
Executable file
15
.local/bin/open-compiled
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# opout: "open output": A general handler for opening a file's intended output,
|
||||
# usually the pdf of a compiled document. I find this useful especially
|
||||
# running from vim.
|
||||
#
|
||||
# from https://github.com/LukeSmithxyz/voidrice/tree/master/.local/bin
|
||||
|
||||
basename="$(echo "$1" | sed 's/\.[^\/.]*$//')"
|
||||
|
||||
case "$1" in
|
||||
*.tex|*.md|*.rmd|*.ms|*.me|*.mom) setsid "$FILEREADER" "$basename".pdf >/dev/null 2>&1 & ;;
|
||||
*.[0-9]) setsid "$FILEREADER" "$basename".pdf >/dev/null 2>&1 & ;;
|
||||
*.html) setsid "$BROWSER" "$basename".html >/dev/null 2>&1 & ;;
|
||||
esac
|
||||
Loading…
Add table
Add a link
Reference in a new issue