.screenrc의 exec 명령을 사용하는 Gnu 화면

.screenrc의 exec 명령을 사용하는 Gnu 화면

내 .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

처음 세 개는 예상대로 작동하지만 ^ynmpg123을 종료해야 하는 는 대신 를 누를 때 사용하던 화면의 앱을 종료합니다 ^yn. 원하는 효과를 얻으려면 어떻게 작성해야 합니까?

관련 정보