Created
May 29, 2026 14:27
-
-
Save iraizo/2860d1ba9d496ca1f656eef4a551ba48 to your computer and use it in GitHub Desktop.
Make Cider / Cider.sh audio stream seperate from chromium
This file contains hidden or 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
| pulse.rules = [ | |
| { | |
| matches = [ | |
| { | |
| application.process.binary = "Cider" | |
| } | |
| ] | |
| actions = { | |
| update-props = { | |
| application.name = "Cider" | |
| application.icon_name = "cider" | |
| } | |
| } | |
| } | |
| ] | |
| stream.rules = [ | |
| { matches = [ | |
| { | |
| application.process.binary = "Cider" | |
| media.class = "Stream/Output/Audio" | |
| } | |
| ] | |
| actions = { | |
| update-props = { | |
| application.name = "Cider" | |
| application.icon_name = "cider" | |
| application.icon-name = "cider" | |
| // set the standard audio output | |
| // target.object = "raop_sink.XXX" | |
| } | |
| } | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment