dotfiles/home/zsh/files/functions.zsh

8 lines
124 B
Bash
Raw Normal View History

2024-06-09 17:58:07 +02:00
function run() {
nix run "nixpkgs#$1" -- "${@:2}"
}
2024-06-12 12:08:47 +02:00
function o() {
xdg-open $@ < /dev/null &> /dev/null & disown
}