gdevilspie não está funcionando

0

Eu gostaria de sempre abrir o aplicativo gedit no espaço de trabalho 3.

Ambiente: Ubuntu 16.04 LTS e gedevilspie

Como posso obter o seguinte código simples para funcionar?

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

Configuração atual

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

1 resposta

0

Especifique a janela de visualização em vez da área de trabalho.

( if 
( begin 
( is ( application_name ) "gedit" )
) 
( begin 
( set_viewport 3 )
( println "match" )
)
)
    
por TooManyPets 20.03.2017 / 15:26