mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
13 lines
210 B
Bash
13 lines
210 B
Bash
|
#!/bin/bash
|
||
|
pngfile="${1//.plantuml/.png}"
|
||
|
|
||
|
function finish {
|
||
|
rm "$pngfile"
|
||
|
}
|
||
|
|
||
|
trap finish EXIT
|
||
|
|
||
|
plantuml -tpng "$1"
|
||
|
feh --auto-zoom --auto-reload --fullscreen "$pngfile" &
|
||
|
echo "$1" | entr plantuml -tpng /_
|