Answers:
您可以使用它wmctrl -d
来列出所有工作区。在*
表示当前的工作区:
~$ wmctrl -d
0 * DG: 3840x1080 VP: 0,0 WA: 0,25 3840x1055 1
1 - DG: 3840x1080 VP: N/A WA: 0,25 3840x1055 2
2 - DG: 3840x1080 VP: N/A WA: 0,25 3840x1055 3
3 - DG: 3840x1080 VP: N/A WA: 0,25 3840x1055 4
因此,仅获取当前的grep *
:
~$ wmctrl -d | grep -w '*'
0 * DG: 3840x1080 VP: 0,0 WA: 0,25 3840x1055 1
希望这可以帮助!
wmctrl -d
wmctrl -d
。
如果您使用Unity,则无法直接从中检索当前视口
wmctrl -d
由于Unity具有视口,不能直接检测到wmctrl -d
。输出将仅显示一个工作空间:
0 * DG: 5040x2100 VP: 1680,1050 WA: 59,24 1621x1026 N/A
xrandr
)5040x2100
。那是3x2视口:5040/1680 = 3和2100/1050 = 2。1680,1050
(x,y)下面的脚本根据此信息计算当前视口:
#!/usr/bin/env python3
import subprocess
def get_res():
# get resolution
xr = subprocess.check_output(["xrandr"]).decode("utf-8").split()
pos = xr.index("current")
return [int(xr[pos+1]), int(xr[pos+3].replace(",", "") )]
def current():
# get the resolution (viewport size)
res = get_res()
# read wmctrl -d
vp_data = subprocess.check_output(
["wmctrl", "-d"]
).decode("utf-8").split()
# get the size of the spanning workspace (all viewports)
dt = [int(n) for n in vp_data[3].split("x")]
# calculate the number of columns
cols = int(dt[0]/res[0])
# calculate the number of rows
rows = int(dt[1]/res[1])
# get the current position in the spanning workspace
curr_vpdata = [int(n) for n in vp_data[5].split(",")]
# current column (readable format)
curr_col = int(curr_vpdata[0]/res[0])
# current row (readable format)
curr_row = int(curr_vpdata[1]/res[1])
# calculate the current viewport
return curr_col+curr_row*cols+1
print(current())
安装 wmctrl
sudo apt install wmctrl
通过命令运行
python3 /path/to/get_viewport.py
它将输出1、2、3或任何当前视口。它会自动计算视口配置可能包括的行/列。
剧本
xrandr
,包括可能的额外监视器。至少在Gnome Shell中,但也可能在其他WM中,您可以直接询问Xserver(如果在Wayland中,则不知道)。
[romano:~/tmp] % desktop=$(xprop -root -notype _NET_CURRENT_DESKTOP | perl -pe 's/.*?= (\d+)/$1/')
[romano:~/tmp] % echo $desktop
1
基本上,该命令xprop
将返回
[romano:~/tmp] % xprop -root -notype _NET_CURRENT_DESKTOP
_NET_CURRENT_DESKTOP = 1
然后您可以按摩一些信息以获取所需的信息。
_NET_DESKTOP_NAMES
。