dotfiles/.config/fish/functions/latex_comp.fish

9 lines
149 B
Fish

function latex_comp
zathura $argv[1].pdf &
while true
inotifywait -e modify $argv[1].tex
make
or notify-send "Make" "Erreur de compilation"
end
end