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:
Sanchayan Maity 2022-12-29 15:24:15 +05:30
parent e0da3bd7e7
commit 7e4193fc82
Signed by: sanchayanmaity
GPG Key ID: 6F6A0609C12038F3
3 changed files with 0 additions and 3 deletions

View File

@ -4,5 +4,4 @@ function dotP --description 'Generate Pipewire dot graph for all nodes'
if test "$argv[1]" = -c
dot -Tsvg $output.dot >$output.svg
end
xdot $output.dot &
end

View File

@ -10,6 +10,5 @@ function dotg --description 'Generate gstreamer dot graph for selected file'
if test -n "$result"
dot -Tsvg "$result" -O
mv "$result".svg ~/Pictures/gstreamer
xdot $result &
end
end

View File

@ -4,5 +4,4 @@ function dotp --description 'Generate Pipewire dot graph for linked nodes'
if test "$argv[1]" = -c
dot -Tsvg $output.dot >$output.svg
end
xdot $output.dot &
end