stuff again

This commit is contained in:
Never Gude 2026-03-02 23:03:25 +01:00
parent e9182a3064
commit cca46e94c6

View file

@ -14,10 +14,15 @@ if status is-interactive
fish_clipboard_paste
end
function open --description 'Opens a file with xdg-open detached from shell'
xdg-open $argv &>/dev/null & disown
function open --wraps 'xdg-open'
xdg-open &>/dev/null & disown
end
function detach --description 'Detach a command from shell'
$argv &>/dev/null & disown
end
function alacritty --description 'Create new Alacritty window'
command alacritty msg create-window $argv
end