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
202 B
Fish
Raw Normal View History

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