我已将以下几行添加到我的 .screenrc
bind -c music u exec amixer sset Master,0 5+ >& /dev/null
bind -c music d exec amixer sset Master,0 5- >& /dev/null
bind -c music t exec amixer sset Master,0 toggle >& /dev/null
bind -c music k exec > /home/g/stop.n; pkill mpg123
bind -c music m exec . /home/g/newmusic.sh
bind -c music n exec pkill mpg123
bind -c music s exec . /mnt/1/setnewt.sh
bindkey "^y" command -c music # ^y [udt] for volume, [kmns] play/stop music
前三个按预期工作,但是^yn
,应该杀死 mpg123 的,却杀死了我在按下 时恰好正在使用的屏幕上的应用程序^yn
。我应该如何编写它才能达到我想要的效果?