Files
dotfiles/open.sh
vandechat96 c2c038e081 add open cmd
2022-08-04 14:14:59 +02:00

8 lines
93 B
Bash
Executable File

#!/bin/bash
if [[ -n $1 ]] ; then
xdg-open $1 &
disown %xdg-open
else
exit 1
fi