Niri-basierter Wayland-Desktop mit greetd/regreet, Catppuccin Mocha Theming, Rofi-Menus, Waybar und vollstaendiger Post-Install-Automatisierung. Archinstall-Config klont das Repo automatisch via custom-commands, danach genuegt ein einzelner Befehl fuer die komplette Einrichtung.
17 lines
761 B
Bash
Executable File
17 lines
761 B
Bash
Executable File
#!/usr/bin/bash
|
|
# ABOUTME: Rofi-based PulseAudio sink switcher using ponymix.
|
|
# ABOUTME: Changes the default sink and moves all active streams to it.
|
|
|
|
# choose pulseaudio sink via rofi or dmenu
|
|
# changes default sink and moves all streams to that sink
|
|
#https://gist.github.com/Nervengift/844a597104631c36513c?permalink_comment_id=1826282
|
|
|
|
sink=$(ponymix -t sink list|awk '/^sink/ {s=$1" "$2;getline;gsub(/^ +/,"",$0);print s" "$0}'|rofi -dmenu -theme '/etc/xdg/rofi/volume/volume.rasi' -mesg ' Sink Switcher' -p 'pulseaudio sink:' -location 6 -width 100|grep -Po '[0-9]+(?=:)') &&
|
|
|
|
|
|
ponymix set-default -d $sink &&
|
|
for input in $(ponymix list -t sink-input|grep -Po '[0-9]+(?=:)');do
|
|
echo "$input -> $sink"
|
|
ponymix -t sink-input -d $input move $sink
|
|
done
|