1
0

add eww config

This commit is contained in:
2024-05-15 10:23:34 +02:00
parent 3dbc0a4ac8
commit d0a55a7437
10 changed files with 507 additions and 0 deletions

8
.config/eww/move-sink-inputs Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
sink="$1"
pactl set-default-sink "$sink"
pactl list short sink-inputs | cut -f1 | while read id; do
pactl move-sink-input "$id" "$sink"
done