We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b53ecad commit e3652f1Copy full SHA for e3652f1
airootfs/etc/systemd/system/no-console-beep.service
@@ -0,0 +1,13 @@
1
+[Unit]
2
+Description=Disable virtual console beeps
3
+Documentation=https://github.com/Githubguy132010/Arch-Linux-without-the-beeps
4
+After=multi-user.target
5
+
6
+[Service]
7
+Type=oneshot
8
+RemainAfterExit=yes
9
+# Disable console beeps for all virtual terminals
10
+ExecStart=/usr/bin/bash -c 'for tty in /dev/tty[0-9]*; do if [ -w "$tty" ]; then setterm -blength 0 > $tty; fi; done'
11
12
+[Install]
13
+WantedBy=multi-user.target
0 commit comments