每次重新启动时,我都必须关闭并从开启热角unity-tweak-tool
。其他明智的热角不起作用。任何修复?
提前致谢!
每次重新启动时,我都必须关闭并从开启热角unity-tweak-tool
。其他明智的热角不起作用。任何修复?
提前致谢!
Answers:
我也一样 但是,首先,在我升级到14.04之后,我没有遇到这个问题,它发生在更新后的两天前。关键是我通过应用我曾经知道为13.04工作的解决方案来解决了这一问题。其以下内容:
运行dconf-editor:
$ dconf-editor
(如果您没有安装它,可以通过:sudo apt-get install dconf-tools)
在弹出窗口中,转到左侧的列表,然后打开“ core”,您可以按以下顺序找到它:
org-> compiz-> profile-> unity-> plugins-> core
选择“核心”后,在右侧找到一个名为“ active-plugins”的键,然后在“值”字段中更改最后三个条目的顺序,以便最后一个为“ unityshell”,“ expo”和“规模'。为了简化该过程,请删除“值”字段中的所有条目,复制以下行并将其粘贴到“值”字段中:
[“ core”,“ composite”,“ opengl”,“ copytex”,“ compiztoolbox”,“ resize”,“ mousepoll”,“ wall”,“ widget”,“ grid”,“ imgpng”,“ snap”,“移动”,“放置”,“正则表达式”,“ vpswitch”,“动画”,“会话”,“ unitymtgrabhandles”,“变通办法”,“淡入淡出”,“ ezoom”,“ unityshell”,“ expo”,“ scale” ]
重启。
在14.04中,围绕我所做的工作是编写一个bash脚本以使用dconf设置热拐角边缘值,但是您将需要使用dconf来查找正在使用的热拐角触发器,您需要安装dconf-editor,使用您可以计算出树状结构的路径。
#!/bin/bash
dconf write /org/compiz/profiles/unity/plugins/scale/initiate-edge "'|TopLeft'"
dconf write /org/compiz/profiles/unity/plugins/scale/initiate-all-edge "'|BottomLeft'"
dconf write /org/compiz/profiles/unity/plugins/expo/expo-edge "'TopRight'"
dconf write /org/compiz/profiles/unity/plugins/core/show-desktop-edge "'|BottomRight'"
对于世博会,它没有| 在前
然后,我在登录后运行了此脚本,通过“ 启动应用程序 ” 将其添加,您必须在Unity Dash中进行搜索。