0

I'd like to always open the gedit application in workspace 3.

Environment: Ubuntu 16.04 LTS and gedevilspie

How can I get the following simple code to work?

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

Current Configuration

dinesh@ubuntu:~/.devilspie$ cat text.ds 
; generated_rule text
( if 
( begin 
( is ( application_name ) "gedit" )
) 
( begin 
( set_viewport 3 )
( println "match" )
)
)
  • do you have compiz on your machine? – Yaron Mar 20 '17 at 09:34
  • My synaptic shows compiz , compiz-core, compiz-gnome, compiz-plugins, compiz-plugins-default as INSTALLED. If you suggest me to un-install compiz, do i get impact on my cairo-dock and what other impact I will have – Dinesh Kalidassan Mar 20 '17 at 10:05

1 Answers1

0

Specify viewport instead of workspace.

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