2023年5月

日前,诺贝尔物理学奖得主丁肇中面对“给年轻人提建议”的问题,幽默回答:“我儿女从不听我的建议。”接受总台专访时,丁肇中回忆,母亲一开始也不相信他能学好物理,但他仍坚持自己的兴趣和理想。“一个人在世界上只走一次,我应该照我的兴趣来做。”

#!/bin/bash

voicefile=/usr/share/sounds/sound-icons/cembalo-6.wav

if [ ! -f $voicefile ];then
    echo "声音文件不存在"
    exit 0
fi

dbus-monitor 'type=method_call, interface=org.freedesktop.Notifications, member=Notify' | grep --line-buffered -E '^\s*string "QQ|Icalingua\+\+"$' | while read test; do paplay $voicefile;done