gdevilspie 不工作

gdevilspie 不工作

我希望始终在工作区 3 中打开 gedit 应用程序。

环境:Ubuntu 16.04 LTS 和 gedevilspie

我怎样才能使以下简单代码发挥作用?

dinesh@ubuntu:~/.devilspie$ cat text.ds 
; generated_rule text
( if 
( begin 
( is ( application_name ) "gedit" )
) 
( begin 
( set_workspace 3 )
( println "match" )
)
)

当前配置

dinesh@ubuntu:~/.devilspie$ cat text.ds 
; generated_rule text
( if 
( begin 
( is ( application_name ) "gedit" )
) 
( begin 
( set_viewport 3 )
( println "match" )
)
)

答案1

指定视口而不是工作区。

( if 
( begin 
( is ( application_name ) "gedit" )
) 
( begin 
( set_viewport 3 )
( println "match" )
)
)

相关内容