This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Try to reset pulseaudio after suspend. | |
# Todo: fix resume to not require this. | |
set -u | |
pulseaudio -k | |
pulseaudio --daemon | |
pkill -SIGHUP xfce4-panel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -eu | |
newSink="$(pactl list sinks short | cut -f2 | rofi -dmenu)" | |
switch-sink "$newSink" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment