Move update-default-soundcard call to a separate file

This commit is contained in:
Gergely Polonkai 2025-03-18 20:39:50 +01:00
parent 0b7708a44e
commit a9e8bccc11
No known key found for this signature in database
GPG Key ID: 38F402C8471DDE93
2 changed files with 5 additions and 6 deletions

View File

@ -0,0 +1,5 @@
set uds (command -v update-default-soundcard)
if test -n "$uds" -a -x "$uds"
$uds
end

View File

@ -3,9 +3,3 @@ fish_add_path --append /usr/sbin
# My own stuff
fish_add_path --prepend $HOME/bin
fish_add_path --prepend $HOME/.local/bin
set uds (command -v update-default-soundcard)
if test -n "$uds" -a -x "$uds"
$uds
end