• 1 Post
  • 24 Comments
Joined 4 years ago
cake
Cake day: July 27th, 2020

help-circle
  • I’ve written a bash script i’m using daily, maybe you can adapt it to your needs. I’m using pipewire-pulse. It’s probably not perfect but it does the job:

    #!/usr/bin/env bash
    DEVICE=$1
    
    # read input, parse list of available sinks (outputs)
    if [ "$DEVICE" = "pc" ]
    then
    	OUTPUT=($(pactl list short sinks | awk '{print $2}' | grep -i -E 'hdmi|samson|Targus' -v))
    elif [ "$DEVICE" = "tv" ]
    then	
    	OUTPUT=($(pactl list short sinks | awk '{print $2}' | grep -i -E 'hdmi'))
    else
    	echo "No valid input (must be either 'pc' or 'tv')"
    	exit -1
    fi
    
    # get all currently connected streams
    INPUTS=($(pactl list short sink-inputs | awk '{print $1}'))
    
    # change default sink (for new audio outputs)
    pactl set-default-sink $OUTPUT
    
    # switch sink for existing audio outputs
    for i in "${INPUTS[@]}"
    do
    	pactl move-sink-input $i $OUTPUT
    done
    
    # use notify-send to send a visual notification to the user that the sink changed
    notify-send -c info "Default sink changed" "Changed default sink and sink-inputs to $OUTPUT"
    





  • jan75@lemmy.mltoDota 2@lemmy.mlBEST NEUTRAL DENY EVER
    link
    fedilink
    arrow-up
    2
    ·
    edit-2
    1 year ago

    I don’t know who the player is, but the enemy is big because at minute 60, tier 5 neutral items can be found in the jungle. One is Giant’s Ring, which increases the hero size and gives you free pathing (you can walk over cliffs etc.). I assume Tiny (appropriately named) has this neutral item.

    Edit: Looks like the player is “Respect” from Into the Breach, a pro team and the game was from the TI 2023 regional qualifiers.