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