当鼠标点击桌面上边框时下拉终端

当鼠标点击桌面上边框时下拉终端

我想要一个下拉终端,当我将鼠标移动到顶部(或底部、左侧、右侧)时,该终端会下拉,类似于如何将面板配置为自动隐藏,并且仅在鼠标悬停时下拉或弹出到它所在的边界。

目前我只找到了一个方法使用快捷方式egF12绑定到eg xfce4-terminal --drop-down

我正在使用 XFCE 4.12,但我并不是特别固定于 XFCE 或xfce4-terminal,因此如果其他桌面或终端支持此功能,它也会有所帮助。

答案1

你可以用 做这样的事情xdotool。例如,

xdotool behave_screen_edge top search --name mywindowname windowactivate

将持续监视鼠标移动,当位于屏幕顶部时,它将搜索名为的窗口我的窗口名称并使其可见,具体取决于您的窗口管理器。

答案2

在@meuh 的回答的基础上,我想出了附加的脚本。以下是其特点:

  • 产生五个终端,左右各两个,顶部一个
  • 如果光标击中终端高度/宽度内的边框,终端最初最小化并设置为活动状态,如果窗口处于活动状态并再次击中边框,则终端消失

笔记:

  • behave_screen_edge我有时发现行为很奇怪。似乎忽略了很多情况。这是很不令人满意的。
  • 动画中也没有花哨的下降/滑动。我尝试了windowmove一个循环,但 bash 循环太慢,看起来不太好。

剧本:

#!/bin/bash
# spawn drop in terminals
getLastWid() {
    sleep 0.4s
    wid=$(wmctrl -lp | 'grep' " Terminal " | awk '{print strtonum($1),$0;}' |
          'sort' -n | 'tail' -1 | 'sed' -nE 's|^([0-9a-f]+) .*|\1|p')
}
getBorderWidth() {
    # https://github.com/jordansissel/xdotool/issues/115
    local X Y X0 Y0
    eval $(xdotool getwindowgeometry --shell $1 | command grep '[XY]=')
    X0=$X
    Y0=$Y
    xdotool windowmove --relative $1 0 0
    eval $(xdotool getwindowgeometry --shell $1)
    bw=$((X-X0))
    bh=$((Y-Y0))
    xdotool windowmove $1 $((X0-bw)) $((Y0-bh))
}

script=$(mktemp)
cat > "$script" <<"EOF"
#!/bin/bash

sw=1920 # screen width
sh=1080 # screen height
ph=35   # panel height (assumed it is at the bottom)
script=$0; pos=$1; wid=$2; bw=$3; bh=$4; firstUse=$5

# test if window is still open, if not close xdotool
if ! wmctrl -lp | 'grep' -q -i "$(echo "obase=16;$wid" | bc)"; then
    pkill -i -f "xdotool behave_screen_edge.*$wid"
    exit 1
fi

# choose target coordinates, where to move window and also to manually evalute clicks
eval $(xdotool getwindowgeometry --shell $wid)  # sets HEIGHT, WIDTH
ww=$((WIDTH+bw/2))       # window width
wh=$((HEIGHT+bh/2+bw/2)) # window height
case $pos in
    left1)  x=0; y=$((sh-ph-wh-1-wh))          ; ;;
    left2)  x=0; y=$((sh-ph-wh-1))             ; ;;
    top)    x=$((sw/2-ww/2)); y=0              ; ;;
    right1) x=$((sw-ww)); y=$((sh-ph-wh-1-wh)) ; ;;
    right2) x=$((sw-ww)); y=$((sh-ph-wh-1))    ; ;;
esac

# on first use only move windows to their correct positions and hide them
if [ ! -z "$firstUse" ] && [ $firstUse == 1 ]; then
    xdotool behave_screen_edge ${pos%*[0-9]} exec "$script" $pos $wid $bw $bh &
    xdotool windowminimize $wid windowmove $wid $x $y
    exit 0
fi

# evaluate mouse location now and exit if not correct
eval $(xdotool getmouselocation --shell | command grep '[XY]=')
case $pos in
    left1|left2)   if [ $Y -lt $y ] || [ $Y -ge $((y+HEIGHT)) ]; then exit; fi; ;;
    right1|right2) if [ $Y -lt $y ] || [ $Y -ge $((y+HEIGHT)) ]; then exit; fi; ;;
    top)           if [ $X -lt $x ] || [ $X -ge $((x+WIDTH )) ]; then exit; fi; ;;
esac

#actually move and activate window and hide it, if it already is active
if [ $wid == $(xdotool getactivewindow) ]; then
    xdotool windowminimize $wid
else
    xdotool windowmove $wid $x $y windowactivate $wid
fi
EOF
chmod u+x "$script"

xfce4-terminal --working-directory="$HOME" & getLastWid && getBorderWidth $wid  && "$script" left1  $wid $bw $bh 1
xfce4-terminal --working-directory="$HOME" & getLastWid && "$script" left2  $wid $bw $bh 1
xfce4-terminal --working-directory="$HOME" & getLastWid && "$script" right1 $wid $bw $bh 1
xfce4-terminal --working-directory="$HOME" & getLastWid && "$script" right2 $wid $bw $bh 1
xfce4-terminal --working-directory="$HOME" & getLastWid && "$script" top    $wid $bw $bh 1

相关内容