screen
터미널의 gnome에서 gnu-session을 시작하고 싶습니다 . 다음 데스크톱 파일을 작성했습니다.
[Desktop Entry]
Version=1.0
Name=Screen
Comment=Use the command line
Keywords=shell;prompt;command;commandline;cmd;
TryExec=gnome-terminal
Exec=gnome-terminal --window --full-screen -e 'screen -x autoscreen'
Icon=utilities-terminal
Type=Application
이 데스크탑 항목을 실행할 때마다 screen
gnu-session이 포함된 새로운 gnome 터미널이 시작됩니다. 하지만 새 창을 시작하는 대신 이미 실행 중인 창으로 전환하고 싶습니다.
답변1
내가 정확히 무엇을 했는지는 모르겠지만, 이건 잘 작동한다
[Desktop Entry]
Name=Screen
Comment=Use the command line
Keywords=shell;prompt;command;commandline;cmd;
TryExec=screen
Exec=gnome-terminal --full-screen --class gnome-terminal-server -e 'screen -x autoscreen'
Icon=utilities-terminal
Type=Application
StartupWMClass=gnome-terminal-server