Answers:
现在,此功能已在13.04及更高版本中内置-启动器工作区图标显示您当前所在的工作区:
为此,请首先安装PPA:
sudo add-apt-repository ppa:geod/ppa-geod
更新并安装:
sudo apt-get update
sudo apt-get install indicator-workspaces
PPA作者没有为12.04和更高版本准备的软件包。但是,您可以下载11.10中使用的相同deb软件包并进行安装。
安装先决条件:
sudo apt-get install python-wnck
indicator-workspaces
如果安装尚未添加以下内容,最后将其添加到启动应用程序(在Dash中搜索):
Ubunutu 14.10(基于fossfreedom的回答,对不起,我需要更多代表才能发表评论)
sudo apt-get install python-wnck
sudo apt-get install python-appindicator
wget http://ppa.launchpad.net/geod/ppa-geod/ubuntu/pool/main/i/indicator-workspaces/indicator-workspaces_0.6.2.2_all.deb
sudo dpkg -i ./indicator-workspaces_0.6.2.2_all.deb
indicator-workspaces & disown
如果您确实从http://ppa.launchpad.net/geod/ppa-geod/ubuntu/pool/main/i/indicator-workspaces/下载了最新版本,请确保您以突触或抓取方式获取了所需的wnck库/绑定。软件中心。否则,此指示灯将不起作用。
Ubuntu的Unity桌面使用视口,而不是工作空间,这是基于坐标的系统。
要了解当前视口,可以将以下命令集(或将它们放置到脚本中并将其绑定)到键盘快捷键:
xprop -root -notype _NET_DESKTOP_VIEWPORT | awk -F '=' '{ print "Current Viewport:"$2 }' | xargs -I {} notify-send {}
这样,您可以调用屏幕通知来报告您当前在网格中的位置。
就个人而言,因为我在firefox和终端之间花费了99%的时间,所以我将所有这些命令都设置为函数 .bashrc
get_viewport()
{
xprop -root -notype _NET_DESKTOP_VIEWPORT | \
awk -F '=' '{ print "Current Viewport:"$2 }' | \
xargs -I {} notify-send {}
}