Ubuntu 14.04 Trusty在重启后不使用热角

每次我重新启动时,我都要从unity-tweak-tool关闭和打开hotcorners。 其他明智的热点角落不起作用。 任何修复?
提前致谢!

同样对我而言。 但是,首先,在我升级到14.04之后我没有遇到这个问题,它发生在两天前的更新之后。 关键是我通过应用我曾经知道为13.04工作的解决方案来解决它。 其内容如下:

  • 运行dconf-editor:

     $ dconf-editor 

    (如果你没有安装它:sudo apt-get install dconf-tools)

  • 在弹出窗口中,转到左侧列表并打开“core”,您可以按以下顺序找到它:

    组织 – > compiz – > profiles – > unity – > plugins – > core

  • 一旦选择“核心”,在右边找到一个名为“active-plugins”的键,并在“Value”字段中更改最后三个条目的顺序,以便最后的那些是’unityshell’,’expo’和’规模’。 为便于此过程,请删除“值”字段中的所有条目,复制以下行并将其粘贴到“值”字段中:

    [‘core’,’composite’,’opengl’,’copytex’,’compiztoolbox’,’resize’,’mousepoll’,’wall’,’widget’,’grid’,’imgpng’,’snap’,’移动’,’地方’,’正则表达’,’vpswitch’,’动画’,’会话’,’团结管理’,’工作区’,’淡入淡出’,’ezoom’,’unityshell’,’expo’,’scale’ ]

  • 重启。

嗨,大家好我是Linux的新手(不到24小时),但我已经遇到了这个问题并找到了解决方案。

转到启动应用程序,然后添加一个新的,给它一个名称(无关紧要)并添加此命令:

 compiz --replace 

然后保存。 重启并享受。

但是,编辑>并不可靠。

为了解决我所做的工作,我在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中搜索它。