Created
February 1, 2026 23:59
-
-
Save theodric/0fc0a3a6e472b178332fd53c3bfdee13 to your computer and use it in GitHub Desktop.
Mute speakers on login (KDE)
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
| <mute-speakers.sh.desktop> | |
| ` | |
| [Desktop Entry] | |
| Exec=/path/to/mute-speakers.sh | |
| Icon=application-x-shellscript | |
| Name=mute-speakers.sh | |
| Type=Application | |
| X-KDE-AutostartScript=true | |
| ` | |
| <mute-speakers.sh> | |
| ` | |
| #!/bin/bash | |
| pactl set-sink-mute @DEFAULT_SINK@ 1 | |
| wpctl set-mute @DEFAULT_AUDIO_SINK@ 1 | |
| amixer set Master mute | |
| ` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment