Gnu screen,使用.screenrc中的exec指令

Gnu screen,使用.screenrc中的exec指令

我已將以下行新增至我的 .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。我該怎麼寫才能達到我想要的效果?

相關內容