What am I doing wrong here?
I can get the single console embedded in the
desktop, but I'm having trouble getting two of them at the same time.
My DesktopConsole.ds is as follows :
Code:
(begin
(if
(matches (window_name) "DesktopConsole")
(begin
(set_workspace 1)
(below)
(undecorate)
(skip_pager)
(skip_tasklist)
(wintype "utility")
(geometry "+700+50")
(geometry "700x350")
)
)
(if
(matches (window_name) "DesktopConsole1")
(begin
(set_workspace 1)
(below)
(undecorate)
(skip_pager)
(skip_tasklist)
(wintype "utility")
(geometry "+700+450")
(geometry "700x350")
)
)
)
I make 2 profiles (DesktopConsole and DesktopConsole1) in gnome-terminal.
I make 2 session instances where I start each gnome-terminal with its respective profile.
I set devilspie's order to 51 and the terminals' order to 50 in order to make the terminals before executing the script.
What am I missing?
Bookmarks