dotfiles/fish/.config/fish/functions/dotP.fish

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
199 B
Fish
Raw Normal View History

function dotP --description 'Generate Pipewire dot graph for all nodes'
pw-dot -d -L -a -o /tmp/pw.dot
dot -Tsvg /tmp/pw.dot >~/Pictures/pipewire/pw-dot-(date +%T).svg
rm /tmp/pw.dot
end