1 parent 90b1e2c commit c1666acCopy full SHA for c1666ac
1 file changed
common/system/modules/audio/general/core.py
@@ -60,7 +60,9 @@ def send_notification(config: dict = {}, msg: str = "") -> None:
60
subprocess.Popen(['polybar-msg', 'action', '#audio-icon.hook.0'])
61
subprocess.Popen(['notify-send', 'Audio', f"Changed to {get_current_sink_name(config)} {get_current_sink_icon(config)}"])
62
else:
63
- subprocess.Popen(['notify-send', 'Audio', f"Volume {msg}", '-h', 'string:x-canonical-private-synchronous:anything'])
+ subprocess.Popen(['notify-send', 'Audio', f"Volume {msg}",
64
+ '-h', 'string:x-canonical-private-synchronous:anything',
65
+ '-h', 'int:transient:1'])
66
67
68
def volume(config: dict, action: str) -> None:
0 commit comments