Files
dotfiles-xps/fish/functions/open.fish
2025-07-30 11:46:46 +02:00

3 lines
103 B
Fish

function open -d "Open an application detached from the terminal"
nohup $argv >/dev/null 2>&1 &
end