mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
22 lines
327 B
Nix
22 lines
327 B
Nix
{
|
|
writeShellApplication,
|
|
fzf,
|
|
pactl,
|
|
jq,
|
|
...
|
|
}:
|
|
writeShellApplication {
|
|
name = "custom-changeAudioOutput";
|
|
runtimeInputs = [
|
|
fzf
|
|
pactl
|
|
jq
|
|
];
|
|
text = ''
|
|
$select=pactl -f json list sinks | jq -r '.[].name' | fzf
|
|
if [[ -n "$select" ]]; then
|
|
pactl set-default-sink $select
|
|
fi
|
|
'';
|
|
}
|