Gnome에서 가장 일반적인 Quake 스타일 터미널은 Guake와 Tilda로 보이지만 Yakuake 캔과 같은 단일 탭에 여러 개의 쉘을 표시하기 위해 분할 할 수는 없습니다. 그렇게 할 수있는 대안이 있습니까?
Gnome에서 가장 일반적인 Quake 스타일 터미널은 Guake와 Tilda로 보이지만 Yakuake 캔과 같은 단일 탭에 여러 개의 쉘을 표시하기 위해 분할 할 수는 없습니다. 그렇게 할 수있는 대안이 있습니까?
답변:
tmux로 Guake 를 사용하여 분할 기능을 사용하십시오.
Terra는 Ubuntu 14.04에서 실행되도록 만들 수 있습니다. 자세한 내용은 이 답변 을 참조하십시오
또는 Terra 라는 새로운 실험 프로젝트가 있습니다.
Terra는 유용한 사용자 인터페이스가있는 GTK + 3.0 기반 터미널 에뮬레이터이며 화면을 가로 또는 세로로 분할하여 여러 터미널을 지원합니다.
빠른 설치:
sudo add-apt-repository ppa:ozcanesen/terra-terminal
sudo apt-get update
sudo apt-get install terra
자세한 내용 은 WebUpd8 기사를 확인 하십시오 .
작은 스크립트를 작성하여 모든 창을 앞으로 가져올 수 있습니다. 지진과 같이 위에서 아래로 미끄러지지는 않지만 목적에 부합합니다. 그리드 터미널로 터미네이터 를 사용 하고 있기 때문에 매우 강력합니다.
이것을 위해 내가 사용하는 스크립트는 다음과 같습니다. 따라서 터미네이터 와 wmctrl 을 먼저 설치 한 다음 스크립트를 보관하고 바로 가기 키 (예 : Ctrl +`)를 추가하고 완료 한 곳에이 스크립트를 배치하십시오.
이제 Ctrl +`를 누르면 종료자가 앞으로 와서 다시 한 번 더 누르면 다른 창의 뒷면으로 이동합니다.
#!/bin/bash
TM_STATE=/tmp/tm_stat
WIN=$( wmctrl -lGx | grep -i terminator | awk '{print $1}' );
if [[ $WIN == "" ]]
then
terminator&
exit 0
else
if [[ -e $TM_STATE ]]
then
wmctrl -i -r $WIN -b remove,below
wmctrl -i -r $WIN -b add,above
#wmctrl -i -r $WIN -b remove,shaded
#wmctrl -i -a $WIN
rm $TM_STATE
else
wmctrl -i -r $WIN -b remove,above
wmctrl -i -r $WIN -b add,below
#wmctrl -i -r $WIN -b add,shaded
touch $TM_STATE
fi
fi
나는 (현재 16.04에) 사용 Guake 와 Byobu 쉘 인터프리터, 기본 사용에 의해로 tmux
( 아마도 더 이상 screen
).
sudo apt-get install byobu
(PAP 필요 없음)which byobu | tee -a /etc/shells
, 내가 말한대로 이 Guake Github의 문제에 .guake-prefs
)에서 Byobu를 기본 인터프리터로 선택하십시오.
선택 사항 : Byobu를 사용하므로 탭 표시 줄 숨기기 :
apropos byobu
Xenial 사용자의 경우이 작업을 수행하십시오. 지금까지 터미네이터 와 잘 작동합니다 .
키보드 단축키를 사용할 때 실행 / 표시 / 숨기기
나는 F12
잠시 동안 Guake를 표시하거나 숨기도록 매핑했지만 터미널 창을 원했습니다.
sudo apt update && sudo apt install xdotool wmctrl
cd ~ && touch terminator_show_hide.sh && sudo chmod +x terminator_show_hide.sh
이것을 파일에 붙여 넣으십시오.
#!/bin/bash
#
# This script does this:
# launch an app if it isn't launched yet,
# focus the app if it is launched but not focused,
# minimize the app if it is focused.
#
# by desgua - 2012/04/29
# modified by olds22 - 2012/09/16
# - customized to accept a parameter
# - made special exception to get it working with terminator
# First let's check if the needed tools are installed:
tool1=$(which xdotool)
tool2=$(which wmctrl)
if [ -z $tool1 ]; then
echo "Xdotool is needed, do you want to install it now? [Y/n]"
read a
if [[ $a == "Y" || $a == "y" || $a = "" ]]; then
sudo apt-get install xdotool
else
echo "Exiting then..."
exit 1
fi
fi
if [ -z $tool2 ]; then
echo "Wmctrl is needed, do you want to install it now? [Y/n]"
read a
if [[ $a == "Y" || $a == "y" || $a = "" ]]; then
sudo apt-get install wmctrl
else
echo "Exiting then..."
exit 1
fi
fi
# check if we're trying to use an app that needs a special process name
# (because it runs multiple processes and/or under a different name)
app=$1
if [[ $app == terminator ]]; then
process_name=usr/bin/terminator
else
process_name=$app
fi
# Check if the app is running (in this case $process_name)
#pid=$(pidof $process_name) # pidof didn't work for terminator
pid=$(pgrep -f $process_name)
# If it isn't launched, then launch
if [ -z $pid ]; then
$app
else
# If it is launched then check if it is focused
foc=$(xdotool getactivewindow getwindowpid)
if [[ $pid == $foc ]]; then
# if it is focused, then minimize
xdotool getactivewindow windowminimize
else
# if it isn't focused then get focus
wmctrl -x -R $app
fi
fi
exit 0
그런 다음 동일한 단축키를 교체하는 경우 Guake 맵을 삭제하십시오.
시스템 설정 GUI-> 키보드-> 단축키-> 사용자 정의 단축키를여십시오.
+를 클릭하고 이것을 명령 행에 추가하십시오 :
/home/you/terminator_show_hide.sh terminator
그런 다음 열쇠를 바로 거기에 매핑하면 잘 가야합니다.
이것은 /ubuntu//a/189603/597130의 약간 수정 된 버전입니다
bin 폴더를 언급하지 않았으며 발사되지 않았지만 폴더 home/me/.local/bin
로 옮길 때 /home/me/
즉시 작동했습니다.
이제 나는 세계 최고의 구아 케 쇼 / 숨기기 & 패널을 가지고 있습니다 !! 참고 : 첫 번째 검색에서이 게시물을 찾았 기 때문에이 정보를 여기에 넣었습니다. 좀 더 넓은 구멍을 파고 난 후 다른 게시물을 찾았습니다.