Revert "fish: functions: Open dot graphs by default in xdot"
This reverts commit a827d25ac4
.
xdot has been giving us problem with GStreamer dot graphs. May be
it is a bug with GStreamer but let us just use vimiv henceforth.
This commit is contained in:
parent
e0da3bd7e7
commit
7e4193fc82
3 changed files with 0 additions and 3 deletions
|
@ -4,5 +4,4 @@ function dotP --description 'Generate Pipewire dot graph for all nodes'
|
||||||
if test "$argv[1]" = -c
|
if test "$argv[1]" = -c
|
||||||
dot -Tsvg $output.dot >$output.svg
|
dot -Tsvg $output.dot >$output.svg
|
||||||
end
|
end
|
||||||
xdot $output.dot &
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -10,6 +10,5 @@ function dotg --description 'Generate gstreamer dot graph for selected file'
|
||||||
if test -n "$result"
|
if test -n "$result"
|
||||||
dot -Tsvg "$result" -O
|
dot -Tsvg "$result" -O
|
||||||
mv "$result".svg ~/Pictures/gstreamer
|
mv "$result".svg ~/Pictures/gstreamer
|
||||||
xdot $result &
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,5 +4,4 @@ function dotp --description 'Generate Pipewire dot graph for linked nodes'
|
||||||
if test "$argv[1]" = -c
|
if test "$argv[1]" = -c
|
||||||
dot -Tsvg $output.dot >$output.svg
|
dot -Tsvg $output.dot >$output.svg
|
||||||
end
|
end
|
||||||
xdot $output.dot &
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue