如何在 ubuntu 20.04 中添加设备插入声音?

如何在 ubuntu 20.04 中添加设备插入声音?

正如您所知,在 Windows 中我们插入一些东西有一个播放 我如何在我的 ubuntu 机器中添加它?v20.04 谢谢

答案1

我的 Ubuntu 18.04 中已经有这个 bash 脚本,虽然不是很干净,但运行正常。

#!/bin/bash
inotifywait -rm /dev/disk/by-label/ -e CREATE -e DELETE | while read path action file; do
if [ $action = CREATE ]; then
   dev=$(ls -lt1 /dev/disk/by-label/ | grep -o "sd[b-z][0-9]" | head -n1)
   size=$(lsblk | grep $dev | awk '{print $4}')

   aplay path/to/the/file1.wav &
   notify-send "$file"  "Device $size pluggued"
else
   aplay path/to/the/file2.wav &
   notify-send "$file"  "Device unpluggued"
fi
done &
exit

将其添加到启动应用程序中,您将在每个设备插入时收到声音和通知警报。希望这对您有所帮助。

相关内容