1

I have two PC.Both of them is Linux Mint 17.3 Rosa and I replace cinnamon with i3 which is a tilling window manager.

Recently,I want to share keyboard and mouse with synergy

But I can't launch synergy in i3,everything is Ok if I switch to cinnamon. anybody know how to solve it?THX

4

2 回答 2

2

可能的问题是 i3 尚未启动其系统托盘,因为主显示器不明显。这可能被认为是一个错误,但这里有两个允许托盘启动的选项:

  1. 首选:定义主要输出。您可以使用 xrandr(替换eDP1为您的显示器名称)来执行此操作。可以通过xrandr不带任何参数运行来获得输出名称列表。此命令可以在外部运行,但可能需要在每次重新启动后运行,因此如果包含在 i3 配置中,请使用 exec 前缀。

    exec xrandr --output eDP1 --primary

  2. tray_output使用“主要”以外的替代品。输出名称可用作 i3 托盘输出。

    tray_output eDP1

在对 i3 配置进行这些更改后,您将需要重新启动 i3。 restart默认情况下绑定到$mod+Shift+r

于 2016-04-21T03:16:55.100 回答
1

虽然我不知道为什么,但评论 i3 配置可以修复它。

{
         status_command i3status
 #        tray_output primary
}

然后重新启动 i3 和 synergy,现在享受协同。

于 2016-04-13T04:32:27.993 回答