how to make enable/disable global bypass keyboard shortcut (flatpak version) #1945
rstx32
started this conversation in
Show and tell
Replies: 1 comment 2 replies
-
In the PipeWire tab define an autoloading profile for the speaker associated to a preset file that has the effects you want. After plugging you headphones create a preset that has no effects and use it when saving an autoloading profile for the headphones. If everything goes well from this point on the empty preset will be applied whenever your headphones are plugged. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
problem story
i'm a little bit struggling with enabling/disabling easyeffects quickly, because i have two mode listening device:
i just need easyeffects for my speaker, so the question is : how can i disable (global bypass) quickly while i switch to headphone/iem/earbuds just using my keyboard?
gathering information
after doing some references research, i got script that showing up global bypass value :
flatpak run --command=gsettings com.github.wwmm.easyeffects get com.github.wwmm.easyeffects bypass
that returning boolean value : true or false
i can enable global bypass by using script :
flatpak run --command=gsettings com.github.wwmm.easyeffects set com.github.wwmm.easyeffects bypass true
or disable global bypass by using script :
flatpak run --command=gsettings com.github.wwmm.easyeffects set com.github.wwmm.easyeffects bypass false
solution
with those script i wrote :
download : easyeffects-bypass.zip
save to file :
easyeffects-bypass.sh
make it executable :
chmod +x easyeffects-bypass.sh
add custom keyboard shortcut (i'm using KDE), attach
easyeffects-bypass.sh
and configure your ownshortcut trigger
that's all! now i can quickly enable or disable easyeffects global bypass just by using keyboard shortcut!
Beta Was this translation helpful? Give feedback.
All reactions