dotfiles/home/dot_config/hypr/scripts/executable_audio-device-switcher.sh

7 lines
264 B
Bash

#!/usr/bin/env bash
#
sink=$(pactl list sinks | grep "Sink #" | head -n $1 | tail -n 1)
card=$(pactl list sinks | grep "alsa.card_name" | head -n $1 | tail -n 1)
pactl set-default-sink $(echo $sink | cut -d "#" -f 2)
notify-send "$(echo $card | cut -d "\"" -f 2)"