From 6a6ccc3a63e86c22192100501ddb6355aeffcae1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Av=C3=A9?= Date: Wed, 12 Jun 2024 12:08:47 +0200 Subject: [PATCH] Re-add open function --- home/zsh/files/functions.zsh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/zsh/files/functions.zsh b/home/zsh/files/functions.zsh index d39ce61..f8ab330 100644 --- a/home/zsh/files/functions.zsh +++ b/home/zsh/files/functions.zsh @@ -1,3 +1,7 @@ function run() { nix run "nixpkgs#$1" -- "${@:2}" } + +function o() { + xdg-open $@ < /dev/null &> /dev/null & disown +}