我需要一个工具来获取任意窗口的宽度和高度。
理想情况下,该工具会减少 Ubuntu 菜单栏的大小。
答案1
您可以使用wmctrl -lG
以下格式的表格来获取所有打开的窗口的列表:
<window ID> <desktop ID> <x-coordinate> <y-coordinate> <width> <height> <client machine> <window title>
示例输出可能如下所示:
$ wmctrl -lG
0x02a00002 0 -2020 -1180 1920 1080 MyHostName XdndCollectionWindowImp
0x02a00005 0 0 24 61 1056 MyHostName unity-launcher
0x02a00008 0 0 0 1920 24 MyHostName unity-panel
0x02a0000b 0 -1241 -728 1141 628 MyHostName unity-dash
0x02a0000c 0 -420 -300 320 200 MyHostName Hud
0x03a0000a 0 0 0 1920 1080 MyHostName Desktop
0x0400001d 0 61 24 1859 1056 MyHostName application development - A tool to get window dimensions - Ask Ubuntu - Mozilla Firefox
0x04200084 0 61 52 999 745 MyHostName Untitled Document 1 - gedit
答案2
我xwininfo -all
发现https://unix.stackexchange.com/questions/14159/how-do-i-find-the-window-dimensions-and-position-accurately- including-decoration。
它确实有效,但我仍然愿意接受更方便的解决方案=>实时 GUI 工具。
答案3
从您自己的回答中,我了解到您正在寻找一个方便的 GUI 工具,因此:
小型 GUI 工具,用于获取网络尺寸和真实的窗口大小(动态更新)
正如下面“解释”中进一步解释的那样,wmctrl
和都xdotool
返回了略微不正确的窗口大小。
下面的脚本(指示器)将显示面板中窗口的“实际”大小和净大小。
剧本
#!/usr/bin/env python3
import signal
import gi
gi.require_version('AppIndicator3', '0.1')
gi.require_version('Gtk', '3.0')
import subprocess
from gi.repository import Gtk, AppIndicator3, GObject
import time
from threading import Thread
def get(cmd):
try:
return subprocess.check_output(cmd).decode("utf-8").strip()
except subprocess.CalledProcessError:
pass
# ---
# uncomment either one of two the lines below; the first one will let the user
# pick a window *after* the indicator started, the second one will pick the
# currently active window
# ---
window = get(["xdotool", "selectwindow"])
# window = get(["xdotool", "getactivewindow"])
class Indicator():
def __init__(self):
self.app = 'test123'
iconpath = "unity-display-panel"
self.indicator = AppIndicator3.Indicator.new(
self.app, iconpath,
AppIndicator3.IndicatorCategory.OTHER)
self.indicator.set_status(AppIndicator3.IndicatorStatus.ACTIVE)
self.indicator.set_menu(self.create_menu())
self.indicator.set_label(" ...Starting up", self.app)
# the thread:
self.update = Thread(target=self.show_seconds)
# daemonize the thread to make the indicator stopable
self.update.setDaemon(True)
self.update.start()
def create_menu(self):
menu = Gtk.Menu()
# separator
menu_sep = Gtk.SeparatorMenuItem()
menu.append(menu_sep)
# quit
item_quit = Gtk.MenuItem('Quit')
item_quit.connect('activate', self.stop)
menu.append(item_quit)
menu.show_all()
return menu
def show_seconds(self):
sizes1 = None
while True:
time.sleep(1)
sizes2 = self.getsize(window)
if sizes2 != sizes1:
GObject.idle_add(
self.indicator.set_label,
sizes2, self.app,
priority=GObject.PRIORITY_DEFAULT
)
sizes1 = sizes2
def getsize(self, window):
try:
nettsize = [int(n) for n in get([
"xdotool", "getwindowgeometry", window
]).splitlines()[-1].split()[-1].split("x")]
except AttributeError:
subprocess.Popen(["notify-send", "Missing data", "window "+window+\
" does not exist\n(terminating)"])
self.stop()
else:
add = [l for l in get(["xprop", "-id", window]).splitlines() if "FRAME" in l][0].split()
add = [int(n.replace(",", "")) for n in add[-4:]]
xadd = add[0]+add[1]; yadd = add[2]+add[3]
totalsize = [str(s) for s in [nettsize[0]+add[0]+add[1], nettsize[1]+add[2]+add[3]]]
displ_sizes = ["x".join(geo) for geo in [[str(s) for s in nettsize], totalsize]]
string = " "+displ_sizes[0]+" / "+displ_sizes[1]
return string+((25-len(string))*" ")
def stop(self, *args):
Gtk.main_quit()
Indicator()
GObject.threads_init()
signal.signal(signal.SIGINT, signal.SIG_DFL)
Gtk.main()
如何使用
该脚本需要安装 xdotool:
sudo apt-get install xdotool
将脚本复制到一个空文件中,另存为
getwindowsize.py
通过以下命令从终端窗口测试运行脚本:
python3 /path/to/getwindowsize.py
脚本选择聚焦窗口
wmctrl
动态显示网络窗口大小(如和的输出xdotool
)以及真实的窗口大小,包括装饰器等。如果关闭目标窗口,指示器会显示一条消息:
如果一切正常,请将其添加到快捷键:选择:系统设置>“键盘”>“快捷键”>“自定义快捷键”。单击“+”并添加命令:
python3 /path/to/getwindowsize.py
解释
窗口大小,由 wmctrl 和 xdotool 显示
...稍微不正确
你提到:
理想情况下,该工具会扣除 Ubuntu 菜单栏的大小
完整的故事是wmctrl -lG
和都xdotool getwindowgeometry
返回没有菜单栏的窗口的大小,或者,正如在这个答案:
发生的情况是,wmctrl 正在返回装饰内的窗口几何形状(即不包括标题栏和边框)
如何获得正确的“真实”尺寸
为了正确获取信息,我们可以运行
xprop -id <window_id> | grep FRAME
这将输出如下内容:
_NET_FRAME_EXTENTS(CARDINAL) = 0, 0, 28, 0
在这里,我们得到了需要添加到窗口大小的值,作为wmctrl
和的输出xdotool
,添加到窗口的左侧、右侧、顶部和底部。
换句话说,在这种情况下,如果wmctrl
显示的尺寸为 200x100,则真实的尺寸为200x128。
笔记
根据 OP 的建议,用户还可以选择一个窗口后指标已启动,通过替换:
window = get(["xdotool", "getactivewindow"])
经过:
window = get(["xdotool", "selectwindow"])
在脚本中,可以取消其中一行的注释。
答案4
xwininfo 及其优势
最大的问题wmctrl
是xdotool
这些工具需要安装 -默认情况下它们不在 Ubuntu 上。但是,Ubuntu 附带了xwininfo
。它是一个简单的工具,可提供有关用户选择的窗口的信息。
简单的用法是在终端中输入xwininfo | awk '/Width/||/Height/'
(注意awk
用于过滤输出),当你的光标改变以x
选择你喜欢的任何 GUI 窗口时,它将显示其信息。例如:
$ xwininfo | awk '/Width/||/Height/'
Width: 602
Height: 398
因此优点是:
- 很简单
- 默认安装
- 这只是文本 - 没什么特别的,你可以根据需要进行过滤和调整
进一步了解 xwininfo - 显示活动窗口的属性
当然,如果你像我一样 24/7 全天候打开终端, xwininfo
那么这就是你所需要的。有些用户可能更喜欢使用键盘快捷键。下面的脚本(旨在绑定到键盘快捷键)允许你显示一个图形弹出窗口,其中包含有关当前活动窗口的信息。如屏幕截图所示,它显示窗口标题、宽度和高度信息。
在底层,这并没有做什么特别了不起的事情。它使用来自dbus
服务的信息xwininfo
并将其放入简单的弹出窗口中。源代码如下。请记住,适用标准脚本规则:确保它具有可执行权限,并且chmod +x
在绑定到键盘快捷键时,您将脚本文件的完整路径作为命令提供。
#!/bin/bash
get_active_window()
{
qdbus org.ayatana.bamf \
/org/ayatana/bamf/matcher \
org.ayatana.bamf.matcher.ActiveWindow
}
get_active_name()
{
qdbus org.ayatana.bamf $1 \
org.ayatana.bamf.view.Name
}
main()
{
active_window=$(get_active_window)
active_xid=$( awk -F '/' '{print $NF}' <<< "$active_window" )
echo $active_xid
active_title=$(get_active_name $active_window)
dimensions=$(xwininfo -id "$active_xid" | awk '/Width/||/Height/')
text="$active_title\n""$dimensions"
zenity --info --text "$text" --width=200 --height=200
}
main $@
使用 Unity 的顶部面板指示器获取信息。
在写答案时,我意识到这将是一个非常有用的功能,可以整合到我现有的一个项目 - Ayatana 指示器中。此指示器允许显示有关 GUI 窗口的全部信息。目前仍在积极开发中。几何信息功能已添加到github 存储库并正在进入我的个人 PPA。当然,它使用xwininfo
“although”的方式略有不同。